/* ============================================================
   THE EUROPEAN TABLE CO. — MAIN STYLESHEET
   Palette: Ivory & Obsidian with Antique Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Cormorant+SC:wght@300;400;500&family=Jost:wght@300;400;500&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --ivory:       #FAF7F2;
  --obsidian:    #0D0D0D;
  --charcoal:    #1A1A1A;
  --gold:        #B8975A;
  --champagne:   #D4B896;
  --espresso:    #1C1410;
  --stone:       #6B5B4E;
  --ivory-white: #F5F0E8;
  --warm-ash:    #9E8E82;
  --gold-line:   #C9A96E;
  --cream:       #F2EDE4;
  --surface:     #EDE8E0;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sc:     'Cormorant SC', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  --max-width:   1320px;
  --section-pad: 7rem 2rem;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--espresso);
  background-color: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--light { color: var(--champagne); }

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--espresso);
}

.section-title--light { color: var(--ivory-white); }

.lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--stone);
  max-width: 680px;
  line-height: 1.85;
}

.lead--light { color: var(--champagne); }

/* ---- Gold Divider ---- */
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-rule--center { margin: 1.5rem auto; }

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: var(--section-pad); }
.section--dark { background-color: var(--charcoal); }
.section--obsidian { background-color: var(--obsidian); }
.section--cream { background-color: var(--cream); }
.section--surface { background-color: var(--surface); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background: var(--gold);
  color: var(--obsidian);
}

.btn--light {
  border-color: var(--ivory-white);
  color: var(--ivory-white);
}

.btn--light:hover {
  background: var(--ivory-white);
  color: var(--obsidian);
}

.btn--filled {
  background: var(--gold);
  color: var(--obsidian);
}

.btn--filled:hover {
  background: var(--champagne);
  border-color: var(--champagne);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  padding: 1rem 2rem;
  backdrop-filter: blur(8px);
}

.nav__logo {
  font-family: var(--font-sc);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--ivory-white);
  font-weight: 400;
}

.nav__logo span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--obsidian);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory-white);
  transition: var(--transition);
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* offset for fixed nav */
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/olivia_hero_plating.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Layered gradient: strong bottom-left anchor for text, lighter top-right for image */
  background:
    linear-gradient(
      to right,
      rgba(13, 13, 13, 0.82) 0%,
      rgba(13, 13, 13, 0.55) 45%,
      rgba(13, 13, 13, 0.20) 100%
    ),
    linear-gradient(
      to top,
      rgba(13, 13, 13, 0.75) 0%,
      rgba(13, 13, 13, 0.10) 50%,
      transparent 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--ivory-white);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--champagne);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.75);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--champagne);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px; /* offset for fixed nav */
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 13, 13, 0.82) 0%,
    rgba(13, 13, 13, 0.4) 60%,
    rgba(13, 13, 13, 0.15) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ivory-white);
  line-height: 1.1;
  max-width: 700px;
}

.page-hero__sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  max-width: 520px;
  margin-top: 1rem;
  line-height: 1.8;
}

/* ============================================================
   INTRO / BRAND STORY SECTION
   ============================================================ */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.intro-section__text {
  padding: 7rem 5rem 7rem 2rem;
  max-width: 660px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-section__image {
  position: relative;
  overflow: hidden;
}

.intro-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   OFFERINGS GRID
   ============================================================ */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--obsidian);
}

.offering-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.offering-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.offering-card:hover .offering-card__bg {
  transform: scale(1.06);
}

.offering-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(13, 13, 13, 0.3) 60%,
    transparent 100%
  );
  transition: background var(--transition);
}

.offering-card:hover .offering-card__overlay {
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.95) 0%,
    rgba(13, 13, 13, 0.5) 60%,
    rgba(13, 13, 13, 0.1) 100%
  );
}

.offering-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
}

.offering-card__number {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.offering-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory-white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.offering-card__desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.offering-card:hover .offering-card__desc {
  max-height: 120px;
  opacity: 1;
}

.offering-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.offering-card:hover .offering-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   WHY SECTION — DARK
   ============================================================ */
.why-section {
  background: var(--charcoal);
  padding: 7rem 2rem;
}

.why-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-section__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.value-item__icon {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.value-item__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ivory-white);
  margin-bottom: 0.5rem;
}

.value-item__text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--warm-ash);
  line-height: 1.75;
}

/* ============================================================
   CHEF PREVIEW SECTION
   ============================================================ */
.chef-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.chef-section__image {
  position: relative;
  overflow: hidden;
}

.chef-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.chef-section__text {
  background: var(--obsidian);
  padding: 7rem 5rem 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chef-section__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1.5;
  border-left: 1px solid var(--gold);
  padding-left: 2rem;
  margin: 2rem 0;
}

/* ============================================================
   FOOD GALLERY STRIP
   ============================================================ */
.food-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--obsidian);
}

.food-strip__item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.food-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.food-strip__item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   PARTNER CTA SECTION
   ============================================================ */
.partner-section {
  background: var(--cream);
  padding: 7rem 2rem;
  text-align: center;
}

.partner-section__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/olivia_hero_plating.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.78);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.final-cta__text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--obsidian);
  padding: 5rem 2rem 3rem;
  color: var(--warm-ash);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer__brand-name {
  font-family: var(--font-sc);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--ivory-white);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--champagne);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__contact {
  font-size: 0.85rem;
  line-height: 2;
}

.footer__contact a { color: var(--warm-ash); transition: color var(--transition); }
.footer__contact a:hover { color: var(--gold); }

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--warm-ash);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--ivory-white); }

.footer__bottom {
  max-width: var(--max-width);
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(158, 142, 130, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(158, 142, 130, 0.6);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 700px;
}

.about-bio__image {
  position: relative;
  overflow: hidden;
}

.about-bio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-bio__text {
  padding: 7rem 5rem;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-bio__text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-credentials {
  background: var(--charcoal);
  padding: 7rem 2rem;
}

.credentials-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.credential-item {
  border-top: 1px solid rgba(184, 151, 90, 0.3);
  padding-top: 2rem;
}

.credential-item__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.credential-item__value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ivory-white);
  line-height: 1.3;
}

.credential-item__detail {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--warm-ash);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* ============================================================
   EXPERIENCES PAGE
   ============================================================ */
.experience-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.experience-feature--reverse { direction: rtl; }
.experience-feature--reverse > * { direction: ltr; }

.experience-feature__image {
  overflow: hidden;
}

.experience-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.experience-feature:hover .experience-feature__image img {
  transform: scale(1.04);
}

.experience-feature__text {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.experience-feature--dark .experience-feature__text {
  background: var(--charcoal);
}

.experience-feature__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.experience-feature--dark .experience-feature__text h2 {
  color: var(--ivory-white);
}

.experience-feature__text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.experience-feature--dark .experience-feature__text p {
  color: var(--warm-ash);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--obsidian);
  padding: 7rem 2rem;
}

.process-steps {
  max-width: var(--max-width);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.process-step {
  text-align: center;
  padding: 0 1rem;
}

.process-step__number {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  background: var(--obsidian);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ivory-white);
  margin-bottom: 0.75rem;
}

.process-step__text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--warm-ash);
  line-height: 1.7;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section {
  padding: 7rem 2rem;
  background: var(--ivory);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(107, 91, 78, 0.2);
  padding: 2rem 0;
}

.faq-item__question {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--espresso);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item__question::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
  padding-top: 1.25rem;
}

/* ============================================================
   INQUIRY / CONTACT PAGE
   ============================================================ */
.inquiry-section {
  padding: 7rem 2rem;
  background: var(--ivory);
}

.inquiry-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 7rem;
  align-items: start;
}

.inquiry-info__item {
  margin-bottom: 2rem;
}

.inquiry-info__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.inquiry-info__value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--espresso);
}

.inquiry-info__value a {
  color: var(--espresso);
  transition: color var(--transition);
}

.inquiry-info__value a:hover { color: var(--gold); }

/* Form */
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--espresso);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(107, 91, 78, 0.35);
  padding: 0.75rem 0;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

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

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.visible { opacity: 1; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__mobile-menu.open { display: flex; }

.nav__mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory-white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav__mobile-menu a:hover { color: var(--gold); }

.nav__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--warm-ash);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: color var(--transition);
}

.nav__mobile-close:hover { color: var(--ivory-white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  :root { --section-pad: 5rem 1.5rem; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .intro-section,
  .chef-section,
  .about-bio,
  .experience-feature,
  .why-section__inner,
  .inquiry-inner { grid-template-columns: 1fr; }

  .intro-section__text { padding: 4rem 1.5rem; max-width: 100%; margin: 0; }
  .intro-section__image { min-height: 400px; }

  .chef-section__text { padding: 4rem 1.5rem; }
  .about-bio__text { padding: 4rem 1.5rem; }
  .about-bio__image { min-height: 400px; }

  .experience-feature--reverse { direction: ltr; }
  .experience-feature__text { padding: 4rem 1.5rem; }
  .experience-feature__image { min-height: 350px; }

  .offerings-grid { grid-template-columns: 1fr; }
  .offering-card { aspect-ratio: 16/9; }

  .food-strip { grid-template-columns: 1fr; }
  .food-strip__item { aspect-ratio: 16/9; }

  .credentials-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-section__values { grid-template-columns: 1fr; }

  .inquiry-inner { gap: 3rem; }
  .inquiry-form { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .hero__title { font-size: clamp(2.5rem, 8vw, 4rem); }
}

@media (max-width: 600px) {
  .hero__content { padding: 0 1.5rem; }
  .page-hero__content { padding: 0 1.5rem; }
  .container { padding: 0 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .final-cta__bg { background-attachment: scroll; }
}
