/* ==========================================================================
   Le Deux Salon — stylesheet
   ========================================================================== */

/* ---- Fonts (self-hosted) ---- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../assets/fonts/cormorant-garamond-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../assets/fonts/jost-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../assets/fonts/jost-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('../assets/fonts/jost-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --ink: #211d19;
  --ink-soft: #4a423a;
  --cream: #faf6ee;
  --cream-2: #f1e9d8;
  --cream-3: #e9dcc0;
  --gold: #a9803f;
  --gold-deep: #7c5c2b;
  --gold-light: #e6d3a5;
  --white: #ffffff;
  --line: rgba(33, 29, 25, 0.12);
  --shadow: 0 20px 50px -25px rgba(33, 29, 25, 0.35);
  --shadow-soft: 0 12px 30px -18px rgba(33, 29, 25, 0.25);
  --radius: 2px;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Jost', -apple-system, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.003em;
}
p { margin: 0; line-height: 1.7; color: var(--ink-soft); }
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; flex-shrink: 0; }
.icon-rot-left { transform: rotate(90deg); }
.icon-rot-right { transform: rotate(-90deg); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--alt { background: var(--cream-2); }
.section--ink {
  background: var(--ink);
  color: var(--cream);
}
.section--ink p { color: rgba(250, 246, 238, 0.72); }
.section--ink h2, .section--ink h3 { color: var(--cream); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-style: italic;
  font-weight: 500;
}
.section-head p { margin-top: 18px; font-size: 1.08rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,246,238,0.35);
}
.btn-ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-sm { padding: 13px 26px; font-size: 12px; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(33,29,25,0.3);
}

.brand { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ink);
}
.brand-name em { color: var(--gold-deep); font-style: italic; }
.brand-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-left: 2px;
}
.on-dark .brand-name { color: var(--cream); }
.on-dark .brand-sub { color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.on-dark .main-nav a { color: var(--cream); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s cubic-bezier(.22,1,.36,1);
}
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.main-nav a.is-active { color: var(--gold-deep); }
.on-dark .main-nav a.is-active { color: var(--gold-light); }

/* Force readable (dark) header text once scrolled, even though on-dark
   is set for the transparent state over the hero image */
.site-header.is-scrolled .brand-name { color: var(--ink); }
.site-header.is-scrolled .brand-sub { color: var(--gold-deep); }
.site-header.is-scrolled .main-nav a { color: var(--ink); }
.site-header.is-scrolled .main-nav a.is-active { color: var(--gold-deep); }
.site-header.is-scrolled .nav-phone { color: var(--ink); }
.site-header.is-scrolled .nav-toggle span,
.site-header.is-scrolled .nav-toggle span::before,
.site-header.is-scrolled .nav-toggle span::after { background: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 22px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px; height: 26px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.on-dark .nav-toggle span, .on-dark .nav-toggle span::before, .on-dark .nav-toggle span::after { background: var(--cream); }
.nav-toggle span { top: 12px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(8px) rotate(45deg); background: var(--ink); }
.nav-toggle.is-open span::after { transform: translateY(-8px) rotate(-45deg); background: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.55) 0%, rgba(20,17,14,0.35) 38%, rgba(20,17,14,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 200px 0 96px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 26px;
}
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 500;
  max-width: 15ch;
  color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.hero-sub {
  margin-top: 26px;
  max-width: 46ch;
  font-size: 1.15rem;
  color: rgba(250, 246, 238, 0.86);
}
.hero-actions { margin-top: 42px; display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 76px;
  display: flex;
  gap: clamp(28px, 6vw, 64px);
  flex-wrap: wrap;
  border-top: 1px solid rgba(250,246,238,0.22);
  padding-top: 32px;
}
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold-light);
}
.hero-stat span {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.68);
  margin-top: 4px;
}

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.trust-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 20px 0;
  overflow: hidden;
}
.trust-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scrollTrack 32s linear infinite;
  width: max-content;
}
.trust-track span {
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.78);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.trust-track span b { color: var(--gold-light); font-weight: 600; }
.trust-track span::after { content: '✦'; color: var(--gold); margin-left: 52px; font-size: 10px; }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}

/* ==========================================================================
   About teaser / split sections
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-media .frame-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--gold);
  color: var(--white);
  padding: 22px 26px;
  max-width: 220px;
  box-shadow: var(--shadow-soft);
}
.frame-badge b { display: block; font-family: var(--font-display); font-size: 2rem; font-style: italic; }
.frame-badge span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.split-copy h2 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-style: italic;
  font-weight: 500;
}
.split-copy p { margin-top: 20px; font-size: 1.05rem; }
.split-copy p + p { margin-top: 14px; }
.split-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.split-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; color: var(--ink-soft); }
.split-list .icon { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.split-copy .btn { margin-top: 34px; }

/* ==========================================================================
   Service cards
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--cream);
  padding: 44px 32px;
  transition: background 0.35s ease;
  position: relative;
}
.service-card:hover { background: var(--white); }
.service-card .icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  color: var(--gold-deep);
  font-size: 22px;
}
.service-card h3 { font-size: 1.4rem; font-style: italic; font-weight: 500; }
.service-card p { margin-top: 12px; font-size: 0.94rem; }
.service-card .learn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.service-card .learn .icon { transition: transform 0.3s ease; }
.service-card:hover .learn .icon { transform: translateX(4px); }

/* ==========================================================================
   Gallery grid
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item.tall { aspect-ratio: 1/1.25; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(20,17,14,0.55);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover .tag { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Gallery carousel cards (swipeable, per-person)
   ========================================================================== */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.people-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2);
  box-shadow: var(--shadow-soft);
}
.carousel-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  user-select: none;
  -webkit-user-drag: none;
}
.people-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0) 55%, rgba(20,17,14,0.62) 100%);
  pointer-events: none;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(250,246,238,0.88);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.22);
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.carousel-btn .icon { width: 15px; height: 15px; }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-btn:hover { background: var(--gold); color: #fff; }
.carousel-btn[disabled] { opacity: 0 !important; pointer-events: none; }
@media (hover: hover) and (pointer: fine) {
  .people-card:hover .carousel-btn:not([disabled]) { opacity: 1; }
}

.carousel-dots {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}
.carousel-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dots span.is-active { background: var(--gold-light); transform: scale(1.25); }

.people-card .count-tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  background: rgba(20,17,14,0.55);
  backdrop-filter: blur(6px);
  color: var(--cream);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.people-card .count-tag .icon { width: 11px; height: 11px; }

.people-card.is-empty {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(33,29,25,0.4);
  border: 1.5px dashed var(--line);
  background: var(--cream);
}
.people-card.is-empty .icon { width: 30px; height: 30px; color: var(--gold-light); }
.people-card.is-empty span { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  padding: 38px 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-stars { display: flex; gap: 3px; color: var(--gold); font-size: 15px; margin-bottom: 20px; }
.review-quote-icon { color: var(--cream-3); font-size: 34px; line-height: 1; margin-bottom: 4px; font-family: var(--font-display); }
.review-card p.body {
  font-size: 0.98rem;
  color: var(--ink-soft);
  flex-grow: 1;
  font-style: italic;
}
.review-foot {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
}
.review-foot b { display: block; font-size: 0.92rem; font-weight: 600; }
.review-foot span { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }
.review-source {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(230,211,165,0.18);
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -30%; right: 0;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(230,211,165,0.14);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: clamp(56px, 8vw, 88px) 0;
}
.cta-inner h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-style: italic;
  font-weight: 500;
  max-width: 16ch;
  color: var(--cream);
}
.cta-inner p { margin-top: 14px; color: rgba(250,246,238,0.7); max-width: 40ch; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Info / hours strip
   ========================================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 8px;
}
.info-cell { background: var(--cream); padding: 40px 36px; }
.info-cell .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}
.info-cell h4 { font-size: 1.1rem; letter-spacing: 0.02em; margin-bottom: 12px; }
.info-cell p { font-size: 0.94rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.94rem; padding: 6px 0; color: var(--ink-soft); }
.hours-row.closed { opacity: 0.55; }
.hours-row b { color: var(--ink); font-weight: 500; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(250,246,238,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,246,238,0.12);
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { margin-top: 18px; max-width: 30ch; font-size: 0.92rem; color: rgba(250,246,238,0.6); }
.footer-social { margin-top: 24px; }

/* ---- Brand social buttons (Instagram / Facebook) ---- */
.social-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease;
  flex-shrink: 0;
}
.social-btn .icon { width: 21px; height: 21px; }
.social-btn:hover { transform: translateY(-4px) scale(1.06); box-shadow: var(--shadow); }
.social-btn.ig {
  border-radius: 13px;
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-btn.fb {
  border-radius: 50%;
  background: #1877F2;
}
.social-row { display: flex; gap: 12px; align-items: center; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a, .footer-col span { font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 12.5px;
  color: rgba(250,246,238,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(250,246,238,0.45); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 200px 0 110px;
  color: var(--cream);
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,0.72) 0%, rgba(20,17,14,0.6) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px;
}
.breadcrumb span { color: rgba(250,246,238,0.5); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
}
.page-hero p { margin-top: 18px; max-width: 50ch; color: rgba(250,246,238,0.8); font-size: 1.05rem; }

/* ---- Reveal on scroll ---- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ==========================================================================
   Services page specifics
   ========================================================================== */
.service-category { margin-bottom: 64px; }
.service-category:last-child { margin-bottom: 0; }
.category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 6px;
}
.category-head h3 {
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.category-head h3 .icon { color: var(--gold); font-size: 20px; }
.category-note { font-size: 0.85rem; color: var(--ink-soft); text-align: right; max-width: 30ch; }
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
}
.service-row:last-child { border-bottom: none; }
.service-row-main h4 { font-size: 1.15rem; font-weight: 500; font-family: var(--font-sans); }
.service-row-main p { margin-top: 6px; font-size: 0.88rem; }
.service-row-meta { text-align: right; flex-shrink: 0; white-space: nowrap; }
.service-row-meta .price {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-deep);
}
.service-row-meta .duration {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ==========================================================================
   About page specifics
   ========================================================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card { text-align: left; }
.value-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 14px;
}
.value-card h4 { font-size: 1.25rem; font-weight: 500; color: var(--cream); }
.value-card p { margin-top: 10px; font-size: 0.92rem; }

.policy-box {
  border: 1px solid var(--line);
  padding: 40px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
}
.policy-box .icon-wrap {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 19px;
}
.policy-box h4 { font-size: 1.2rem; font-weight: 500; margin-bottom: 8px; }

/* ==========================================================================
   Contact page specifics
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 72px);
}
.contact-card {
  border: 1px solid var(--line);
  padding: 20px 0;
}
.contact-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  margin: 0 32px;
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon-wrap {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}
.contact-item h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 0.92rem; }
.contact-item a:hover { color: var(--gold-deep); }
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  filter: grayscale(0.35) contrast(1.05);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 0; top: 0; z-index: 90; }
  .main-nav ul {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(360px, 84vw);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 0 48px;
    box-shadow: -30px 0 60px rgba(0,0,0,0.15);
    transition: right 0.45s cubic-bezier(.22,1,.36,1);
  }
  .main-nav ul.is-open { right: 0; }
  .main-nav a { font-size: 18px; }
  /* The slide-out panel is always cream, so its links must stay dark
     regardless of the header's on-dark/transparent state */
  .on-dark .main-nav ul a { color: var(--ink); }
  .on-dark .main-nav ul a.is-active { color: var(--gold-deep); }
  .on-dark .nav-toggle span, .on-dark .nav-toggle span::before, .on-dark .nav-toggle span::after { background: var(--ink); }
  .on-dark .nav-toggle.is-open span { background: transparent; }
  .nav-toggle { display: block; z-index: 95; }
  .nav-phone { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media, .split.reverse .split-copy { order: unset; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid, .gallery-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .service-grid, .review-grid, .gallery-grid, .value-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .service-row { flex-direction: column; gap: 8px; }
  .service-row-meta { text-align: left; }
  .service-row-meta .duration { justify-content: flex-start; }
  .category-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .category-note { text-align: left; }
  .frame-badge { display: none; }
  .hero-stats { gap: 24px; }

  /* General mobile spacing pass */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .eyebrow { margin-bottom: 14px; }

  .hero-content { padding: 132px 0 56px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-sub { margin-top: 18px; }
  .hero-actions { margin-top: 30px; flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { margin-top: 44px; padding-top: 24px; }

  .split { gap: 32px; }
  .split-copy p { margin-top: 16px; }
  .split-copy p + p { margin-top: 10px; }
  .split-list { margin-top: 20px; gap: 12px; }
  .split-copy .btn { margin-top: 26px; width: 100%; justify-content: center; }

  .service-card { padding: 32px 24px; }
  .review-card { padding: 28px 24px; }
  .review-foot { margin-top: 20px; padding-top: 16px; }

  .info-cell { padding: 28px 24px; }

  .cta-band .cta-inner { gap: 24px; padding: 48px 0; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  .site-footer { padding: 56px 0 0; }
  .footer-grid { gap: 36px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px 0; }
}
