/* ==========================================================================
   Tulips n Tarts - Stylesheet
   --------------------------------------------------------------------------
   Design system for a full-service catering, desserts, floral & custom-cake
   business. Soft & floral base with warm artisanal touches.

   To re-theme the whole site, edit the CSS variables under :root below.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens (edit these to re-brand)
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --blush:        #f4d9d9;   /* soft tulip pink */
  --blush-deep:   #e8b4b8;
  --rose:         #c47b7e;   /* primary accent */
  --rose-dark:    #a85f62;   /* hover / emphasis */
  --cream:        #fbf6f0;   /* page background */
  --cream-warm:   #f6ead9;   /* alt section background */
  --sage:         #8ba888;   /* secondary accent (leaves/stems) */
  --sage-dark:    #5f7d5c;
  --terracotta:   #cc8464;   /* warm artisanal touch */
  --charcoal:     #3a3232;   /* body text */
  --charcoal-soft:#6b5f5f;   /* muted text */
  --white:        #ffffff;
  --gold:         #c9a54e;

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Spacing & layout */
  --container:    1180px;
  --gutter:       clamp(1.25rem, 5vw, 4rem);
  --section-y:    clamp(4rem, 9vw, 7.5rem);
  --radius:       18px;
  --radius-lg:    28px;
  --shadow-sm:    0 6px 18px rgba(58, 50, 50, 0.08);
  --shadow-md:    0 18px 40px rgba(58, 50, 50, 0.12);
  --shadow-lg:    0 30px 70px rgba(58, 50, 50, 0.18);
  --transition:   0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

/* Give the real photos a bit more life (WhatsApp exports look washed out) */
.hero__media img,
.about__media img,
.gallery__item img { filter: saturate(1.14) contrast(1.06); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

p { margin: 0 0 1.1em; }

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

::selection { background: var(--blush-deep); color: var(--charcoal); }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section--cream  { background: var(--cream-warm); }
.section--blush  { background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 100%); }

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--rose);
  vertical-align: middle;
  margin: 0 0.7rem;
  opacity: 0.6;
}

.lead { font-size: 1.15rem; color: var(--charcoal-soft); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.95rem 2rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition);
  will-change: transform;
}

.btn:hover { transform: translateY(-3px); }

.btn--primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--rose-dark); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--rose);
}
.btn--ghost:hover { background: var(--rose); color: var(--white); }

.btn--light {
  background: var(--white);
  color: var(--rose-dark);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover { background: var(--cream); }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background var(--transition), box-shadow var(--transition),
              padding var(--transition);
}
/* Soft cream scrim so the wordmark stays legible over the hero at the very
   top, with no hard bar edge. Fades out once the solid scrolled bar appears. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 200%;
  background: linear-gradient(
    to bottom,
    rgba(251, 246, 240, 0.92) 0%,
    rgba(251, 246, 240, 0.55) 45%,
    rgba(251, 246, 240, 0) 100%
  );
  pointer-events: none;
  z-index: -1;
  transition: opacity var(--transition);
}
.site-header.is-scrolled::before { opacity: 0; }
.site-header.is-scrolled {
  background: rgba(251, 246, 240, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(58, 50, 50, 0.08);
  padding-block: 0.7rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}
/* Logo recreated as the Allura script wordmark (matches the original lettering) */
.brand__badge {
  display: inline-block;
  font-family: "Allura", cursive;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  color: #565250;                  /* logo grey script */
  white-space: nowrap;
  transition: font-size var(--transition);
}
.site-header.is-scrolled .brand__badge { font-size: 34px; }
.brand--footer .brand__badge {
  font-size: 46px;
  color: var(--cream);             /* legible on the dark footer */
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-block: 0.3rem;
  transition: color var(--transition);
}
/* Underline animation applies to text links only, not the CTA button */
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav__links a:not(.nav__cta):hover { color: var(--rose-dark); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__links a.nav__cta { color: var(--white); margin-left: 0.5rem; padding: 0.7rem 1.5rem; }

/* Dim backdrop behind the mobile menu so drawer links never read as
   floating text over the page. Hidden until the menu opens. */
.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(58, 50, 50, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 95;                 /* below header (100) so the drawer sits on top */
}
body.is-menu-open .nav-scrim { opacity: 1; visibility: visible; }
@media (min-width: 721px) { .nav-scrim { display: none; } }

/* The header's backdrop-filter (when scrolled) makes it the containing block
   for the position:fixed drawer, clipping it to the header height. Disable the
   filter while the menu is open so the drawer spans the full viewport. */
body.is-menu-open .site-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Floating "Request a Quote" button — mobile only, appears after the hero */
.quote-fab {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: none;                       /* enabled on mobile below */
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(168, 95, 98, 0.4);
  opacity: 0;
  transform: translate(-50%, 140%);
  transition: transform var(--transition), opacity var(--transition);
}
.quote-fab.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 720px) { .quote-fab { display: inline-flex; } }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background:
    radial-gradient(1200px 600px at 80% -10%, var(--blush) 0%, transparent 55%),
    radial-gradient(900px 500px at -10% 110%, rgba(139, 168, 136, 0.28) 0%, transparent 55%),
    var(--cream);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: 100%;
}

.hero__content { max-width: 560px; }
.hero__title { margin-bottom: 1.2rem; }
.hero__title em { color: var(--rose); font-style: italic; }
.hero__text { font-size: 1.2rem; color: var(--charcoal-soft); max-width: 46ch; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 123, 126, 0.25);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--rose-dark);
  line-height: 1;
}
.hero__stat span { font-size: 0.82rem; color: var(--charcoal-soft); }

/* Hero photos — clean, non-overlapping arrangement */
.hero__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
  aspect-ratio: 1 / 1.05;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;   /* keep the watermark corner in view */
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.hero__media img:nth-child(1) { grid-column: 2; grid-row: 1 / span 2; }  /* tall focal photo */
.hero__media img:nth-child(2) { grid-column: 1; grid-row: 1; }
.hero__media img:nth-child(3) { grid-column: 1; grid-row: 2; }

.hero__scroll {
  position: absolute;
  bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 34px;
  background: var(--rose);
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* --------------------------------------------------------------------------
   6b. Full-bleed editorial banner
   -------------------------------------------------------------------------- */
.banner {
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background-image:
    linear-gradient(rgba(40, 34, 34, 0.28), rgba(40, 34, 34, 0.5)),
    url("../assets/photos/banner.jpg");
  background-size: cover;
  background-position: center bottom;   /* keep the watermark corner in view */
  background-attachment: fixed;   /* subtle parallax on desktop */
}
.banner__overlay { max-width: 720px; padding: var(--gutter); }
.banner__script {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}
.banner__script::before,
.banner__script::after {
  content: "";
  display: inline-block;
  width: 30px; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin: 0 0.8rem;
  opacity: 0.7;
}
.banner__line {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

@media (hover: none), (max-width: 720px) {
  .banner { background-attachment: scroll; min-height: 48vh; }
}

/* --------------------------------------------------------------------------
   7. About
   -------------------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about__media::before {
  content: "";
  position: absolute;
  inset: 0;                       /* same size as the photo */
  transform: translate(16px, 16px); /* offset so it peeks out bottom-right */
  border: 2px solid var(--sage);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__signature {
  font-family: "Allura", cursive;
  font-size: 3rem;
  line-height: 1;
  color: var(--rose);
  margin-top: 1.4rem;
}
.about__brand {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin: 0.35rem 0 0;
}
.about__points {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}
.about__points li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.98rem;
}
.about__points svg { flex: none; margin-top: 3px; color: var(--sage-dark); }

/* --------------------------------------------------------------------------
   8. Services
   -------------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 123, 126, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 130px; height: 130px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card:hover::after { opacity: 0.5; transform: scale(1.3); }
.service-card__icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--blush), var(--cream-warm));
  color: var(--rose-dark);
  margin-bottom: 1.4rem;
  position: relative; z-index: 1;
}
.service-card h3 { margin-bottom: 0.5rem; position: relative; z-index: 1; }
.service-card p { color: var(--charcoal-soft); font-size: 0.95rem; margin-bottom: 0; position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   8b. Menu / signature desserts
   -------------------------------------------------------------------------- */
.menu__grid {
  columns: 2;
  column-gap: 1.6rem;      /* masonry: cards pack tightly, no row-height gaps */
}
.menu-card {
  break-inside: avoid;
  margin-bottom: 1.6rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 123, 126, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card::after {   /* soft decorative blush corner */
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px; height: 140px;
  background: radial-gradient(circle, var(--blush), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.menu-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(196, 123, 126, 0.16);
  position: relative;
  z-index: 1;
}
.menu-card__icon {
  width: 50px; height: 50px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--blush), var(--cream-warm));
  color: var(--rose-dark);
}
.menu-card__head h3 { font-size: 1.4rem; margin: 0; }
.menu-card__desc { font-size: 0.82rem; color: var(--charcoal-soft); margin: 0.15rem 0 0; }
.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
}
.menu-tags li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(196, 123, 126, 0.16);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.menu-card:hover .menu-tags li { border-color: rgba(196, 123, 126, 0.28); }
.menu-tags li:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }
.menu__foot {
  text-align: center;
  max-width: 620px;
  margin: 2.2rem auto 0;
  font-size: 0.98rem;
  color: var(--charcoal-soft);
}
.menu__foot a { color: var(--rose-dark); font-weight: 600; white-space: nowrap; }
.menu__foot a:hover { color: var(--rose); }

@media (max-width: 760px) {
  .menu__grid { columns: 1; }
}

/* --------------------------------------------------------------------------
   9. Gallery
   -------------------------------------------------------------------------- */
/* Pinterest-style masonry - flows naturally with no grid gaps */
/* Horizontal scroll-snap slider: one compact row, swipe on touch,
   arrow buttons on hover devices. */
.gallery__slider { position: relative; }
.gallery__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.4rem 0.2rem 0.8rem;
  scrollbar-width: none;               /* Firefox */
}
.gallery__track::-webkit-scrollbar { display: none; }  /* Safari/Chrome */
.gallery__item {
  flex: 0 0 auto;
  width: clamp(230px, 78vw, 320px);
  height: 380px;
  scroll-snap-align: center;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-sm);
  display: block;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery__item:hover img { transform: scale(1.06); }

/* Prev/next arrows */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--rose-dark);
  box-shadow: var(--shadow-md);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.gallery__arrow:hover { background: var(--rose); color: var(--white); }
.gallery__arrow:active { transform: translateY(-50%) scale(0.94); }
.gallery__arrow--prev { left: -10px; }
.gallery__arrow--next { right: -10px; }
/* Touch devices swipe instead of tapping arrows */
@media (hover: none) { .gallery__arrow { display: none; } }
.gallery__item::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  background: linear-gradient(transparent, rgba(58, 50, 50, 0.7));
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__cta { text-align: center; margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   10. Testimonials
   -------------------------------------------------------------------------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 123, 126, 0.12);
}
.quote-card__stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; }
.quote-card p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
}
.quote-card__author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.4rem; }
.quote-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--blush-deep), var(--sage));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}
.quote-card__name { font-weight: 600; font-size: 0.95rem; }
.quote-card__event { font-size: 0.82rem; color: var(--charcoal-soft); }

/* --------------------------------------------------------------------------
   10b. Booking steps
   -------------------------------------------------------------------------- */
.booking__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}
.booking__step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 123, 126, 0.12);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.booking__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.booking__num {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--rose), var(--rose-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 18px rgba(168, 95, 98, 0.3);
}
.booking__step h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.booking__step p { color: var(--charcoal-soft); font-size: 0.93rem; margin-bottom: 0; }

/* On mobile the steps become a swipeable slider instead of a tall stack */
@media (max-width: 720px) {
  .booking__steps {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.3rem 0.2rem 0.9rem;
    scrollbar-width: none;
  }
  .booking__steps::-webkit-scrollbar { display: none; }
  .booking__step {
    flex: 0 0 auto;
    width: 78%;
    max-width: 300px;
    scroll-snap-align: center;
  }
  .booking__step:hover { transform: none; box-shadow: var(--shadow-sm); }
}
.booking__notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.booking__note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.2rem 1.6rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}
.booking__note--alt { border-left-color: var(--rose); }
.booking__note svg { flex: none; margin-top: 2px; color: var(--sage-dark); }
.booking__note--alt svg { color: var(--rose-dark); }
@media (max-width: 720px) { .booking__notes { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   11. Contact / inquiry
   -------------------------------------------------------------------------- */
/* Single centered column so the form is the clear focus on every screen;
   contact methods sit below it as a subtle, secondary strip. */
.contact__grid {
  max-width: 680px;
  margin-inline: auto;
}
.contact__head { text-align: center; margin-bottom: 2.2rem; }
.contact__head h2 { margin-bottom: 1rem; }
.contact__aside {
  margin-top: 3rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(196, 123, 126, 0.2);
  text-align: center;
}
.contact__aside-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin: 0 0 1.4rem;
}
.contact__methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem 2rem;
}
.contact__method {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  text-align: left;
}
.contact__method-icon {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--white);
  color: var(--rose-dark);
  box-shadow: var(--shadow-sm);
}
.contact__method-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal-soft); }
.contact__method a, .contact__method span { font-weight: 500; font-size: 0.92rem; }
.contact__socials { display: flex; justify-content: center; gap: 0.8rem; margin-top: 1.8rem; }
.contact__socials a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.contact__socials a:hover { transform: translateY(-4px); background: var(--rose); color: var(--white); }

.form {
  background: var(--white);
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  transition: border var(--transition), background var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Build-your-order menu picker */
.menu-pick {
  border: 1px solid rgba(196, 123, 126, 0.22);
  border-radius: 16px;
  padding: 1.3rem 1.3rem 1.5rem;
  margin: 0 0 1.2rem;
  background: var(--cream);
}
/* Render the legend as a normal block heading (float trick) so it never
   drops onto the border / into the cream fill — consistent in Safari & Chrome. */
.menu-pick legend {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}
.menu-pick legend span { color: var(--charcoal-soft); font-weight: 400; }
.menu-pick__hint {
  clear: both;
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  margin: 0 0 1rem;
}
.menu-pick__group { margin-bottom: 1rem; }
.menu-pick__group:last-child { margin-bottom: 0; }
.menu-pick__cat {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 0.55rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chip { display: inline-flex; cursor: pointer; }
.chip input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.chip span {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--white);
  padding: 0.42rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(196, 123, 126, 0.25);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  user-select: none;
}
.chip span::before { content: "+ "; color: var(--rose); font-weight: 700; }
.chip:hover span { border-color: var(--rose); }
.chip input:checked + span {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.chip input:checked + span::before { content: "✓ "; color: var(--white); }
.chip input:focus-visible + span { outline: 2px solid var(--rose-dark); outline-offset: 2px; }

/* "Add your own item" */
.custom-add { display: flex; gap: 0.5rem; margin-bottom: 0.7rem; }
.custom-add__input {
  flex: 1;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(196, 123, 126, 0.35);
  border-radius: 999px;
  background: var(--white);
  font: inherit;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.custom-add__input:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(196, 123, 126, 0.15); }
.custom-add__btn {
  flex: none;
  padding: 0.55rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition);
}
.custom-add__btn:hover { background: var(--rose-dark); }
/* custom chips are removable (click to delete) */
.chip--custom span { background: var(--rose); color: var(--white); border-color: var(--rose); cursor: pointer; }
.chip--custom input:checked + span::before { content: none; }   /* no redundant check */
.chip--custom span::after { content: " ✕"; opacity: 0.85; font-size: 0.85em; }

.form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form__note { font-size: 0.8rem; color: var(--charcoal-soft); text-align: center; margin: 1rem 0 0; }
.form__status { text-align: center; font-size: 0.92rem; margin-top: 1rem; min-height: 1.2em; }
.form__status.is-success { color: var(--sage-dark); font-weight: 600; }
.form__status.is-error { color: var(--rose-dark); font-weight: 600; }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--charcoal);
  color: rgba(251, 246, 240, 0.75);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 246, 240, 0.12);
}
.footer .brand { color: var(--cream); margin-bottom: 1rem; }
.footer h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer__links { display: grid; gap: 0.7rem; }
.footer__links a { font-size: 0.92rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--blush); }
.footer__about { max-width: 34ch; font-size: 0.92rem; }
.footer__socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer__socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 240, 0.2);
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.footer__socials a:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   13. Scroll-reveal animation
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
  *,*::before,*::after { transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 640px; margin-inline: auto; }
  .hero__text { margin-inline: auto; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__media { max-width: 480px; margin: 1rem auto 0; order: -1; }
  .hero__scroll { display: none; }   /* decorative only; overlaps stats when stacked */
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 360px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;              /* links fill the panel width */
    gap: 0.35rem;
    padding: 5rem 1.4rem 2rem;
    background: var(--cream);
    box-shadow: -10px 0 40px rgba(58, 50, 50, 0.15);
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav__links.is-open { transform: translateX(0); }
  /* Full-width, centered, tall rows so the whole row is tappable */
  .nav__links a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    transition: background var(--transition), color var(--transition);
  }
  .nav__links a:not(.nav__cta)::after { display: none; }   /* no underline in drawer */
  .nav__links a:not(.nav__cta):hover,
  .nav__links a:not(.nav__cta):active { background: rgba(196, 123, 126, 0.12); }
  .nav__links a.nav__cta { margin: 0.9rem 0 0; padding: 1rem; }
  /* position + z-index so the close (X) stays above the fixed drawer */
  .nav__toggle { display: flex; position: relative; z-index: 103; }
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 1.5rem; }
  /* Stack contact methods in a left-aligned, centered block so the icons line up */
  .contact__methods {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    max-width: 320px;
    margin-inline: auto;
  }
  .contact__method { width: 100%; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
