/* ==========================================================================
   A&A Hospitality — Premium Catering & Events
   Design system + responsive styles (no framework, no build step)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ivory:        #f4efe6;   /* warm off-white page background */
  --ivory-soft:   #efe8db;   /* alternating section tint */
  --charcoal:     #17130f;   /* near-black dark sections */
  --charcoal-2:   #211c17;   /* raised surfaces on dark */
  --ink:          #2c2721;   /* primary text on light */
  --ink-soft:     #6d6459;   /* secondary text on light */
  --cream:        #ece5d8;   /* primary text on dark */
  --cream-soft:   #b6ab99;   /* secondary text on dark */
  --gold:         #b08d4f;   /* muted olive-gold accent */
  --gold-bright:  #c8a86a;   /* hover / highlight gold */
  --line:         #d8cebd;   /* hairline dividers on light */
  --line-dark:    #ffffff1f; /* hairline dividers on dark */

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1480px;        /* all sections share the hero/header width */
  --container-wide: 1480px;   /* header + hero */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3 { margin: 0; font-weight: 500; }

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

button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--charcoal); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  color: var(--ink);
}
.section-title--center { text-align: center; }

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

.rule {
  display: block;
  width: 54px; height: 1px;
  background: var(--gold);
  margin: 1.4rem 0 1.6rem;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.link-arrow:hover { color: var(--gold); gap: 0.7rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--gold   { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-bright); }
.btn--outline { border-color: var(--line-dark); color: var(--cream); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn--ghost { color: var(--cream); border-color: transparent; padding-inline: 0.4rem; }
.btn--ghost:hover { color: var(--gold-bright); }
.btn--block { width: 100%; justify-content: center; padding-block: 1rem; }

/* ---------- Brand ---------- */
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__logo { height: 52px; width: auto; display: block; }
.brand__name {
  font-family: var(--serif); font-size: 1.75rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--cream);
}
.brand__sep { color: var(--gold); font-weight: 300; margin: 0 0.1em; }
.brand__sub {
  font-size: 0.6rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--cream-soft); margin-top: 3px;
}
.brand--light .brand__name { color: var(--cream); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(20, 16, 12, 0.9);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-dark);
}
.header__inner {
  max-width: var(--container-wide);
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
/* Desktop: 3-column grid so the nav is perfectly centered
   regardless of logo / CTA widths. Mobile keeps the flex layout below. */
@media (min-width: 861px) {
  .header__inner { display: grid; grid-template-columns: 1fr auto 1fr; }
  .header__inner .nav { justify-self: center; }
  .header__cta { justify-self: end; margin-left: 0; }
}
.nav__menu {
  display: flex; align-items: center; gap: 2rem;
}
.nav__menu > li > a {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; color: var(--cream);
  padding: 0.3rem 0; position: relative;
  transition: color 0.2s var(--ease);
}
.nav__menu > li > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav__menu > li > a:hover { color: var(--gold-bright); }
.nav__menu > li > a:hover::after { width: 100%; }
.nav__cta-mobile { display: none; }
.header__cta { margin-left: 1rem; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  position: relative; z-index: 120;
}
.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: ""; position: absolute; left: 10px;
  width: 24px; height: 1.5px; background: var(--cream);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle-bar { top: 21px; }
.nav__toggle-bar::before { top: -7px; }
.nav__toggle-bar::after  { top: 7px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after  { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
/* --- DESKTOP hero: text left (aligned under logo), image right --- */
.hero {
  position: relative; overflow: hidden;
  background: var(--charcoal);
  display: flex; align-items: center;
  min-height: clamp(460px, 60vh, 700px);
}
.hero__media { position: absolute; inset: 0 0 0 auto; width: 60%; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--charcoal) 0%, rgba(23,19,15,0.82) 24%, rgba(23,19,15,0.22) 58%, rgba(23,19,15,0) 82%),
    linear-gradient(0deg, rgba(23,19,15,0.45), rgba(23,19,15,0) 42%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--container-wide); padding-block: 7.2rem 3.06rem; }
.hero__content { max-width: 43rem; }
.hero__title {
  font-family: var(--serif); font-weight: 500;
  color: var(--cream);
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.03; letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}
.hero__sub {
  color: var(--cream-soft); max-width: 41rem;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  margin-bottom: 2.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ==========================================================================
   VALUES
   ========================================================================== */
.values { background: var(--ivory); padding-block: clamp(0.8rem, 1.35vw, 1.25rem); }
.values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.feature {
  text-align: center;
  padding: 0.5rem clamp(0.75rem, 2vw, 1.5rem);
  border-left: 1px solid var(--line);
}
.feature:first-child { border-left: 0; }
.feature__icon {
  display: inline-flex; color: var(--gold);
  margin-bottom: 1.1rem;
}
.feature__icon svg { width: 34px; height: 34px; }
.feature__title {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.7rem; line-height: 1.4;
}
.feature__text { font-size: 0.86rem; color: var(--ink-soft); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--ivory); padding-block: clamp(2.75rem, 5vw, 4.25rem); }
.about .container { max-width: 1200px; }   /* keep About narrower than the other sections */
.about__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.about__text { color: var(--ink-soft); max-width: 32rem; margin-bottom: 1.8rem; font-size: 1.02rem; }
.about__media picture { display: block; }
.about__media img {
  width: 100%; height: auto; max-height: 560px; object-fit: cover;
  border-radius: var(--radius);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--ivory); padding-block: clamp(4rem, 8vw, 6.5rem); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.service-card {
  display: flex; flex-direction: column;
}
.service-card__media {
  overflow: hidden; border-radius: var(--radius); margin-bottom: 1.2rem;
  aspect-ratio: 4 / 3;
}
.service-card__media picture { display: block; width: 100%; height: 100%; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__title {
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.5rem;
}
.service-card__text { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1rem; }
.service-card .link-arrow { margin-top: auto; color: var(--gold); align-self: flex-start; }

/* ==========================================================================
   EXPERIENCES (dark)
   ========================================================================== */
.experiences { background: var(--charcoal); color: var(--cream); padding-block: clamp(4rem, 8vw, 6.5rem); }
.experiences__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.experiences .section-title { color: var(--cream); }
.experiences__media picture { display: block; }
.experiences__media img {
  width: 100%; height: auto; max-height: 520px; object-fit: cover;
  border-radius: var(--radius);
}
.experiences__text { color: var(--cream-soft); margin-bottom: 1.6rem; max-width: 32rem; }
.experiences__list { margin-bottom: 1.8rem; }
.experiences__list li {
  position: relative; padding-left: 1.6rem; margin-bottom: 0.7rem;
  color: var(--cream); font-size: 0.95rem;
}
.experiences__list li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px; border: 1px solid var(--gold); transform: rotate(45deg);
}
.experiences .link-arrow { color: var(--cream); }
.experiences .link-arrow:hover { color: var(--gold-bright); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { background: var(--ivory-soft); padding-block: clamp(4rem, 8vw, 6.5rem); }
.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 0.5rem; text-align: center; }
.step:not(:last-child)::after {
  content: "→"; position: absolute; top: 1.6rem; right: -1rem;
  color: var(--gold); font-size: 1.1rem;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border: 1px solid var(--gold);
  border-radius: 50%; color: var(--gold);
  font-family: var(--serif); font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.step__title {
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.6rem;
}
.step__text { color: var(--ink-soft); font-size: 0.9rem; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { background: var(--ivory); padding-block: clamp(4rem, 8vw, 6.5rem); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery__item {
  margin: 0; overflow: hidden; border-radius: var(--radius);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ==========================================================================
   CONTACT (dark)
   ========================================================================== */
.contact { background: var(--charcoal); color: var(--cream); padding-block: clamp(2.75rem, 5vw, 4.25rem); }
.contact__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.contact .section-title { color: var(--cream); }
.contact__details { margin-top: 2rem; }
.contact__details li {
  display: flex; align-items: center; gap: 0.9rem;
  margin-bottom: 1rem; color: var(--cream);
}
.contact__details a:hover { color: var(--gold-bright); }
.contact__ic {
  display: inline-flex; color: var(--gold);
  width: 22px; height: 22px; flex: 0 0 auto;
}
.contact__ic svg { width: 22px; height: 22px; }

/* Form */
.quote-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.2rem;
}
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream-soft); margin-bottom: 0.5rem; font-weight: 500;
}
.field .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--charcoal-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 0.8rem 0.95rem;
  font-family: var(--sans); font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: #7d7365; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 79, 0.18);
}
.field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23b6ab99' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.4rem;
}
/* date picker icon visible on dark */
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.7) sepia(1) saturate(2) hue-rotate(5deg); cursor: pointer; }

.field--error input,
.field--error select,
.field--error textarea { border-color: #d98b6a; }
.field__error {
  margin: 0.4rem 0 0; min-height: 0;
  font-size: 0.78rem; color: #e5a488;
}
.field--error .field__error { min-height: 1rem; }

.form__submit { margin-top: 0.5rem; }
.form__status {
  margin: 1rem 0 0; font-size: 0.9rem; color: var(--cream-soft);
}
.form__status.is-success { color: var(--gold-bright); }
.form__status.is-error { color: #e5a488; }

/* Success panel replaces form */
.form-success {
  grid-column: 1 / -1; text-align: center;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--charcoal-2);
}
.form-success__icon {
  width: 56px; height: 56px; margin: 0 auto 1.2rem;
  border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
}
.form-success__icon svg { width: 26px; height: 26px; }
.form-success h3 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.6rem;
}
.form-success p { color: var(--cream-soft); max-width: 30rem; margin: 0 auto; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #100d0a; color: var(--cream-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark);
}
.footer__addr { margin: 1.2rem 0 1rem; font-size: 0.9rem; }
.footer__contact li { margin-bottom: 0.35rem; }
.footer__contact a:hover { color: var(--gold-bright); }
.footer__heading {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); font-weight: 600; margin-bottom: 1.1rem;
}
.footer__nav a, .footer__social a { transition: color 0.2s var(--ease); }
.footer__nav li { margin-bottom: 0.55rem; }
.footer__nav a:hover { color: var(--gold-bright); }
.social { display: flex; gap: 0.8rem; }
.social a {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-dark); border-radius: 50%;
  color: var(--cream-soft);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.social svg { width: 20px; height: 20px; }
.social a:hover { color: var(--gold-bright); border-color: var(--gold); }
.footer__bar {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 1.5rem; font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet & below */
@media (max-width: 980px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .feature:nth-child(2n+1) { border-left: 0; }
  .feature:nth-child(-n+2) { padding-bottom: 2rem; border-bottom: 1px solid var(--line); }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .about__media img { max-height: 420px; }

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

  .experiences__grid { grid-template-columns: 1fr; }
  .experiences__media { order: -1; }

  .process__grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .step:nth-child(2)::after { display: none; }

  .contact__grid { grid-template-columns: 1fr; }
}

/* Mobile nav breakpoint */
@media (max-width: 860px) {
  .header__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto;
    width: min(84vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0.25rem;
    background: var(--charcoal);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.32s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu > li { width: 100%; }
  .nav__menu > li > a {
    display: block; width: 100%;
    padding: 1rem 0; font-size: 0.9rem;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav__menu > li > a::after { display: none; }
  .nav__cta-mobile { display: block; margin-top: 1.5rem; }
  .nav__cta-mobile a { width: 100%; justify-content: center; }
  body.nav-open { overflow: hidden; }

  /* MOBILE hero: image becomes a full backdrop behind left-aligned text */
  .hero { min-height: clamp(540px, 82vh, 700px); }
  .hero__media { width: 100%; }
  .hero__scrim {
    background:
      linear-gradient(90deg, rgba(23,19,15,0.9) 0%, rgba(23,19,15,0.72) 55%, rgba(23,19,15,0.5) 100%),
      linear-gradient(0deg, rgba(23,19,15,0.6), rgba(23,19,15,0.12) 55%);
  }
  .hero__content { max-width: 100%; }
}

/* Small mobile */
@media (max-width: 620px) {
  .values__grid { grid-template-columns: 1fr 1fr; }
  .feature { border-left: 0 !important; padding: 0 0.5rem; }
  .feature:nth-child(odd) { border-right: 1px solid var(--line); }
  .feature:nth-child(-n+2) { padding-bottom: 1.75rem; border-bottom: 1px solid var(--line); }
  .feature:nth-child(n+3) { padding-top: 1.75rem; }

  .services__grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
  .process__grid { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .step { text-align: left; display: grid; grid-template-columns: 58px 1fr; column-gap: 1.2rem; align-items: center; }
  .step__num { margin-bottom: 0; grid-row: span 2; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .quote-form { grid-template-columns: 1fr; }
  .hero__inner { padding-block: 7rem 3rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
}

/* ==========================================================================
   ADDITIONS — Signature Experiences, Menus, FAQ, mobile CTA, form extras
   ========================================================================== */

.section-lead {
  margin: 1rem auto 0; max-width: 40rem;
  color: var(--ink-soft); font-size: 1.02rem;
}

/* ---- Signature Experiences ---- */
.signature { background: var(--ivory-soft); padding-block: clamp(2.25rem, 4vw, 3.5rem); }
.signature__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.sig-card {
  display: flex; flex-direction: column;
  background: var(--charcoal-2); border: 1px solid var(--line-dark);
  border-radius: var(--radius); overflow: hidden;
}
.sig-card__media { aspect-ratio: 16 / 9; overflow: hidden; }
.sig-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sig-card__body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.sig-card__title {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.1; margin-bottom: 0.35rem; color: var(--cream);
}
.sig-card__text { color: var(--cream-soft); font-size: 0.86rem; line-height: 1.5; margin-bottom: 0.7rem; }
.sig-card__list { margin-bottom: 0.85rem; }
.sig-card__list li {
  position: relative; padding-left: 1.2rem; margin-bottom: 0.3rem;
  font-size: 0.82rem; line-height: 1.45; color: var(--cream);
}
.sig-card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 6px; height: 6px; border: 1px solid var(--gold); transform: rotate(45deg);
}
.sig-card .link-arrow { margin-top: auto; color: var(--cream); align-self: flex-start; }
.sig-card .link-arrow:hover { color: var(--gold-bright); }

/* ---- Menus ---- */
.menus { background: var(--ivory); padding-block: clamp(4rem, 8vw, 6.5rem); }
.menus__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.menu-card {
  background: var(--ivory-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column; scroll-margin-top: 100px;
}
.menu-card__title {
  font-family: var(--serif); font-weight: 500; font-size: 1.4rem;
  line-height: 1.15; margin-bottom: 1rem; color: var(--ink);
}
.menu-card__list { margin-bottom: 1.2rem; flex: 1; }
.menu-card__list li {
  position: relative; padding-left: 1.1rem; margin-bottom: 0.5rem;
  font-size: 0.9rem; color: var(--ink-soft);
}
.menu-card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.menu-card__price {
  margin: 0; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: 0.85rem; letter-spacing: 0.04em; color: var(--ink);
}
.menu-card__price strong { color: var(--gold); font-weight: 600; }
.menus__diet {
  margin: 2rem 0 0.4rem; color: var(--ink); font-size: 0.95rem; text-align: center;
}
.menus__note {
  margin: 0 auto; max-width: 46rem; text-align: center;
  color: var(--ink-soft); font-size: 0.82rem;
}
.menus__note code { background: rgba(0,0,0,0.05); padding: 0.05em 0.35em; border-radius: 3px; }
.menus__cta { text-align: center; margin-top: 2rem; }

/* ---- Branded feature: caption for conceptual image ---- */
.experiences__media { margin: 0; }
.experiences__caption {
  margin-top: 0.7rem; font-size: 0.75rem; color: var(--cream-soft);
  letter-spacing: 0.02em;
}

/* ---- FAQ ---- */
.faq { background: var(--ivory); padding-block: clamp(4rem, 8vw, 6.5rem); }
.faq__inner { max-width: 820px; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
  font-family: var(--serif); font-size: 1.25rem; color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 0.3rem; top: 1.55rem;
  width: 12px; height: 12px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg); transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item summary:hover { color: var(--gold); }
.faq__answer { padding: 0 2.5rem 1.4rem 0; }
.faq__answer p { margin: 0; color: var(--ink-soft); }

/* ---- Quote form: honeypot, optional label, consent ---- */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field .opt { color: var(--cream-soft); font-weight: 400; text-transform: none; letter-spacing: 0.02em; }
.form__consent { margin: 0.9rem 0 0; font-size: 0.78rem; color: var(--cream-soft); }
.form__consent a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }
.contact__lead { color: var(--cream-soft); max-width: 30rem; margin: 0 0 0.5rem; }

/* ---- Sticky mobile CTA ---- */
.mobile-cta { display: none; }
.mobile-cta[hidden] { display: none !important; }

/* ---- Footer: 4 columns ---- */
.footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
.footer__cta { margin-top: 1.4rem; }

/* ---- Responsive for the additions ---- */
@media (max-width: 980px) {
  .signature__grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .menus__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .menus__grid { grid-template-columns: 1fr; }
  .faq__item summary { font-size: 1.1rem; }
  .footer__grid { grid-template-columns: 1fr; }
  /* Sticky mobile CTA appears only on small screens */
  .mobile-cta:not([hidden]) {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(20, 16, 12, 0.92); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line-dark);
  }
  .mobile-cta .btn { padding-block: 0.9rem; }
}

/* ---- Legal / Privacy page ---- */
.legal { padding-top: 124px; padding-bottom: clamp(3rem, 6vw, 5rem); background: var(--ivory); }
.legal__inner { max-width: 780px; }
.legal .section-title { text-align: left; }
.legal__meta { color: var(--ink-soft); font-size: 0.85rem; margin: 0.5rem 0 2rem; }
.legal h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; margin: 2rem 0 0.6rem; color: var(--ink); }
.legal p { color: var(--ink-soft); margin: 0 0 1rem; }
.legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal a.link-arrow { text-decoration: none; }
.legal__list { margin: 0 0 1rem; }
.legal__list li { position: relative; padding-left: 1.2rem; margin-bottom: 0.5rem; color: var(--ink-soft); }
.legal__list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.legal__note { font-size: 0.82rem; border-top: 1px solid var(--line); padding-top: 1.2rem; margin-top: 2rem; }

/* ==========================================================================
   RESTRUCTURE v3 — intro, pillars, explore bento, editorial rows, timeline
   ========================================================================== */

/* ---- Intro / positioning (pillars only, full-width, tight padding) ---- */
.intro { background: #e9e1d2; padding-block: clamp(0.7rem, 1.5vw, 1.15rem); }
.intro .container { max-width: none; padding-inline: clamp(1rem, 3vw, 3rem); }

/* ---- Four pillars (larger, readable) ---- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.75rem, 1.6vw, 1.4rem); }
.pillar { text-align: center; padding: 0 clamp(0.25rem, 0.8vw, 0.5rem); }
.pillar__icon { display: inline-flex; color: var(--gold); margin-bottom: 0.3rem; }
.pillar__icon svg { width: 38px; height: 38px; }
.pillar__title { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.01em; margin-bottom: 0.2rem; color: var(--ink); }
.pillar__text { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.45; }

/* ---- Explore bento ---- */
.explore { background: var(--ivory-soft); padding-block: clamp(4rem, 7vw, 6rem); }
.explore__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 235px; gap: clamp(0.9rem, 1.8vw, 1.25rem); }
.exp-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: flex; align-items: flex-end; text-decoration: none; color: var(--cream);
  min-height: 230px;
}
.exp-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.exp-card:hover > img { transform: scale(1.05); }
.exp-card__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,12,9,0.9) 0%, rgba(15,12,9,0.35) 45%, rgba(15,12,9,0.05) 100%); }
.exp-card__body { position: relative; z-index: 1; padding: clamp(1.1rem, 2vw, 1.6rem); }
.exp-card__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1.1; margin-bottom: 0.4rem; }
.exp-card__text { color: var(--cream-soft); font-size: 0.9rem; max-width: 34rem; margin-bottom: 0.7rem; }
.exp-card__cta { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--gold-bright); display: inline-flex; gap: 0.4rem; }
.exp-card:hover .exp-card__cta { color: #fff; }
.exp-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.exp-card--lg { grid-column: span 2; grid-row: span 2; }

/* ---- Editorial alternating rows (signature + menus) ---- */
.signature { background: var(--charcoal); padding-block: clamp(4rem, 7vw, 6rem); }
.signature .section-title { color: var(--cream); }
.signature .section-lead { color: var(--cream-soft); }
.menus { background: var(--ivory-soft); padding-block: clamp(2.25rem, 4vw, 3.5rem); }
.erows { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.erow { display: flex; flex-direction: column; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; scroll-margin-top: 100px; }
.erow__media { overflow: hidden; aspect-ratio: 16 / 9; }
.erow__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.erow:hover .erow__media img { transform: scale(1.03); }
.erow__body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.erow__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.25rem, 1.6vw, 1.5rem); line-height: 1.12; margin-bottom: 0.35rem; color: var(--ink); }
.erow__text { color: var(--ink-soft); margin-bottom: 0.7rem; font-size: 0.86rem; line-height: 1.5; }
.erow__list { display: grid; grid-template-columns: 1fr; gap: 0.2rem; margin-bottom: 0.85rem; }
.erow__list li { position: relative; padding-left: 1rem; font-size: 0.82rem; line-height: 1.45; color: var(--ink); }
.erow__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.erow .link-arrow { color: var(--gold); margin-top: auto; align-self: flex-start; }
.menus .section-head { margin-bottom: clamp(1.25rem, 2.5vw, 2rem); }
.menus .section-title { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
.menus .section-lead { font-size: 0.95rem; }
.menus__diet { margin-top: 1.25rem; }

/* ---- Process: larger type + mobile timeline ---- */
.step__title { font-size: 0.95rem; }
.step__text { font-size: 0.95rem; }
.process .step__num { width: 62px; height: 62px; font-size: 1.4rem; }

/* ---- Footer service-area + privacy ---- */
.footer__areas li { margin-bottom: 0.5rem; color: var(--cream-soft); }
.footer__privacy { margin-top: 1rem; font-size: 0.8rem; }
.footer__privacy a { color: var(--cream-soft); text-decoration: underline; text-underline-offset: 2px; }
.footer__privacy a:hover { color: var(--gold-bright); }

/* ---- Highlighted form fields ---- */
.field--highlight label { color: var(--gold-bright); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .pillars { grid-template-columns: repeat(2, 1fr); row-gap: 2.25rem; }
  .explore__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
  .exp-card--lg { grid-column: span 2; grid-row: auto; }
  .erows { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .pillars { grid-template-columns: 1fr; row-gap: 1.75rem; text-align: left; }
  .pillar { display: grid; grid-template-columns: 42px 1fr; column-gap: 1rem; align-items: start; padding: 0; }
  .pillar__icon { margin-bottom: 0; grid-row: span 2; }
  .explore__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .exp-card--lg { grid-column: span 1; grid-row: auto; }
  .erows { grid-template-columns: 1fr; }

  /* Process → vertical timeline */
  .process__grid { grid-template-columns: 1fr; row-gap: 0; }
  .step { position: relative; text-align: left; display: grid; grid-template-columns: 62px 1fr; column-gap: 1.2rem; padding: 0 0 1.75rem; }
  .step::after { display: none !important; }
  .step:not(:last-child)::before { content: ""; position: absolute; left: 31px; top: 62px; bottom: 0; width: 1px; background: var(--line); }
  .step__num { margin-bottom: 0; }
  .step__body { padding-top: 0.5rem; }
}
