/* ========== TOKENS ========== */
:root {
  --bg: #f5efe7;
  --bg-alt: #ebe1d2;
  --bg-deep: #1a1612;
  --paper: #ffffff;
  --ink: #1a1612;
  --ink-soft: #5b4a3a;
  --ink-mute: #8a7a68;
  --accent: #b29184;
  --accent-deep: #8a6754;
  --line: rgba(26, 22, 18, 0.12);
  --line-strong: rgba(26, 22, 18, 0.24);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 28px;
  --r-pill: 999px;

  --maxw: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ========== UTIL ========== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent-deep);
}

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}

h2 { font-size: clamp(38px, 4.6vw, 68px); }
h3 { font-size: clamp(24px, 2.2vw, 32px); }

.lead {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* divider ornament */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--accent);
  margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: "";
  width: 60px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-arrow::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.25s ease;
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(4px); }

/* ========== HEADER ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 231, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  flex-wrap: nowrap;
  min-width: 0;
}
.logo { flex-shrink: 0; }
.nav { flex-wrap: nowrap; white-space: nowrap; min-width: 0; }
.header-cta { flex-shrink: 0; }
.logo {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-mark {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.02em;
}
.logo-mark em { font-style: italic; color: var(--accent-deep); }
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
}
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.burger span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  position: relative;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (max-width: 1180px) {
  .header-phone { display: none; }
}
@media (max-width: 1100px) {
  .nav { gap: 20px; }
  .nav a:nth-child(4), .nav a:nth-child(5) { display: none; }
}
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .burger { display: flex; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  padding: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.6,.05,.3,1), visibility 0s linear 0.4s;
  display: flex; flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(.6,.05,.3,1), visibility 0s linear 0s;
}
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-close {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.mobile-menu-nav {
  margin-top: 64px;
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-menu-nav a {
  font-family: var(--serif);
  font-size: 38px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}

/* ========== HERO ========== */
.hero {
  padding: 64px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: end;
}
.hero-h1 {
  font-size: clamp(54px, 7.2vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 300;
}
.hero-meta {
  display: flex; gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-meta > div { max-width: 22ch; }
.hero-meta dt {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 8px;
}
.hero-meta dd { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.hero-actions {
  display: flex; gap: 16px; margin-top: 48px; flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
}
.hero-image {
  width: 100%; height: 100%;
  border-radius: 280px 280px 12px 12px;
  background: linear-gradient(160deg, #d4c2ad 0%, #b29184 60%, #8a6754 100%);
  position: relative;
  overflow: hidden;
}
.hero-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  right: -16px; top: 32px;
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 16px;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  animation: spin 24s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-badge-inner {
  font-style: italic; font-size: 22px; line-height: 1;
  display: block; margin-top: 6px;
}

@media (max-width: 980px) {
  .hero { padding: 32px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { aspect-ratio: 4/5; max-width: 520px; }
  .hero-badge { width: 100px; height: 100px; font-size: 11px; right: 8px; top: 16px; }
  .hero-badge-inner { font-size: 18px; }
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
}
.marquee-track span { display: flex; align-items: center; gap: 56px; }
.marquee-track span::after {
  content: "✶"; color: var(--accent); font-style: normal; font-size: 14px;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ========== SECTION CHROME ========== */
.section { padding: 120px 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: end;
}
.section-head-stack { display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 820px) {
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
}

/* ========== SERVICES ========== */
#services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-card {
  background: var(--bg-alt);
  padding: 40px 32px 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 360px;
  position: relative;
  transition: background 0.3s ease;
  cursor: pointer;
  outline: none;
}
.service-card:focus-visible { box-shadow: inset 0 0 0 2px var(--accent-deep); }
.service-card::before {
  content: "";
  position: absolute;
  top: 24px; right: 24px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6754' stroke-width='1.6'><path d='M7 17 L17 7 M10 7 H17 V14'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  opacity: 0.7;
}
.service-card:hover { background: var(--bg); }
.service-card:hover::before {
  transform: rotate(45deg) translateY(2px);
  opacity: 1;
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.service-card h3 {
  font-size: 30px;
  letter-spacing: -0.005em;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.service-price {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 12px;
}
.service-price-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.service-price-value { font-family: var(--serif); font-size: 28px; }
.service-price-value em { font-style: normal; color: var(--accent-deep); font-size: 16px; margin-right: 4px; }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-image-wrap {
  position: sticky;
  top: 120px;
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: linear-gradient(140deg, #d4c2ad, #8a6754);
  overflow: hidden;
  position: relative;
}
.about-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 32px;
}
.about-stat { background: var(--bg); padding: 24px; }
.about-stat-num { font-family: var(--serif); font-size: 48px; line-height: 1; color: var(--accent-deep); }
.about-stat-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 8px; }

.about-body p { color: var(--ink-soft); margin-bottom: 20px; font-size: 17px; line-height: 1.65; }
.about-body p strong { color: var(--ink); font-weight: 500; }
.about-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 32px 0;
}
.about-quote::before { content: "« "; color: var(--accent); }
.about-quote::after { content: " »"; color: var(--accent); }

.credentials {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.credential {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.credential-year { font-family: var(--serif); font-size: 22px; color: var(--accent-deep); }
.credential-body { font-size: 15px; color: var(--ink-soft); }
.credential-body strong { color: var(--ink); display: block; font-weight: 500; margin-bottom: 2px; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { position: static; max-width: 520px; }
}

/* ========== CERTS STRIP ========== */
.certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.cert-card--vert { aspect-ratio: 3/4; }
.cert-card {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.3s ease;
}
.cert-card:hover { transform: translateY(-4px); }
.cert-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.cert-card .cert-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.85), transparent);
  color: var(--bg);
  padding: 32px 20px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.cert-card .cert-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
@media (max-width: 820px) {
  .certs { grid-template-columns: repeat(2, 1fr); }
}

/* ========== BEFORE/AFTER ========== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-card {
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.ba-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
}
.ba-half {
  aspect-ratio: 1;
  background: linear-gradient(140deg, #e8d8c4, #c9aa90);
  position: relative;
}
.ba-half:nth-child(2) { background: linear-gradient(140deg, #f3e6d4, #d4b59a); }
.ba-half img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(26,22,18,0.7); color: var(--bg);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 10px; border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
.ba-meta { padding: 20px 24px; }
.ba-meta h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; }
.ba-meta p { font-size: 13px; color: var(--ink-mute); }
.ba-meta p strong { color: var(--ink-soft); }

@media (max-width: 980px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .ba-grid { grid-template-columns: 1fr; } }

/* ========== PROCESS ========== */
#process { background: var(--bg-deep); color: var(--bg); }
#process h2, #process h3 { color: var(--bg); }
#process .lead { color: rgba(245,239,231,0.7); }
#process .eyebrow { color: var(--accent); }
#process .eyebrow::before { background: var(--accent); }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.process-step {
  border-top: 1px solid rgba(245,239,231,0.18);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.process-num {
  font-family: var(--serif);
  font-size: 56px;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.process-step h3 { font-size: 22px; color: var(--bg); }
.process-step p { color: rgba(245,239,231,0.65); font-size: 14px; }

@media (max-width: 820px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 32px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.review-stars { color: var(--accent); letter-spacing: 4px; font-size: 14px; }
.review-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-alt); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px;
}
.review-name { font-size: 14px; font-weight: 500; }
.review-meta { font-size: 12px; color: var(--ink-mute); }

@media (max-width: 980px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-deep); }
.faq summary::after {
  content: "+";
  font-size: 32px;
  font-family: var(--sans);
  font-weight: 200;
  color: var(--accent-deep);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 70ch;
}

/* ========== CTA / BOOKING ========== */
.booking {
  background: var(--accent-deep);
  color: var(--bg);
  border-radius: var(--r-lg);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.booking-head h2 { color: var(--bg); margin-bottom: 24px; }
.booking-head p { color: rgba(245,239,231,0.8); margin-bottom: 32px; }
.booking-meta { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.booking-meta a, .booking-meta div {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(245,239,231,0.92);
}
.booking-meta svg { color: var(--accent); flex-shrink: 0; }

.booking-form {
  background: rgba(26,22,18,0.18);
  backdrop-filter: blur(6px);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; z-index: 1;
}
.booking-form label { display: flex; flex-direction: column; gap: 6px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,239,231,0.7); }
.booking-form input, .booking-form select, .booking-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,239,231,0.3);
  color: var(--bg);
  padding: 10px 0;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}
.booking-form input::placeholder, .booking-form textarea::placeholder { color: rgba(245,239,231,0.4); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--accent); }
.booking-form select { color: var(--bg); }
.booking-form select option { background: var(--accent-deep); color: var(--bg); }
.booking-form .btn { justify-content: center; margin-top: 8px; }
.booking-form .legal { font-size: 11px; color: rgba(245,239,231,0.55); text-align: center; }
.booking-form .legal a { text-decoration: underline; }

@media (max-width: 980px) {
  .booking { padding: 48px 32px; grid-template-columns: 1fr; gap: 32px; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-deep);
  color: rgba(245,239,231,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--bg); }
.footer-brand .logo-mark { color: var(--bg); font-size: 32px; }
.footer-brand .logo-sub { color: rgba(245,239,231,0.5); }
.footer-brand p { font-size: 13px; margin-top: 16px; max-width: 32ch; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(245,239,231,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.footer-socials a:hover { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(245,239,231,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 12px;
  color: rgba(245,239,231,0.5);
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========== SERVICE MODAL ========== */
.svc-modal {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(26,22,18,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.svc-modal.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.svc-modal-card {
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--r-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 40px 80px rgba(26,22,18,0.4);
}
.svc-modal.open .svc-modal-card { transform: translateY(0) scale(1); }
.svc-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--ink);
  z-index: 2;
  transition: background 0.2s ease;
}
.svc-modal-close:hover { background: var(--accent); color: var(--bg); }

.svc-modal-head {
  padding: 48px 48px 24px;
  border-bottom: 1px solid var(--line);
}
.svc-modal-head .eyebrow { margin-bottom: 16px; }
.svc-modal-head h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.svc-modal-head p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 56ch;
}
.svc-modal-body {
  padding: 32px 48px;
}
.svc-modal-section { margin-bottom: 32px; }
.svc-modal-section:last-child { margin-bottom: 0; }
.svc-modal-section h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  font-weight: 500;
}
.svc-price-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.svc-price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.svc-price-item-name { font-size: 15px; color: var(--ink); }
.svc-price-item-name small {
  display: block;
  color: var(--ink-mute);
  font-size: 12px;
  margin-top: 4px;
}
.svc-price-item-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--accent-deep);
  white-space: nowrap;
}
.svc-prep-list {
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.svc-prep-chip {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--ink-soft);
}
.svc-modal-foot {
  padding: 24px 48px 48px;
  border-top: 1px solid var(--line);
  display: flex; gap: 16px; flex-wrap: wrap;
  background: var(--bg-alt);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.svc-modal-foot .btn { flex: 1; justify-content: center; min-width: 200px; }

@media (max-width: 620px) {
  .svc-modal { padding: 12px; }
  .svc-modal-head { padding: 40px 24px 20px; }
  .svc-modal-body { padding: 24px; }
  .svc-modal-foot { padding: 20px 24px 24px; }
}

/* ========== TWEAKS PANEL (lightweight) ========== */
.tweaks {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 200;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(26,22,18,0.15);
  width: 280px;
  padding: 20px;
  display: none;
  flex-direction: column; gap: 16px;
  font-size: 13px;
}
.tweaks.open { display: flex; }
.tweaks h5 { font-family: var(--serif); font-size: 20px; }
.tweaks-row { display: flex; flex-direction: column; gap: 8px; }
.tweaks-row label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.tweaks-swatches { display: flex; gap: 8px; }
.tweaks-swatch {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.tweaks-swatch.active { border-color: var(--ink); }
.tweaks-swatch:hover { transform: scale(1.08); }
.tweaks-close {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}
.tweaks-toggle {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 199;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(26,22,18,0.25);
}
.tweaks-toggle.visible { display: flex; }
