/* =========================================================
   The Raccoon Studio — v3
   Design system, layout, components
   Improvements: mobile CTA bar, FAQ homepage, safety strip,
   pricing cards, open/closed indicator, trust badges,
   enhanced testimonials, better nav, sticky mobile bar
   ========================================================= */

/* -----  Tokens  ----- */
:root {
  --paper: #f6efe0;
  --paper-deep: #ece2cc;
  --bone: #fffbf2;
  --ink: #14110d;
  --ink-soft: #2a2620;
  --ink-mute: rgba(20, 17, 13, 0.66);
  --ink-faint: rgba(20, 17, 13, 0.44);
  --line: rgba(20, 17, 13, 0.14);
  --line-strong: rgba(20, 17, 13, 0.28);
  --oxblood: #7a1f1f;
  --oxblood-deep: #5d1313;
  --moss: #3e4f42;
  --copper: #b1794a;
  --gold: #d9a26a;
  --surface: rgba(255, 251, 242, 0.86);
  --surface-elev: #fffbf2;
  --shadow-sm: 0 2px 6px rgba(20, 17, 13, 0.08);
  --shadow-md: 0 14px 36px rgba(20, 17, 13, 0.14);
  --shadow-lg: 0 28px 60px rgba(20, 17, 13, 0.22);
  --serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --speed: 220ms;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --container: min(1200px, calc(100% - 2.5rem));
  --mobile-bar-height: 0px;
}

[data-theme="dark"] {
  --paper: #14110d;
  --paper-deep: #0d0b08;
  --bone: #1d1a15;
  --ink: #f6efe0;
  --ink-soft: #e2d9c4;
  --ink-mute: rgba(246, 239, 224, 0.7);
  --ink-faint: rgba(246, 239, 224, 0.42);
  --line: rgba(246, 239, 224, 0.12);
  --line-strong: rgba(246, 239, 224, 0.28);
  --oxblood: #c44848;
  --oxblood-deep: #e26060;
  --moss: #88a796;
  --copper: #d9a26a;
  --gold: #ecc792;
  --surface: rgba(29, 26, 21, 0.78);
  --surface-elev: #1d1a15;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(177, 121, 74, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(122, 31, 31, 0.10), transparent 30rem),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga", "calt", "ss01";
  transition: background-color var(--speed) var(--ease), color var(--speed) var(--ease);
  padding-bottom: var(--mobile-bar-height);
}

[data-theme="dark"] body {
  background-image:
    radial-gradient(circle at 12% 8%, rgba(177, 121, 74, 0.18), transparent 30rem),
    radial-gradient(circle at 85% 18%, rgba(196, 72, 72, 0.18), transparent 30rem),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

::selection {
  color: var(--bone);
  background: var(--oxblood);
}

/* -----  Typography  ----- */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 144;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 460;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h4 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

p {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  color: var(--oxblood);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.lead {
  max-width: 56ch;
  color: var(--ink-mute);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.muted {
  color: var(--ink-mute);
}

.small {
  color: var(--ink-faint);
  font-size: 0.88rem;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* -----  Container & sections  ----- */
.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section.tight {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.section.dark {
  color: var(--bone);
  background: var(--ink);
  background-image:
    linear-gradient(180deg, rgba(255, 251, 242, 0.04), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(122, 31, 31, 0.32), transparent 26rem);
  isolation: isolate;
}

.section.dark::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  content: "";
  z-index: -1;
}

.section.dark .lead,
.section.dark .muted,
.section.dark .small {
  color: rgba(255, 251, 242, 0.7);
}

.section.dark .eyebrow {
  color: var(--gold);
}

.section.dark .ink-mute {
  color: rgba(255, 251, 242, 0.7);
}

/* -----  Skip link  ----- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--bone);
  background: var(--ink);
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* -----  Scroll progress  ----- */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: var(--progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--oxblood), var(--copper));
  transition: width 60ms linear;
  pointer-events: none;
}

/* -----  Marquee ticker  ----- */
.ticker {
  display: flex;
  overflow: hidden;
  color: var(--bone);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 251, 242, 0.08);
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  user-select: none;
}

.ticker-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3rem;
  padding: 0.55rem 0;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}

.ticker-track > span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.ticker-track > span::after {
  width: 4px;
  height: 4px;
  background: var(--copper);
  border-radius: 50%;
  content: "";
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

/* -----  Header  ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  transition: box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line-strong);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--container);
  margin: 0 auto;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 52px;
  height: 52px;
  padding: 4px;
  object-fit: contain;
  background: var(--bone);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: transform var(--speed) var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(-8deg);
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-sub {
  display: block;
  margin-top: 0.32rem;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  color: var(--ink-mute);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: color var(--speed) var(--ease);
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.4rem;
  height: 1.5px;
  background: var(--oxblood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--speed) var(--ease);
  content: "";
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--ink);
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem !important;
  margin-left: 0.6rem;
  color: var(--bone) !important;
  background: var(--oxblood);
  border-radius: var(--radius-pill) !important;
  box-shadow: 0 4px 14px rgba(122, 31, 31, 0.35);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.nav-cta::before {
  width: 7px;
  height: 7px;
  background: #6dd486;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(109, 212, 134, 0.25);
  content: "";
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(122, 31, 31, 0.45);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  margin-left: 0.4rem;
  color: var(--ink);
  background: var(--surface-elev);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--speed) var(--ease), background var(--speed) var(--ease);
}

.theme-toggle:hover {
  transform: rotate(15deg);
  background: var(--paper-deep);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--surface-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* -----  Buttons  ----- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease),
    background var(--speed) var(--ease), color var(--speed) var(--ease),
    border-color var(--speed) var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  outline: none;
}

.button.primary {
  color: var(--bone);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.button.primary:hover {
  background: var(--oxblood-deep);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.button.ghost:hover {
  background: var(--surface-elev);
}

.section.dark .button.ghost {
  color: var(--bone);
  border-color: rgba(255, 251, 242, 0.32);
}

.section.dark .button.ghost:hover {
  background: rgba(255, 251, 242, 0.08);
}

.button .arrow {
  display: inline-block;
  transition: transform var(--speed) var(--ease);
}

.button:hover .arrow,
.button:focus-visible .arrow {
  transform: translateX(3px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

/* -----  Hero  ----- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  color: var(--bone);
  background: var(--ink);
  background-image:
    radial-gradient(circle at 78% 18%, rgba(122, 31, 31, 0.45), transparent 22rem),
    radial-gradient(circle at 12% 82%, rgba(62, 79, 66, 0.4), transparent 26rem),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 1.4rem;
  border: 1px solid rgba(255, 251, 242, 0.14);
  pointer-events: none;
  content: "";
}

.hero::after {
  position: absolute;
  right: -10vw;
  top: -10vw;
  width: 50vw;
  height: 50vw;
  background:
    radial-gradient(circle, rgba(255, 251, 242, 0.04) 0%, transparent 60%);
  pointer-events: none;
  content: "";
  z-index: -1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.hero-copy {
  display: grid;
  gap: 1.6rem;
}

.hero h1 {
  max-width: 14ch;
  color: var(--bone);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 380;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.hero h1 em {
  display: inline-block;
  position: relative;
  font-style: italic;
  font-weight: 320;
  color: var(--gold);
}

.hero h1 em::after {
  position: absolute;
  inset: auto 0 -0.05em 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.6;
  content: "";
}

.hero .lead {
  max-width: 48ch;
  color: rgba(255, 251, 242, 0.78);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  width: max-content;
  color: var(--bone);
  background: rgba(255, 251, 242, 0.08);
  border: 1px solid rgba(255, 251, 242, 0.14);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 162, 106, 0.5);
  animation: pulse 2s var(--ease) infinite;
}

/* NEW: Open/Closed status indicator */
.hero-eyebrow .pulse.open {
  background: #6dd486;
  box-shadow: 0 0 0 0 rgba(109, 212, 134, 0.5);
}

.hero-eyebrow .pulse.closed {
  background: #e26060;
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(109, 212, 134, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(109, 212, 134, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow .pulse {
    animation: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.4rem;
}

.hero .button.ghost {
  color: var(--bone);
  border-color: rgba(255, 251, 242, 0.32);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 251, 242, 0.12);
  color: rgba(255, 251, 242, 0.68);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-meta strong {
  display: block;
  margin-top: 0.3rem;
  color: var(--bone);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 480;
  letter-spacing: -0.01em;
  text-transform: none;
}

.hero-meta-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 251, 242, 0.18);
}

.hero-card {
  position: relative;
  padding: 1.1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 251, 242, 0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-card-tag {
  position: absolute;
  inset: -0.7rem auto auto -0.7rem;
  padding: 0.25rem 0.75rem;
  color: var(--bone);
  background: var(--oxblood);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.stamp-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  background:
    linear-gradient(rgba(20, 17, 13, 0.05) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(20, 17, 13, 0.05) 1px, transparent 1px) 0 0 / 18px 18px,
    var(--bone);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.stamp-panel::before,
.stamp-panel::after {
  position: absolute;
  width: 50%;
  height: 50%;
  border-color: var(--ink);
  border-style: solid;
  border-width: 2px;
  content: "";
  opacity: 0.06;
}

.stamp-panel::before {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
  width: 28px;
  height: 28px;
  opacity: 1;
}

.stamp-panel::after {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
  width: 28px;
  height: 28px;
  opacity: 1;
}

.stamp-panel .ring-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.42;
  animation: spin 30s linear infinite;
}

.stamp-panel .ring-text svg {
  width: 100%;
  height: 100%;
  max-width: 320px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stamp-panel .ring-text {
    animation: none;
  }
}

.stamp-logo {
  position: relative;
  z-index: 1;
  width: min(180px, 56%);
  height: auto;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.85rem;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.quick-facts > div {
  padding: 0.85rem 0.6rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.quick-facts > div:last-child {
  border-right: 0;
}

.quick-facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 460;
  line-height: 1;
}

.quick-facts span {
  display: block;
  margin-top: 0.4rem;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* -----  Section heads  ----- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: end;
  gap: 2.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-head .lead {
  max-width: 42ch;
}

/* -----  Grid utilities  ----- */
.grid {
  display: grid;
  gap: 1.1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* -----  Cards  ----- */
.card {
  position: relative;
  padding: clamp(1.4rem, 2.5vw, 1.8rem);
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease),
    border-color var(--speed) var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.card h3 {
  margin-bottom: 0.7rem;
}

.card.dark-card {
  color: var(--bone);
  background: rgba(255, 251, 242, 0.04);
  border-color: rgba(255, 251, 242, 0.12);
}

.card.dark-card:hover {
  border-color: rgba(255, 251, 242, 0.24);
  background: rgba(255, 251, 242, 0.06);
}

.card.dark-card h3 {
  color: var(--bone);
}

.card .card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--oxblood);
  background: rgba(122, 31, 31, 0.1);
  border-radius: var(--radius-sm);
}

.card.dark-card .card-icon {
  color: var(--gold);
  background: rgba(217, 162, 106, 0.14);
}

/* -----  Service cards (large, two-up)  ----- */
.service-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
  min-height: 360px;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  overflow: hidden;
  color: var(--bone);
  background: var(--ink-soft);
  border: 1px solid rgba(255, 251, 242, 0.12);
  border-radius: var(--radius-lg);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card.tattoo {
  background:
    radial-gradient(circle at 80% 0%, rgba(196, 80, 80, 0.45), transparent 60%),
    linear-gradient(160deg, rgba(122, 31, 31, 0.5), transparent 70%),
    var(--ink-soft);
}

.service-card.piercing {
  background:
    radial-gradient(circle at 80% 0%, rgba(62, 79, 66, 0.55), transparent 60%),
    linear-gradient(160deg, rgba(62, 79, 66, 0.45), transparent 70%),
    var(--ink-soft);
}

.service-card .card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.95rem;
}

.service-card h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--bone);
  font-weight: 440;
}

.service-card .muted {
  color: rgba(255, 251, 242, 0.72);
}

.service-card .card-glyph {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 16rem;
  height: 16rem;
  color: rgba(255, 251, 242, 0.07);
  pointer-events: none;
}

.service-card .card-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 251, 242, 0.14);
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bone);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.service-card .card-link .arrow {
  transition: transform var(--speed) var(--ease);
}

.service-card:hover .card-link .arrow {
  transform: translateX(4px);
}

/* -----  Tag list  ----- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 0.7rem;
  color: var(--ink);
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dark .tag-list li,
.dark .tag,
.section.dark .tag-list li,
.section.dark .tag,
.service-card .tag-list li {
  color: var(--bone);
  background: rgba(255, 251, 242, 0.08);
  border-color: rgba(255, 251, 242, 0.16);
}

/* -----  Process / steps  ----- */
.process {
  counter-reset: steps;
}

.step {
  position: relative;
  padding: clamp(1.4rem, 2.5vw, 1.8rem);
  padding-top: 4.5rem;
  background: rgba(255, 251, 242, 0.04);
  border: 1px solid rgba(255, 251, 242, 0.12);
  border-radius: var(--radius-md);
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.step:hover {
  background: rgba(255, 251, 242, 0.07);
  transform: translateY(-3px);
}

.step::before {
  position: absolute;
  left: 1.4rem;
  top: 1.4rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--gold);
  background: rgba(217, 162, 106, 0.16);
  border: 1px solid rgba(217, 162, 106, 0.3);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 600;
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
}

.step h3 {
  margin-bottom: 0.6rem;
  color: var(--bone);
}

/* -----  Feature band (CTA)  ----- */
.feature-band {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  color: var(--bone);
  background: var(--moss);
  background-image:
    radial-gradient(circle at 88% 50%, rgba(255, 251, 242, 0.1), transparent 30%);
  isolation: isolate;
}

.feature-band::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  content: "";
  z-index: -1;
}

.feature-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.feature-band .eyebrow {
  color: rgba(255, 251, 242, 0.78);
}

.feature-band h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  max-width: 24ch;
}

.feature-band .button {
  background: var(--bone);
  border-color: var(--bone);
}

/* -----  Page hero  ----- */
.page-hero {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  color: var(--bone);
  background: var(--ink);
  background-image:
    radial-gradient(circle at 80% 20%, rgba(122, 31, 31, 0.35), transparent 28rem),
    radial-gradient(circle at 18% 80%, rgba(62, 79, 66, 0.25), transparent 26rem);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  content: "";
  z-index: -1;
}

.page-hero .container {
  display: grid;
  gap: 1rem;
}

.page-hero h1 {
  max-width: 18ch;
  color: var(--bone);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 380;
}

.page-hero .lead {
  max-width: 56ch;
  color: rgba(255, 251, 242, 0.78);
}

.breadcrumb {
  color: rgba(255, 251, 242, 0.7);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.breadcrumb a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 251, 242, 0.3);
}

/* -----  Filter bar  ----- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

.filter-button {
  height: 38px;
  padding: 0 1rem;
  color: var(--ink);
  background: var(--surface-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color var(--speed) var(--ease), background var(--speed) var(--ease),
    border-color var(--speed) var(--ease);
}

.filter-button:hover,
.filter-button:focus-visible {
  color: var(--bone);
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  outline: none;
}

.filter-button[aria-pressed="true"] {
  color: var(--bone);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

/* -----  Flash / style cards  ----- */
.flash-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.flash-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.flash-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.flash-card.is-hidden {
  display: none;
}

.flash-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
  background:
    linear-gradient(rgba(20, 17, 13, 0.05) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(90deg, rgba(20, 17, 13, 0.05) 1px, transparent 1px) 0 0 / 16px 16px,
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.flash-art svg {
  width: 70%;
  height: auto;
  max-height: 160px;
  color: var(--ink);
}

.flash-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.2rem;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* -----  Notes  ----- */
.note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.4rem;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(177, 121, 74, 0.16), rgba(177, 121, 74, 0.08));
  border: 1px solid rgba(177, 121, 74, 0.32);
  border-radius: var(--radius-md);
}

.note-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--copper);
  background: rgba(177, 121, 74, 0.18);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
}

/* -----  Check list  ----- */
.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2.1rem;
  color: var(--ink-mute);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--oxblood);
  background: rgba(122, 31, 31, 0.1);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  content: "✓";
}

.section.dark .check-list li {
  color: rgba(255, 251, 242, 0.78);
}

.section.dark .check-list li::before {
  color: var(--gold);
  background: rgba(217, 162, 106, 0.14);
}

/* -----  Price list  ----- */
.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--line);
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list li span {
  font-weight: 500;
}

.price-list li strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* -----  Artist cards  ----- */
.artist-card {
  display: grid;
  gap: 1.1rem;
  padding: 1.2rem;
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.artist-portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  color: var(--bone);
  background:
    radial-gradient(circle at 30% 30%, rgba(122, 31, 31, 0.4), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(62, 79, 66, 0.5), transparent 60%),
    var(--ink-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.artist-portrait::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  content: "";
}

.artist-portrait span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 460;
  border: 2px solid rgba(255, 251, 242, 0.78);
  border-radius: 50%;
  backdrop-filter: blur(6px);
}

.artist-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* -----  FAQ  ----- */
.faq {
  display: grid;
  gap: 0.6rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--speed) var(--ease);
}

.faq-item:hover {
  border-color: var(--line-strong);
}

.faq-item[open] {
  border-color: var(--oxblood);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.2rem 1.4rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 480;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

summary.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--oxblood);
  background: rgba(122, 31, 31, 0.1);
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform var(--speed) var(--ease), background var(--speed) var(--ease);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  background: var(--oxblood);
  color: var(--bone);
}

.faq-answer {
  padding: 0 1.4rem 1.4rem;
  color: var(--ink-mute);
}

/* Dark FAQ variant */
.section.dark .faq-item {
  background: rgba(255, 251, 242, 0.04);
  border-color: rgba(255, 251, 242, 0.12);
}

.section.dark .faq-item:hover {
  border-color: rgba(255, 251, 242, 0.24);
}

.section.dark .faq-item[open] {
  border-color: var(--gold);
}

.section.dark .faq-question {
  color: var(--bone);
}

.section.dark .faq-question::after {
  color: var(--gold);
  background: rgba(217, 162, 106, 0.16);
}

.section.dark .faq-item[open] .faq-question::after {
  background: var(--gold);
  color: var(--ink);
}

.section.dark .faq-answer {
  color: rgba(255, 251, 242, 0.72);
}

/* -----  Contact / form  ----- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 110px;
  padding: 1.6rem;
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list li strong {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}

.contact-list a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(122, 31, 31, 0.4);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.contact-list a:hover {
  text-decoration-color: var(--oxblood);
}

.form-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.55;
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-faint);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--oxblood);
  box-shadow: 0 0 0 4px rgba(122, 31, 31, 0.14);
  outline: none;
}

.form-status {
  min-height: 1.6rem;
  margin-top: 0.6rem;
  color: var(--moss);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

[data-theme="dark"] .form-status {
  color: var(--gold);
}

/* -----  Map panel  ----- */
.map-panel {
  display: grid;
  align-content: end;
  min-height: 220px;
  margin-top: 1.4rem;
  padding: 1.4rem;
  color: var(--bone);
  background:
    radial-gradient(circle at 30% 30%, rgba(122, 31, 31, 0.5), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(62, 79, 66, 0.6), transparent 60%),
    var(--ink-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.map-panel h3 {
  color: var(--bone);
}

.map-panel .muted {
  color: rgba(255, 251, 242, 0.74);
}

.map-pin {
  position: absolute;
  inset: 32% auto auto 56%;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--bone);
  background: var(--oxblood);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(122, 31, 31, 0.3),
    0 0 0 14px rgba(122, 31, 31, 0.15);
  animation: pulse-pin 2.6s var(--ease) infinite;
}

@keyframes pulse-pin {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(122, 31, 31, 0.3),
      0 0 0 14px rgba(122, 31, 31, 0.15);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(122, 31, 31, 0.4),
      0 0 0 22px rgba(122, 31, 31, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-pin {
    animation: none;
  }
}

/* -----  Stats strip  ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 440;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* -----  Testimonials  ----- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.testimonial {
  position: relative;
  padding: 1.6rem 1.5rem 1.4rem;
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.testimonial::before {
  position: absolute;
  inset: -0.5rem auto auto 1.4rem;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--bone);
  background: var(--oxblood);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  content: "\201C";
  line-height: 1;
  padding-bottom: 0.55rem;
}

.testimonial blockquote {
  margin: 0.6rem 0 1.2rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--ink);
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-mute);
}

.testimonial-meta strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.testimonial-meta .role {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.stars {
  color: var(--copper);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

/* NEW: Review summary bar */
.review-summary {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.2rem 1.6rem;
  background: rgba(255, 251, 242, 0.06);
  border: 1px solid rgba(255, 251, 242, 0.14);
  border-radius: var(--radius-md);
}

.review-summary-score {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 440;
  line-height: 1;
  color: var(--bone);
}

.review-summary-detail {
  display: grid;
  gap: 0.3rem;
}

.review-summary-stars {
  color: var(--copper);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.review-summary-label {
  color: rgba(255, 251, 242, 0.62);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* -----  Source list  ----- */
.source-list {
  margin: 0;
  padding-left: 1.2rem;
}

.source-list li + li {
  margin-top: 0.55rem;
}

.source-list a {
  text-decoration: underline;
  text-decoration-color: rgba(122, 31, 31, 0.4);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
  font-weight: 500;
}

/* -----  NEW: Safety strip  ----- */
.safety-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(1.8rem, 3vw, 2.4rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.safety-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1.4rem;
  border-right: 1px solid var(--line);
}

.safety-item:last-child {
  border-right: 0;
}

.safety-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--oxblood);
  background: rgba(122, 31, 31, 0.1);
  border-radius: 50%;
}

.safety-icon svg {
  width: 18px;
  height: 18px;
}

.safety-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.safety-item span {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* -----  NEW: Pricing cards  ----- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.pricing-card {
  padding: clamp(1.4rem, 2.5vw, 2rem);
  background: var(--surface-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.pricing-card-from {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 0.3rem;
}

.pricing-card-price {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 440;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 0.8rem;
  color: var(--bone);
  background: var(--oxblood);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card-badge.moss {
  background: var(--moss);
}

.pricing-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--ink-mute);
  font-size: 0.92rem;
}

.pricing-card ul li::before {
  content: "→";
  color: var(--oxblood);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* -----  NEW: Mobile sticky CTA bar  ----- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 70;
  padding: 0.75rem 1rem;
  background: var(--surface-elev);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 24px rgba(20, 17, 13, 0.14);
  gap: 0.6rem;
}

.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}

.mobile-cta-bar a:active {
  transform: scale(0.97);
  opacity: 0.85;
}

.mobile-cta-bar .cta-wa {
  color: #fff;
  background: #128c7e;
  border: none;
}

.mobile-cta-bar .cta-call {
  color: var(--ink);
  background: var(--paper-deep);
  border: 1px solid var(--line-strong);
}

.mobile-cta-bar svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* -----  Footer  ----- */
.site-footer {
  position: relative;
  color: var(--bone);
  background: var(--ink);
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
  content: "";
  z-index: -1;
}

.footer-cta {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 251, 242, 0.1);
}

.footer-cta h2 {
  max-width: 22ch;
  margin: 0 auto 1.4rem;
  color: var(--bone);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 360;
  letter-spacing: -0.02em;
}

.footer-cta h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 320;
}

.footer-cta .lead {
  max-width: 48ch;
  margin: 0 auto 2rem;
  color: rgba(255, 251, 242, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
  gap: 2.5rem;
  padding: clamp(3rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  padding: 5px;
  object-fit: contain;
  background: var(--bone);
  border-radius: 50%;
}

.footer-brand .brand-sub {
  color: rgba(255, 251, 242, 0.62);
}

.footer-tag {
  margin-top: 1.2rem;
  max-width: 38ch;
  color: rgba(255, 251, 242, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--bone);
  background: rgba(255, 251, 242, 0.06);
  border: 1px solid rgba(255, 251, 242, 0.14);
  border-radius: 50%;
  text-decoration: none;
  transition: background var(--speed) var(--ease), transform var(--speed) var(--ease);
}

.socials a:hover {
  background: var(--oxblood);
  border-color: var(--oxblood);
  transform: translateY(-2px);
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 251, 242, 0.74);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--speed) var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--bone);
}

.footer-links li:not(:has(a)) {
  color: rgba(255, 251, 242, 0.52);
  font-size: 0.95rem;
}

/* NEW: Footer hours */
.footer-hours {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.4rem;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.88rem;
}

.footer-hours-row span:first-child {
  color: rgba(255, 251, 242, 0.52);
}

.footer-hours-row span:last-child {
  color: rgba(255, 251, 242, 0.82);
  font-weight: 500;
}

/* NEW: Contact page hours table */
.hours-block {
  margin-top: 1.6rem;
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-mute);
}

.hours-table td:first-child {
  color: var(--ink);
  font-weight: 500;
  padding-right: 1rem;
}

.hours-table tr:last-child td {
  border-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  color: rgba(255, 251, 242, 0.52);
  border-top: 1px solid rgba(255, 251, 242, 0.1);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* -----  Reveal animations  ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 80ms;
}

.reveal[data-delay="2"] {
  transition-delay: 160ms;
}

.reveal[data-delay="3"] {
  transition-delay: 240ms;
}

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

/* -----  Focus visible  ----- */
:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* -----  Floating WhatsApp button  ----- */
.float-wa {
  position: fixed;
  inset: auto 1.4rem 1.4rem auto;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  color: #fff;
  background: #128c7e;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.4);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.float-wa:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(18, 140, 126, 0.55);
}

.float-wa svg {
  width: 18px;
  height: 18px;
}

/* -----  Responsive  ----- */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 1rem auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface-elev);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.95rem 0.85rem;
    border-radius: var(--radius-sm);
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: var(--paper-deep);
  }

  .nav-cta {
    margin-top: 0.4rem;
    margin-left: 0;
    justify-content: center;
  }

  .hero-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .feature-band .container,
  .contact-layout,
  .split,
  .footer-grid,
  .testimonial-grid,
  .section-head,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 2rem;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flash-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-aside {
    position: static;
  }

  .safety-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .safety-item:nth-child(2n) {
    border-right: 0;
  }

  .safety-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  /* Show mobile CTA bar */
  .mobile-cta-bar {
    display: flex;
  }

  :root {
    --mobile-bar-height: 76px;
  }

  /* Hide floating WA button on mobile since we have the bar */
  .float-wa {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  :root {
    --container: min(1180px, calc(100% - 1.4rem));
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .quick-facts,
  .form-grid,
  .flash-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .quick-facts > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts > div:last-child {
    border-bottom: 0;
  }

  .feature-band .container {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-meta-divider {
    display: none;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .safety-strip {
    grid-template-columns: 1fr;
  }

  .safety-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .safety-item:last-child {
    border-bottom: 0;
  }

  .review-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}

@media print {
  .site-header,
  .ticker,
  .feature-band,
  .footer-cta,
  .float-wa,
  .mobile-cta-bar,
  .scroll-progress {
    display: none;
  }
}
