/* =========================================================
   Form & Face · shared styles for inner pages
   Used by brows.html, lips.html, tan.html, faq.html.
   ========================================================= */

:root {
  --bg:        #F1EEE7;
  --bg-2:      #FAF8F2;
  --ink:       #2C2624;
  --ink-soft:  #5A4944;
  --faint:     #9C8E87;
  --rule:      #E3DDD0;
  --sand:      #C9C1B2;
  --soft:      #D9CFC0;
  --accent:    #A6C5D6;        /* soft blue */
  --accent-2:  #7FA8BD;        /* deeper hover */

  --display: "Italiana", "Cormorant Garamond", serif;
  --serif:   "Cormorant Garamond", "Italiana", serif;
  --sans:    "DM Sans", system-ui, sans-serif;

  --pad-x: clamp(20px, 4vw, 64px);
  --max:   1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); overflow-x: hidden; }
body {
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── Type primitives ──────────────────────────────────── */
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--accent);
}
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.98;
}
.h-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
}

/* ── Logo lockup ──────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.logo img { display: block; height: 34px; width: auto; }
.logo--lg img { height: 58px; }
.logo .seal {
  width: 40px; height: 40px;
  border: 1.25px solid currentColor;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1;
  padding-bottom: 3px;
}
.logo .wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.005em;
}
.logo--lg .seal { width: 52px; height: 52px; font-size: 30px; }
.logo--lg .wordmark { font-size: 38px; }

/* ── Nav (same as landing) ────────────────────────────── */
.nav {
  padding: 28px var(--pad-x) 22px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  border-bottom: 1px solid var(--rule);
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--accent-2); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: left; transition: transform 220ms ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-current::after { transform: scaleX(1); background: var(--accent); }

.nav-links a.nav-cta {
  display: inline-flex; align-items: center;
  padding: 12px 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg-2);
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: background 180ms ease;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--accent-2); }

/* ── Contact form (repeated on FAQ) ───────────────────── */
.contact {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
}
.contact-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.contact .kicker { display: inline-block; margin-bottom: 18px; }
.contact h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 14px;
}
.contact .h-italic {
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--ink-soft);
  margin-bottom: 36px;
  display: block;
}
.contact form { text-align: left; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  background: var(--bg);
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 12px 4px;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color 220ms ease, background 220ms ease;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: var(--bg-2);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field .upload {
  border: 1px dashed var(--sand);
  padding: 18px;
  display: flex; align-items: center; justify-content: flex-start; gap: 16px;
  cursor: pointer;
  background: var(--bg);
  transition: border-color 220ms ease, background 220ms ease;
}
.upload:hover, .upload:focus-within { border-color: var(--accent); background: var(--bg-2); }
.upload .plus {
  display: block;
  position: relative;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  flex-shrink: 0;
  font-size: 0;
}
/* Draw the plus as a centered cross so it's geometrically centered
   (a text "+" sits high due to font metrics). */
.upload .plus::before, .upload .plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); background: var(--accent);
}
.upload .plus::before { width: 14px; height: 1.5px; }
.upload .plus::after  { width: 1.5px; height: 14px; }
.upload-text { display: flex; flex-direction: column; align-items: flex-start; }
.upload-text .title { font-size: 14.5px; color: var(--ink); }
.upload-text .sub { font-family: var(--sans); font-size: 10.5px; letter-spacing: 1.4px; color: var(--faint); text-transform: uppercase; }
.upload input[type="file"] { display: none; }
.send {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border: none;
  background: var(--ink);
  color: var(--bg-2);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 999px;
  transition: background 200ms ease, transform 200ms ease;
}
.send:hover { background: var(--accent-2); }
.send:active { transform: translateY(1px); }
.send .arrow { transition: transform 220ms ease; }
.send:hover .arrow { transform: translateX(3px); }
.form-meta {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── Reveal-on-scroll ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2,0.6,0.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Generic link/button (inline) ─────────────────────── */
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: border-color 200ms ease, color 200ms ease;
}
.btn-link:hover { color: var(--accent-2); border-color: var(--accent-2); }
.btn-link .arrow { display: inline-block; transition: transform 220ms ease; }
.btn-link:hover .arrow { transform: translateX(3px); }

/* ── Book CTA (dark band) ─────────────────────────────── */
.book-cta {
  background: var(--ink);
  color: var(--bg-2);
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(200,134,122,0.16) 0%, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(200,134,122,0.12) 0%, transparent 46%);
  pointer-events: none;
}
.book-cta-inner { max-width: 720px; margin: 0 auto; position: relative; }
.book-cta .kicker { color: var(--accent); display: inline-block; margin-bottom: 18px; }
.book-cta h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  margin: 0 0 18px;
}
.book-cta .h-italic {
  font-size: clamp(20px, 1.8vw, 28px);
  color: rgba(251,246,241,0.78);
  max-width: 520px;
  margin: 0 auto 36px;
  display: block;
}
.book-cta .btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg-2);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: background 200ms ease, transform 200ms ease;
}
.book-cta .btn-primary:hover { background: var(--accent-2); }
.book-cta .btn-primary:active { transform: translateY(1px); }
.book-cta .btn-primary .arrow { transition: transform 220ms ease; }
.book-cta .btn-primary:hover .arrow { transform: translateX(4px); }
.book-cta .availability {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(251,246,241,0.55);
}
.book-cta .availability .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ── Footer (same as landing) ─────────────────────────── */
footer {
  padding: clamp(60px, 7vw, 92px) var(--pad-x) 36px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--rule);
}
.footer-studio .logo { margin-bottom: 22px; }
.footer-studio .address {
  font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); max-width: 320px;
  overflow-wrap: anywhere;
}
.socials {
  margin-top: 22px;
  display: flex; gap: 10px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background 180ms ease, color 180ms ease;
}
.socials a:hover { background: var(--ink); color: var(--bg-2); }
.socials a svg { width: 17px; height: 17px; display: block; }
.socials a:hover svg { color: var(--bg-2); }
.footer-nav-col h5 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 16px; font-weight: 500;
}
.footer-nav-col ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-nav-col li a {
  font-size: 14.5px; color: var(--ink-soft); transition: color 180ms ease;
}
.footer-nav-col li a:hover { color: var(--accent-2); }

.footer-meta {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 22px;
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-x: clamp(20px, 4vw, 40px); }
  .logo .seal { width: 36px; height: 36px; font-size: 22px; }
  .logo--lg .seal { width: 46px; height: 46px; font-size: 26px; }
  .logo .wordmark { font-size: 26px; }
  .logo--lg .wordmark { font-size: 32px; }
  .nav-links { gap: 24px; font-size: 13px; }
  .nav { padding: 22px var(--pad-x) 18px; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; }
  .nav { padding: 20px var(--pad-x) 16px; gap: 14px; }
  .nav-links { gap: 16px; font-size: 12.5px; flex-wrap: wrap; justify-content: center; }
  .nav-links a.is-cta, .nav-links a.nav-cta { display: none; }
  .book-cta { padding: 64px var(--pad-x); }
  .book-cta h2 { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* =========================================================
   Service page sections — used by brows/lips/tan
   ========================================================= */

/* ── Service hero — full-bleed photo + title overlay ── */
.service-hero {
  position: relative;
  height: clamp(540px, 72vh, 760px);
  overflow: hidden;
  background: var(--soft);
}
.service-hero image-slot.photo {
  position: absolute; inset: 0;
  display: block; width: auto; height: auto;
}
.service-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20,12,8,0) 0%,
    rgba(20,12,8,0) 38%,
    rgba(20,12,8,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.service-hero-inner {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 var(--pad-x) clamp(40px, 6vw, 72px);
  z-index: 2;
  display: flex; flex-direction: column; gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}
.service-hero .kicker {
  color: rgba(251,246,241,0.85);
  text-shadow: 0 1px 6px rgba(20,12,8,0.45);
}
.service-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.9;
  margin: 0;
  color: var(--bg-2);
  text-shadow: 0 2px 14px rgba(20,12,8,0.42), 0 0 36px rgba(20,12,8,0.22);
  letter-spacing: -0.005em;
}
.service-hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.3;
  color: rgba(251,246,241,0.94);
  text-shadow: 0 1px 8px rgba(20,12,8,0.45);
  max-width: 540px;
  margin: 0;
}
.service-hero .hero-book {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  margin-top: 26px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px -12px rgba(20,12,8,0.55);
  transition: background 200ms ease, transform 150ms ease;
}
.service-hero .hero-book:hover { background: var(--accent-2); }
.service-hero .hero-book:active { transform: translateY(1px); }
.service-hero .hero-book .arrow { transition: transform 220ms ease; }
.service-hero .hero-book:hover .arrow { transform: translateX(3px); }

/* ── Intro · what this service is ───────────────────── */
.service-intro {
  padding: clamp(80px, 10vw, 130px) var(--pad-x);
}
.service-intro-inner {
  max-width: 880px; margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.service-intro h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  margin: 0;
}
.service-intro .body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.service-intro .body p:last-child { margin-bottom: 0; }
.service-intro .body .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 22px;
}

/* ── Process · how it works ────────────────────────── */
.service-process {
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
}
.service-process-head {
  max-width: 720px; margin: 0 auto clamp(50px, 6vw, 80px);
  text-align: center;
}
.service-process-head .kicker { display: inline-block; margin-bottom: 14px; }
.service-process-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  margin: 0 0 12px;
}
.service-process-head .h-italic {
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--ink-soft);
}
.process-steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.process-step .num {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ── Aftercare · compact strip ─────────────────────── */
.service-aftercare {
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
}
.service-aftercare-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.service-aftercare-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--soft);
  overflow: hidden;
}
.service-aftercare-photo image-slot.photo {
  position: absolute; inset: 0;
  display: block; width: auto; height: auto;
}
.service-aftercare h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 0.98;
  margin: 0 0 22px;
}
.service-aftercare .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 24px;
}
.service-aftercare .body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.aftercare-list {
  list-style: none; padding: 0; margin: 28px 0 0;
}
.aftercare-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.aftercare-list li + li { margin-top: 10px; }
.aftercare-list li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--accent);
}

/* ── Pricing · cards ───────────────────────────────── */
.service-pricing {
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
}
.service-pricing-head {
  max-width: 720px; margin: 0 auto clamp(48px, 6vw, 72px);
  text-align: center;
}
.service-pricing-head .kicker { display: inline-block; margin-bottom: 14px; }
.service-pricing-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  margin: 0 0 14px;
}
.service-pricing-head .h-italic {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink-soft);
}
.pricing-cards {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.pricing-cards.cards-2 { max-width: 800px; }
.pricing-card {
  flex: 1 1 280px;
  max-width: 380px;
}
.pricing-card {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 36px 32px 30px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.pricing-card.featured {
  background: var(--ink);
  color: var(--bg-2);
  border-color: var(--ink);
}
.pricing-card.featured .pc-name,
.pricing-card.featured .pc-price,
.pricing-card.featured .pc-includes li,
.pricing-card.featured .pc-meta { color: var(--bg-2); }
.pricing-card.featured .pc-meta { color: rgba(251,246,241,0.6); }
.pricing-card.featured .pc-includes li::before { color: var(--accent); }
.pricing-card.featured .pc-badge { color: var(--accent); }
.pc-badge {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 1.6px;
  color: var(--accent);
  text-transform: uppercase;
}
.pc-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  font-weight: 400;
}
.pc-price {
  font-family: var(--display);
  font-size: clamp(40px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -0.005em;
}
.pc-price .pc-unit {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--faint);
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
}
.pc-meta {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  color: var(--faint);
  text-transform: uppercase;
}
.pc-includes {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid currentColor;
  padding-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-card .pc-includes { border-top-color: var(--rule); }
.pricing-card.featured .pc-includes { border-top-color: rgba(251,246,241,0.18); }
.pc-includes li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.pc-includes li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--accent);
}
.pricing-note {
  max-width: var(--max);
  margin: 28px auto 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--faint);
  text-transform: uppercase;
}

/* ── Tablet/Mobile adjustments for sections ────────── */
@media (max-width: 1024px) {
  .service-intro-inner { grid-template-columns: 1fr; gap: 28px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .service-aftercare-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-aftercare-photo { max-width: 480px; }
}

@media (max-width: 640px) {
  .service-hero { height: 70vh; min-height: 480px; }
  .service-hero h1 { font-size: clamp(56px, 16vw, 96px); }
  .service-intro { padding: 64px var(--pad-x); }
  .service-process { padding: 64px var(--pad-x); }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .service-aftercare { padding: 64px var(--pad-x); }
  .service-pricing { padding: 64px var(--pad-x); }
  .pricing-card { max-width: 100%; }
}

/* =========================================================
   FAQ page
   ========================================================= */

.faq-head {
  padding: clamp(72px, 9vw, 120px) var(--pad-x) clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.faq-head .kicker { display: inline-block; margin-bottom: 18px; }
.faq-head h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  margin: 0 0 16px;
}
.faq-head .h-italic {
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ink-soft);
}

.faq-body {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(60px, 7vw, 100px) var(--pad-x) clamp(60px, 7vw, 100px);
}
.faq-cat { padding: 36px 0; border-bottom: 1px solid var(--rule); }
.faq-cat:first-of-type { padding-top: 0; }
.faq-cat:last-of-type { border-bottom: none; padding-bottom: 0; }
.faq-cat h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  margin: 0 0 24px;
}
.faq-q {
  border-top: 1px solid var(--rule);
}
.faq-q:first-child { border-top: none; }
.faq-q details { padding: 18px 0; }
.faq-q summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  transition: color 180ms ease;
}
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary:hover { color: var(--accent-2); }
.faq-q summary .toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}
.faq-q details[open] summary .toggle {
  background: var(--ink);
  color: var(--bg-2);
  border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-q .answer {
  padding: 16px 56px 4px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-q .answer p { margin: 0 0 12px; }
.faq-q .answer p:last-child { margin-bottom: 0; }

/* =========================================================
   Coming soon · lamination band (brows page)
   ========================================================= */
.coming-soon {
  padding: clamp(72px, 9vw, 120px) var(--pad-x);
  border-top: 1px solid var(--rule);
}
.coming-soon-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.coming-soon .cs-flag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.coming-soon .cs-flag::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--accent);
}
.coming-soon h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.98;
  margin: 0 0 20px;
}
.coming-soon .cs-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 480px;
}
.coming-soon p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 480px;
}
.coming-soon .cs-note {
  font-size: 14.5px;
  color: var(--ink-soft);
}
.coming-soon .btn-link { margin-top: 8px; }

.coming-soon .cs-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--soft);
  overflow: hidden;
}
.coming-soon .cs-photo image-slot.photo {
  position: absolute; inset: 0;
  display: block; width: auto; height: auto;
  filter: grayscale(0.15);
}
.coming-soon .cs-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .coming-soon-inner { grid-template-columns: 1fr; gap: 36px; }
  .coming-soon .cs-photo { max-width: 480px; order: -1; }
}
@media (max-width: 640px) {
  .coming-soon { padding: 64px var(--pad-x); }
}

/* Waitlist form (used inside a .cs-photo slot) */
.cs-photo--waitlist {
  aspect-ratio: auto;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
}
.waitlist {
  width: 100%;
  padding: clamp(28px, 3vw, 40px);
}
.waitlist h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
  margin: 0 0 10px;
}
.waitlist > p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 340px;
}
.waitlist-form { display: flex; flex-direction: column; gap: 16px; }
.wl-field { display: flex; flex-direction: column; gap: 6px; }
.wl-field label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.wl-field input {
  width: 100%;
  background: var(--bg);
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 11px 4px;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color 220ms ease, background 220ms ease;
}
.wl-field input:focus {
  outline: none;
  border-bottom-color: var(--accent);
  background: var(--bg-2);
}
.wl-field input::placeholder { color: var(--faint); }
.wl-submit {
  align-self: flex-start;
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  border: none;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg-2);
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 200ms ease, transform 150ms ease;
}
.wl-submit:hover { background: var(--accent-2); }
.wl-submit:active { transform: translateY(1px); }
.wl-submit .arrow { transition: transform 220ms ease; }
.wl-submit:hover .arrow { transform: translateX(3px); }
.wl-success {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--accent-2);
}
.wl-privacy {
  margin: 4px 0 0;
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--faint);
  text-transform: none;
}
