/* ==========================================================================
   Cynthia Henna and Massage — Sarasota, FL
   Single stylesheet. Mobile-first. No build step, no external dependencies.
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES ---------------------------------------------------
     No photograph is referenced from this stylesheet: every image on the
     site is a plain <img src="assets/..."> so it can be swapped by dropping
     a new file in with the same name. assets/manifest.json lists each file,
     where it came from and which page uses it. The only picture-like things
     in CSS are the gradients and the small inline check-mark mask below.  */

  /* Brand palette — every text pairing below meets WCAG AA (>= 4.5:1).
     The original site's cyan #0cc0c9 (2.23:1) and magenta #eb31e4 (3.45:1)
     are kept ONLY inside decorative gradients, never behind text.          */
  --ink:        #22143a;   /* 16.4:1 on --bg  */
  --ink-soft:   #5b4a6b;   /*  7.6:1 on --bg  */
  --teal:       #0b5f66;   /*  7.1:1 on --bg  */
  --teal-deep:  #094c52;
  --purple:     #5a25a8;   /*  8.9:1 on --bg  */
  --magenta:    #8d1a86;   /*  7.7:1 on --bg  */
  --henna:      #a8482a;   /*  5.6:1 on --bg  */

  --bg:         #fdfaf6;
  --surface:    #ffffff;
  --surface-2:  #f6f1ea;
  --surface-3:  #f2ecfa;
  --line:       #e7dcd0;
  --line-soft:  #f0e8de;

  --grad: linear-gradient(120deg, #2bd0c9 0%, #3aa0ee 45%, #8b3df0 100%);
  --grad-btn: linear-gradient(120deg, var(--teal) 0%, var(--purple) 100%);

  --font-head: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(34, 20, 58, .05), 0 10px 30px -18px rgba(34, 20, 58, .35);
  --shadow-lg: 0 2px 4px rgba(34, 20, 58, .06), 0 26px 60px -30px rgba(34, 20, 58, .45);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.075rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-underline-offset: .18em; text-decoration-thickness: .07em; }
a:hover { color: var(--purple); }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.18; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.05rem, 1.5rem + 2.6vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 1.3rem + 1.7vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + .6vw, 1.45rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
strong { color: var(--ink); }
blockquote { margin: 0; }
hr { border: 0; height: 1px; background: var(--line); margin: 2.5rem 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.wrap--narrow { max-width: 760px; }
.section { padding-block: clamp(2.75rem, 6vw, 5rem); }
.section--tint { background: var(--surface-2); }
.section--ink { background: var(--ink); color: #f4eefb; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink a { color: #7fe6dd; }
.section--ink a:hover { color: #fff; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; translate: -50% -200%; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  text-decoration: none; transition: translate .15s ease;
}
.skip-link:focus { translate: -50% 0; color: #fff; }

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header::after { content: ""; display: block; height: 3px; background: var(--grad); opacity: .9; }
.header-inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem 1rem;
  min-height: 66px; padding-block: .55rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.brand img { width: auto; height: 42px; }
.brand-text { display: none; }
@media (min-width: 700px) { .brand img { height: 50px; } }
@media (min-width: 1280px) {
  .brand-text { display: block; font-family: var(--font-head); font-size: .92rem; color: var(--ink-soft); line-height: 1.25; border-left: 1px solid var(--line); padding-left: .7rem; }
  .brand-text b { display: block; color: var(--ink); font-weight: 600; }
}
.nav-toggle {
  display: none; align-items: center; gap: .5rem;
  font: inherit; font-size: .95rem; font-weight: 600; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .9rem; cursor: pointer;
}
.js .nav-toggle { display: inline-flex; }
.nav-toggle:hover { border-color: var(--purple); color: var(--purple); }
.nav-toggle .bars { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle .bars::before { top: -6px; } .nav-toggle .bars::after { top: 6px; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .15rem .35rem; }
.site-nav a {
  display: block; padding: .45rem .7rem; border-radius: 999px;
  color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 600; white-space: nowrap;
}
.site-nav a:hover { background: var(--surface-3); color: var(--purple); }
.site-nav a[aria-current="page"] { color: var(--magenta); box-shadow: inset 0 -2px 0 var(--magenta); border-radius: 4px; }
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

@media (max-width: 1023px) {
  .js .site-nav { display: none; width: 100%; }
  .js .site-nav.is-open { display: block; }
  .site-nav { width: 100%; border-top: 1px solid var(--line-soft); margin-top: .5rem; padding-top: .5rem; }
  .site-nav ul { flex-direction: column; gap: .1rem; }
  .site-nav a { padding: .6rem .7rem; }
  .site-nav .nav-call { margin-top: .4rem; }
  .site-nav .nav-call a { background: var(--grad-btn); color: #fff; text-align: center; }
}
@media (min-width: 1024px) { .site-nav { flex: 1 1 auto; } .site-nav .nav-call { display: none; } }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 700; font-size: 1rem; line-height: 1.2;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-primary { background: var(--grad-btn); color: #fff; box-shadow: 0 10px 24px -12px rgba(90, 37, 168, .8); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(90, 37, 168, .9); }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { color: var(--purple); border-color: var(--purple); transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.05rem; font-size: .92rem; }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.08rem; }
.section--ink .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.section--ink .btn-secondary:hover { background: #fff; color: var(--ink); border-color: #fff; }

.actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.actions--center { justify-content: center; }

/* ----------------------------------------------------------------- hero -- */
.hero { position: relative; overflow: hidden; background: var(--surface-3); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 15%, rgba(43,208,201,.20), transparent 60%),
              radial-gradient(90% 80% at 5% 90%, rgba(139,61,240,.16), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.25rem, 6vw, 4.25rem); align-items: center;
}
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.02fr .98fr; } }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--grad); border-radius: 2px; }
.hero h1 { margin-bottom: .45em; }
.hero .lede { font-size: clamp(1.06rem, 1rem + .45vw, 1.25rem); color: var(--ink-soft); max-width: 34em; }
.hero-figure { position: relative; }
.hero-figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-badge {
  position: absolute; left: clamp(-.5rem, -1vw, 0rem); bottom: -1.1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .6rem 1.1rem; font-size: .9rem; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: .5rem;
}
.hero-badge span { color: var(--magenta); }
.hero-points { list-style: none; padding: 0; margin: 1.4rem 0 1.6rem; display: grid; gap: .45rem; }
.hero-points li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.hero-points li::before {
  content: ""; flex: none; width: 10px; height: 10px; margin-top: .55em; border-radius: 50%; background: var(--grad);
}
.hero-note { margin-top: 1.1rem; font-size: .92rem; color: var(--ink-soft); }

/* page banner (interior pages) */
.page-head { background: var(--surface-3); border-bottom: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 100% at 90% 0%, rgba(43,208,201,.18), transparent 65%);
}
.page-head .wrap { position: relative; padding-block: clamp(2rem, 5vw, 3.4rem); }
.page-head p.lede { font-size: clamp(1.04rem, 1rem + .4vw, 1.2rem); color: var(--ink-soft); max-width: 46em; margin-bottom: 0; }
.page-head .actions { margin-top: 1.5rem; }

.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: .8rem; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--purple); }

/* ---------------------------------------------------------------- misc --- */
.section-head { max-width: 46em; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); margin-bottom: 0; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.9rem); box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }

/* two big “choose your path” cards on the home page */
.path-card {
  display: flex; flex-direction: column; overflow: hidden; padding: 0;
  transition: transform .18s ease, box-shadow .18s ease;
}
.path-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.path-top { height: 8px; background: var(--grad); }
.path-card .path-body { padding: clamp(1.25rem, 3vw, 1.8rem); display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.path-card .path-body .actions { margin-top: auto; padding-top: .9rem; }
.path-tag { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--teal); }

/* alternating feature rows */
.feature { display: grid; gap: clamp(1.25rem, 4vw, 3rem); align-items: center; }
@media (min-width: 860px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip .feature-media { order: 2; }
}
.feature + .feature { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.feature-media img, .feature-media svg { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--surface); }
.feature-media.is-small { text-align: center; }
.feature-media.is-small img {
  width: auto; max-width: 240px; margin-inline: auto; padding: 1.2rem;
  image-rendering: auto; border-radius: var(--radius); border: 1px solid var(--line);
}
.feature-media figcaption { margin-top: .7rem; font-size: .87rem; color: var(--ink-soft); text-align: center; }
.price-chip {
  display: inline-flex; align-items: baseline; gap: .5rem; flex-wrap: wrap;
  background: var(--surface-3); color: var(--purple); font-weight: 700;
  border-radius: 999px; padding: .4rem 1rem; font-size: .95rem; margin-bottom: 1rem;
}
.price-chip small { color: var(--ink-soft); font-weight: 600; }

/* price / service lists (editable collections) */
.pricelist { display: grid; gap: .6rem; }
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: .2rem 1rem; align-items: baseline;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .95rem 1.15rem; box-shadow: var(--shadow);
}
.price-row .p-name { font-weight: 700; font-size: 1.02rem; margin: 0; font-family: var(--font-body); }
.price-row .p-price { font-weight: 700; color: var(--magenta); white-space: nowrap; font-size: 1.02rem; }
.price-row .p-duration { grid-column: 1; font-size: .88rem; color: var(--teal); font-weight: 600; }
.price-row .p-desc { grid-column: 1 / -1; margin: .3rem 0 0; font-size: .93rem; color: var(--ink-soft); }
@media (max-width: 480px) {
  .price-row { grid-template-columns: 1fr; }
  .price-row .p-price { grid-column: 1; }
}
.pricelist-note { margin-top: 1rem; font-size: .95rem; color: var(--ink-soft); }
.package-note {
  margin-top: 1rem; background: var(--surface-3); border: 1px dashed rgba(90,37,168,.35);
  border-radius: var(--radius); padding: 1rem 1.15rem; font-weight: 600; color: var(--purple);
}

/* callout / safety note */
.callout {
  border-left: 4px solid var(--henna); background: #fdf3ee;
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.15rem 1.35rem;
}
.callout h3 { color: var(--henna); font-size: 1.15rem; }
.callout--teal { border-left-color: var(--teal); background: #eef7f7; }
.callout--teal h3 { color: var(--teal-deep); }

/* testimonial */
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); position: relative;
}
.quote::before {
  content: "\201C"; font-family: var(--font-head); font-size: 5rem; line-height: 1;
  color: rgba(90,37,168,.18); position: absolute; top: .3rem; left: 1rem;
}
.quote blockquote p {
  font-family: var(--font-head); font-size: clamp(1.25rem, 1.05rem + 1vw, 1.7rem);
  line-height: 1.4; color: var(--ink); position: relative; margin-bottom: .8rem;
}
.quote figcaption { font-size: .92rem; color: var(--ink-soft); font-weight: 600; }

/* pill list (events, service area) */
.pills { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.pills li {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .4rem .95rem; font-size: .92rem; font-weight: 600; margin: 0;
}
.section--tint .pills li { background: var(--surface); }

/* checklist */
.checklist { list-style: none; padding: 0; display: grid; gap: .55rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; margin: 0; }
.checklist li::before {
  content: ""; flex: none; width: 1.15em; height: 1.15em; margin-top: .32em; border-radius: 50%;
  background: var(--grad);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.4 11.6 3.2 8.4l1.1-1.1 2.1 2.1 5-5 1.1 1.1z' fill='black'/><circle cx='8' cy='8' r='7.2' fill='none' stroke='black' stroke-width='1.4'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M6.4 11.6 3.2 8.4l1.1-1.1 2.1 2.1 5-5 1.1 1.1z' fill='black'/><circle cx='8' cy='8' r='7.2' fill='none' stroke='black' stroke-width='1.4'/></svg>") center/contain no-repeat;
}

/* numbered steps */
.steps { list-style: none; counter-reset: step; padding: 0; display: grid; gap: 1rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: auto 1fr; gap: .9rem; margin: 0; }
.steps li::before {
  content: counter(step); grid-row: span 2; display: grid; place-items: center;
  width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--grad); color: #fff;
  font-weight: 700; font-size: .95rem;
}
.steps li strong { display: block; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 1.1rem; margin-bottom: .35em; }
.faq-item p { margin-bottom: 0; color: var(--ink-soft); }

/* --------------------------------------------------------------- gallery -- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.gallery-filters[hidden] { display: none; }
.gallery-filters button {
  font: inherit; font-weight: 600; font-size: .93rem; cursor: pointer;
  background: var(--surface); color: var(--ink); border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem 1.05rem;
}
.gallery-filters button:hover { border-color: var(--purple); color: var(--purple); }
.gallery-filters button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery-group + .gallery-group { margin-top: clamp(2.5rem, 5vw, 4rem); }
.gallery-group h2 { margin-bottom: .3em; }
.gallery-group .group-note { color: var(--ink-soft); margin-bottom: 1.4rem; }
.masonry { columns: 2; column-gap: .8rem; }
@media (min-width: 720px) { .masonry { columns: 3; column-gap: 1rem; } }
@media (min-width: 1040px) { .masonry { columns: 4; column-gap: 1rem; } }
.masonry figure { break-inside: avoid; margin: 0 0 1rem; }
.masonry a {
  display: block; border-radius: var(--radius); overflow: hidden; background: var(--surface-2);
  box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.masonry a:hover, .masonry a:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.masonry img { width: 100%; }
.masonry figcaption { font-size: .84rem; color: var(--ink-soft); padding: .45rem .2rem 0; }

/* lightbox (progressive enhancement) */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(24, 14, 40, .93); padding: clamp(1rem, 4vw, 3rem);
  align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 96vw); max-height: 82vh; width: auto; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox figure { margin: 0; display: grid; gap: .8rem; justify-items: center; }
.lightbox figcaption { color: #e8dcf7; font-size: .95rem; text-align: center; max-width: 60ch; }
.lightbox-close, .lightbox-nav button {
  position: absolute; font: inherit; font-size: 1.5rem; line-height: 1; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.35);
  width: 2.6rem; height: 2.6rem; border-radius: 50%; display: grid; place-items: center;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-nav .prev { left: 1rem; top: 50%; translate: 0 -50%; }
.lightbox-nav .next { right: 1rem; top: 50%; translate: 0 -50%; }
.lightbox-close:hover, .lightbox-nav button:hover { background: rgba(255,255,255,.28); }

/* ------------------------------------------------------------------ CTA -- */
.cta-band { background: var(--ink); color: #f4eefb; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 15% 10%, rgba(43,208,201,.22), transparent 60%),
              radial-gradient(70% 120% at 90% 90%, rgba(139,61,240,.30), transparent 60%);
}
.cta-band .wrap { position: relative; padding-block: clamp(2.5rem, 6vw, 4rem); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .4em; }
.cta-band p { color: #ddd0ee; max-width: 42em; margin-inline: auto; }
.cta-band .actions { margin-top: 1.6rem; }
.cta-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn-secondary:hover { background: #fff; color: var(--ink); }

/* --------------------------------------------------------------- footer -- */
.site-footer { background: #1b0f30; color: #d9cceb; padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem; font-size: .96rem; }
.site-footer a { color: #a8ece4; }
.site-footer a:hover { color: #fff; }
/* Focus ring must stay visible on the dark bands too: --purple on --ink is only 1.8:1. */
.cta-band :focus-visible, .section--ink :focus-visible,
.site-footer :focus-visible, .skip-link:focus-visible, .lightbox :focus-visible { outline-color: #7fe6dd; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h2 { font-size: 1.1rem; color: #fff; margin-bottom: .7em; font-family: var(--font-body); font-weight: 700; letter-spacing: .02em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .45em; }
.footer-brand img { height: 54px; width: auto; background: #fff; border-radius: 10px; padding: .4rem .6rem; }
.footer-brand p { margin-top: 1rem; color: #bcabd4; max-width: 34ch; }
.contact-lines { display: grid; gap: .5rem; margin-top: 1rem; }
.contact-lines a { font-weight: 700; text-decoration: none; }
.contact-lines .big { font-size: 1.15rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.15);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .87rem; color: #a695c2;
}
.footer-bottom a { color: #bcabd4; }
[data-ss-credit] { margin: 0; font-size: .87rem; color: #a695c2; }
[data-ss-credit] a { color: #bcabd4; }

/* ----------------------------------------------------------------- form -- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.35rem, 3.5vw, 2.4rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .93rem; margin-bottom: .35rem; }
.field .hint { display: block; font-weight: 400; color: var(--ink-soft); font-size: .87rem; margin-top: .15rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: 10px; padding: .7rem .85rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--purple); outline-offset: 1px; border-color: var(--purple); }
.field textarea { min-height: 150px; resize: vertical; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-turnstile { margin-bottom: 1.1rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 10px; font-weight: 600; }
.form-status[hidden] { display: none; }
.form-status.ok { background: #eef7f7; border: 1px solid var(--teal); color: var(--teal-deep); }
.form-status.err { background: #fdf3ee; border: 1px solid var(--henna); color: var(--henna); }
.form-legal { font-size: .87rem; color: var(--ink-soft); margin-top: 1rem; }

/* contact cards */
.contact-methods { display: grid; gap: 1rem; }
.contact-methods .card { display: flex; flex-direction: column; gap: .2rem; }
.contact-methods .label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--teal); }
.contact-methods .value { font-size: 1.18rem; font-weight: 700; font-family: var(--font-head); }
.contact-methods a { text-decoration: none; }
.contact-methods a:hover { text-decoration: underline; }

/* prose blocks */
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.8rem; }
.prose > :first-child { margin-top: 0; }
.prose ul li::marker { color: var(--purple); }

.divider-mandala { display: block; width: 120px; height: 12px; margin: 2.5rem auto; border-radius: 999px; background: var(--grad); opacity: .65; }

.trust-strip { display: grid; gap: 1rem; }
@media (min-width: 700px) { .trust-strip { grid-template-columns: repeat(3, 1fr); } }
.trust-item { text-align: center; padding: 1.1rem .8rem; }
.trust-item .num { display: block; font-family: var(--font-head); font-size: clamp(2rem, 1.5rem + 2vw, 2.9rem); line-height: 1; color: var(--purple); }
.trust-item .lbl { display: block; margin-top: .4rem; font-weight: 600; color: var(--ink-soft); font-size: .95rem; }
