/* ===========================================
   WHISK & TIMBER | Artisan Bakery
   A premium, warm, light-mode design
   =========================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --cream:        #f6efe4;
  --cream-soft:   #fbf6ec;
  --ivory:        #fffdf8;
  --paper:        #efe6d5;
  --espresso:     #2b1d14;
  --cocoa:        #3e2a1e;
  --walnut:       #5a4132;
  --taupe:        #8a7564;
  --terracotta:   #b8623a;
  --terracotta-d: #94492a;
  --sage:         #6b7a5a;
  --gold:         #b88a3d;
  --line:         #d9cab0;
  --line-soft:    #e8dcc4;

  /* Type */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script:  'Parisienne', cursive;

  /* Spacing + radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Shadows */
  --shadow-soft: 0 10px 30px -15px rgba(43, 29, 20, 0.25);
  --shadow-lift: 0 30px 60px -30px rgba(43, 29, 20, 0.35);

  --container: 1240px;
  --nav-h: 82px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--cocoa);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 120px 0; position: relative; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "opsz" 90, "SOFT" 50;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2.display { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; margin: 0 0 8px; color: var(--espresso); letter-spacing: -0.005em; }
h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin: 0 0 6px; color: var(--espresso); }
h5 { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; margin: 0 0 14px; color: var(--espresso); text-transform: uppercase; letter-spacing: 0.14em; }

p { margin: 0 0 18px; color: var(--walnut); max-width: 58ch; }

.italic { font-style: italic; font-weight: 400; color: var(--terracotta); }
.script { font-family: var(--font-script); font-weight: 400; font-size: 1.05em; color: var(--terracotta); letter-spacing: 0; display: inline-block; transform: translateY(8px); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--terracotta);
  margin: 0 0 18px;
  position: relative;
  display: inline-block;
  padding-left: 44px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--terracotta);
}

.light { color: var(--ivory) !important; }
.light.eyebrow { color: var(--cream); }
.light.eyebrow::before { background: var(--cream); }
.light.display { color: var(--ivory); }
.light.italic, .light .italic { color: #f3c9a5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid var(--espresso);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--terracotta);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
}
.btn-ghost.light {
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn-ghost:hover {
  background: var(--espresso);
  color: var(--cream);
}
.btn-ghost.light:hover {
  background: var(--ivory);
  color: var(--espresso);
}

.btn-full { width: 100%; padding: 16px 28px; }

/* ===========================================
   NAVIGATION
   =========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid var(--line-soft);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px -10px rgba(43, 29, 20, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--espresso);
}

.brand-logo {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: relative;
  flex-shrink: 0;
}
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
}

.brand-text { display: flex; flex-direction: column; line-height: 1; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.005em;
}
.brand-name .amp { font-style: italic; color: var(--terracotta); font-weight: 400; padding: 0 0.05em; }

.brand-tag {
  font-family: var(--font-body);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-top: 4px;
  opacity: 0.8;
}

.primary-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
.primary-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--espresso);
  position: relative;
  transition: color 0.2s ease;
  padding: 8px 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.primary-nav a:hover::after { width: 100%; }

/* Active page indicator */
.primary-nav a.is-active {
  color: var(--terracotta);
  font-weight: 600;
}
.primary-nav a.is-active::after {
  width: 100%;
  background: var(--terracotta);
  height: 1.5px;
}

.nav-cta { flex-shrink: 0; padding: 12px 22px; font-size: 0.75rem; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 28px;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--espresso);
  transition: color 0.2s ease;
}
.mobile-menu a.is-active {
  color: var(--terracotta);
  font-style: italic;
}
.mobile-menu a.btn { font-family: var(--font-body); font-size: 0.8rem; margin-top: 8px; font-style: normal; color: var(--cream); }
.mobile-menu a.btn.is-active { color: var(--cream); }

/* ===========================================
   HERO (Home page)
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--cocoa);
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43,29,20,0.45) 0%, rgba(43,29,20,0.55) 50%, rgba(43,29,20,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1s ease-out 0.2s backwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  margin-bottom: 28px;
  color: var(--ivory);
}
.hero .script { color: #f3c9a5; }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 253, 248, 0.88);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.hero-ornament {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 253, 248, 0.5);
  z-index: 2;
}
.hero-ornament svg { width: 18px; height: 18px; }
.ornament-line {
  width: 56px;
  height: 1px;
  background: currentColor;
}

/* ===========================================
   PAGE HEADER (Interior pages)
   =========================================== */
.page-header {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  color: var(--ivory);
}
.page-header.short {
  min-height: 340px;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--cocoa);
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,29,20,0.75) 0%, rgba(43,29,20,0.6) 100%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: fadeUp 0.9s ease-out 0.15s backwards;
}
.page-header-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

/* ===========================================
   MARQUEE
   =========================================== */
.marquee {
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid var(--cocoa);
  border-bottom: 1px solid var(--cocoa);
  padding: 22px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
}
.marquee-track .dot { color: var(--terracotta); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about-teaser,
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image .frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.about-image .frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 253, 248, 0.4);
  z-index: 2;
  pointer-events: none;
}
.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about-image .badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: var(--terracotta);
  color: var(--ivory);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lift);
  border: 3px solid var(--cream);
  font-family: var(--font-display);
}
.badge-num { font-size: 2.5rem; font-weight: 600; line-height: 1; }
.badge-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
}

.about-copy .btn { margin-top: 12px; }

.feature-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--cocoa);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.feature-list li:last-child { border-bottom: none; }
.tick {
  color: var(--terracotta);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===========================================
   QUALITY / INGREDIENTS
   =========================================== */
.quality {
  min-height: 520px;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
  padding: 140px 0;
}
.quality-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--sage);
}
.quality-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(43, 29, 20, 0.8) 0%, rgba(43, 29, 20, 0.5) 60%, rgba(43, 29, 20, 0.3) 100%);
}
.quality-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.quality-content p {
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.1rem;
}

/* ===========================================
   PRODUCTS
   =========================================== */
.products {
  background: var(--cream-soft);
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }
.section-head p:not(.eyebrow) {
  margin: 0 auto;
  color: var(--walnut);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--terracotta);
  margin-top: 28px;
}
.ornament span {
  width: 60px;
  height: 1px;
  background: var(--line);
}
.ornament svg { width: 16px; height: 16px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.4s ease;
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--line);
}
.product-card:hover::before { border-color: rgba(255, 253, 248, 0.8); }

.product-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--paper);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.4, 0, .2, 1);
}
.product-card:hover .product-image img { transform: scale(1.06); }

.product-body {
  padding: 24px 24px 28px;
}
.product-body p {
  font-size: 0.9rem;
  color: var(--taupe);
  margin: 0;
  line-height: 1.55;
}

/* ===========================================
   CAROUSEL
   =========================================== */
.carousel-section {
  background: var(--cream);
  padding-bottom: 80px;
}
.carousel-section .section-head { margin-bottom: 60px; }

.carousel {
  position: relative;
  max-width: 100%;
  padding: 0 60px;
}

.carousel-viewport {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.7s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc((100% - 56px) / 3);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border: 1px solid var(--line-soft);
}
.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  pointer-events: none;
  z-index: 2;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.carousel-slide:hover img { transform: scale(1.04); }

.slide-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ivory);
  background: linear-gradient(to top, rgba(43, 29, 20, 0.85), transparent);
  z-index: 3;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--espresso);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.carousel-btn:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dots button.active {
  background: var(--terracotta);
  transform: scale(1.4);
}

.carousel-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===========================================
   CATERING
   =========================================== */
.catering,
.catering-teaser { background: var(--cream-soft); }

.catering-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 90px;
  align-items: center;
}

.catering-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  margin: 36px 0 44px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.catering-item p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--taupe);
}

.catering-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3rem;
  color: var(--espresso);
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--taupe);
  margin-top: 4px;
}

.catering-image .frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}
.catering-image .frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 253, 248, 0.4);
  z-index: 2;
  pointer-events: none;
}
.catering-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

/* ===========================================
   SERVICE AREA
   =========================================== */
.service-area {
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
  padding: 140px 0;
}
.service-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--cocoa);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 29, 20, 0.85) 0%, rgba(43, 29, 20, 0.7) 100%);
}
.service-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 24px;
  margin: 32px 0 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.25);
  border-bottom: 1px solid rgba(255, 253, 248, 0.25);
}
.city-list li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: #f3c9a5;
}

.small { font-size: 0.9rem; opacity: 0.8; }

/* ===========================================
   CTA STRIP
   =========================================== */
.cta-strip {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--ivory);
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--cocoa);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,29,20,0.85) 0%, rgba(43,29,20,0.7) 100%);
}
.cta-strip .cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.cta-strip.simple {
  background: var(--cream);
  color: var(--cocoa);
  padding: 100px 0;
}
.cta-strip.simple .cta-bg,
.cta-strip.simple .cta-overlay { display: none; }

.cta-content .eyebrow { padding-left: 0; }
.cta-content .eyebrow::before { display: none; }
.cta-content p { margin-left: auto; margin-right: auto; margin-bottom: 32px; }

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ===========================================
   CONTACT
   =========================================== */
.contact { background: var(--cream); }

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

.contact-details {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-block { display: flex; flex-direction: column; }
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--espresso);
  transition: color 0.2s ease;
}
a.contact-value:hover { color: var(--terracotta); }
.contact-sub {
  font-size: 0.85rem;
  color: var(--taupe);
  margin-top: 2px;
}

.contact-form-wrap {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 44px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}

.contact-form { position: relative; z-index: 1; }

.field { margin-bottom: 20px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--walnut);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--espresso);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(184, 98, 58, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }

.form-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  text-align: center;
}
.form-note.success { color: var(--sage); }
.form-note.error { color: var(--terracotta-d); }

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 90px 0 60px;
}

.footer-brand .brand-name {
  font-size: 2rem;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}
.footer-brand .amp { color: #f3c9a5; }
.footer-tag {
  color: rgba(246, 239, 228, 0.6);
  font-size: 0.88rem;
  margin: 0;
  letter-spacing: 0.02em;
}

.footer-col p {
  color: rgba(246, 239, 228, 0.7);
  font-size: 0.92rem;
  margin: 0 0 8px;
}
.footer-col a { color: var(--cream); transition: color 0.2s ease; }
.footer-col a:hover { color: #f3c9a5; }

.footer-col h5 {
  color: var(--cream);
  border-bottom: 1px solid rgba(246, 239, 228, 0.15);
  padding-bottom: 12px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.92rem;
  color: rgba(246, 239, 228, 0.7);
}
.footer-links a:hover { color: var(--cream); }

.footer-base {
  border-top: 1px solid rgba(246, 239, 228, 0.12);
  padding: 24px 0;
}
.footer-base .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-base p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(246, 239, 228, 0.5);
}
.credit { font-family: var(--font-display); font-style: italic; }

/* ===========================================
   REVEAL ANIMATIONS
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.4, 0, .2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .about-grid,
  .catering-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-image img,
  .catering-image img {
    height: 520px;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .carousel-slide { flex: 0 0 calc((100% - 28px) / 2); }
  .city-list { grid-template-columns: repeat(3, 1fr); }
  .cta-strip { padding: 90px 0; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .container { padding: 0 20px; }

  .primary-nav,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 20px); }
  .hero-sub { font-size: 1rem; }
  .hero-actions .btn { flex: 1; min-width: 0; font-size: 0.72rem; padding: 14px 16px; }

  .page-header { min-height: 320px; padding: calc(var(--nav-h) + 40px) 0 50px; }
  .page-header.short { min-height: 260px; }

  .about-image img,
  .catering-image img { height: 420px; }
  .about-image .badge { width: 110px; height: 110px; right: -15px; bottom: -20px; }
  .badge-num { font-size: 1.8rem; }
  .badge-label { font-size: 0.6rem; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-image { height: 150px; }
  .product-body { padding: 16px 14px 18px; }
  .product-body h3 { font-size: 1.05rem; }
  .product-body p { font-size: 0.82rem; line-height: 1.45; }

  .catering-grid-inner { grid-template-columns: 1fr; }
  .catering-cta { flex-direction: column; align-items: flex-start; }

  .carousel { padding: 0 44px; }
  .carousel-slide { flex: 0 0 100%; }
  .carousel-btn { width: 40px; height: 40px; }

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

  .field-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 0 40px; }
  .footer-base .container { flex-direction: column; align-items: flex-start; }

  .marquee-track { font-size: 1rem; gap: 36px; animation-duration: 15s; }

  .cta-strip { padding: 70px 0; }
  .cta-actions .btn { width: 100%; }
}
