/* =====================================================
   MARION'S CAKES — EXCLUSIVELY MADE FOR YOU
   Luxury patisserie · Windhoek
   ===================================================== */

/* ---------- TOKENS ---------- */
:root {
  --ink: #0a0a0a;
  --ink-soft: #141312;
  --ink-warm: #1a1614;
  --gold: #D4AF37;
  --gold-bright: #F3D77A;
  --gold-deep: #A8852A;
  --gold-shadow: #6E5618;
  --cream: #EFE6D2;
  --cream-soft: #C9BFA9;
  --paper: #F7EFDF;
  --line: rgba(212, 175, 55, 0.22);
  --line-strong: rgba(212, 175, 55, 0.6);

  --font-display: 'Italiana', 'Cormorant Garamond', serif;
  --font-script: 'Allura', 'Pinyon Script', cursive;
  --font-body: 'Jost', 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 60px);
}

/* ---------- 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);
  font-weight: 300;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Grain overlay everywhere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.85 0 0 0 0 0.3 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--gold-bright);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--paper);
}

.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  border: none;
}

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 50%, var(--gold-bright));
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--ink); border-color: var(--gold-bright); }
.btn:hover::before { transform: translateY(0); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }

.btn-solid {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 60%, var(--gold-bright));
  color: var(--ink);
  border-color: transparent;
}
.btn-solid::before {
  background: var(--ink);
  border: 1px solid var(--gold);
}
.btn-solid:hover { color: var(--gold); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.scrolled { padding: 14px 0; background: rgba(10, 10, 10, 0.92); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand .mark {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}
.nav-brand .sub {
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--cream-soft);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cream-soft);
}
.nav-phone strong { color: var(--gold); font-weight: 500; }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: flex-end;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); width: 24px; }
.nav-toggle.open span:nth-child(2) { transform: rotate(-45deg) translate(2px, -2px); width: 24px; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(212,175,55,0.08), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { padding-right: 20px; }
.hero-copy .eyebrow { margin-bottom: 32px; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin-bottom: 28px;
}
.hero h1 .accent {
  font-family: var(--font-script);
  font-size: 1.05em;
  color: var(--gold-bright);
  font-style: normal;
  display: inline-block;
  transform: translateY(0.08em);
  font-weight: 400;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream-soft);
  max-width: 460px;
  margin-bottom: 44px;
}

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

.hero-stats {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-top: 8px;
}

.hero-visual { position: relative; }
.hero-visual .frame-main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-visual .frame-main::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212,175,55,0.35);
  pointer-events: none;
  z-index: 2;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.hero-visual:hover img { transform: scale(1.04); }

.hero-visual .frame-accent {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--gold);
  overflow: hidden;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.6);
}
.hero-visual .frame-accent img { transition: transform 1s var(--ease); }
.hero-visual .frame-accent:hover img { transform: scale(1.08); }

.hero-tag {
  position: absolute;
  top: 24px;
  left: -28px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- SECTIONS ---------- */
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  color: var(--paper);
}
.section-head .title .script {
  display: block;
  font-size: 0.7em;
  margin-bottom: -0.15em;
  color: var(--gold-bright);
}
.section-head .lede {
  font-size: 16px;
  color: var(--cream-soft);
  max-width: 540px;
  line-height: 1.75;
}
.section-head .eyebrow { margin-bottom: 20px; }

/* ---------- SIGNATURE CAKES (HOME) ---------- */
.signatures {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-warm) 100%);
  position: relative;
}
.signatures::before {
  content: '01 — COLLECTION';
  position: absolute;
  top: 80px; right: var(--gutter);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.6;
}

.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sig-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sig-card .img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.sig-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.88) saturate(0.95);
}
.sig-card:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }

.sig-card .badge {
  position: absolute;
  top: 18px; left: 18px;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border: 1px solid var(--line);
  z-index: 2;
}

.sig-card .body { padding: 24px 4px 4px; }
.sig-card .body .num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.3em;
}
.sig-card .body h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--paper);
  margin-top: 6px;
  margin-bottom: 8px;
  font-weight: 400;
}
.sig-card .body p {
  font-size: 14px;
  color: var(--cream-soft);
  line-height: 1.6;
}
.sig-card .body .price {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
}
.sig-card .body .price small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--cream-soft);
  text-transform: uppercase;
}

/* ---------- STORY (HOME) ---------- */
.story {
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.story-visual { position: relative; }
.story-visual .stack {
  position: relative;
  aspect-ratio: 4 / 5;
}
.story-visual .stack img {
  position: absolute;
  width: 80%;
  height: 80%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.story-visual .stack img:nth-child(1) { top: 0; left: 0; z-index: 2; }
.story-visual .stack img:nth-child(2) { bottom: 0; right: 0; width: 60%; height: 55%; box-shadow: -30px -30px 70px rgba(0,0,0,0.6); }

.story-copy .script-big {
  font-family: var(--font-script);
  font-size: clamp(48px, 6vw, 84px);
  color: var(--gold-bright);
  line-height: 0.9;
  margin-bottom: 28px;
}
.story-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--paper);
  line-height: 1.05;
  margin-bottom: 32px;
  font-weight: 400;
}
.story-copy p {
  color: var(--cream-soft);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 520px;
}
.story-sign {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.story-sign .name {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--gold-bright);
  line-height: 1;
}
.story-sign .role {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-soft);
  border-left: 1px solid var(--gold);
  padding-left: 18px;
}

/* ---------- OCCASIONS ---------- */
.occasions { background: var(--ink); }
.occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.occ-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.4s var(--ease);
}
.occ-card:hover { border-color: var(--gold); }
.occ-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.occ-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.85) 90%);
}
.occ-card:hover img { transform: scale(1.08); }
.occ-card .label {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
}
.occ-card .label .script {
  display: block;
  font-size: 32px;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 4px;
}
.occ-card .label .name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper);
}
.occ-card .label .meta {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.occ-card .label .meta span::before {
  content: '— ';
  color: var(--gold);
}

/* ---------- PROCESS ---------- */
.process {
  background: linear-gradient(180deg, var(--ink-warm) 0%, var(--ink) 100%);
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  padding: 56px 36px 56px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step .num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 24px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--paper);
  font-weight: 400;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 14px;
  color: var(--cream-soft);
  line-height: 1.7;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  text-align: center;
  background: var(--ink-soft);
  position: relative;
}
.testimonial::before, .testimonial::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold);
}
.testimonial::before { top: 80px; }
.testimonial::after { bottom: 80px; }

.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 24px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.3;
  color: var(--paper);
  max-width: 920px;
  margin: 0 auto 40px;
  font-style: italic;
  font-weight: 400;
}
.testimonial .who .name {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--gold-bright);
  display: block;
}
.testimonial .who .occ {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-top: 4px;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(135deg, #1d1814 0%, #0a0a0a 60%, #1a1410 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.12), transparent 60%);
}
.cta-band .inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 68px);
  color: var(--paper);
  line-height: 1.05;
}
.cta-band h2 .script {
  display: block;
  font-size: 0.8em;
  margin-bottom: -0.1em;
}
.cta-band .right {
  border-left: 1px solid var(--line);
  padding-left: 60px;
}
.cta-band .right p {
  color: var(--cream-soft);
  margin-bottom: 28px;
  line-height: 1.75;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #060606;
  padding: 100px 0 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand .mark {
  font-family: var(--font-script);
  font-size: 56px;
  color: var(--gold-bright);
  line-height: 1;
}
.footer-brand .sub {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--cream-soft);
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  width: fit-content;
}
.footer-brand p {
  margin-top: 24px;
  color: var(--cream-soft);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--cream-soft);
  font-size: 14px;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-contact .row {
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--cream-soft);
  line-height: 1.6;
}
.footer-contact .row strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--cream-soft);
  letter-spacing: 0.1em;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .built { color: var(--gold); opacity: 0.7; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}
.footer-socials a:hover { border-color: var(--gold); background: var(--gold); }
.footer-socials a:hover svg { fill: var(--ink); }
.footer-socials svg { width: 14px; height: 14px; fill: var(--gold); transition: fill 0.3s var(--ease); }

/* ---------- PAGE HEADER (INNER PAGES) ---------- */
.page-head {
  padding: 200px 0 100px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.06), transparent 60%);
}
.page-head .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}
.page-head .eyebrow::before { display: none; }
.page-head .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  color: var(--paper);
  line-height: 1;
  font-weight: 400;
}
.page-head h1 .script {
  display: block;
  font-size: 0.55em;
  color: var(--gold-bright);
  margin-bottom: -0.1em;
}
.page-head p {
  max-width: 600px;
  margin: 32px auto 0;
  color: var(--cream-soft);
  line-height: 1.8;
}

/* ---------- CAKE MENU PAGE ---------- */
.menu-section { padding: 100px 0; }
.menu-section + .menu-section { border-top: 1px solid var(--line); }

.menu-section .head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}
.menu-section .head .left {
  position: sticky;
  top: 120px;
}
.menu-section .head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  color: var(--paper);
  line-height: 1;
  font-weight: 400;
}
.menu-section .head h2 .script {
  display: block;
  font-size: 0.8em;
  color: var(--gold-bright);
  margin-bottom: -0.1em;
}
.menu-section .head .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  display: block;
}
.menu-section .head p {
  color: var(--cream-soft);
  line-height: 1.8;
  font-size: 16px;
}

.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: all 0.4s var(--ease);
}
.menu-item:hover { padding-left: 16px; border-bottom-color: var(--gold); }
.menu-item:last-child { border-bottom: none; }
.menu-item .num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  line-height: 1.2;
}
.menu-item h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--paper);
  font-weight: 400;
  margin-bottom: 8px;
}
.menu-item p {
  font-size: 14px;
  color: var(--cream-soft);
  line-height: 1.7;
  max-width: 500px;
}
.menu-item .tags {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.menu-item .tag {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--line);
}
.menu-item .price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold-bright);
  white-space: nowrap;
}
.menu-item .price small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--cream-soft);
  text-transform: uppercase;
  text-align: right;
  margin-top: 4px;
}

/* ---------- GALLERY PAGE ---------- */
.gallery-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.gallery-filters button {
  padding: 12px 24px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-soft);
  border: 1px solid var(--line);
  background: transparent;
  transition: all 0.3s var(--ease);
}
.gallery-filters button:hover,
.gallery-filters button.active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.92);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85) 100%);
  opacity: 0.7;
}
.gallery-item .caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 2;
}
.gallery-item .caption .cat {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.gallery-item .caption h5 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--paper);
  font-weight: 400;
}

/* Gallery layout sizes */
.gallery-item.lg { grid-column: span 6; grid-row: span 2; aspect-ratio: 1; }
.gallery-item.md { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-item.sm { grid-column: span 3; aspect-ratio: 1; }
.gallery-item.wide { grid-column: span 8; aspect-ratio: 16/9; }

/* ---------- ABOUT PAGE ---------- */
.about-intro {
  padding: 120px 0;
  background: var(--ink-soft);
}
.about-intro .inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.about-intro .visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-intro .visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.about-intro .visual::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.about-intro .visual::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.about-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--paper);
  line-height: 1.05;
  margin-bottom: 32px;
  font-weight: 400;
}
.about-intro h2 .script {
  display: block;
  font-size: 0.8em;
  color: var(--gold-bright);
  margin-bottom: -0.1em;
}
.about-intro p {
  color: var(--cream-soft);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 16px;
}

.values {
  padding: 120px 0;
  background: var(--ink);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.value {
  border-top: 1px solid var(--gold);
  padding-top: 32px;
}
.value .num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  line-height: 1;
}
.value h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--paper);
  font-weight: 400;
  margin-bottom: 16px;
}
.value p {
  color: var(--cream-soft);
  line-height: 1.8;
  font-size: 15px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  padding: 100px 0;
  background: var(--ink);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.contact-info .item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.contact-info .item:last-child { border-bottom: none; }
.contact-info .item .label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info .item .label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.contact-info .item .value {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--paper);
  line-height: 1.3;
  font-weight: 400;
}
.contact-info .item .value a:hover { color: var(--gold); }
.contact-info .item .meta {
  font-size: 13px;
  color: var(--cream-soft);
  margin-top: 8px;
}

.contact-form {
  background: var(--ink-soft);
  padding: 56px;
  border: 1px solid var(--line);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 40px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.contact-form::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--paper);
  margin-bottom: 32px;
  font-weight: 400;
}
.contact-form h3 .script {
  font-size: 0.7em;
  display: block;
  color: var(--gold-bright);
  margin-bottom: -0.1em;
}

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

.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--paper);
  transition: border-color 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select option { background: var(--ink); color: var(--paper); }

.contact-form .btn { margin-top: 24px; }

/* ---------- GOOGLE MAPS EMBED ---------- */
.map-section {
  background: var(--ink);
  padding: 0;
}
.map-frame {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.45) contrast(1.05);
  transition: filter 0.6s var(--ease);
}
.map-frame:hover iframe { filter: grayscale(0) contrast(1); }
.map-cta {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.map-cta:hover {
  background: var(--gold);
  color: var(--ink);
}
.map-cta .arrow { transition: transform 0.3s var(--ease); }
.map-cta:hover .arrow { transform: translateX(4px); }

@media (max-width: 720px) {
  .map-frame { height: 360px; }
  .map-cta { left: 16px; bottom: 16px; padding: 12px 18px; font-size: 10px; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-grid, .story-grid, .about-intro .inner, .contact-grid, .cta-band .inner { grid-template-columns: 1fr; gap: 60px; }
  .cta-band .right { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 60px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .sig-grid, .occ-grid, .process-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid var(--line); padding: 40px 24px 40px 0; }
  .process-step:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-section .head { grid-template-columns: 1fr; }
  .menu-section .head .left { position: static; }
  .gallery-item.lg { grid-column: span 12; grid-row: span 1; }
  .gallery-item.md { grid-column: span 6; }
  .gallery-item.sm { grid-column: span 6; }
  .gallery-item.wide { grid-column: span 12; }
}

@media (max-width: 720px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 32px var(--gutter);
    gap: 24px;
    border-bottom: 1px solid var(--line);
  }
  .hero { padding: 120px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .hero-visual .frame-accent { right: -10px; bottom: -10px; width: 130px; }
  .hero-tag { display: none; }
  .sig-grid, .occ-grid, .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  .menu-item { grid-template-columns: 60px 1fr; }
  .menu-item .price { grid-column: 2; padding-top: 8px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .story-visual .stack { aspect-ratio: 1; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }

/* hero entrance */
.hero .eyebrow, .hero h1, .hero-lead, .hero-actions, .hero-stats, .hero-visual {
  animation: fadeUp 1.4s var(--ease) backwards;
}
.hero h1 { animation-delay: 0.15s; }
.hero-lead { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.45s; }
.hero-stats { animation-delay: 0.6s; }
.hero-visual { animation-delay: 0.2s; }

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

/* =====================================================
   LOGO IMAGES + FLOATING WHATSAPP BUTTON
   ===================================================== */

/* Nav brand: white pill background around logo */
.nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.4);
  transition: all 0.4s var(--ease);
}
.nav-brand:hover {
  box-shadow: 0 6px 28px rgba(212,175,55,0.3), 0 0 0 1px var(--gold);
}
.nav-brand-logo {
  height: 72px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.nav.scrolled .nav-brand { padding: 8px 18px; }
.nav.scrolled .nav-brand-logo { height: 56px; }

/* Footer brand: white pill background around logo */
.footer-brand-logo {
  width: auto;
  max-width: 380px;
  height: auto;
  display: block;
  background: #fff;
  padding: 24px 32px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.4);
  margin-bottom: 8px;
}

/* Floating WhatsApp button — icon only */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45), 0 0 0 2px rgba(212, 175, 55, 0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6), 0 0 0 2px var(--gold);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  position: relative;
  z-index: 1;
}

/* Pulse ring */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Mobile */
@media (max-width: 720px) {
  .nav-brand { padding: 6px 12px; border-radius: 6px; }
  .nav-brand-logo { height: 44px; }
  .nav.scrolled .nav-brand-logo { height: 36px; }
  .footer-brand-logo { max-width: 280px; padding: 18px 22px; }
  .wa-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
  .wa-float svg { width: 28px; height: 28px; }
}
