/* =================================================================
   THE KITCHEN WIZARDS — single page parallax site
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --c-ink:        #1a2332;
  --c-ink-soft:   #2a3548;
  --c-cream:      #f5efe6;
  --c-cream-2:    #ece3d3;
  --c-paper:      #fafaf7;
  --c-gold:       #c9a961;
  --c-gold-deep:  #a8884a;
  --c-text:       #2c2c2c;
  --c-mute:       #6b6b6b;
  --c-line:       rgba(26, 35, 50, 0.12);

  --f-serif:  'Playfair Display', Georgia, serif;
  --f-italic: 'Cormorant Garamond', Georgia, serif;
  --f-sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --pad-x: clamp(20px, 5vw, 80px);
  --max-w: 1280px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

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

/* ---------- Typography helpers ---------- */
.h2 {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.h2--light { color: var(--c-cream); }
.h3 {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--c-ink);
}
.serif-italic { font-family: var(--f-italic); font-style: italic; font-weight: 500; }
.gold { color: var(--c-gold); }
.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.eyebrow--light { color: var(--c-gold); }
.lead { font-size: 1.08rem; color: var(--c-mute); max-width: 52ch; line-height: 1.7; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-ink);
}
.btn--gold:hover {
  background: var(--c-ink);
  color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(26,35,50,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid rgba(245, 239, 230, 0.4);
}
.btn--ghost:hover {
  background: rgba(245, 239, 230, 0.08);
  border-color: var(--c-cream);
  transform: translateY(-2px);
}
.btn--full { width: 100%; padding: 1.1rem 1.6rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow span { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--c-gold-deep); }
.link-arrow:hover span { transform: translateX(6px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad-x);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(26, 35, 50, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.7rem var(--pad-x);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--c-cream);
}
.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--c-gold);
  color: var(--c-ink);
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.nav__logo-text {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav__links a {
  color: var(--c-cream);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--c-gold); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--c-gold);
  color: var(--c-ink);
  padding: 0.7rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--c-cream);
  color: var(--c-ink);
  transform: translateY(-1px);
}

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-ink);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  color: var(--c-cream);
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 500;
}
.mobile-menu__cta {
  margin-top: 1rem;
  background: var(--c-gold);
  color: var(--c-ink) !important;
  padding: 1rem 2rem;
  font-family: var(--f-sans) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--c-cream);
}
.hero__bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  z-index: 0;
  will-change: transform;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(26,35,50,0.4) 0%, transparent 60%),
    linear-gradient(180deg, rgba(26,35,50,0.4) 0%, rgba(26,35,50,0.65) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad-x);
  max-width: 980px;
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.hero__title {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
}
.hero__title span { display: inline-block; margin: 0 0.15em; }
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.85);
  margin-bottom: 2.4rem;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(245, 239, 230, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 2px; height: 8px;
  background: var(--c-gold);
  border-radius: 1px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* Hero reveal anim */
.hero__title [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  animation: heroReveal 0.9s var(--ease) forwards;
}
.hero__title [data-reveal]:nth-child(1) { animation-delay: 0.15s; }
.hero__title [data-reveal]:nth-child(2) { animation-delay: 0.30s; }
.hero__title [data-reveal]:nth-child(3) { animation-delay: 0.45s; }
.hero__title [data-reveal]:nth-child(4) { animation-delay: 0.60s; }
[data-fade] {
  opacity: 0;
  animation: fadeIn 1s var(--ease) 0.9s forwards;
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: var(--c-paper);
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
}
.story__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.story__text .h2 { margin-bottom: 1.8rem; }
.story__text .lead { margin-bottom: 2.4rem; }
.story__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--c-line);
  padding-top: 2rem;
}
.story__pillars li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.story__pillars strong {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-ink);
}
.story__pillars span {
  font-size: 0.88rem;
  color: var(--c-mute);
}

.story__media {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
}
.story__media-frame {
  position: absolute;
  inset: 0 0 10% 10%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(26,35,50,0.3);
  will-change: transform;
}
.story__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.story__media-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 45%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  border: 6px solid var(--c-paper);
  box-shadow: 0 20px 40px -15px rgba(26,35,50,0.35);
  will-change: transform;
}
.story__media-accent img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--c-cream);
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}
.services__intro {
  text-align: center;
  padding: 0 var(--pad-x);
  max-width: 800px;
  margin: 0 auto clamp(60px, 10vw, 120px);
}
.service {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 75vh;
  margin-bottom: clamp(60px, 10vw, 140px);
}
.service:last-child { margin-bottom: 0; }
.service--reverse { grid-template-columns: 1fr 1.1fr; }
.service--reverse .service__media { order: 2; }
.service--reverse .service__panel { order: 1; padding-left: var(--pad-x); padding-right: clamp(40px, 6vw, 80px); }

.service__media {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.service__media img {
  position: absolute;
  inset: -10% 0;
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.service__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(40px, 6vw, 80px) clamp(40px, 6vw, 80px);
  background: var(--c-cream);
  position: relative;
}
.service__num {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 4rem;
  font-weight: 400;
  color: var(--c-gold);
  opacity: 0.7;
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.service__panel .h3 { margin-bottom: 1.2rem; }
.service__panel p {
  color: var(--c-mute);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  max-width: 50ch;
}
.service__list {
  margin-bottom: 2rem;
  display: grid;
  gap: 0.6rem;
}
.service__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--c-text);
  font-size: 0.96rem;
}
.service__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 1px;
  background: var(--c-gold);
}

/* ============================================================
   PROCESS — parallax dark
   ============================================================ */
.process {
  position: relative;
  padding: clamp(100px, 14vw, 180px) var(--pad-x);
  color: var(--c-cream);
  overflow: hidden;
  isolation: isolate;
}
.process__bg {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  will-change: transform;
}
.process__bg img {
  width: 100%; height: 120%;
  object-fit: cover;
}
.process__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(26,35,50,0.95) 0%, rgba(26,35,50,0.85) 100%);
}
.process__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.process .h2 { margin-bottom: clamp(50px, 8vw, 90px); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  text-align: left;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 22px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold) 20%, var(--c-gold) 80%, transparent);
  opacity: 0.4;
}
.timeline li {
  position: relative;
  padding-top: 60px;
}
.timeline__num {
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-ink);
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50%;
}
.timeline h4 {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--c-cream);
}
.timeline p {
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase {
  background: var(--c-paper);
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
}
.showcase__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(50px, 8vw, 90px);
}
.showcase__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.showcase__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.showcase__item--tall { grid-row: span 2; }
.showcase__item--wide { grid-column: span 2; }
.showcase__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.showcase__item:hover img { transform: scale(1.06); }
.showcase__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.6rem 1.2rem;
  color: var(--c-cream);
  font-family: var(--f-serif);
  font-size: 1.05rem;
  font-weight: 500;
  background: linear-gradient(180deg, transparent 0%, rgba(26,35,50,0.85) 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.showcase__item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
}
.stats__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 0.6rem; }
.stat__num {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--c-gold);
  line-height: 1;
}
.stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.7);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--c-paper);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
}
.testimonials .eyebrow,
.testimonials .h2 { margin-left: auto; margin-right: auto; }
.testimonials .h2 { margin-bottom: clamp(50px, 8vw, 80px); }

.testimonials__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonials blockquote {
  background: var(--c-cream);
  padding: 2.2rem 2rem;
  border-radius: 4px;
  border-top: 2px solid var(--c-gold);
  position: relative;
}
.testimonials blockquote::before {
  content: '"';
  position: absolute;
  top: 0.5rem; right: 1.2rem;
  font-family: var(--f-serif);
  font-size: 4rem;
  color: var(--c-gold);
  line-height: 1;
  opacity: 0.4;
}
.testimonials blockquote p {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--c-ink);
  margin-bottom: 1.2rem;
}
.testimonials cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--c-mute);
  font-weight: 500;
}

/* ============================================================
   SCHEDULE + MAP
   ============================================================ */
.schedule {
  background: var(--c-cream);
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
}
.schedule__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.schedule__form-wrap .h2 { margin-bottom: 1.4rem; }
.schedule__form-wrap .lead { margin-bottom: 2.4rem; }

.schedule__form {
  background: var(--c-paper);
  padding: clamp(24px, 4vw, 40px);
  border-radius: 6px;
  box-shadow: 0 30px 60px -25px rgba(26,35,50,0.2);
  display: grid;
  gap: 1.1rem;
}
.schedule__form--cal { padding: clamp(12px, 2vw, 20px); }
.cal-inline {
  width: 100%;
  min-height: 640px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-cream);
}
.cal-fallback {
  text-align: center;
  font-size: 0.95rem;
  color: var(--c-mute);
  padding: 1rem 0.5rem;
}
.cal-fallback a { color: var(--c-ink); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: var(--c-cream);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--c-line);
  padding: 0.85rem 1rem;
  border-radius: 3px;
  font-size: 0.98rem;
  color: var(--c-ink);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  outline: none;
  width: 100%;
  font-family: var(--f-sans);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c-gold);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 80px; }

.schedule__or {
  text-align: center;
  font-size: 0.92rem;
  color: var(--c-mute);
  margin-top: 0.4rem;
}
.schedule__or a { color: var(--c-ink); }
.schedule__or a:hover { color: var(--c-gold-deep); }

.schedule__success {
  background: rgba(201, 169, 97, 0.12);
  border-left: 3px solid var(--c-gold);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--c-ink);
  border-radius: 3px;
  margin-top: 0.5rem;
}

/* Visit card */
.schedule__visit {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.visit__card {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 2.5rem;
  border-radius: 6px;
}
.visit__card .h3 { color: var(--c-cream); margin-bottom: 1.2rem; }
.visit__card address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  color: rgba(245, 239, 230, 0.85);
}
.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.8rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
  border-bottom: 1px solid rgba(245, 239, 230, 0.15);
}
.hours dt {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--c-gold);
  text-transform: uppercase;
}
.hours dd {
  font-size: 0.92rem;
  color: var(--c-cream);
}
.visit__phone {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 1rem;
  transition: color 0.3s var(--ease);
}
.visit__phone:hover { color: var(--c-cream); }
.visit__card .link-arrow {
  color: var(--c-cream);
  border-color: var(--c-gold);
}
.visit__card .link-arrow:hover { color: var(--c-gold); }

.visit__map {
  border-radius: 6px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 20px 50px -20px rgba(26,35,50,0.3);
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-ink);
  color: rgba(245, 239, 230, 0.75);
  padding: clamp(60px, 8vw, 90px) var(--pad-x) 2rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}
.footer__name {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  color: var(--c-cream);
  font-weight: 600;
}
.footer__brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 36ch;
  margin-top: 0.4rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.footer__col a {
  font-size: 0.95rem;
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--c-gold); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.5);
}

/* ============================================================
   FLOATING MOBILE CTA
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 90;
  background: var(--c-gold);
  color: var(--c-ink);
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 10px 30px -8px rgba(26,35,50,0.5);
  display: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.float-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -10px rgba(26,35,50,0.6);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-fade-up] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-fade-up].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__tools { display: none; }
  .nav__burger { display: flex; }

  .story__inner { grid-template-columns: 1fr; gap: 60px; }
  .story__media { aspect-ratio: 5/4; max-width: 600px; margin: 0 auto; }

  .service { grid-template-columns: 1fr; min-height: auto; }
  .service--reverse { grid-template-columns: 1fr; }
  .service--reverse .service__media { order: 1; }
  .service--reverse .service__panel { order: 2; padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .service__media { min-height: 50vh; }
  .service__panel { padding: 50px var(--pad-x); }

  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .timeline::before { display: none; }

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

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }

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

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }

  .float-cta { display: inline-flex; align-items: center; }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero__sub br { display: none; }
  .hero__actions { flex-direction: column; width: 100%; max-width: 320px; margin-inline: auto; }
  .hero__actions .btn { width: 100%; }

  .story__pillars { grid-template-columns: 1fr; gap: 1.2rem; }

  .field-row { grid-template-columns: 1fr; gap: 1.1rem; }

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

  .showcase__grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .showcase__item--wide,
  .showcase__item--tall { grid-column: span 1; grid-row: span 1; }

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

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .nav__logo-text { display: none; }
  .visit__card { padding: 1.8rem; }
  .testimonials blockquote { padding: 1.8rem 1.5rem; }
}

/* High-DPI / retina image clarity hint */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body { -webkit-font-smoothing: antialiased; }
}

/* ============================================================
   NAV TOOLS — language switcher
   ============================================================ */
.nav__tools {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 0.6rem;
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(245, 239, 230, 0.25);
  border-radius: 999px;
  padding: 2px;
  gap: 2px;
}
.lang-btn {
  padding: 0.3rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 230, 0.7);
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  line-height: 1;
}
.lang-btn:hover { color: var(--c-cream); }
.lang-btn.is-active {
  background: var(--c-gold);
  color: var(--c-ink);
}

/* Mobile menu tools */
.mobile-menu__tools {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-switcher--mobile { padding: 3px; }
.lang-switcher--mobile .lang-btn {
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
}
