/* ==========================================================================
   AEInked Studios
   Design system + site styles

   Palette and motifs are drawn from Botticelli's Birth of Venus. The site
   runs on two surfaces, paper and ink, alternating down the page: warm
   alabaster for reading, near-black for the moments that should land.
   Gold is the only accent and it carries across both.

   Dark sections use .on-ink, which rebinds the palette tokens rather than
   overriding component rules. See section 4b.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Surfaces. Paper and ink, in that order. */
  --shell:        #F7F2EA;
  --foam:         #EFE8DE;
  --mist:         #E5DCD0;
  --porcelain:    #FFFFFF;

  /* Ink surfaces. Sampled from the painting's darkest passages (#333027)
     and pushed deeper, so black still reads warm rather than digital. */
  --ink-900:      #121110;
  --ink-800:      #1B1916;
  --ink-700:      #262320;

  /* Accents */
  --blush:        #E9CFC6;
  --blush-deep:   #C79B8B;
  --blush-ink:    #9E6C5C;
  --celadon:      #CBD8CD;
  --celadon-deep: #9DB2A3;
  --celadon-ink:  #63796B;
  --gilt:         #A8874F;  /* hairlines, icons, large numerals (3:1) */
  --gilt-deep:    #7D6136;  /* anything carrying text on paper (4.5:1) */
  --gilt-soft:    #C9A96E;
  --gilt-wash:    #F1E6D2;
  --gilt-lit:     #C9A05C;  /* the gold as it reads on ink */

  /* Gold buttons need opposite treatment per surface: dark gold under white
     on paper, lit gold under near-black on ink. */
  --gold-btn-bg:  var(--gilt-deep);
  --gold-btn-fg:  var(--porcelain);

  /* Ink */
  --ink:          #2C2825;
  --ink-2:        #5C534C;
  --ink-3:        #736961;  /* AA for small text on --shell AND the darker --foam */
  --ink-4:        #8A7F76;  /* hint text and separators only */

  /* Lines */
  --line:         rgba(44, 40, 37, 0.14);
  --line-soft:    rgba(44, 40, 37, 0.07);
  --line-gilt:    rgba(168, 135, 79, 0.30);

  /* Type */
  --display: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --t-hero:   clamp(3rem, 7.8vw, 6.75rem);
  --t-d1:     clamp(2.8rem, 6.8vw, 5.75rem);
  --t-d2:     clamp(2.3rem, 5.2vw, 4.25rem);
  --t-d3:     clamp(1.55rem, 2.6vw, 2.2rem);
  --t-d4:     clamp(1.2rem, 1.6vw, 1.4rem);
  --t-body:   1.0625rem;
  --t-lead:   clamp(1.125rem, 1.6vw, 1.3125rem);
  --t-small:  0.875rem;
  --t-micro:  0.75rem;

  /* Space */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  --section: clamp(3.75rem, 7.2vw, 6.75rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max: 1280px;
  --measure: 62ch;

  /* Shape. Squared off: soft corners read spa, hard corners read studio.
     The arch survives only where it means something, around Venus. */
  --r-sm: 0px;
  --r-md: 2px;
  --r-pill: 2px;
  --arch: 50% 50% var(--r-sm) var(--r-sm) / 40% 40% var(--r-sm) var(--r-sm);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0.28, 1);

  --nav-h: 76px;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  /* The page canvas (behind the iOS status bar, and the rubber-band overscroll
     regions) shows this. Every page opens on a dark hero or masthead and ends
     on a dark footer, so a dark canvas removes the pale band that used to sit
     above the nav on mobile, and matches the footer on overscroll at the base. */
  background: var(--ink-900);
}

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--t-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

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

a { color: inherit; }

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

ul, ol { margin: 0; padding: 0; }

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

::selection { background: var(--blush); color: var(--ink); }

/* --------------------------------------------------------------------------
   3. Texture — a faint paper grain over everything, for the painterly feel
   -------------------------------------------------------------------------- */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.30;
  mix-blend-mode: overlay;   /* works on paper and on ink, unlike multiply */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 880px; }
.wrap--text   { max-width: 720px; }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--foam { background: var(--foam); }
.section--mist { background: var(--mist); }

/* --------------------------------------------------------------------------
   4b. Ink surfaces

   Rather than overriding every child rule for dark backgrounds, this rebinds
   the palette tokens themselves. Any component dropped onto .on-ink inverts
   on its own, and new components inherit the behaviour for free.
   -------------------------------------------------------------------------- */

.on-ink {
  --shell:      var(--ink-900);
  --foam:       var(--ink-800);
  --mist:       var(--ink-700);

  --ink:        #F2EBE1;
  --ink-2:      #C6BCAF;
  --ink-3:      #9E9488;
  --ink-4:      #7C7368;

  --line:       rgba(242, 235, 225, 0.18);
  --line-soft:  rgba(242, 235, 225, 0.09);
  --line-gilt:  rgba(201, 160, 92, 0.42);

  /* On ink the gold must climb, not deepen, to keep its contrast. */
  --gilt:       var(--gilt-lit);
  --gilt-deep:  #D9B46E;
  --blush-ink:  #E3A98F;

  --gold-btn-bg: var(--gilt-lit);
  --gold-btn-fg: var(--ink-900);

  background: var(--ink-900);
  color: var(--ink);
}

.on-ink--soft { background: var(--ink-800); }

/* Ink section carrying a ghost of the painting, so black is never flat. */
.on-ink--paint { position: relative; overflow: hidden; isolation: isolate; }
.on-ink--paint::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../img/venus-sea.webp") center 55% / cover no-repeat;
  /* Blurred hard enough to be tone, not imagery. At lower blur the zephyrs
     stay legible and it reads as a photo sitting behind the text. */
  opacity: 0.22;
  filter: blur(18px) brightness(0.5) saturate(0.8);
  transform: scale(1.15);
}
.on-ink--paint::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(62% 70% at 50% 50%, rgba(201, 160, 92, 0.10), rgba(18, 17, 16, 0) 72%);
}

/* Hairline seam where ink meets paper, so the join reads deliberate. */
.on-ink + .section:not(.on-ink),
.section:not(.on-ink) + .on-ink { border-top: 1px solid rgba(201, 160, 92, 0.28); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--ink);
  color: var(--shell);
  padding: 0.75rem 1.25rem;
  font-size: var(--t-small);
}
.skip:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------------------------
   5. Typography helpers
   -------------------------------------------------------------------------- */

/* Was an italic serif in blush pink, which was the last boutique signal on
   the page. Now a hard gold rule and a plain label. */
.kicker {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gilt-deep);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.kicker--center { text-align: center; }

.h-hero {
  font-size: var(--t-hero);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.h1 { font-size: var(--t-d1); }
.h2 { font-size: var(--t-d2); }
.h3 { font-size: var(--t-d3); }
.h4 { font-size: var(--t-d4); }

/* Emphasis runs gold, not pink. One accent across the whole site. */
.h-em {
  font-style: italic;
  font-weight: 300;
  color: var(--gilt-deep);
}

.lead {
  font-size: var(--t-lead);
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 300;
  max-width: var(--measure);
}

.muted { color: var(--ink-2); }
.small { font-size: var(--t-small); }

.center { text-align: center; }
.center .lead, .center .measure { margin-inline: auto; }
.measure { max-width: var(--measure); }

.label {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   6. Ornament — hairline rules with a shell at centre
   -------------------------------------------------------------------------- */

.rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--gilt-soft);
}
.rule::before, .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-gilt);
}
.rule svg { width: 44px; height: auto; flex: none; opacity: 0.9; }

.rule--sm svg { width: 30px; }

/* --------------------------------------------------------------------------
   7. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.2rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--ink);
  color: var(--shell);
}
.btn--primary:hover { background: var(--gold-btn-bg); color: var(--gold-btn-fg); }

.btn--gilt {
  background: var(--gold-btn-bg);
  color: var(--gold-btn-fg);
}
.btn--gilt:hover { background: var(--ink); color: var(--shell); }

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--gilt); color: var(--gilt-deep); }

.btn--light {
  border-color: rgba(255,255,255,0.5);
  color: var(--porcelain);
}
.btn--light:hover { background: var(--porcelain); color: var(--ink); }

.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.7rem; }

.btn:active { transform: translateY(1px); }

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

/* Text link with an underline that grows */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding-bottom: 0.35rem;
  background-image: linear-gradient(var(--gilt), var(--gilt));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: color 0.35s var(--ease), background-size 0.45s var(--ease);
}
.tlink:hover { color: var(--gilt-deep); background-size: 40% 1px; }
.tlink svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   8. Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease),
              backdrop-filter 0.5s var(--ease);
}

/* The stuck bar's blur lives on a pseudo-element, NOT on .nav itself.
   backdrop-filter (like transform and filter) turns its element into the
   containing block for position:fixed descendants. With it on .nav, the
   full-screen .nav__panel collapsed to the 66px bar once scrolled, so the
   mobile menu only covered the top strip. A ::before is not an ancestor of
   the panel, so the panel stays fixed to the viewport. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  box-shadow: 0 1px 0 rgba(44, 40, 37, 0.10);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.nav.is-stuck::before { opacity: 1; }

/* Before it sticks, the bar floats over the ink hero and has to invert.
   Once stuck it sits on paper again and the default colours are correct. */
.nav--over-ink:not(.is-stuck) { color: #F2EBE1; }
.nav--over-ink:not(.is-stuck) .brand svg { color: var(--gilt-lit); }
.nav--over-ink:not(.is-stuck) .nav__links a { color: rgba(242, 235, 225, 0.74); }
.nav--over-ink:not(.is-stuck) .nav__links a:hover,
.nav--over-ink:not(.is-stuck) .nav__links a[aria-current="page"] { color: #F2EBE1; }
.nav--over-ink:not(.is-stuck) .nav__links a::after { background: var(--gilt-lit); }
.nav--over-ink:not(.is-stuck) .nav__cta {
  background: #F2EBE1;
  color: var(--ink-900);
}
.nav--over-ink:not(.is-stuck) .nav__cta:hover {
  background: var(--gilt-lit);
  color: var(--ink-900);
}
.nav--over-ink:not(.is-stuck) .nav__toggle span,
.nav--over-ink:not(.is-stuck) .nav__toggle span::before,
.nav--over-ink:not(.is-stuck) .nav__toggle span::after { background: #F2EBE1; }
.nav--over-ink.is-open .nav__toggle span { background: transparent; }

.nav__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* Keep the logo and close button above the full-screen menu overlay. */
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex: none;
  /* Above the open menu panel (z-index 1) so the logo stays visible/clickable. */
  position: relative;
  z-index: 2;
}
.brand svg { width: 26px; height: auto; color: var(--gilt); }
.brand__name {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 1;
  padding-left: 0.1em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.1rem);
  list-style: none;
}

.nav__links a {
  text-decoration: none;
  font-size: 0.775rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-2);
  padding-block: 0.4rem;
  position: relative;
  transition: color 0.35s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gilt);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--ink); }

.nav__cta { flex: none; }

.nav__toggle {
  display: none;
  position: relative;
  z-index: 2;   /* above the open menu panel, so the close button stays on top */
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  position: relative;
  transition: background-color 0.3s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s var(--ease);
}
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top: 7px; }

.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__panel {
  position: fixed;
  inset: 0;
  background: var(--shell);
  padding: calc(var(--nav-h) + 1.75rem) var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  /* flex-start, not center: a centered column that outgrows the screen pushes
     its top items up behind the fixed bar. Start at the top and scroll if tall. */
  justify-content: flex-start;
  gap: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
              visibility 0s linear 0.45s;
  /* Positive z-index so the overlay sits ABOVE page content. The old -1
     rendered behind the page once the stuck nav's backdrop-filter created a
     stacking context, which is why the menu "broke" after scrolling. */
  z-index: 1;
}
.nav.is-open .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease),
              visibility 0s linear 0s;
}
.nav__panel ul { list-style: none; }
.nav__panel li + li { margin-top: 0.1rem; }
.nav__panel a {
  font-family: var(--display);
  font-size: clamp(1.6rem, 6.2vw, 2.15rem);
  font-weight: 300;
  text-decoration: none;
  line-height: 1.1;
  display: block;
  padding-block: 0.28rem;
}
.nav__panel a[aria-current="page"] { font-style: italic; color: var(--blush-ink); }
.nav__panel .panel__foot {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
/* The uppercase CTA is wider than a narrow phone; let it be full width and
   wrap rather than overflow the panel. */
.nav__panel .panel__foot .btn {
  width: 100%;
  white-space: normal;
}
/* :not(.btn) so this does not out-specify .btn--primary and paint the
   panel's main call to action dark-on-dark. */
.nav__panel .panel__foot a:not(.btn) {
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}

@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(100svh, 880px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  /* Kept tight so the fact strip below breaks the fold and invites the scroll. */
  padding-bottom: var(--s-7);
  overflow: hidden;
  isolation: isolate;
}

/* Dawn sky wash. A blurred crop of the painting's sea sits under a gradient
   veil, so the hero has real painted texture rather than flat CSS colour. */
.sky {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(178deg, #FCF9F5 0%, #F8F1E9 48%, #F3EBE3 100%);
}
.sky::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: url("../img/venus-sea.webp") center 55% / cover no-repeat;
  opacity: 0.38;
  filter: blur(4px) saturate(1.06);
}
.sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(115% 75% at 50% 0%,   #FEF9F0 0%, rgba(254,249,240,0) 62%),
    radial-gradient(75% 55% at 14% 28%,   rgba(233,207,198,0.55) 0%, rgba(233,207,198,0) 68%),
    radial-gradient(80% 60% at 88% 34%,   rgba(203,216,205,0.45) 0%, rgba(203,216,205,0) 68%),
    linear-gradient(180deg, rgba(252,249,245,0.60) 0%, rgba(252,249,245,0.26) 42%, rgba(243,235,227,0.82) 100%);
}

/* The same sky, hung at night. The painting drops back to a texture and a
   single warm pool of light sits where Venus stands. */
.on-ink .sky { background: var(--ink-900); }
.on-ink .sky::before {
  opacity: 0.26;
  filter: blur(6px) saturate(0.85) brightness(0.5);
}
.on-ink .sky::after {
  background:
    radial-gradient(58% 52% at 74% 42%, rgba(201, 160, 92, 0.14) 0%, rgba(201, 160, 92, 0) 72%),
    linear-gradient(180deg, rgba(18, 17, 16, 0.70) 0%, rgba(18, 17, 16, 0.84) 55%, rgba(18, 17, 16, 0.96) 100%);
}
.on-ink .sky__foam { color: var(--gilt-lit); opacity: 0.16; }

/* Soft foam arcs at the base */
.sky__foam {
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: min(150%, 1500px);
  transform: translateX(-50%);
  z-index: -1;
  color: var(--celadon-deep);
  opacity: 0.4;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: center;
  width: 100%;
}

.hero__title {
  font-size: var(--t-hero);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--blush-ink);
  letter-spacing: -0.015em;
}

.hero__sub {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1rem + 1.4vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: var(--gilt-deep);
  margin: -0.4rem 0 1.6rem;
}

.hero__lead {
  font-size: var(--t-lead);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 46ch;
  margin-bottom: 2.25rem;
}

.hero__meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.25rem;
  font-size: var(--t-small);
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta svg { width: 14px; height: 14px; color: var(--gilt); flex: none; }

.hero__art {
  position: relative;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  margin: 0;
}

.hero__credit {
  margin-top: 0.9rem;
  text-align: right;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}

/* The drifting petals were removed: too close to a spa, and they softened
   the one screen that needs to land hardest. */

/* --------------------------------------------------------------------------
   9b. Fact strip — hard ruled band of studio information under the hero
   -------------------------------------------------------------------------- */

.strip {
  background: var(--ink-800);
  border-block: 1px solid rgba(201, 160, 92, 0.30);
}
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  max-width: var(--max);
  margin-inline: auto;
}
.strip__item {
  flex: 1 1 210px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem clamp(1.1rem, 2.4vw, 2rem);
  border-left: 1px solid rgba(242, 235, 225, 0.13);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: #C6BCAF;
}
.strip__item:first-child { border-left: 0; }
.strip__item svg { width: 15px; height: 15px; flex: none; color: var(--gilt-lit); }

@media (max-width: 760px) {
  .strip__item { flex-basis: 50%; }
  .strip__item:nth-child(odd) { border-left: 0; }
  .strip__item:nth-child(n+3) { border-top: 1px solid rgba(242, 235, 225, 0.13); }
}

/* --------------------------------------------------------------------------
   10. Frames — arched image niches
   -------------------------------------------------------------------------- */

.frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--foam), var(--mist));
  border-radius: var(--r-md);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame--arch { border-radius: var(--arch); }

.frame--3x4  { aspect-ratio: 3 / 4; }
.frame--4x5  { aspect-ratio: 4 / 5; }
.frame--1x1  { aspect-ratio: 1 / 1; }
.frame--4x3  { aspect-ratio: 4 / 3; }
.frame--16x9 { aspect-ratio: 16 / 9; }
.frame--2x3  { aspect-ratio: 2 / 3; }

/* A thin gilt keyline set inside the frame */
.frame--gilt::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: inherit;
  pointer-events: none;
}

.hero__frame {
  border-radius: var(--arch);
  box-shadow: 0 40px 80px -46px rgba(44, 40, 37, 0.55);
}

/* --------------------------------------------------------------------------
   10b. Plates — details from the painting, edges dissolved into the page
   so they read as inlay rather than as a photograph in a box.
   -------------------------------------------------------------------------- */

.plate {
  position: relative;
  width: 100%;
  -webkit-mask-image: radial-gradient(ellipse 52% 55% at 50% 50%, #000 58%, transparent 100%);
          mask-image: radial-gradient(ellipse 52% 55% at 50% 50%, #000 58%, transparent 100%);
}
.plate img { width: 100%; height: auto; display: block; }

/* Vertical variant for narrow columns */
.plate--tall {
  -webkit-mask-image: radial-gradient(ellipse 56% 52% at 50% 50%, #000 60%, transparent 100%);
          mask-image: radial-gradient(ellipse 56% 52% at 50% 50%, #000 60%, transparent 100%);
}

/* Bottom-only fade, for a detail bleeding out of a section */
.plate--bleed {
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

.credit {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  margin-top: 1.1rem;
}

/* Small caption tucked under a frame */
.frame-cap {
  margin-top: 0.9rem;
  font-size: var(--t-small);
  color: var(--ink-3);
  font-style: italic;
  font-family: var(--display);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   11. Editorial blocks
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--art-first > *:first-child { order: -1; }
.split--wide-text { grid-template-columns: 1.15fr 0.85fr; }

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

/* Sticky side column, desktop only. On mobile the layout is a single column,
   where a sticky element would overlap the content scrolling past it. */
@media (min-width: 901px) {
  .col-sticky { position: sticky; top: calc(var(--nav-h) + 3rem); }
}

/* Offset pair of frames, one raised */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: start;
}
.duo > :nth-child(2) { margin-top: clamp(2rem, 7vw, 5rem); }

/* --------------------------------------------------------------------------
   12. Service list — editorial rows, not cards
   -------------------------------------------------------------------------- */

.services { border-top: 1px solid var(--line); }

.service {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) auto;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.25rem, 4.5vw, 3.25rem);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  position: relative;
  transition: background-color 0.5s var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--gutter) * -0.5);
  background: var(--foam);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
  border-radius: var(--r-md);
}
.service:hover::before { opacity: 1; }

.service__head { display: flex; align-items: baseline; gap: 1.1rem; }
.service__num {
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gilt-deep);
  flex: none;
}
.service__title {
  font-size: var(--t-d3);
  transition: color 0.4s var(--ease);
}
.service:hover .service__title { color: var(--gilt-deep); }
.service__body { color: var(--ink-2); font-size: 1rem; line-height: 1.7; }
.service__go {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex: none;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease),
              color 0.4s var(--ease), transform 0.4s var(--ease);
}
.service__go svg { width: 15px; height: 15px; }
.service:hover .service__go {
  background: var(--gilt);
  border-color: var(--gilt);
  color: var(--porcelain);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   13. Gallery
   -------------------------------------------------------------------------- */

/* Near flush. Generous gaps read gallery wall; a tight grid reads contact
   sheet, which is closer to how tattoo work actually gets shown. */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery--3 { grid-template-columns: repeat(3, 1fr); }

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--mist);
  cursor: zoom-in;
  display: block;
  padding: 0;
  width: 100%;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-soft);
}
.gallery__item:hover img { transform: scale(1.045); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--arch { border-radius: var(--arch); }

/* Preview grids outside the look book navigate rather than enlarge, so the
   cursor should not promise a zoom. */
.gallery__item--link { cursor: pointer; display: block; }

/* Gentle tonal variety so a repeated placeholder still reads as a set.
   Harmless once real photography is dropped in. */
.gallery__item:nth-child(3n) img   { filter: saturate(0.94) brightness(1.02); }
.gallery__item:nth-child(4n+1) img { filter: sepia(0.06) saturate(0.98); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(38, 34, 31, 0.94);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 3rem);
  opacity: 0;
  visibility: hidden;
  /* Visibility flips instantly, delayed on close so the fade still plays.
     Transitioning its duration instead would leave the dialog unfocusable
     for the length of the fade. */
  transition: opacity 0.4s var(--ease), visibility 0s linear 0.4s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s var(--ease), visibility 0s linear 0s;
}
.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.lightbox__cap {
  color: rgba(252, 249, 245, 0.72);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  text-align: center;
  margin-top: 1rem;
}
.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(252, 249, 245, 0.3);
  color: var(--shell);
  display: grid;
  place-items: center;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.lightbox__close:hover { background: var(--shell); color: var(--ink); }
.lightbox__close svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   14. Quotes and reviews
   -------------------------------------------------------------------------- */

.quote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.28;
  letter-spacing: -0.012em;
  max-width: 22ch;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.review { border-top: 1px solid var(--line); padding-top: 1.75rem; }
.review__stars {
  color: var(--gilt);
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review__stars svg { width: 13px; height: 13px; }
.review p {
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
}
.review cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink-3);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--t-small);
  color: var(--ink-2);
}
.rating-badge strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.rating-badge__stars { display: flex; gap: 3px; color: var(--gilt); }
.rating-badge__stars svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   15b. Reviews carousel
   -------------------------------------------------------------------------- */

.reviews__intro { margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.reviews__intro .h2 { margin-top: 0.35rem; }
.reviews__intro .rating-badge { margin-top: 1.35rem; }

.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  align-items: stretch;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  text-align: center;
  padding: 0 clamp(0.5rem, 4vw, 2rem);
}
.review-slide__stars { display: flex; gap: 4px; color: var(--gilt); }
.review-slide__stars svg { width: 16px; height: 16px; }
.review-slide__quote {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.35rem, 1rem + 1.55vw, 2rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 46ch;
  text-wrap: pretty;
}
.review-slide__by { margin: 0.35rem 0 0; }
.review-slide__by cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--gilt-deep);
}
.review-slide__meta {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.carousel__arrow svg { width: 18px; height: 18px; }
.carousel__arrow:hover { background: var(--gilt); border-color: var(--gilt); color: var(--ink-900); }
.carousel__arrow:focus-visible { outline: 2px solid var(--gilt); outline-offset: 3px; }
.carousel__arrow--prev { left: 0; }
.carousel__arrow--next { right: 0; }

/* On wide screens the arrows sit in a gutter beside the text */
@media (min-width: 861px) { .carousel { padding-inline: 68px; } }
@media (max-width: 860px) { .carousel__arrow { display: none; } }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}
.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--gilt);
  background: transparent;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel__dot[aria-current="true"] { background: var(--gilt); transform: scale(1.18); }
.carousel__dot:focus-visible { outline: 2px solid var(--gilt); outline-offset: 3px; }

.reviews__all { margin-top: clamp(2rem, 4vw, 2.5rem); }

/* Without JS, drop the carousel scaffold and show every review stacked */
.no-js .carousel__viewport { overflow: visible; }
.no-js .carousel__track { display: block; }
.no-js .review-slide { padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.no-js .review-slide:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.no-js .carousel__arrow, .no-js .carousel__dots { display: none; }

@media (prefers-reduced-motion: reduce) { .carousel__track { transition: none; } }

/* --------------------------------------------------------------------------
   15. Detail lists (hours, facts, pricing)
   -------------------------------------------------------------------------- */

.dl { border-top: 1px solid var(--line); }
.dl__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.975rem;
}
.dl__row dt { color: var(--ink-2); }
.dl__row dd { margin: 0; text-align: right; }
.dl__row--now dt, .dl__row--now dd { color: var(--ink); font-weight: 400; }
.dl__row--closed dd { color: var(--ink-3); }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.fact__n {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1;
  font-weight: 300;
  color: var(--gilt-deep);
  margin-bottom: 0.6rem;
}
/* Same slot, icon instead of a numeral */
.fact__icon { color: var(--gilt); margin-bottom: 0.9rem; }
.fact__icon svg { width: 30px; height: 30px; }
.fact h3 { font-size: var(--t-d4); margin-bottom: 0.45rem; }
.fact p { font-size: 0.95rem; color: var(--ink-2); }

/* Checklist with a dainty mark */
.ticks { list-style: none; display: grid; gap: 0.85rem; }
.ticks li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.85rem;
  align-items: start;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
}
.ticks svg { width: 15px; height: 15px; color: var(--gilt); margin-top: 0.42em; }

/* Numbered steps for aftercare */
.steps { list-style: none; counter-reset: step; }
.steps > li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-block: clamp(1.5rem, 3vw, 2.1rem);
  border-top: 1px solid var(--line);
}
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gilt-deep);
  line-height: 1.35;
}
.steps h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.steps p { color: var(--ink-2); font-size: 1rem; }

/* --------------------------------------------------------------------------
   16. Accordion (FAQ)
   -------------------------------------------------------------------------- */

.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-align: left;
  padding-block: clamp(1.15rem, 2.4vw, 1.6rem);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.3;
  transition: color 0.35s var(--ease);
}
.acc__btn:hover { color: var(--gilt-deep); }
.acc__icon {
  position: relative;
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--gilt);
}
.acc__icon::before, .acc__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}
.acc__icon::before { top: 7px; left: 0; width: 15px; height: 1px; }
.acc__icon::after  { left: 7px; top: 0; width: 1px; height: 15px; }
.acc__item.is-open .acc__icon::after { transform: rotate(90deg); opacity: 0; }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p {
  color: var(--ink-2);
  max-width: 68ch;
  padding-bottom: 1.6rem;
  font-size: 1rem;
}
.acc__panel p:first-child { padding-top: 0.15rem; }

/* --------------------------------------------------------------------------
   17. Forms
   -------------------------------------------------------------------------- */

.form { display: grid; gap: 1.4rem; }
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.field { display: grid; gap: 0.5rem; }
.field label {
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--ink-2);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
  border-radius: 0;
  transition: border-color 0.35s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%238A7F76' stroke-width='1.2'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 1.5rem;
  cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gilt);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }

.field[data-invalid="true"] input,
.field[data-invalid="true"] textarea,
.field[data-invalid="true"] select { border-color: var(--blush-deep); }
.field__err {
  font-size: var(--t-small);
  color: var(--blush-ink);
  display: none;
}
.field[data-invalid="true"] .field__err { display: block; }

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form__note { font-size: var(--t-small); color: var(--ink-3); }

.form__status {
  display: none;
  padding: 1.15rem 1.35rem;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  line-height: 1.6;
  border: 1px solid transparent;
}
.form__status[data-state="success"] {
  display: block;
  background: rgba(203, 216, 205, 0.32);
  border-color: var(--celadon-deep);
  color: var(--celadon-ink);
}
.form__status[data-state="error"] {
  display: block;
  background: rgba(233, 207, 198, 0.34);
  border-color: var(--blush-deep);
  color: var(--blush-ink);
}
.form.is-sending button[type="submit"] { opacity: 0.55; pointer-events: none; }

/* --------------------------------------------------------------------------
   18. Callout band
   -------------------------------------------------------------------------- */

.band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(70% 60% at 20% 20%, rgba(233,207,198,0.6), rgba(233,207,198,0) 70%),
    radial-gradient(70% 60% at 82% 78%, rgba(203,216,205,0.55), rgba(203,216,205,0) 70%),
    linear-gradient(160deg, #F8F1E8, #F1E7DD);
}
.band__shell {
  position: absolute;
  right: -4%;
  bottom: -22%;
  width: min(45%, 460px);
  color: var(--gilt);
  opacity: 0.14;
  z-index: -1;
}

/* Painted sea behind a band */
.band--sea::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../img/venus-sea.webp") center 60% / cover no-repeat;
  opacity: 0.5;
  filter: blur(1.5px) saturate(1.05);
}
.band--sea::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(252,249,245,0.72), rgba(246,240,233,0.62));
}

.band--ink {
  background: linear-gradient(155deg, #302B27 0%, #26221F 100%);
  color: var(--shell);
}
.band--ink .lead, .band--ink .muted { color: rgba(252, 249, 245, 0.72); }
.band--ink .kicker { color: var(--gilt-soft); }
.band--ink .rule::before, .band--ink .rule::after { background: rgba(201, 169, 110, 0.35); }
.band--ink .dl__row { border-color: rgba(252,249,245,0.12); }
.band--ink .dl { border-color: rgba(252,249,245,0.2); }
.band--ink .dl__row dt { color: rgba(252,249,245,0.66); }

/* --------------------------------------------------------------------------
   19. Page masthead (interior pages)
   -------------------------------------------------------------------------- */

.masthead {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 8vw, 6.5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
}
/* The masthead is a short band with text sitting directly on it, so the
   painted layer is pulled right back and the veil strengthened. Texture is
   still there, but headings keep their contrast. */
.masthead .sky::before {
  opacity: 0.24;
  filter: blur(10px) saturate(0.85) brightness(0.45);
}
.masthead .sky::after {
  background:
    radial-gradient(70% 80% at 78% 30%, rgba(201, 160, 92, 0.13) 0%, rgba(201, 160, 92, 0) 72%),
    linear-gradient(180deg, rgba(18, 17, 16, 0.74) 0%, rgba(18, 17, 16, 0.88) 60%, rgba(18, 17, 16, 0.97) 100%);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--ink-3);
  margin-bottom: 1.75rem;
}
.crumbs a { text-decoration: none; transition: color 0.3s var(--ease); }
.crumbs a:hover { color: var(--gilt-deep); }
.crumbs li + li::before { content: "/"; margin-right: 0.6rem; color: var(--ink-4); }
.crumbs [aria-current="page"] { color: var(--ink); }

.masthead__title { font-size: var(--t-d1); margin-bottom: 1.35rem; }
.masthead__lead { font-size: var(--t-lead); color: var(--ink-2); max-width: 56ch; }

/* --------------------------------------------------------------------------
   20. Prose (long-form pages)
   -------------------------------------------------------------------------- */

.prose { max-width: 68ch; }
.prose h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
.prose p, .prose li { color: var(--ink-2); }
.prose ul { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 1.4rem; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gilt-soft);
}
.prose a { color: var(--gilt-deep); text-underline-offset: 3px; }

.note {
  border-left: 2px solid var(--gilt-soft);
  padding: 0.3rem 0 0.3rem 1.4rem;
  margin-block: 2rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

/* Sticky in-page nav for long documents */
.toc { position: sticky; top: calc(var(--nav-h) + 2rem); }
.toc ul { list-style: none; display: grid; gap: 0.7rem; }
.toc a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--ink-3);
  transition: color 0.3s var(--ease);
  display: block;
}
.toc a:hover, .toc a.is-active { color: var(--ink); }

.doc-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--ink-900);
  border-top: 1px solid rgba(201, 160, 92, 0.28);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer__brand svg { width: 30px; color: var(--gilt); margin-bottom: 1.1rem; }
.footer__brand .brand__name { font-size: 1.6rem; display: block; margin-bottom: 1rem; }
.footer p { font-size: 0.95rem; color: var(--ink-2); max-width: 34ch; }

.footer h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; display: grid; gap: 0.7rem; }
.footer ul a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-2);
  transition: color 0.3s var(--ease);
}
.footer ul a:hover { color: var(--gilt-deep); }

.footer address { font-style: normal; font-size: 0.95rem; color: var(--ink-2); line-height: 1.8; }
.footer address a { text-decoration: none; }
.footer address a:hover { color: var(--gilt-deep); }

.socials { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease);
}
.socials svg { width: 16px; height: 16px; display: block; margin: 0; }
.socials a:hover { background: var(--ink); border-color: var(--ink); color: var(--shell); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--t-small);
  /* --ink-3 lands at 4.32:1 on --foam, just under AA */
  color: var(--ink-2);
}
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: var(--gilt-deep); }
.footer__bottom nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   21b. Booking embed (Acuity scheduler on the Visit page)
   -------------------------------------------------------------------------- */

.booking__embed {
  width: 100%;
  min-height: 800px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--foam);
}
.booking__embed iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: 0;
}

/* Before and after pairs (piercings). Each image is one composite: before on
   the left, after on the right. */
.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.6rem, 1.6vw, 1.1rem);
}
.ba img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
@media (max-width: 680px) { .ba { grid-template-columns: 1fr; } }

/* Artist links row (course link + Instagram icon) */
.artist-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.artist-links .socials { margin-top: 0; }

/* --------------------------------------------------------------------------
   22. Map
   -------------------------------------------------------------------------- */

.map {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--mist);
  aspect-ratio: 4 / 3;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.72) contrast(0.96); }

/* --------------------------------------------------------------------------
   23. Reveal on scroll
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

.no-js [data-reveal] { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   24. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; row-gap: 3rem; }
  .reviews { grid-template-columns: 1fr; gap: 2rem; }
  .review { padding-top: 1.5rem; }
}

@media (max-width: 900px) {
  :root { --nav-h: 66px; }

  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 2.5rem); }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__art { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__meta { margin-top: 2rem; }

  .split, .split--wide-text { grid-template-columns: 1fr; }
  .split--art-first > *:first-child { order: 0; }
  .split .frame { max-width: 520px; }

  .service {
    grid-template-columns: 1fr auto;
    gap: 1rem 1.5rem;
    align-items: start;
  }
  .service__head { grid-column: 1; }
  .service__body { grid-column: 1 / -1; }
  .service__go { grid-column: 2; grid-row: 1; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery--3 { grid-template-columns: repeat(2, 1fr); }

  .doc-grid { grid-template-columns: 1fr; }
  .toc { position: static; }
  .toc ul {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    gap: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line);
  }
  .toc a { white-space: nowrap; }
}

@media (max-width: 620px) {
  .form__grid { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; gap: 1rem; }
  .duo > :nth-child(2) { margin-top: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .footer p, .footer address { max-width: none; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .quote { max-width: none; }
  .steps > li { grid-template-columns: 1fr; gap: 0.35rem; }
  .gallery__item--tall { grid-row: span 1; }
}

/* --------------------------------------------------------------------------
   25. Motion and print
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  body::after, .nav, .footer, .band, .sky { display: none !important; }
  body { background: #fff; color: #000; }
  /* Ink sections would otherwise print as solid black blocks. */
  .on-ink, .on-ink * { background: #fff !important; color: #000 !important; }
  .on-ink--paint::before, .on-ink--paint::after { display: none !important; }
  .section { padding-block: 1.5rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
}
