/* ============================================
   Poppy's Ice Cream Truck — Styles
   Color Palette: Burgundy (#7B2D3B) + Blush (#FDF2F2)
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2B;
  --burgundy-light: #9E4052;
  --blush: #FDF2F2;
  --blush-dark: #F8E8E8;
  --cream: #FFF9F9;
  --peach: #FFD4CC;
  --mint: #C8EDE4;
  --lavender: #E8D5F5;
  --yellow: #FFEAAE;
  --text-dark: #2D1520;
  --text-mid: #5A3D4A;
  --text-light: #8A6070;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
  --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.12);
  --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.16);
  --shadow-xl: 0 16px 60px rgba(123, 45, 59, 0.20);
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush);
  border: 2px solid var(--burgundy);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.title-accent {
  color: var(--burgundy);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-secondary:hover {
  background: var(--blush);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--blush);
  border-color: var(--blush);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--burgundy);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.mt-3 {
  margin-top: 2rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 242, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 249, 249, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--burgundy);
}

.nav-logo-icon {
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--burgundy);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--burgundy);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 22px;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--burgundy-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-bar {
  width: 24px;
  height: 2.5px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blush) 0%, #FFE8E4 50%, var(--peach) 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.15;
}

.shape-circle-1 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--burgundy);
  top: -100px;
  right: -100px;
}

.shape-circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--peach);
  bottom: 15%;
  left: 5%;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid var(--mint);
  top: 20%;
  left: 10%;
  opacity: 0.12;
}

.shape-square {
  width: 120px;
  height: 120px;
  background: var(--yellow);
  border-radius: var(--radius-md);
  bottom: 25%;
  right: 8%;
  transform: rotate(45deg);
  opacity: 0.2;
}

.shape-dots {
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--burgundy) 2px, transparent 2px);
  background-size: 16px 16px;
  top: 30%;
  right: 25%;
  opacity: 0.3;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--blush-dark);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--burgundy);
  position: relative;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--peach);
  opacity: 0.5;
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 440px;
}

.hero-card-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-card-main-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--burgundy);
  box-shadow: var(--shadow-md);
}

.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.hero-card-float-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.hero-card-float-2 {
  bottom: 25%;
  left: -30px;
  animation-delay: 1.5s;
}

.hero-card-float-3 {
  bottom: 5%;
  right: 10px;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.float-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-stat-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
}

.float-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* --- About --- */
.about {
  position: relative;
  padding: 100px 24px;
  background: var(--cream);
  overflow: hidden;
}

.about-shape-left {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--blush);
  top: -50px;
  left: -100px;
  pointer-events: none;
}

.about-shape-right {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  background: var(--mint);
  opacity: 0.2;
  bottom: 50px;
  right: -50px;
  transform: rotate(30deg);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image-stack {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 340px;
  height: 420px;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 240px;
  height: 280px;
  border: 6px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 2;
}

.accent-badge {
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
  border-radius: var(--radius-md);
}

.feature-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Flavors --- */
.flavors {
  position: relative;
  padding: 100px 24px;
  background: var(--blush);
  overflow: hidden;
}

.flavors-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--burgundy) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.04;
  pointer-events: none;
}

.flavors .container {
  position: relative;
  z-index: 1;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.flavor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.flavor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.flavor-card-visual {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.flavor-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.flavor-card:hover .flavor-card-visual img {
  transform: scale(1.05);
}

.flavor-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flavor-tag-popular {
  background: var(--burgundy);
  color: var(--white);
}

.flavor-tag-new {
  background: var(--mint);
  color: var(--burgundy-dark);
}

.flavor-tag-fun {
  background: var(--yellow);
  color: var(--burgundy-dark);
}

.flavor-card-body {
  padding: 22px;
}

.flavor-name {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.flavor-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.flavors-note {
  font-size: 1rem;
  color: var(--text-mid);
  background: var(--white);
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* --- Services --- */
.services {
  padding: 100px 24px;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.services-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-image-wrap img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.services-overlay-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.badge-icon {
  font-size: 1.3rem;
}

.services-content .section-title {
  margin-bottom: 32px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blush-dark);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.service-info h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.service-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.services-cta .btn {
  padding: 16px 32px;
}

/* --- Gallery --- */
.gallery {
  padding: 100px 24px;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123, 45, 59, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.gallery-item-tall {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 5;
}

.gallery-item {
  grid-column: span 3;
}

/* --- Testimonial --- */
.testimonial {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  overflow: hidden;
}

.testimonial-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.t-shape {
  position: absolute;
  opacity: 0.08;
}

.t-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--white);
  top: -80px;
  left: -80px;
}

.t-circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--peach);
  bottom: -60px;
  right: 5%;
}

.t-dots {
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--white) 2px, transparent 2px);
  background-size: 20px 20px;
  top: 20%;
  right: 15%;
  opacity: 0.15;
}

.testimonial .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.testimonial-quote-icon {
  color: var(--peach);
  margin-bottom: 24px;
  opacity: 0.6;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--peach);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  text-align: left;
}

.author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.author-detail {
  font-size: 0.85rem;
  color: var(--peach);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--blush) 0%, #FFE8E4 100%);
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.c-shape {
  position: absolute;
  opacity: 0.12;
}

.c-circle-1 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--burgundy);
  top: -80px;
  right: -50px;
}

.c-circle-2 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--mint);
  bottom: -40px;
  left: 5%;
}

.c-triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid var(--yellow);
  top: 20%;
  left: 8%;
}

.cta-card {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.cta-accent {
  color: var(--burgundy);
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
  padding: 100px 24px;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  width: 48px;
  height: 48px;
  background: var(--blush);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-detail a:hover {
  color: var(--burgundy);
  text-decoration: underline;
}

.contact-hours {
  background: var(--blush);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.contact-hours strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
}

.contact-hours p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 2px solid var(--blush-dark);
  border-radius: var(--radius-md);
  background: var(--blush);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  background: #E8F5E9;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.success-icon {
  font-size: 2rem;
}

.success-content strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.success-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 80px 24px 0;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-logo-icon {
  font-size: 1.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4,
.footer-newsletter h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--peach);
}

.footer-contact li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-btn-newsletter {
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.btn-btn-newsletter:hover {
  background: var(--burgundy-light);
}

.newsletter-success {
  display: none;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--mint);
}

.newsletter-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--burgundy-dark);
  transform: translateY(-4px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card-main {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-card-main img {
    height: 400px;
  }

  .hero-card-float-1 {
    right: 0;
  }

  .hero-card-float-2 {
    left: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-stack {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-img-main {
    width: 260px;
    height: 320px;
  }

  .about-img-secondary {
    width: 180px;
    height: 210px;
  }

  .flavors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .services-image-wrap img {
    height: 400px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 242, 242, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-card-float {
    display: none;
  }

  .flavors-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item-tall {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item {
    grid-column: span 1;
  }

  .gallery-item img {
    height: 200px;
  }

  .gallery-item-tall img {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-image-stack {
    height: 320px;
  }

  .about-img-main {
    width: 200px;
    height: 260px;
  }

  .about-img-secondary {
    width: 140px;
    height: 170px;
  }
}
