/* ==========================================================================
   PET STARZ GROOMING STUDIOS — stylesheet
   --------------------------------------------------------------------------
   Design language is pulled straight from the logo file:
     · Gold        #C4AD0F  (sampled from the starburst + wordmark outline)
     · Deep gold   #80730F  (sampled from the wordmark's drop shadow)
     · Magenta     #DE0082  (sampled from the feather boa)
     · Ink         #0B0B0C  (sampled from the tuxedo silhouette)
     · Diamond     #D0D2D4  (sampled from the rhinestone facets)
   The recurring shape is the logo's four-point sparkle, used as bullets,
   dividers, hover marks and the hero's twinkling halo.
   Sections: 1 tokens · 2 reset · 3 typography · 4 layout · 5 buttons
             6 header/nav · 7 hero · 8 components · 9 pages · 10 footer
             11 motion/utilities · 12 responsive
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------- */

/* Self-hosted webfonts — no external requests, works offline. */
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin-900-normal.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Yellowtail";
  src: url("../fonts/yellowtail-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-800-normal.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}

:root {
  /* Colour — every value below is sampled from or derived from the logo. */
  --ink: #0b0b0c;
  --ink-raised: #16161a;
  --ink-line: #2a2a2f;
  --gold: #c4ad0f;
  --gold-deep: #71660c; /* AA-safe gold for text on light backgrounds (5.4:1 on --paper) */
  --gold-lite: #ecd964; /* highlight stop for foil gradients */
  --magenta: #de0082;
  --magenta-deep: #a3005f;
  --diamond: #d0d2d4;
  --paper: #f5f6f7;
  --paper-sink: #eaecee;
  --white: #fff;

  --text-dark: #17171a;
  --text-muted: #55565c;
  --text-on-ink: #e7e8ea;
  --text-on-ink-muted: #a9aab0;

  /* Type */
  --font-display: "Bodoni Moda", "Didot", "Georgia", serif;
  --font-script: "Yellowtail", "Brush Script MT", cursive;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.34rem + 0.8vw, 2rem);
  --step-3: clamp(1.95rem, 1.62rem + 1.6vw, 2.9rem);
  --step-4: clamp(2.5rem, 1.9rem + 3vw, 4.5rem);

  /* Space + shape */
  --gap: clamp(1rem, 0.7rem + 1.4vw, 1.75rem);
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);
  --radius: 14px;
  --radius-lg: 26px;
  --shadow-soft: 0 18px 40px -28px rgba(11, 11, 12, 0.55);
  --shadow-lift: 0 26px 55px -30px rgba(11, 11, 12, 0.7);
  --header-h: 76px;
}

/* 2. RESET ----------------------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* Width/height attributes reserve space; height:auto keeps the aspect ratio. */
img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* One consistent focus ring; magenta clears AA on both ink and paper. */
:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--magenta);
  color: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

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

/* 3. TYPOGRAPHY ------------------------------------------------------------ */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--step-4);
  font-weight: 900;
  letter-spacing: -0.02em;
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-size: var(--step-1);
  letter-spacing: 0;
}

p {
  margin: 0 0 1.1em;
}

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 56ch;
}

.on-ink .lede,
.section--ink .lede {
  color: var(--text-on-ink-muted);
}

/* Script eyebrow — the logo's own handwriting energy, used sparingly. */
.eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.6rem);
  color: var(--gold-deep);
  line-height: 1;
  margin: 0 0 0.4rem;
  display: block;
}
.section--ink .eyebrow,
.on-ink .eyebrow {
  color: var(--gold);
}

/* Small caps utility label */
.label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.section--ink .label {
  color: var(--gold);
}

.marker {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}

/* 4. LAYOUT ---------------------------------------------------------------- */

.container {
  width: min(100% - 2.5rem, 1180px);
  margin-inline: auto;
}
.container--narrow {
  width: min(100% - 2.5rem, 820px);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}
.section--ink {
  background: var(--ink);
  color: var(--text-on-ink);
}
.section--sink {
  background: var(--paper-sink);
}
.section--tight {
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}

.section-head {
  max-width: 60ch;
  margin-bottom: clamp(2rem, 1.4rem + 1.6vw, 3rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: var(--gap);
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}
.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}

.split {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--wide-left {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* Divider: gold hairline interrupted by the logo's four-point sparkle. */
.starrule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: clamp(2rem, 1.4rem + 1.5vw, 3.25rem) 0;
  color: var(--gold);
}
.starrule::before,
.starrule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.55;
}
.starrule .sparkle {
  width: 20px;
  flex: none;
}

/* 5. BUTTONS --------------------------------------------------------------- */

.btn {
  --btn-bg: var(--magenta);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease,
    color 0.18s ease, border-color 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -16px rgba(222, 0, 130, 0.9);
}
.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--gold);
  border-color: var(--gold);
}
.btn--ghost:hover {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  box-shadow: 0 14px 26px -16px rgba(196, 173, 15, 0.85);
}

.btn--ink {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
}
.btn--ink:hover {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
  box-shadow: var(--shadow-lift);
}

.btn--sm {
  padding: 0.62rem 1.1rem;
  font-size: 0.82rem;
}

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

/* Text link with a sparkle that slides on hover */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-deep);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.arrow-link .sparkle {
  width: 13px;
  transition: transform 0.2s ease;
}
.arrow-link:hover {
  border-bottom-color: currentColor;
}
.arrow-link:hover .sparkle {
  transform: translateX(4px) rotate(25deg);
}
.section--ink .arrow-link,
.on-ink .arrow-link {
  color: var(--gold);
}

/* 6. HEADER + NAV ---------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 173, 15, 0.28);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-stuck {
  box-shadow: 0 12px 30px -22px rgba(0, 0, 0, 0.95);
  background: rgba(11, 11, 12, 0.98);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white);
  padding-block: 0.5rem;
}
.brand img {
  width: 58px;
  height: auto;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 4px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4rem + 1.4vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--text-on-ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding-block: 0.4rem;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4rem + 1.4vw, 2rem);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: 1px solid rgba(196, 173, 15, 0.5);
  color: var(--white);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle .bars {
  display: grid;
  gap: 3px;
}
.nav-toggle .bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* 7. HERO — the signature moment: a pink carpet under a twinkling halo ------ */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--text-on-ink);
  padding-block: clamp(3rem, 1.5rem + 6vw, 6rem) clamp(3.5rem, 2rem + 5vw, 6rem);
  overflow: hidden;
  text-align: center;
}

/* The pink carpet: an SVG runner with gold rope edges, drawn in the markup
   so the edge lines stay crisp at any width. */
.stage {
  position: absolute;
  z-index: -2;
  inset: auto 0 0;
  height: 72%;
  pointer-events: none;
}
.stage svg {
  width: 100%;
  height: 100%;
}
/* warm floor glow where the carpet meets the bottom of the frame */
.hero .floor-glow {
  position: absolute;
  z-index: -2;
  left: 50%;
  bottom: -14%;
  width: min(120%, 1100px);
  height: 40%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 100%, rgba(222, 0, 130, 0.45), transparent 68%);
  pointer-events: none;
}
/* soft spotlight from above */
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -30% 0 40%;
  background: radial-gradient(
    ellipse 45% 60% at 50% 40%,
    rgba(196, 173, 15, 0.22),
    transparent 70%
  );
}

.hero-logo {
  width: min(430px, 78vw);
  margin: 0 auto clamp(1.25rem, 0.8rem + 1.5vw, 2rem);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
}

.hero h1 {
  max-width: 16ch;
  margin-inline: auto;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero .lede {
  margin-inline: auto;
  color: var(--text-on-ink-muted);
}
.hero .btn-row {
  margin-top: 1.9rem;
}

.hero-meta {
  list-style: none;
  padding: 0;
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.hero-meta li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-meta .sparkle {
  width: 12px;
}

/* Twinkling sparkle field — mirrors the halo of stars around the logo. */
.sparkle-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.sparkle-field .sparkle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s, 16px);
  opacity: 0.25;
  color: var(--gold);
  animation: twinkle 4.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.16;
    transform: scale(0.75) rotate(0deg);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.12) rotate(18deg);
  }
}

/* Sparkles are square: <svg class="sparkle"> has no viewBox of its own, so the
   ratio is pinned here and only the width is ever set by the component. */
.sparkle {
  aspect-ratio: 1;
  height: auto;
  color: var(--gold);
  fill: currentColor;
}

/* Page banner used on the four interior pages */
.pagehead {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--text-on-ink);
  padding-block: clamp(2.75rem, 2rem + 4vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(196, 173, 15, 0.3);
}
.pagehead::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(
      ellipse 60% 100% at 85% 0%,
      rgba(222, 0, 130, 0.32),
      transparent 60%
    ),
    radial-gradient(ellipse 50% 90% at 8% 100%, rgba(196, 173, 15, 0.2), transparent 65%);
}
.pagehead h1 {
  font-size: var(--step-3);
  max-width: 18ch;
}
.pagehead .lede {
  color: var(--text-on-ink-muted);
  margin-bottom: 0;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-ink-muted);
}
.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* 8. COMPONENTS ------------------------------------------------------------ */

/* --- Card: a "plaque" with a gold hairline, like a walk-of-fame star ------ */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(11, 11, 12, 0.09);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1.1rem + 0.8vw, 2rem);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  height: 100%;
}
.card::before {
  /* thin gold key-line that lights up on hover */
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(196, 173, 15, 0.35);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(196, 173, 15, 0.55);
}
.card:hover::before,
.card:focus-within::before {
  opacity: 1;
}
.card h3 {
  margin-bottom: 0.35rem;
}
.card p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}
.card p:last-child {
  margin-bottom: 0;
}

.section--ink .card {
  background: var(--ink-raised);
  border-color: var(--ink-line);
  color: var(--text-on-ink);
}
.section--ink .card p {
  color: var(--text-on-ink-muted);
}

.card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  color: var(--gold-deep);
}
.section--ink .card-icon {
  color: var(--gold);
}

.price-hint {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta-deep);
  background: rgba(222, 0, 130, 0.09);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
  margin-bottom: 0.9rem;
}
.section--ink .price-hint {
  background: rgba(222, 0, 130, 0.2);
  color: #ff8fcd;
}

/* sparkle bullet list */
.ticks {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  font-size: var(--step--1);
  color: var(--text-muted);
}
.section--ink .ticks {
  color: var(--text-on-ink-muted);
}
.ticks li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.6rem;
  align-items: start;
}
.ticks .sparkle {
  width: 13px;
  margin-top: 5px;
}

/* --- Step / sequence (numbering earns its place: it is a real order) ----- */
.steps {
  counter-reset: step;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.step {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(196, 173, 15, 0.45);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gold-deep);
}
.section--ink .step::before {
  color: var(--gold);
}
.step h3 {
  margin-bottom: 0.4rem;
}
.step p {
  margin-bottom: 0;
  color: var(--text-muted);
}
.section--ink .step p {
  color: var(--text-on-ink-muted);
}

/* --- Stat strip ---------------------------------------------------------- */
.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 1px;
  background: rgba(196, 173, 15, 0.35);
  border-block: 1px solid rgba(196, 173, 15, 0.35);
}
.strip > div {
  background: var(--paper);
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
}
.strip span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}

/* --- Quote band ---------------------------------------------------------- */
.carpet-band {
  background: linear-gradient(135deg, var(--magenta-deep), var(--magenta));
  color: var(--white);
}
.carpet-band .eyebrow,
.carpet-band .label {
  color: #ffe9f5;
}
.quote {
  margin: 0;
  background: rgba(11, 11, 12, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 1.1rem + 0.8vw, 2rem);
  height: 100%;
}
.quote blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-1);
  line-height: 1.4;
}
.quote figcaption {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
.stars-row {
  display: flex;
  gap: 3px;
  margin-bottom: 0.9rem;
  color: #ffe9f5;
}
.stars-row .sparkle {
  width: 15px;
}

/* --- Media frame: gold key-line + sparkle corner -------------------------- */
.frame {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(196, 173, 15, 0.5);
  box-shadow: var(--shadow-soft);
  background: var(--ink);
}
.frame--tile img {
  aspect-ratio: 5 / 4;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.frame:hover img {
  transform: scale(1.04);
}

/* --- Gallery ------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.chip {
  border: 1px solid rgba(11, 11, 12, 0.2);
  background: transparent;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}
.chip[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.gallery-item {
  margin: 0;
  position: relative;
}
.gallery-item[hidden] {
  display: none;
}
.gallery-item button {
  all: unset;
  display: block;
  width: 100%;
  cursor: zoom-in;
  border-radius: var(--radius-lg);
}
/* `all: unset` above also clears the shared focus ring, so restate it here. */
.gallery-item button:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 4px;
}
.gallery-item figcaption {
  font-size: var(--step--1);
  color: var(--text-muted);
  margin-top: 0.65rem;
}
.gallery-item .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-right: 0.5rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(11, 11, 12, 0.93);
  backdrop-filter: blur(4px);
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 76vh;
  border-radius: var(--radius);
  border: 1px solid rgba(196, 173, 15, 0.6);
}
.lightbox figcaption {
  color: var(--text-on-ink);
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 11, 12, 0.6);
  border: 1px solid rgba(196, 173, 15, 0.6);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.2rem;
  cursor: pointer;
}
.lightbox-nav.prev {
  left: 1rem;
}
.lightbox-nav.next {
  right: 1rem;
}

/* --- Team ---------------------------------------------------------------- */
.member img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(196, 173, 15, 0.45);
}
.member h3 {
  margin: 1rem 0 0.15rem;
}
.member .role {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta-deep);
  margin-bottom: 0.6rem;
  display: block;
}
.member p {
  color: var(--text-muted);
  font-size: var(--step--1);
}

/* --- Timeline ------------------------------------------------------------ */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.6rem;
}
.timeline li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(11, 11, 12, 0.12);
}
.timeline li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.timeline .year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--gold-deep);
}
.timeline h3 {
  font-size: var(--step-0);
  font-family: var(--font-body);
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.timeline p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--step--1);
}
.section--ink .timeline p {
  color: var(--text-on-ink-muted);
}
.section--ink .timeline .year {
  color: var(--gold);
}
.section--ink .timeline li {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

/* --- Forms --------------------------------------------------------------- */
.form {
  display: grid;
  gap: 1.1rem;
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.field .req {
  color: var(--magenta);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(11, 11, 12, 0.22);
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--gold-deep);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(222, 0, 130, 0.16);
  outline: none;
}
.field .hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.field .error {
  font-size: 0.78rem;
  font-weight: 700;
  color: #b3005f;
  min-height: 1rem;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b3005f;
  background: #fff5fa;
}
.form-row {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.form-status {
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
}
.form-status:empty {
  display: none;
}
.form-status.ok {
  background: rgba(196, 173, 15, 0.16);
  border: 1px solid var(--gold-deep);
  color: #5f560b;
}
.form-status.bad {
  background: #fff0f7;
  border: 1px solid #b3005f;
  color: #8c004a;
}

/* --- Info list (hours, address) ------------------------------------------ */
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed rgba(11, 11, 12, 0.18);
  font-size: var(--step--1);
}
.section--ink .info-list li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.info-list strong {
  font-weight: 800;
}

/* --- FAQ ----------------------------------------------------------------- */
.faq details {
  border-bottom: 1px solid rgba(11, 11, 12, 0.14);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: var(--step-0);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  color: var(--gold-deep);
  font-size: 1.4rem;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "–";
}
.faq p {
  margin: 0.8rem 0 0;
  color: var(--text-muted);
  max-width: 70ch;
}

/* --- Social links -------------------------------------------------------- */
.socials {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(196, 173, 15, 0.55);
  color: var(--gold);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.socials a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.socials svg {
  width: 19px;
  height: 19px;
}

/* 9. CALL-TO-ACTION BAND --------------------------------------------------- */

.cta-band {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: var(--text-on-ink);
  text-align: center;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse 60% 120% at 50% 120%,
    rgba(222, 0, 130, 0.45),
    transparent 65%
  );
}
.cta-band h2 {
  max-width: 20ch;
  margin-inline: auto;
}

/* 10. FOOTER --------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--text-on-ink-muted);
  padding-block: clamp(2.75rem, 2rem + 3vw, 4.5rem) 2rem;
  border-top: 1px solid rgba(196, 173, 15, 0.35);
  font-size: var(--step--1);
}
.footer-grid {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.site-footer a {
  color: var(--text-on-ink-muted);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
}
.site-footer .brand img {
  width: 92px;
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
}

/* 11. MOTION + UTILITIES --------------------------------------------------- */

/* Reveal-on-scroll only engages when JS is running (the `js` class is set by
   the inline script in <head>), so content is never hidden if JS fails. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.text-center {
  text-align: center;
}
.lede--center {
  margin-inline: auto;
}
.stack-sm {
  margin-top: 1rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-2 {
  margin-top: 2rem;
}
.gold {
  color: var(--gold-deep);
}
.section--ink .gold {
  color: var(--gold);
}

/* Anyone who asks for less motion gets none of it. */
@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;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .sparkle-field .sparkle {
    opacity: 0.4;
  }
}

/* 12. RESPONSIVE ----------------------------------------------------------- */

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-wrap {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 11, 12, 0.99);
    border-bottom: 1px solid rgba(196, 173, 15, 0.35);
    padding: 1rem 1.25rem 1.75rem;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav-wrap.is-open {
    transform: translateY(0);
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .site-nav a {
    display: block;
    padding: 0.95rem 0.25rem;
    font-size: 1.05rem;
  }
  .site-nav a::after {
    display: none;
  }
  .nav-cta {
    margin-top: 1.25rem;
    width: 100%;
  }
  .brand-word {
    font-size: 1.1rem;
  }
  .brand img {
    width: 48px;
  }
}

@media (max-width: 560px) {
  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .hero-meta {
    gap: 0.5rem 1rem;
    font-size: 0.72rem;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
