/* =========================================================================
   Neat'n'Even Beauty Clinic — site styles
   Palette: warm ink, cream, blush, deep rose. Display type: Bodoni Moda.
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --ink: #16110F;
  --ink-70: rgba(22, 17, 15, 0.74);
  /* muted text. 0.5 alpha only reached 3.5:1 on cream — below the 4.5:1
     WCAG AA floor for the small uppercase labels this is used on. */
  --ink-50: rgba(22, 17, 15, 0.64);
  --ink-soft: #4A3F3B;
  --cream: #F8F4F0;
  --cream-deep: #EFE7E0;
  --blush: #F4E4E4;
  --blush-deep: #E9D2D4;
  --rose: #A31447;
  --rose-bright: #C82C6B;
  --wine: #6B1B33;
  --gold: #B9945E;
  --line: rgba(22, 17, 15, 0.12);
  --line-light: rgba(248, 244, 240, 0.18);

  --font-display: "Bodoni Moda", "Didot", "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Inter", -apple-system, BlinkMacSystemFont,
               "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  /* used sparingly, for accent lines only */
  --font-script: "Parisienne", "Snell Roundhand", cursive;

  /* one scale for every uppercase micro-label, so tracking stays consistent */
  --label-size: 0.7rem;
  --label-track: 0.18em;

  /* ONE content rail. These were 1200 and 1400, which meant the header,
     hero and footer aligned to one edge while page-heroes and several
     sections aligned to another — a visible 100px jump down the page.
     Only --container-narrow deliberately differs, and that is centred. */
  --container: 1400px;
  --container-wide: 1400px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  /* radius scale: buttons stay sharp against rounded panels, the same
     contrast the reference flyers use */
  --radius: 2px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-soft: 0 24px 60px -32px rgba(22, 17, 15, 0.45);
  --shadow-lift: 0 32px 70px -30px rgba(22, 17, 15, 0.55);
}

/* ---------- 2. Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  /* 400, not 300 — the old light weight thinned out badly on cream */
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: -0.002em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  /* let Bodoni pick the right optical master: fine hairlines when large,
     sturdier strokes when small */
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.75rem, 6.4vw, 5.25rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
/* Bodoni's thin strokes go weak below ~2rem, so the small headings carry
   a heavier weight rather than a larger size */
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }

p { margin: 0 0 1.25em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--rose); color: var(--cream); }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 780px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--blush { background: var(--blush); }
.section--deep { background: var(--cream-deep); }

.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink .lede, .section--ink p { color: rgba(248, 244, 240, 0.78); }
.section--ink .eyebrow { color: var(--blush-deep); }
.section--ink .eyebrow::before { background: var(--blush-deep); }

.stack > * + * { margin-top: 1.5rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--rose);
}
.eyebrow--center { justify-content: center; }

.lede {
  font-size: clamp(1.06rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.62;
  color: var(--ink-70);
  font-weight: 400;
  letter-spacing: -0.008em;
}

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 + .lede { margin-top: 1.25rem; }

.text-rose { color: var(--rose); }
.display-italic { font-style: italic; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease),
              background-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
  z-index: -1;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover, .btn:focus-visible {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.btn--light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 244, 240, 0.45);
}
.btn--light:hover, .btn--light:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.btn--rose { background: var(--rose); border-color: var(--rose); }
.btn--rose:hover, .btn--rose:focus-visible { background: var(--wine); border-color: var(--wine); }

.btn--wa { background: #128C7E; border-color: #128C7E; }
.btn--wa:hover, .btn--wa:focus-visible { background: #0d6d62; border-color: #0d6d62; }

.btn--block { width: 100%; }
.btn--sm { padding: 0.8rem 1.5rem; font-size: 0.72rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.link-arrow:hover, .link-arrow:focus-visible {
  color: var(--rose);
  border-color: var(--rose);
}
.link-arrow:hover svg { transform: translateX(4px); }
.section--ink .link-arrow { color: var(--cream); border-color: var(--line-light); }
.section--ink .link-arrow:hover { color: var(--blush-deep); border-color: var(--blush-deep); }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--ink);
  border-bottom: 1px solid rgba(248, 244, 240, 0.08);
  transition: height 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header .container {
  max-width: var(--container-wide);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.is-solid {
  height: 68px;
  box-shadow: 0 10px 34px -18px rgba(0, 0, 0, 0.7);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand img {
  height: 40px;
  width: auto;
  transition: height 0.4s var(--ease);
}
/* the logo artwork is black; flip it to sit on the dark bar */
.site-header .brand img { filter: invert(1) brightness(2.4); }
.site-header.is-solid .brand img { height: 34px; }
.brand-name {
  display: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--cream);
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248, 244, 240, 0.55);
  margin-top: 3px;
}

.nav { display: none; }
.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding-block: 0.35rem;
  transition: color 0.3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--blush-deep); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-actions .btn {
  display: none;
  background: var(--rose);
  border-color: var(--rose);
  color: var(--cream);
}
.header-actions .btn:hover, .header-actions .btn:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  color: var(--cream);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li + li { border-top: 1px solid var(--line-light); }
.mobile-nav a {
  display: block;
  padding: 1.05rem 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.mobile-nav a[aria-current="page"] { color: var(--blush-deep); }
.mobile-nav-foot {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 1rem;
}
.mobile-nav-foot .meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(248, 244, 240, 0.5);
  text-transform: uppercase;
}
.mobile-nav-foot .btn--ghost {
  color: var(--cream);
  border-color: rgba(248, 244, 240, 0.4);
}
.mobile-nav-foot .btn--ghost:hover { background: var(--cream); color: var(--ink); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(94svh, 880px);
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blush);
}
/* full-bleed photograph, knocked back to a texture rather than a picture */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.22;
  /* blurred to a soft texture — also stops any studio watermark in the
     source photograph from being legible behind the headline */
  filter: blur(8px) grayscale(0.4);
  transform: scale(1.1);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, var(--blush) 0%, var(--blush) 28%,
                    rgba(244, 228, 228, 0.88) 54%, rgba(244, 228, 228, 0.4) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: rgba(22, 17, 15, 0.1);
}
.hero-mark {
  position: absolute;
  top: 46%;
  right: -6vw;
  width: min(58vw, 640px);
  opacity: 0.05;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: var(--container-wide);
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 680px; }
/* big condensed display, tight leading — the anchor of the whole page */
.hero h1 {
  font-size: clamp(3.1rem, 8.4vw, 6.6rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0.35rem 0 1.5rem;
}
.hero h1 em {
  font-style: italic;
  text-transform: none;
  color: var(--rose);
}
.hero .lede { max-width: 44ch; }
.hero .btn-row { margin-top: 2.25rem; }

/* script accent — used only for short lines above a display heading */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1;
  color: var(--rose);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.script--sm { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.section--ink .script { color: var(--blush-deep); }

.hero-meta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta span::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

.hero-figure {
  position: relative;
  justify-self: center;
  width: min(100%, 520px);
}
.hero-figure::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 92%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush-deep) 0%, rgba(233, 210, 212, 0) 68%);
  z-index: 0;
}
.hero-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 40px 50px rgba(22, 17, 15, 0.28));
}
.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  left: -4%;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.35rem;
  max-width: 220px;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
}
.hero-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* page hero (inner pages) */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(100% 120% at 88% 0%, var(--blush) 0%, rgba(244, 228, 228, 0) 60%),
    var(--cream-deep);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 15ch; }
.page-hero .lede { max-width: 56ch; margin-top: 1.5rem; }
.page-hero-mark {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(40vw, 380px);
  opacity: 0.045;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--rose); }

/* ---------- 7. Intro / split blocks ---------- */
.split {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.split--top { align-items: start; }
.split-figure { position: relative; }
.split-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.split-figure--tall img { aspect-ratio: 3 / 4; }
.split-figure::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--rose);
  z-index: -1;
  border-radius: var(--radius-sm);
}

.pillars {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.pillar {
  background: var(--cream);
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
}
.pillar .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--rose);
  letter-spacing: 0.1em;
}
.pillar h3 { font-size: 1.3rem; margin: 0.6rem 0 0.7rem; }
.pillar p { font-size: 0.95rem; color: var(--ink-70); margin: 0; }
.section--blush .pillar { background: var(--blush); }
.section--deep .pillar { background: var(--cream-deep); }

/* ---------- 8. Service cards ---------- */
.card-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.card-grid--2 { grid-template-columns: 1fr; }
.card-grid--3 { grid-template-columns: 1fr; }
.card-grid--4 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  position: relative;
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
              border-color 0.5s var(--ease);
}
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}
.service-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-deep);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 17, 15, 0.62) 0%, rgba(22, 17, 15, 0) 55%);
}
.service-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.5rem;
  color: var(--cream);
}
.service-card__body h3 { color: var(--cream); font-size: 1.35rem; }
.service-card__body p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(248, 244, 240, 0.8);
}
.service-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 0.5rem;
}

/* detailed service list (services page) */
.service-detail {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}
.service-detail:last-of-type { border-bottom: 1px solid var(--line); }
.service-detail__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.service-detail__index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--rose);
  display: block;
  margin-bottom: 0.85rem;
}
.tick-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.tick-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.94rem;
  color: var(--ink-70);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 10px; height: 6px;
  border-left: 1.5px solid var(--rose);
  border-bottom: 1.5px solid var(--rose);
  transform: rotate(-45deg);
}
.section--ink .tick-list li { color: rgba(248, 244, 240, 0.78); }
.section--ink .tick-list li::before { border-color: var(--blush-deep); }

/* ---------- 9. Gallery ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.filter-chip {
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.filter-chip .count {
  font-size: 0.65rem;
  opacity: 0.55;
  margin-left: 0.35rem;
}

.masonry {
  column-count: 2;
  column-gap: clamp(0.75rem, 1.6vw, 1.25rem);
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: clamp(0.75rem, 1.6vw, 1.25rem);
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--cream-deep);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
}
.masonry-item img {
  width: 100%;
  transition: transform 0.9s var(--ease), opacity 0.5s var(--ease);
}
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 17, 15, 0.18);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.masonry-item:hover img,
.masonry-item:focus-visible img { transform: scale(1.04); }
.masonry-item:hover::after, .masonry-item:focus-visible::after { opacity: 1; }
.masonry-item__label {
  position: absolute;
  z-index: 2;
  left: 0.9rem;
  bottom: 0.9rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease);
}
.masonry-item:hover .masonry-item__label,
.masonry-item:focus-visible .masonry-item__label { opacity: 1; transform: none; }
.masonry-item.is-hidden { display: none; }

.gallery-empty {
  padding: 3rem 0;
  text-align: center;
  color: var(--ink-50);
}

/* horizontal featured strip */
.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72vw;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: thin;
}
.strip::-webkit-scrollbar { height: 4px; }
.strip::-webkit-scrollbar-thumb { background: var(--line); }
.strip figure { margin: 0; scroll-snap-align: start; }
.strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.strip figcaption {
  margin-top: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(12, 9, 8, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}
.lightbox-caption {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 244, 240, 0.6);
}
.lightbox-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(248, 244, 240, 0.25);
  border-radius: 50%;
  background: rgba(248, 244, 240, 0.06);
  color: var(--cream);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.lightbox-btn:hover { background: var(--cream); color: var(--ink); }
.lightbox-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); }
.lightbox-prev { left: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: clamp(0.5rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox-btn svg { width: 18px; height: 18px; }

/* ---------- 10. Pricing ---------- */
.price-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.price-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  position: relative;
}
.price-card--featured h3 { color: var(--cream); }
.price-card--featured .price-card__desc { color: rgba(248, 244, 240, 0.7); }
.price-card--featured .tick-list li { color: rgba(248, 244, 240, 0.8); }
.price-card--featured .tick-list li::before { border-color: var(--blush-deep); }
.price-card--featured .price-card__amount { color: var(--cream); }
.price-card__flag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-deep);
  border: 1px solid rgba(233, 210, 212, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
}
.price-card h3 { margin-bottom: 0.5rem; }
.price-card__desc { font-size: 0.9rem; color: var(--ink-70); margin: 0; }
.price-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1;
  margin: 1.5rem 0 0.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.price-card__amount .from {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}
.price-card__note {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--ink-50);
  margin: 0 0 1.5rem;
}
.price-card--featured .price-card__note { color: rgba(248, 244, 240, 0.55); }
.price-card .tick-list { flex: 1; margin-bottom: 2rem; }
.price-card .btn { margin-top: auto; }

.price-note {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--rose);
  background: var(--blush);
  font-size: 0.88rem;
  color: var(--ink-70);
}

/* ---------- 11. Testimonials ---------- */
.quote-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
}
.quote-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}
.section--blush .quote-card { background: rgba(248, 244, 240, 0.72); border-color: rgba(22,17,15,0.08); }
.quote-card__mark {
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 0.6;
  color: var(--rose);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.quote-card blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  line-height: 1.5;
  font-style: italic;
  flex: 1;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.quote-card cite span {
  display: block;
  color: var(--ink-50);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  margin-top: 0.3rem;
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--gold); }
.stars svg { width: 14px; height: 14px; }

/* clients marquee */
.clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin-top: 2rem;
}
.clients li {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.01em;
  color: var(--cream);
  opacity: 0.85;
}
.clients { list-style: none; padding: 0; }

/* ---------- 12. Academy ---------- */
.curriculum {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: mod;
}
.curriculum li {
  counter-increment: mod;
  background: var(--cream);
  padding: 1.15rem 1.5rem 1.15rem 3.5rem;
  position: relative;
  font-size: 0.96rem;
}
.curriculum li::before {
  content: counter(mod, decimal-leading-zero);
  position: absolute;
  left: 1.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--rose);
  letter-spacing: 0.1em;
}
.section--blush .curriculum li { background: var(--blush); }

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.fact-list li {
  background: var(--ink);
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.fact-list dt, .fact-list .k {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 244, 240, 0.5);
}
.fact-list .v {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  text-align: right;
}

/* ---------- 13. Steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  counter-reset: step;
}
.step {
  counter-increment: step;
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--rose);
  display: block;
  margin-bottom: 0.75rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--ink-70); margin: 0; }
.section--ink .step { border-color: var(--line-light); }
.section--ink .step p { color: rgba(248, 244, 240, 0.7); }

/* ---------- 14. Forms ---------- */
.form-shell {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-soft);
}
.field-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.field { display: grid; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.field label .req { color: var(--rose); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2316110F' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-50); }
.field .error {
  font-size: 0.75rem;
  color: var(--rose);
  letter-spacing: 0.02em;
  text-transform: none;
  min-height: 1em;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--rose); }

.form-actions {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.85rem;
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.form-divider::before, .form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-lg);
  font-size: 0.88rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #E7F1EC; color: #1E5C42; border-left: 2px solid #1E5C42; }
.form-status--err { background: var(--blush); color: var(--wine); border-left: 2px solid var(--wine); }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose);
}
.contact-list .ico svg { width: 17px; height: 17px; }
.contact-list .k {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 0.2rem;
}
.contact-list .v { font-size: 1rem; }
.contact-list a:hover { color: var(--rose); }

/* ---------- 15. FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 3rem 1.4rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  transition: color 0.3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--rose); }
.faq summary::after,
.faq summary::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  background: var(--rose);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq summary::before { width: 14px; height: 1px; transform: translateY(-50%); }
.faq summary::after { width: 1px; height: 14px; right: 10px; transform: translateY(-50%); }
.faq details[open] summary::after { opacity: 0; transform: translateY(-50%) rotate(90deg); }
.faq .faq-body { padding: 0 0 1.5rem; color: var(--ink-70); font-size: 0.95rem; max-width: 68ch; }

/* ---------- 16. CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 100% at 50% 0%, rgba(163, 20, 71, 0.4) 0%, rgba(163, 20, 71, 0) 65%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream); max-width: 18ch; margin-inline: auto; }
.cta-band .lede { color: rgba(248, 244, 240, 0.72); max-width: 52ch; margin: 1.25rem auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 2.25rem; }

/* ---------- 17. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(248, 244, 240, 0.72);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  font-size: 0.92rem;
}
.site-footer a:hover { color: var(--blush-deep); }
.footer-grid {
  display: grid;
  gap: clamp(2.25rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer-brand img { height: 46px; width: auto; filter: invert(1) brightness(2); }
.footer-brand p { margin-top: 1.25rem; max-width: 34ch; font-size: 0.92rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.92rem; }

.socials { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--cream);
  transition: all 0.3s var(--ease);
}
.socials a:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-block: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(248, 244, 240, 0.5);
}

/* floating whatsapp */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.7);
  transform: translateY(90px);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease),
              background-color 0.3s var(--ease);
}
.wa-float.is-visible { transform: none; opacity: 1; }
.wa-float:hover { background: #1da851; }
.wa-float svg { width: 27px; height: 27px; }

/* ---------- 17b. Reference-layout components ---------- */

/* -- circular quick-link band under the hero -- */
.icon-band {
  background: var(--ink);
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
}
.icon-band ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 0.75rem;
}
.icon-band a {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}
.icon-band .circle {
  width: clamp(56px, 8vw, 68px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blush);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              transform 0.35s var(--ease);
}
.icon-band .circle svg { width: 24px; height: 24px; }
.icon-band a:hover .circle,
.icon-band a:focus-visible .circle {
  background: var(--rose);
  color: var(--cream);
  transform: translateY(-5px);
}
.icon-band .label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 244, 240, 0.72);
}
.icon-band a:hover .label { color: var(--cream); }

/* -- thin swash rule under a centred subtitle -- */
.flourish {
  display: block;
  width: 190px;
  max-width: 60%;
  height: auto;
  margin: 1.1rem auto 0;
  color: var(--rose);
}
.flourish--left { margin-inline: 0; }
.section--ink .flourish { color: var(--blush-deep); }

/* -- circular portrait with a name plate under it -- */
.circle-media {
  position: relative;
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  background: var(--cream-deep);
  box-shadow: 0 0 0 1px var(--line), 0 0 0 10px var(--blush);
}
.circle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  /* pull in tighter so it reads as a head-and-shoulders portrait */
  transform: scale(1.3);
  transform-origin: 50% 24%;
}
.name-plate {
  position: relative;
  z-index: 2;
  display: block;
  width: max-content;
  max-width: 90%;
  margin: -1.1rem auto 0;
  background: var(--cream);
  border: 1px solid var(--rose);
  padding: 0.5rem 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
}
.section--ink .name-plate { background: var(--ink); color: var(--cream); }

/* -- services as circles with a label chip -- */
.circle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 2.75rem) clamp(1rem, 2.5vw, 1.75rem);
}
.circle-card { display: block; text-align: center; }
.circle-card__media {
  /* it's a <span>; without this it stays inline and ignores the sizing below */
  display: block;
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-deep);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.circle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.circle-card:hover .circle-card__media {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.circle-card:hover .circle-card__media img { transform: scale(1.07); }
.circle-card__label {
  position: relative;
  z-index: 2;
  display: block;
  width: max-content;
  max-width: 100%;
  margin: -0.95rem auto 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem 1.1rem;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 0.35s var(--ease);
}
.circle-card:hover .circle-card__label { background: var(--rose); }
.circle-card__note {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--ink-70);
  letter-spacing: 0.02em;
}
.section--ink .circle-card__note { color: rgba(248, 244, 240, 0.7); }

/* -- repeated stacked wordmark CTA -- */
.stacked-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--blush);
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}
.stacked-cta__lines { display: grid; }
.stacked-cta__line {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  /* sized to bleed just past the viewport edges, as in the reference;
     .stacked-cta clips the overflow so the page never scrolls sideways */
  font-size: clamp(2.6rem, 16vw, 13rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.stacked-cta__line:nth-child(1) { color: var(--ink); }
.stacked-cta__line:nth-child(2) { color: var(--cream); }
.stacked-cta__line:nth-child(3) { color: var(--ink); opacity: 0.28; }
.stacked-cta__figure {
  position: relative;
  z-index: 2;
  width: min(60%, 340px);
  margin: clamp(-11rem, -14vw, -6rem) auto 0;
  display: block;
}
.stacked-cta__panel {
  position: relative;
  z-index: 3;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
}
.stacked-cta__panel .lede { color: rgba(248, 244, 240, 0.75); max-width: 46ch; margin-inline: auto; }
.stacked-cta__panel .btn-row { justify-content: center; margin-top: 1.75rem; }

/* -- centred section heading treatment used across the site -- */
.head-centred { text-align: center; max-width: 700px; margin-inline: auto; }
.head-centred .sub {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin: 0.9rem 0 0;
}
.section--ink .head-centred .sub { color: rgba(248, 244, 240, 0.55); }
.head-centred h2 { text-transform: uppercase; letter-spacing: -0.01em; }

/* ---------- 17c. Studio-flyer components ----------
   Pill tags, frosted panels, arch-topped media, vertical side labels and the
   segmented contact bar. Same devices as the reference flyers, rendered in the
   brand palette rather than neon. */

/* -- pill tag cluster -- */
.tag-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 1.15rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(22, 17, 15, 0.1);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
              transform 0.3s var(--ease), color 0.3s var(--ease);
}
/* small rose diamond, in place of the reference's star bullet */
.tag-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--rose);
  transform: rotate(45deg);
  transition: background-color 0.3s var(--ease);
}
a.tag-pill:hover, a.tag-pill:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
a.tag-pill:hover::before { background: var(--blush-deep); }

.tag-pill--solid {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--cream);
}
.tag-pill--solid::before { background: var(--cream); }

.section--ink .tag-pill {
  background: rgba(248, 244, 240, 0.08);
  border-color: rgba(248, 244, 240, 0.22);
  color: var(--cream);
}
.section--ink .tag-pill::before { background: var(--blush-deep); }

/* -- frosted panel -- */
.glass {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -34px rgba(22, 17, 15, 0.5);
}
.glass--ink {
  background: rgba(22, 17, 15, 0.55);
  border-color: rgba(248, 244, 240, 0.16);
  color: var(--cream);
}

/* -- segmented contact bar -- */
.contact-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(22, 17, 15, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-bar li { background: rgba(255, 255, 255, 0.55); }
.contact-bar a, .contact-bar span.item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  transition: color 0.3s var(--ease);
}
.contact-bar a:hover { color: var(--rose); }
.contact-bar .ico {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
}
.contact-bar .ico svg { width: 14px; height: 14px; }

/* -- arch-topped media -- */
.arch {
  position: relative;
  overflow: hidden;
  border-radius: 999px 999px 14px 14px;
  background: var(--cream-deep);
}
.arch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arch--soft { border-radius: 999px 999px 999px 999px / 44% 44% 10% 10%; }
.arch--frame {
  padding: 12px;
  background: var(--blush);
  border-radius: 999px 999px 20px 20px;
}
.arch--frame > .arch { border-radius: 999px 999px 10px 10px; }

/* -- rotated label down the edge of an image -- */
.side-label {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -0.25rem;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-50);
  pointer-events: none;
}
.side-label--right { left: auto; right: -0.25rem; }
.side-label--light { color: rgba(248, 244, 240, 0.6); }

/* -- soft diagonal light leak (the flyers' prism streak, toned down) -- */
.sheen {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 28%,
    rgba(200, 44, 107, 0.10) 41%,
    rgba(185, 148, 94, 0.10) 47%,
    rgba(163, 20, 71, 0.06) 53%,
    transparent 64%);
  mix-blend-mode: multiply;
}

/* -- small rounded thumbnail row -- */
.thumb-row {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.thumb-row li {
  width: clamp(74px, 12vw, 104px);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}
.thumb-row img { width: 100%; height: 100%; object-fit: cover; }

/* -- numbered service block -- */
.svc {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.svc + .svc { border-top: 1px solid var(--line); }
/* side padding gives the rotated label its own lane beside the photo,
   instead of overlapping the image edge */
.svc__media { position: relative; padding-inline: 1.75rem; }
.svc__media .arch { aspect-ratio: 4 / 5; }
.svc__media .side-label { left: 0; }
.svc__media .side-label--right { left: auto; right: 0; }
/* The numeral used to be absolutely positioned over the top-right of the copy,
   which collided with the longer headings once they wrapped. It now sits in a
   reserved band at the top-left, so nothing can run into it at any width. */
.svc__num {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--rose);
  opacity: 0.3;
}
.svc__body {
  position: relative;
  padding-top: clamp(2.6rem, 5.2vw, 4rem);
}
.svc__panel { padding: clamp(1.5rem, 3vw, 2rem); margin-top: 1.5rem; }

/* ---------- 17e. Founder cover ----------
   Magazine-cover treatment: flat colour field, oversized brand initials
   behind a cut-out portrait, corner credentials, a circled tag and a heavy
   sans headline with one accent word. */
.cover {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--rose);
  color: var(--cream);
  padding-top: clamp(1.25rem, 3vw, 2rem);
}
.cover__rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 244, 240, 0.85);
}
.cover__rule .mid {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.cover__rule .side { display: none; }

/* oversized initials sitting behind the figure */
.cover__mark {
  position: absolute;
  z-index: -1;
  /* sits to the right, clear of the bottom-left copy — cream-on-cream where
     the two overlap is unreadable */
  right: -3%;
  top: clamp(2.5rem, 6vw, 4.5rem);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15rem, 44vw, 34rem);
  line-height: 0.72;
  letter-spacing: -0.04em;
  color: var(--cream);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.cover__reg {
  position: absolute;
  z-index: 2;
  top: clamp(3.5rem, 7vw, 5.5rem);
  right: 0;
  width: clamp(28px, 3.4vw, 44px);
  aspect-ratio: 1;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(0.8rem, 1.4vw, 1.15rem);
  font-family: var(--font-display);
  color: var(--cream);
}

.cover__body {
  position: relative;
  display: grid;
  align-items: end;
  padding-top: clamp(2rem, 6vw, 4rem);
}
.cover__figure {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 560px);
  margin-bottom: -1px; /* sit flush on the section edge */
}
.cover__figure img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 30px 45px rgba(22, 17, 15, 0.35));
}

.cover__copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.cover__tag {
  display: inline-grid;
  place-items: center;
  padding: 0.5rem 1.35rem;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.cover__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin: 0;
  text-transform: none;
}
.cover__role {
  margin: 1rem 0 0;
  font-size: clamp(0.72rem, 1.1vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
.cover__role em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}
.cover__text {
  margin: 1.35rem 0 0;
  max-width: 56ch;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.7;
  color: rgba(248, 244, 240, 0.9);
}
.cover__text strong { color: var(--cream); font-weight: 600; }
.cover__cta { margin-top: 1.75rem; }

/* ---------- 17f. Rate card ---------- */
.rate-card { padding: clamp(1.5rem, 3.5vw, 2.75rem); }
.rate-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-bottom: 0.75rem;
}
.rate-card__head h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.rate-card__head .meta {
  font-size: var(--label-size);
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--ink-50);
}

.rate-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rate-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.rate-list li:first-child { border-top: 1px solid var(--line); }
.rate-list .name {
  font-size: 0.98rem;
  font-weight: 500;
}
.rate-list .name small {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-70);
  margin-top: 0.15rem;
}
/* leader dots so the eye tracks from service to price */
.rate-list .lead {
  flex: 1;
  min-width: 1.5rem;
  align-self: center;
  border-bottom: 1px dotted rgba(22, 17, 15, 0.28);
  transform: translateY(-2px);
}
.rate-list .amt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  white-space: nowrap;
  color: var(--ink);
}
.rate-list .amt.is-range { letter-spacing: -0.01em; }

.rate-card__note {
  margin-top: 1.5rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--ink-70);
}

/* ---------- 17d. Typographic normalisation ----------
   Tracking on the uppercase micro-labels had drifted between 0.14em and
   0.34em across components. Two tiers now, applied last so they win. */
.eyebrow,
.head-centred .sub,
.name-plate,
.footer-col h4,
.side-label {
  letter-spacing: 0.24em;
}

.nav a,
.btn,
.tag-pill,
.filter-chip,
.icon-band .label,
.circle-card__label,
.hero-meta,
.strip figcaption,
.price-card__flag,
.price-card__amount .from,
.contact-list .k,
.contact-bar .k,
.field label,
.breadcrumb,
.quote-card cite,
.mobile-nav-foot .meta,
.service-card__tag,
.lightbox-caption {
  letter-spacing: var(--label-track);
}

/* Manrope's uppercase sits better a touch heavier than its body weight */
.eyebrow, .head-centred .sub, .nav a, .btn, .tag-pill, .filter-chip,
.icon-band .label, .circle-card__label, .name-plate, .footer-col h4,
.field label, .price-card__flag { font-weight: 500; }

/* the script face has a small x-height; nudge its optical size up */
.script { line-height: 1.15; padding-bottom: 0.08em; }

/* ---------- 18. Reveal animation ----------
   Gated on the `js` class that index/about/etc. set in <head>. Without
   JavaScript the content simply renders — it never starts invisible. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
/* release the compositing hint once the element has animated in — leaving
   will-change on every section keeps dozens of layers alive for nothing */
.js .reveal.is-in { opacity: 1; transform: none; will-change: auto; }
.reveal-d1 { transition-delay: 0.09s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.27s; }
.reveal-d4 { transition-delay: 0.36s; }

/* ---------- 19. Responsive ---------- */
@media (min-width: 600px) {
  .field-grid { grid-template-columns: 1fr 1fr; }
  .form-actions { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-auto-columns: 38vw; }
  .masonry { column-count: 2; }
}

@media (min-width: 640px) {
  .contact-bar { grid-template-columns: repeat(3, 1fr); }
  .cover__rule .side { display: block; }
}

@media (min-width: 800px) {
  /* copy overlays the portrait, as on the reference cover */
  .cover__figure {
    grid-area: 1 / 1;
    width: min(100%, 640px);
    justify-self: center;
  }
  .cover__copy {
    grid-area: 1 / 1;
    align-self: end;
    max-width: 560px;
    padding-bottom: clamp(3rem, 6vw, 5rem);
  }
}

@media (min-width: 800px) {
  .brand-name { display: block; }
  .icon-band ul { grid-template-columns: repeat(6, 1fr); }
  .circle-grid { grid-template-columns: repeat(4, 1fr); }
  .svc { grid-template-columns: 0.85fr 1.15fr; }
  .svc:nth-of-type(even) .svc__media { order: 2; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 3; }
  .strip { grid-auto-columns: 26vw; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 1.15fr 1fr; }
  .split--wide-media { grid-template-columns: 1fr 1.15fr; }
  .service-detail { grid-template-columns: 1fr 1fr; }
  .service-detail:nth-of-type(even) .service-detail__media { order: 2; }
  .form-shell { grid-template-columns: 1.35fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .hero .container { grid-template-columns: 1.15fr 0.85fr; }
  .steps--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1000px) {
  .nav { display: block; }
  .nav-toggle { display: none; }
  .header-actions .btn { display: inline-flex; }
  .masonry { column-count: 4; }
  .strip { grid-auto-columns: 20vw; }
}

@media (max-width: 799px) {
  .hero-figure { max-width: 400px; order: -1; }
  .hero-badge { left: 0; }
}

/* ---------- 20. Motion / print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-nav, .wa-float, .cta-band, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  .js .reveal { opacity: 1; transform: none; }
}
