/* ============================================================
   THE BOIL — Premium Landing Page
   index.css
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --navy:      #1F2538;
  --gold:      #A89252;
  --gold-dark: #715A2C;
  --bg-dark:   #0B0B12;
  --bg-light:  #F5F3EE;
  --text-light:#F7F7F7;
  --text-dark: #2A2A2A;
  --muted:     #B8B4A7;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 1, 0.5, 1);

  --nav-h:     80px;
  --section-v: clamp(5rem, 10vw, 9rem);
  --gutter:    clamp(1.25rem, 5vw, 3rem);
  --max-w:     1200px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img     { display: block; max-width: 100%; }
a       { text-decoration: none; color: inherit; }
ul, ol  { list-style: none; }
address { font-style: normal; }

/* picture é transparente ao layout — herda o contexto do pai */
picture { display: contents; }

/* Containers que precisam preencher um bloco: forçar o picture a ser block */
.hero__bg > picture,
.sauce-story__media > picture,
.cta-final__bg > picture,
.discovery__texture > picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Containers com aspect-ratio: picture ocupa a largura total */
.chapter__image > picture,
.sauce-trio__img-wrap > picture,
.location__img-wrap > picture {
  display: block;
  width: 100%;
}

/* Itens de galeria e instagram: picture preenche o espaço do link/div */
.exp-item > picture,
.insta-item > picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Utility ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Labels ── */
.label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.label--dark { color: var(--gold-dark); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background    0.3s var(--ease-out),
    border-color  0.3s var(--ease-out),
    color         0.3s var(--ease-out);
}

.btn--gold         { background: var(--gold);      border-color: var(--gold);      color: var(--bg-dark);   }
.btn--gold:hover   { background: var(--gold-dark);  border-color: var(--gold-dark);                          }

.btn--outline      { background: transparent; border-color: rgba(247,247,247,0.25); color: var(--text-light); }
.btn--outline:hover{ border-color: rgba(247,247,247,0.6);                                                      }

.btn--outline-dark      { background: transparent; border-color: rgba(42,42,42,0.35); color: var(--text-dark); }
.btn--outline-dark:hover{ background: var(--text-dark); color: var(--bg-light);                                }

.btn--ghost      { background: transparent; border-color: rgba(247,247,247,0.2); color: rgba(247,247,247,0.75); }
.btn--ghost:hover{ border-color: rgba(247,247,247,0.5); color: var(--text-light);                               }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.45s ease, backdrop-filter 0.45s ease;
}

.nav.scrolled {
  background: rgba(11,11,18,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(168,146,82,0.1);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; }

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

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

.nav__links { display: flex; gap: 2rem; }

.nav__links a {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,247,247,0.55);
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--gold); }

.nav__cta { padding: 0.65rem 1.5rem; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-light);
  transition: transform 0.35s var(--ease-out);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300;
  color: rgba(247,247,247,0.65);
  transition: color 0.25s ease;
}
.mobile-menu__link:hover,
.mobile-menu__link--cta { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 70% 55% at 50% 38%,
    rgba(168,146,82,0.13) 0%, transparent 62%
  );
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transform: scale(1.04);
  filter: brightness(0.62) saturate(0.88);
  transition: opacity 1.4s ease, transform 9s ease-out;
}
.hero__img.loaded { opacity: 1; transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(11,11,18,0.28) 0%,
    rgba(11,11,18,0.02) 28%,
    rgba(11,11,18,0.22) 58%,
    rgba(11,11,18,0.96) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 5rem;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.25rem;
  animation: heroUp 0.9s var(--ease-out) 0.3s both;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 10.5vw, 6.75rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  animation: heroUp 1.3s var(--ease-out) 0.5s both;
}
.hero__headline em { font-style: italic; color: var(--gold); }

.hero__sub {
  font-size: clamp(0.875rem, 1.6vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: rgba(247,247,247,0.52);
  margin-bottom: 2.75rem;
  animation: heroUp 1.1s var(--ease-out) 0.75s both;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroUp 1s var(--ease-out) 1.05s both;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: fadeIn 1s ease 1.8s both;
}
.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: breathe 2.6s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { opacity: 0.35; transform: scaleY(0.65) translateY(-6px); }
  50%      { opacity: 1;    transform: scaleY(1) translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   DISCOVERY
   ============================================================ */

.discovery {
  position: relative;
  background: var(--bg-dark);
  padding: var(--section-v) var(--gutter);
  border-top: 1px solid rgba(168,146,82,0.06);
  overflow: hidden;
}

/* Spice texture — 4% opacity, subliminar */
.discovery__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.discovery__texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: luminosity;
}

.discovery__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.discovery__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.discovery__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-light);
}

.discovery__narrative { padding-top: 2.5rem; }

.discovery__narrative p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}
.discovery__narrative p + p { margin-top: 1.25rem; }
.discovery__narrative em   { font-style: italic; color: rgba(247,247,247,0.75); }

.discovery__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 1.1;
  color: var(--text-light);
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(168,146,82,0.12);
  border-bottom: 1px solid rgba(168,146,82,0.12);
}
.discovery__quote span { display: block; }

/* ============================================================
   RITUAL — CHAPTERS
   ============================================================ */

.ritual {
  background: var(--bg-dark);
  padding-top: var(--section-v);
}

.ritual__header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 2rem;
}

.ritual__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text-light);
}

/* Chapter */
.chapter { border-top: 1px solid rgba(168,146,82,0.1); }

.chapter--final {
  border-bottom: 1px solid rgba(168,146,82,0.1);
  margin-bottom: var(--section-v);
}

.chapter__header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem var(--gutter) 2.5rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 3rem;
  align-items: start;
}

.chapter__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(168,146,82,0.18);
  padding-top: 0.15rem;
  user-select: none;
}

.chapter__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.chapter__body {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 560px;
}

/* Image row */
.chapter__image {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) 3.5rem;
  overflow: hidden;
}

.chapter__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.86) saturate(0.82);
  transition: filter 0.7s ease;
}
.chapter:hover .chapter__image img { filter: brightness(0.96) saturate(1); }

/* ============================================================
   SAUCE STORY
   ============================================================ */

.sauce-story {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.sauce-story__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sauce-story__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 75% 55% at 65% 50%,
    rgba(168,146,82,0.1) 0%, transparent 68%
  );
  pointer-events: none;
}

.sauce-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.38) saturate(0.68);
}

.sauce-story__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    110deg,
    rgba(11,11,18,0.97) 0%,
    rgba(11,11,18,0.7)  45%,
    rgba(11,11,18,0.15) 100%
  );
}

.sauce-story__inner {
  position: relative;
  z-index: 3;
}

/* Reveal grid */
.sauce-story__reveal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 90vh;
  padding: 5rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Three-line reveal */
.sauce-reveal { display: flex; flex-direction: column; }

.sauce-reveal__setup {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(247,247,247,0.38);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.sauce-reveal__negation {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 300;
  color: rgba(247,247,247,0.58);
  margin-bottom: 0.5rem;
}

.sauce-reveal__answer {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* Body */
.sauce-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.sauce-body p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(247,247,247,0.52);
}
.sauce-body .btn { margin-top: 0.75rem; align-self: flex-start; }

/* Sauce trio showcase */
.sauce-trio {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-v);
}

.sauce-trio__img-wrap {
  overflow: hidden;
  aspect-ratio: 21 / 9;
}
.sauce-trio__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) saturate(0.8);
  transition: filter 0.6s ease;
}
.sauce-trio:hover .sauce-trio__img-wrap img { filter: brightness(1) saturate(1); }

.sauce-trio__labels {
  display: flex;
  justify-content: space-between;
  padding: 1.125rem 0;
  border-bottom: 1px solid rgba(168,146,82,0.14);
}
.sauce-trio__labels span {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   DIFFERENCE
   ============================================================ */

.difference {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: var(--section-v) var(--gutter);
}

.difference__inner {
  max-width: 800px;
  margin: 0 auto;
}

.difference__header { margin-bottom: 4.5rem; }

.difference__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
}

.diff-statements { display: flex; flex-direction: column; }

.diff-statement {
  padding: 3.25rem 0;
  border-top: 1px solid rgba(42,42,42,0.08);
}
.diff-statement:last-child { border-bottom: 1px solid rgba(42,42,42,0.08); }

.diff-statement__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.diff-statement__body {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(42,42,42,0.58);
  max-width: 520px;
}

.diff-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.3;
  color: var(--text-dark);
  padding: 4rem 0 2rem;
}
.diff-quote em { color: var(--gold-dark); }

/* ============================================================
   EXPERIENCE — GALLERY
   ============================================================ */

.experience {
  background: var(--bg-dark);
  padding: var(--section-v) 0;
}

.experience__header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 3rem;
}

.experience__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-light);
}

/* 4-image editorial grid */
.experience__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 300px;
  gap: 0.375rem;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.exp-item {
  overflow: hidden;
  background: var(--navy);
}
.exp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.84) saturate(0.8);
  transition: transform 0.7s var(--ease-out), filter 0.7s ease;
}
.exp-item:hover img { transform: scale(1.05); filter: brightness(1) saturate(1); }

/* gallery-02: vapor — top left wide */
.exp-item--a { grid-column: 1 / 8;  grid-row: 1; }
/* gallery-05: person — right tall, 2 rows */
.exp-item--b { grid-column: 8 / 13; grid-row: 1 / 3; }
/* gallery-03: hands — bottom left */
.exp-item--c { grid-column: 1 / 5;  grid-row: 2; }
/* gallery-04: group — bottom center */
.exp-item--d { grid-column: 5 / 8;  grid-row: 2; }

/* ============================================================
   INSTAGRAM
   ============================================================ */

.instagram {
  background: var(--bg-dark);
  padding: var(--section-v) 0;
  border-top: 1px solid rgba(168,146,82,0.06);
}

/* Header: label left, handle right */
.instagram__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-bottom: 2.5rem;
}
.instagram__header .label { margin-bottom: 0; }

.instagram__handle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  transition: color 0.25s ease;
}
.instagram__handle:hover { color: var(--gold); }

/* 5-cell editorial grid */
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 0.375rem;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* seafood-spread — top, wide */
.insta-item--wide { grid-column: 1 / 8; grid-row: 1; }
/* sauce-on-hands — top right */
.instagram__grid .insta-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
/* gallery-01 — bottom left */
.instagram__grid .insta-item:nth-child(3) { grid-column: 1 / 5;  grid-row: 2; }
/* gallery-05 — bottom center */
.instagram__grid .insta-item:nth-child(4) { grid-column: 5 / 9;  grid-row: 2; }
/* CTA — bottom right */
.instagram__grid .insta-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }

.insta-item {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  display: block;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.76);
  transition: transform 0.65s var(--ease-out), filter 0.65s ease;
}

.insta-item__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(168,146,82,0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.insta-item:hover img                { transform: scale(1.04); filter: brightness(0.9) saturate(0.9); }
.insta-item:hover .insta-item__shine { opacity: 1; }

/* CTA cell */
.insta-item--cta {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}
.insta-item--cta:hover { background: var(--gold); }

.insta-item__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.5rem;
  pointer-events: none;
}

.insta-item__cta-label {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.35s ease;
}
.insta-item--cta:hover .insta-item__cta-label { color: var(--bg-dark); }

.insta-item__cta-handle {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.875rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  line-height: 1;
  transition: color 0.35s ease;
}
.insta-item--cta:hover .insta-item__cta-handle { color: var(--bg-dark); }

.insta-item__cta-inner svg {
  color: var(--gold);
  margin-top: 0.25rem;
  transition: color 0.35s ease, transform 0.35s ease;
}
.insta-item--cta:hover .insta-item__cta-inner svg {
  color: var(--bg-dark);
  transform: translateX(4px);
}

/* ============================================================
   LOCATION
   ============================================================ */

.location {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: var(--section-v) var(--gutter);
}

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

/* Image — left, prominent */
.location__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}
.location__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.location__media:hover .location__img-wrap img { transform: scale(1.03); }

/* Info — right */
.location__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.location__detail-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.location__detail address,
.location__detail p {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(42,42,42,0.6);
}

.location__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.cta-final__bg { position: absolute; inset: 0; z-index: 0; }

.cta-final__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.55);
}

.cta-final__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(11,11,18,0.2) 0%,
    rgba(11,11,18,0.85) 100%
  );
}

.cta-final__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem var(--gutter);
  max-width: 800px;
}

.cta-final__headline {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.28;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.cta-final__headline em {
  display: block;
  font-style: italic;
  color: var(--gold);
  margin-top: 0.25rem;
}

.cta-final__sub {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247,247,247,0.45);
  margin-bottom: 2.75rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #050510;
  padding: 3.25rem var(--gutter);
  border-top: 1px solid rgba(168,146,82,0.07);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__logo { display: flex; align-items: center; }

.footer__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer__nav { display: flex; gap: 2rem; }

.footer__nav a {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}
.footer__nav a:hover { color: var(--gold); }

.footer__address p {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(184,180,167,0.4);
}

.footer__copy {
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  color: rgba(184,180,167,0.22);
}

/* ============================================================
   RESPONSIVE — TABLET  ≤ 960px
   ============================================================ */

@media (max-width: 960px) {

  /* Discovery */
  .discovery__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .discovery__narrative { padding-top: 0; }

  /* Chapters */
  .chapter__header {
    grid-template-columns: 72px 1fr;
    gap: 0 1.75rem;
    padding: 3rem var(--gutter) 2rem;
  }

  /* Sauce */
  .sauce-story__reveal {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding: 5rem var(--gutter) 3rem;
  }
  .sauce-story__overlay { background: rgba(11,11,18,0.82); }

  /* Experience: 3 images on tablet */
  .experience__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 260px;
  }
  .exp-item--a { grid-column: 1;    grid-row: 1; }
  .exp-item--b { grid-column: 2;    grid-row: 1 / 3; }
  .exp-item--c { grid-column: 1;    grid-row: 2; }
  .exp-item--d { display: none; }

  /* Instagram: 2×2 */
  .instagram__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px;
  }
  .insta-item--wide                          { grid-column: 1; grid-row: 1; }
  .instagram__grid .insta-item:nth-child(2)  { grid-column: 2; grid-row: 1; }
  .instagram__grid .insta-item:nth-child(3)  { grid-column: 1; grid-row: 2; }
  .instagram__grid .insta-item:nth-child(4)  { grid-column: 2; grid-row: 2; }
  .instagram__grid .insta-item:nth-child(5)  { display: none; }

  /* Location */
  .location__inner { grid-template-columns: 1fr; gap: 3rem; }
  .location__img-wrap { aspect-ratio: 16 / 9; }
}

/* ============================================================
   RESPONSIVE — MOBILE  ≤ 640px
   ============================================================ */

@media (max-width: 640px) {

  :root { --nav-h: 64px; }

  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  /* Hero */
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 280px; }

  /* Discovery */
  .discovery__quote { font-size: clamp(2rem, 8vw, 3rem); }

  /* Chapters */
  .chapter__header {
    grid-template-columns: 56px 1fr;
    gap: 0 1.25rem;
    padding: 2.5rem var(--gutter) 1.5rem;
  }
  .chapter__image { padding-bottom: 2.5rem; }
  .chapter__image img { aspect-ratio: 4 / 3; }

  /* Sauce */
  .sauce-reveal__answer { font-size: clamp(4rem, 18vw, 7rem); }
  .sauce-body .btn      { align-self: stretch; justify-content: center; }
  .sauce-trio__img-wrap { aspect-ratio: 4 / 3; }
  .sauce-trio__labels   { flex-direction: column; gap: 0.75rem; align-items: center; }

  /* Experience: single column */
  .experience__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .exp-item--a,
  .exp-item--b,
  .exp-item--c,
  .exp-item--d { grid-column: 1; grid-row: auto; display: block; }
  .exp-item img { min-height: 260px; }

  /* Instagram: single column, 3 images */
  .instagram__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .insta-item--wide,
  .instagram__grid .insta-item:nth-child(2),
  .instagram__grid .insta-item:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
    min-height: 240px;
    display: block;
  }
  .instagram__grid .insta-item:nth-child(4),
  .instagram__grid .insta-item:nth-child(5) { display: none; }

  /* Location */
  .location__ctas { flex-direction: column; }
  .location__ctas .btn { width: 100%; justify-content: center; }

  /* CTA Final */
  .cta-final__ctas { flex-direction: column; align-items: center; }
  .cta-final__ctas .btn { width: 100%; max-width: 280px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__eyebrow,
  .hero__headline,
  .hero__sub,
  .hero__ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero__img        { opacity: 1; transform: none; transition: none; }
  .hero__scroll     { display: none; }
  .exp-item img,
  .insta-item img,
  .chapter__image img,
  .location__img-wrap img,
  .sauce-trio__img-wrap img { transition: none; }
}
