/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --cream:        #faf8f5;
  --blush:        #f3ebe1;
  --blush-mid:    #ecddd1;
  --blush-deep:   #e2cfc0;
  --text:         #1a1714;
  --text-mid:     #4a4440;
  --text-muted:   #8a7f79;
  --accent:       #9e7a45;
  --accent-warm:  #c4a068;
  --accent-pale:  #e6d0aa;
  --white:        #ffffff;
  --border:       rgba(26, 23, 20, 0.08);
  --border-mid:   rgba(26, 23, 20, 0.14);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --max-w:      1240px;
  --gutter:     clamp(1.5rem, 5vw, 3.75rem);
  --section-y:  clamp(5rem, 10vw, 9rem);

  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.55, 0, 1, 0.45);
  --t:          0.38s var(--ease);
  --t-slow:     0.7s var(--ease);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ═══════════════════════════════════════════════════════
   GRAIN TEXTURE
═══════════════════════════════════════════════════════ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 320px 320px;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.65s var(--ease-in), transform 0.65s var(--ease-in);
}

.loader--out {
  opacity: 0;
  transform: translateY(-2%);
  pointer-events: none;
}

.loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  animation: fadeUp 0.75s var(--ease-out) 0.1s both;
}

.loader__logo {
  width: clamp(220px, 38vw, 340px);
  height: auto;
  opacity: 0.92;
}

.loader__bar-track {
  width: 100px;
  height: 1px;
  background: var(--blush-deep);
  overflow: hidden;
}

.loader__bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  animation: loaderFill 1.55s var(--ease) 0.35s forwards;
}

@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
}

/* ═══════════════════════════════════════════════════════
   CUSTOM CURSOR (desktop / pointer: fine only)
═══════════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    border-color 0.3s var(--ease),
    opacity 0.3s;
  opacity: 0;
}

.cursor.visible { opacity: 1; }
.cursor.hovering {
  width: 56px; height: 56px;
  border-color: var(--accent-warm);
  background: rgba(168,130,74,0.06);
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.cursor-dot.visible { opacity: 1; }

@media (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY GLOBALS
═══════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
}

.label {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.section--alt {
  background-color: var(--blush);
}

.section__header {
  margin-bottom: clamp(3rem, 5.5vw, 5rem);
}

.section__heading {
  font-size: clamp(2.8rem, 5.5vw, 4.75rem);
  font-weight: 300;
  margin-top: 0.5rem;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

/* ═══════════════════════════════════════════════════════
   BUTTON
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: background-color var(--t), color var(--t);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.btn:hover::before { background: rgba(255,255,255,0.07); }
.btn:active { transform: scale(0.985); }

.btn--primary {
  background-color: var(--text);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--accent);
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding-block: 1.5rem;
  transition:
    background-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    padding 0.45s var(--ease);
}

.nav.scrolled {
  background-color: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 var(--border);
  padding-block: 1.05rem;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 0.45em;
}

.nav__logo-salon {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  transition: color var(--t);
}

.nav__logo-avanti {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color var(--t);
}

.nav__logo:hover .nav__logo-salon { color: var(--accent); }
.nav__logo:hover .nav__logo-avanti { color: var(--text); }

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

.nav__links a {
  font-size: 0.71rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--t);
  position: relative;
  padding-bottom: 3px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background-color: var(--accent);
  transition: width 0.32s var(--ease);
}

.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after,
.nav__links a[aria-current]::after { width: 100%; }
.nav__links a[aria-current] { color: var(--accent); }

.nav__cta {
  padding: 0.52rem 1.4rem;
  background-color: var(--text);
  color: var(--white) !important;
  transition: background-color var(--t) !important;
  letter-spacing: 0.12em !important;
}

.nav__cta::after { display: none !important; }
.nav__cta:hover { background-color: var(--accent) !important; color: var(--white) !important; }

/* Vertical rule separator before social icons */
.nav__divider {
  width: 1px;
  height: 1rem;
  background: var(--border-mid);
  align-self: center;
  flex-shrink: 0;
  margin-inline: -0.75rem;
}

/* Social icon links */
.nav__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--text-muted);
  transition: color var(--t), transform 0.22s var(--ease);
}

.nav__icon-link:hover {
  color: var(--accent);
  transform: scale(1.18);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: none;
  cursor: none;
  z-index: 300;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--text);
  transition:
    transform 0.4s var(--ease),
    opacity 0.28s,
    width 0.28s;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav__hamburger { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0;
    background-color: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.38s var(--ease), transform 0.38s var(--ease);
    z-index: 199;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav__links a { font-size: 0.9rem; letter-spacing: 0.2em; }
  .nav__cta { padding: 0.7rem 2.2rem !important; }

  .nav__divider {
    width: 2.5rem;
    height: 1px;
    margin-inline: 0;
  }

  .nav__icon-link {
    width: 2.75rem;
    height: 2.75rem;
    color: var(--text-muted);
  }
}

/* ═══════════════════════════════════════════════════════
   HERO — full-bleed split panel
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
}

/* Two-column split: text left, photo right */
.hero__split {
  display: grid;
  grid-template-columns: 52fr 48fr;
  min-height: 100vh;
}

/* ── TEXT PANEL ── */
.hero__content-panel {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

/* Subtle warm bleed from left */
.hero__content-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 60%,
    rgba(232, 213, 181, 0.28) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero__content {
  width: 100%;
  max-width: 600px;
  padding: 8.5rem clamp(2rem, 4.5vw, 4.5rem) 5rem;
  position: relative;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.1s var(--ease-out) both;
}

.hero__eyebrow-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Heading: per-word clip reveal ── */
.hero__heading {
  display: block;
  margin-bottom: 2rem;
  overflow: visible;
}

.hero__word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 7.5vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  color: var(--text);
  overflow: hidden;
  line-height: 0.95;
}

.hero__word span {
  display: block;
  animation: clipUp 1s var(--ease-out) both;
}

.hero__word--italic span {
  font-style: italic;
  color: var(--accent);
  animation-delay: 0.14s;
}

@keyframes clipUp {
  from { transform: translateY(108%); }
  to   { transform: translateY(0); }
}

.hero__tagline {
  font-size: clamp(0.93rem, 1.3vw, 1.02rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.38s var(--ease-out) both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.9s 0.5s var(--ease-out) both;
}

.hero__link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t);
}

.hero__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.hero__link:hover { color: var(--accent); }
.hero__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── Mini stats strip ── */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.9s 0.65s var(--ease-out) both;
}

.hero__stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__stat-sep {
  display: block;
  width: 1px;
  height: 2rem;
  background: var(--border-mid);
  flex-shrink: 0;
}

/* Thin gold seam between panels */
.hero__content-panel::after {
  content: '';
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--accent-pale) 30%,
    var(--accent-pale) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ── PHOTO PANEL ── */
.hero__photo-panel {
  position: relative;
  overflow: hidden;
  background-color: var(--blush);
}

.hero__photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: transform 1s var(--ease);
  padding: 3rem 1.5rem;
}

/* Subtle vignette on photo edges */
.hero__photo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  var(--blush) 0%, transparent 12%),
    linear-gradient(to bottom, var(--blush) 0%, transparent 10%),
    linear-gradient(to top,    var(--blush) 0%, transparent 10%);
  z-index: 1;
  pointer-events: none;
}

/* Location tag pinned to bottom of photo */
.hero__photo-tag {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-mid);
  padding: 0.5rem 1rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 5vw, 4.5rem);
  z-index: 2;
  animation: fadeUp 0.9s 1.2s var(--ease-out) both;
}

.hero__scroll-inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero__scroll-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-track {
  width: 3.5rem;
  height: 1px;
  background: var(--border-mid);
  position: relative;
  overflow: hidden;
}

.hero__scroll-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: var(--accent);
  animation: scrollSlide 2.2s var(--ease) infinite 1.4s;
}

@keyframes scrollSlide {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(250%); }
  51%  { transform: translateX(-100%); }
  100% { transform: translateX(-100%); }
}

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

/* ── Mobile hero ── */
@media (max-width: 900px) {
  .hero__split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 86vw;
    min-height: 100vh;
  }

  .hero__content-panel {
    justify-content: flex-start;
    padding-top: 0;
  }

  .hero__content {
    max-width: 100%;
    padding: 7rem var(--gutter) 3rem;
    text-align: center;
  }

  .hero__eyebrow { justify-content: center; }
  .hero__tagline { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats   { justify-content: center; }

  .hero__photo-panel {
    position: relative;
    min-height: 86vw;
  }

  .hero__photo-panel img { padding: 1.5rem 1rem; }

  .hero__photo-panel::before { width: 20%; }

  .hero__scroll { display: none; }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding-block: 1.05rem;
  background: var(--cream);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}

.marquee__sep {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 0.5rem !important;
  color: var(--accent) !important;
  letter-spacing: 0 !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about__inner {
  display: grid;
  grid-template-columns: 0.26fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.about__aside {
  padding-top: 0.4rem;
  position: sticky;
  top: 6rem;
}

.about__rule {
  width: 1px;
  height: 5rem;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-top: 1.5rem;
  margin-left: 2px;
}

.about__heading {
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2.25rem;
  letter-spacing: -0.025em;
}

.about__heading em {
  color: var(--accent);
}

.about__copy p {
  font-size: clamp(0.93rem, 1.3vw, 1rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 58ch;
  margin-bottom: 1.25rem;
}

.about__stats {
  display: flex;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 3.5rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--border);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 13ch;
  line-height: 1.55;
}

@media (max-width: 780px) {
  .about__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about__aside { display: flex; align-items: center; gap: 1.25rem; position: static; }
  .about__rule { width: 2.5rem; height: 1px; background: linear-gradient(to right, var(--accent), transparent); margin: 0; }
  .about__stats { flex-wrap: wrap; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════
   SERVICES — editorial two-column list
═══════════════════════════════════════════════════════ */
.services__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(3rem, 6vw, 7rem);
}

.service-item {
  padding-block: 2.5rem;
  border-top: 1px solid var(--border-mid);
  position: relative;
  transition: padding-left 0.4s var(--ease);
}

/* First items in each column get a top border too */
.services__col:first-child .service-item:first-child,
.services__col:last-child .service-item:first-child {
  border-top: 1px solid var(--border-mid);
}

/* Gold left accent on hover */
.service-item::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}

.service-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.service-item:hover {
  padding-left: 1.25rem;
}

.service-item__header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 0.85rem;
}

.service-item__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  line-height: 1;
}

.service-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.service-item__desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 36ch;
  padding-left: calc(0.78rem + 1.5rem); /* align under title */
}

@media (max-width: 860px) {
  .services__cols { grid-template-columns: 1fr; gap: 0; }
}

/* ═══════════════════════════════════════════════════════
   GALLERY — carousel
═══════════════════════════════════════════════════════ */
.gallery__carousel {
  position: relative;
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: 0.85rem;
  transition: transform 0.58s var(--ease-out);
  will-change: transform;
}

.gallery__slide {
  min-width: calc(33.333% - 0.567rem);
  flex-shrink: 0;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background-color: var(--blush-mid);
}

.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  display: block;
}

.gallery__slide:hover img { transform: scale(1.06); }

.gallery__caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(26,23,20,0.62) 0%, transparent 52%);
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.38s var(--ease), transform 0.38s var(--ease);
}

.gallery__slide:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Prev / next buttons */
.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-mid);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  z-index: 4;
  color: var(--text);
  transition: background var(--t), transform 0.22s var(--ease), opacity 0.22s;
}

.gallery__btn--prev { left: 0.75rem; }
.gallery__btn--next { right: 0.75rem; }

.gallery__btn:hover {
  background: rgba(250, 248, 245, 1);
  transform: translateY(-50%) scale(1.1);
}

.gallery__btn:disabled {
  opacity: 0.22;
  pointer-events: none;
}

/* Dot indicators */
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 2rem;
}

.gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-mid);
  border: none;
  padding: 0;
  cursor: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery__dot.active {
  background: var(--accent);
  transform: scale(1.55);
}

@media (max-width: 768px) {
  .gallery__slide {
    min-width: calc(78% - 0.425rem);
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 480px) {
  .gallery__slide {
    min-width: calc(88% - 0.425rem);
  }
}

/* ═══════════════════════════════════════════════════════
   REVIEWS — featured quote + supporting grid
═══════════════════════════════════════════════════════ */

/* Featured */
.review-featured {
  text-align: center;
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1rem, 8vw, 8rem);
  border-top: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
}

/* Giant decorative open-quote */
.review-featured::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: var(--accent-pale);
  pointer-events: none;
  z-index: 0;
}

.review-featured__stars {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.review-featured__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 72ch;
  margin: 0 auto 2.25rem;
  position: relative;
  z-index: 1;
}

.review-featured__author {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* Supporting grid */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background-color: var(--white);
  padding: 2.25rem 2rem 2rem;
  position: relative;
  transition: box-shadow var(--t), transform var(--t);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-pale));
}

.review-card:hover {
  box-shadow: 0 14px 48px rgba(26,23,20,0.07);
  transform: translateY(-4px);
}

.review-card__stars {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.review-card__quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.review-card__author {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 1rem; }
  .review-featured { padding-inline: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.contact__group { margin-bottom: 2.25rem; }

.contact__label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.contact__value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
}

.contact__phone {
  transition: color var(--t);
  display: inline-block;
}

.contact__phone:hover { color: var(--accent); }

.contact__sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 300;
}

.contact__social { display: flex; gap: 1.5rem; margin-top: 0.25rem; }

.social-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease);
}

.social-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact__map {
  height: 540px;
  overflow: hidden;
  background-color: var(--blush-mid);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.8) contrast(1.05) brightness(1.02);
}

/* Photo replacement for map */
.contact__map--photo {
  display: block;
  position: relative;
  cursor: none;
  text-decoration: none;
}

.contact__map--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.65s var(--ease);
  filter: brightness(0.96) contrast(1.06) saturate(0.9);
}

.contact__map--photo:hover img {
  transform: scale(1.03);
}

.contact__map-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-mid);
  padding: 0.55rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: background var(--t), transform 0.22s var(--ease);
}

.contact__map--photo:hover .contact__map-badge {
  background: rgba(250, 248, 245, 0.98);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
  .contact__map { height: 380px; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER — large wordmark treatment
═══════════════════════════════════════════════════════ */
.footer {
  background-color: var(--text);
  color: var(--white);
  overflow: hidden;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 18rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 0.88;
  text-align: center;
  padding-block: clamp(2rem, 5vw, 4rem);
  padding-inline: var(--gutter);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  user-select: none;
  pointer-events: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 2rem;
}

.footer__address {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.05em;
  font-style: normal;
}

.footer__copy {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
}

.footer__social a:hover { color: var(--accent-warm); }

@media (max-width: 600px) {
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ═══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__word span { transform: none; }
}
