/* ===== Vixen Brows by Velma ===== */

:root {
  --ground: #fcf4f2;
  --surface: #ffffff;
  --surface-soft: #fdf0ee;
  --ink: #2e2430;
  --ink-soft: #6e5a63;
  --rose: #e48ca0;
  --rose-deep: #c15a78;
  --rose-pale: #f6dde3;
  --gold: #b98a52;
  --line: #f0d9de;
  --shadow: 0 20px 45px -25px rgba(193, 90, 120, 0.45);

  /* Fixed brand tones for saturated CTA surfaces (buttons, banners) —
     these stay constant across themes so their white text always has
     enough contrast, independent of the theme-adaptive --rose tokens above. */
  --cta-1: #e48ca0;
  --cta-2: #c15a78;
  --cta-gold: #b98a52;
  --on-cta: #fff8f9;

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-script: "Parisienne", "Brush Script MT", cursive;
  --font-body: "Jost", "Trebuchet MS", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground: #241a20;
    --surface: #2f2029;
    --surface-soft: #38262f;
    --ink: #f7e9ec;
    --ink-soft: #cbadb6;
    --rose: #ef9db0;
    --rose-deep: #f2a9ba;
    --rose-pale: #4a2f38;
    --gold: #d9b06f;
    --line: #4a323b;
    --shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.6);
  }
}

:root[data-theme="dark"] {
  --ground: #241a20;
  --surface: #2f2029;
  --surface-soft: #38262f;
  --ink: #f7e9ec;
  --ink-soft: #cbadb6;
  --rose: #ef9db0;
  --rose-deep: #f2a9ba;
  --rose-pale: #4a2f38;
  --gold: #d9b06f;
  --line: #4a323b;
  --shadow: 0 20px 45px -25px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--rose-deep);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker::before,
.kicker::after {
  content: "";
  height: 1px;
  width: 34px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.55;
}

.kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }

.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---------- divider ---------- */

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 0 auto;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 64px;
  background: var(--line);
}

.divider svg { flex-shrink: 0; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap { position: relative; }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}

@media (max-width: 420px) {
  .site-header .wrap { padding-left: 16px; padding-right: 16px; gap: 8px; }
  .brand { gap: 8px; }
  .brand-name { font-size: 0.95rem; }
  .brand img { height: 34px; width: 34px; }
  .site-header .btn { padding: 10px 14px; font-size: 0.78rem; }
  .site-nav { gap: 10px; }
  .nav-toggle { width: 32px; height: 32px; }
  .nav-toggle span { width: 18px; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--rose-deep); }

.site-nav a.is-current { color: var(--rose-deep); }

.nav-links { display: flex; gap: 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--ground);
    border-bottom: 1px solid var(--line);
    padding: 10px 28px 22px;
    box-shadow: 0 18px 30px -22px rgba(46, 36, 48, 0.4);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 1rem;
  }

  .nav-links a:last-child { border-bottom: none; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cta-1) 0%, var(--cta-2) 100%);
  color: var(--on-cta);
  box-shadow: var(--shadow);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 45px -20px rgba(193, 90, 120, 0.55); }

.btn-ghost {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose);
}

.btn-ghost:hover { background: var(--rose-pale); transform: translateY(-2px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 76px 0 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 480px;
  background: radial-gradient(closest-side, var(--rose-pale), transparent 72%);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; margin: 0 auto; max-width: 300px; }
  .lede { margin-inline: auto; }
  .btn-row { justify-content: center; }
  .hero-badge { margin-inline: auto; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--rose-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px -18px rgba(193, 90, 120, 0.6);
}

.hero-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose-deep);
  box-shadow: 0 0 0 3px var(--rose-pale);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero .lede { margin-bottom: 34px; }

.hero-art {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  border: 6px solid var(--surface);
  outline: 1px solid var(--rose-pale);
  outline-offset: 10px;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed var(--gold);
  opacity: 0.5;
}

.hero-art img { width: 100%; height: 100%; object-fit: cover; }

.hero-art-wrap {
  position: relative;
  padding: 22px;
}

/* ---------- section shell ---------- */

section { padding: 108px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.section-head .lede { margin: 0; }

/* ---------- about / certified band ---------- */

.about {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 760px) {
  .about .wrap { grid-template-columns: 1fr; text-align: center; }
  .badge-ring { margin: 0 auto; }
}

.badge-ring {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 1.5px dashed var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-ring-inner {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.badge-ring-inner .yr {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--rose-deep);
}

.badge-ring-inner .lbl {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.about-copy h2 { margin-bottom: 16px; }
.about-copy p { color: var(--ink-soft); max-width: 58ch; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

@media (max-width: 760px) { .pill-row { justify-content: center; } }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--rose-pale);
  color: var(--rose-deep);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------- special callout ---------- */

.special {
  background: linear-gradient(155deg, var(--cta-2), var(--cta-1) 60%, var(--cta-gold));
  color: var(--on-cta);
  position: relative;
  overflow: hidden;
}

.special::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
}

.special .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

@media (max-width: 760px) {
  .special .wrap { grid-template-columns: 1fr; text-align: center; }
}

.special-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff2f4;
  opacity: 0.9;
}

.special h2 {
  color: #fff8f9;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  margin: 10px 0 12px;
}

.special p {
  color: #fff0f2;
  max-width: 54ch;
  margin: 0;
}

.special .fine {
  font-size: 0.78rem;
  color: #ffe3e8;
  opacity: 0.85;
  margin-top: 14px;
}

.special .btn-primary {
  background: var(--on-cta);
  color: var(--cta-2);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.35);
}

.special .btn-primary:hover { background: #ffffff; }

/* ---------- services ---------- */

.service-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
}

.services-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-top: 36px;
}

/* ---------- service menu ---------- */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 64px;
}

@media (max-width: 720px) {
  .menu-grid { grid-template-columns: 1fr; gap: 8px; }
}

.menu-category { padding-bottom: 8px; }

.menu-category h3 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}

.menu-category .menu-row:last-child { border-bottom: none; }

.menu-row .menu-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.menu-row .menu-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted var(--rose);
}

.menu-row .menu-name a:hover { border-bottom-color: var(--gold); color: var(--rose-deep); }

.menu-row .menu-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-top: 3px;
  max-width: 40ch;
}

.menu-row .menu-meta {
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

.menu-row .menu-price {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}

.menu-row .menu-duration {
  display: block;
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ---------- value comparison ---------- */

.value {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 720px) {
  .value-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 32px;
}

.value-card.is-winner {
  background: linear-gradient(160deg, var(--rose-pale), var(--surface-soft));
  border: 1px solid var(--rose);
  position: relative;
}

.value-card.is-winner::before {
  content: "Recommended";
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--cta-2);
  color: var(--on-cta);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.value-card .value-tagline {
  display: block;
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.value-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }

.value-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}

.value-row:last-child { border-bottom: none; padding-bottom: 0; }

.value-row strong {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.value-total {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold);
}

.value-total small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.value-savings {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cta-2), var(--cta-1) 70%, var(--cta-gold));
  color: var(--on-cta);
}

.value-savings .equation {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff2f4;
  opacity: 0.9;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.value-savings .amount {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.value-savings p { margin: 6px 0 0; color: #fff2f4; font-size: 0.92rem; }

.value-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.78rem;
  margin-top: 18px;
  opacity: 0.85;
}

.value-note a { color: var(--rose-deep); font-weight: 600; }

/* ---------- booking cta ---------- */

.booking {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking .wrap { text-align: center; }

.booking .section-head { margin-bottom: 40px; }

.contact-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 44px 36px;
  box-shadow: var(--shadow);
}

.phone-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 600;
  color: var(--rose-deep);
  text-decoration: none;
  margin: 6px 0 26px;
}

.phone-link:hover { color: var(--gold); }

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* ---------- footer ---------- */

.site-footer {
  padding: 46px 0 40px;
  text-align: center;
}

.site-footer .brand { justify-content: center; margin-bottom: 14px; }

.site-footer p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin: 4px 0;
}

.site-footer .legal {
  margin-top: 20px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  opacity: 0.75;
}

.site-footer .credit {
  margin-top: 6px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  opacity: 0.75;
}

.site-footer .credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
}

.site-footer .credit a:hover { color: var(--rose-deep); text-decoration-color: var(--rose-deep); }

/* ---------- reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- aftercare page ---------- */

.page-hero {
  padding: 64px 0 20px;
  text-align: center;
}

.page-hero .eyebrow { display: block; margin-bottom: 14px; }

.page-hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.1rem);
  margin-bottom: 16px;
}

.page-hero .lede { margin: 0 auto; }

.care-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 28px 0 12px;
}

.care-nav a {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.care-nav a:hover,
.care-nav a:focus-visible {
  color: var(--rose-deep);
  border-color: var(--rose);
  background: var(--rose-pale);
}

.care-section { padding: 64px 0; }

.care-section + .care-section { border-top: 1px solid var(--line); }

.care-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.care-heading h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }

.care-heading .eyebrow { margin: 0; }

.care-intro {
  color: var(--ink-soft);
  max-width: 68ch;
  margin: 0 0 40px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}

.timeline-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
}

.timeline-step .when {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline-step ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dos-donts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.dos-donts .col {
  border-radius: 16px;
  padding: 26px 26px 28px;
}

.dos-donts .do { background: var(--rose-pale); }
.dos-donts .dont { background: var(--surface-soft); border: 1px dashed var(--line); }

.dos-donts h3 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--rose-deep);
}

.dos-donts ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.dos-donts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dos-donts li svg { flex-shrink: 0; margin-top: 3px; }

.note-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
  margin-top: 46px;
}

.note-card .service-icon { margin: 0; flex-shrink: 0; }

.note-card h3 { font-size: 1.05rem; margin-bottom: 6px; }

.note-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

.care-cta {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ---------- gallery ---------- */

.gallery {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-note {
  text-align: center;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto;
}

.gallery-note a {
  color: var(--rose-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--rose);
}

.gallery-note a:hover { color: var(--gold); border-color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px 40px 6px 40px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px -26px rgba(46, 36, 48, 0.5);
}

.gallery-item:nth-child(2n) { border-radius: 40px 6px 40px 6px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item--photo-1 img { object-position: 50% 38%; }
.gallery-item--photo-2 img { object-position: 50% 32%; }

.gallery-item--rotate img { transform: rotate(90deg) scale(1.34); }

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item--rotate:hover img { transform: rotate(90deg) scale(1.44); }

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 16px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff6f8;
  background: linear-gradient(0deg, rgba(46, 27, 34, 0.72), transparent);
}

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

/* ---------- about page ---------- */

.story-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 760px) {
  .story-grid { grid-template-columns: 1fr; text-align: center; }
  .story-grid .badge-ring { margin: 0 auto; }
}

.portrait-wrap {
  position: relative;
  width: fit-content;
  padding: 22px;
  flex-shrink: 0;
}

.portrait {
  position: relative;
  width: 220px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  border: 6px solid var(--surface);
  outline: 1px solid var(--rose-pale);
  outline-offset: 10px;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed var(--gold);
  opacity: 0.5;
}

.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }

.portrait-seal {
  position: absolute;
  right: -6px;
  bottom: 6px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px -14px rgba(46, 36, 48, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.portrait-seal .yr {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--rose-deep);
  line-height: 1;
}

.portrait-seal .lbl {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 760px) {
  .portrait-wrap { margin: 0 auto; }
}

.story-copy p { color: var(--ink-soft); max-width: 62ch; margin: 0 0 18px; }
.story-copy p:last-child { margin-bottom: 0; }

.credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.credential-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
}

.credential-card h3 {
  font-size: 1.1rem;
  color: var(--rose-deep);
  margin-bottom: 8px;
}

.credential-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- learn hub ---------- */

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 720px) {
  .learn-grid { grid-template-columns: 1fr; }
}

.learn-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 2px solid var(--line);
  border-radius: 8px 32px 8px 32px;
  padding: 32px 30px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}

.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--gold);
}

.learn-card .eyebrow { display: block; margin-bottom: 10px; }

.learn-card h3 {
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.learn-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0 0 14px;
}

.learn-card .learn-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rose-deep);
}

.learn-card:hover .learn-link { color: var(--gold); }

/* ---------- comparison table ---------- */

.table-scroll {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.compare-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--surface);
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}

.compare-table th {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--surface-soft);
}

.compare-table td:first-child,
.compare-table th:first-child {
  font-weight: 600;
  color: var(--ink);
  background: var(--surface-soft);
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table td { color: var(--ink-soft); }

.topic-hero-art {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  border: 6px solid var(--surface);
  outline: 1px solid var(--rose-pale);
  outline-offset: 8px;
  box-shadow: var(--shadow);
  max-width: 220px;
  margin: 28px auto 0;
}

.topic-hero-art img { width: 100%; height: 100%; object-fit: cover; }
