/* =====================================================================
   BISHOP & BLADE — a proper barber, done properly
   Harrow, North-West London. v5. © 2026.
   Bold monochrome poster-barber. Pure CSS/SVG. Light/dark theme.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* brand palette */
  --ink: #16151a;
  --bone: #ece4d6;
  --steel: #9aa0a6;
  --pop: #ff7a1a;          /* hot tangerine — the single accent */
  --sand: #cbb893;

  /* derived */
  --ink-2: #1f1d24;
  --ink-3: #2a2831;
  --pop-deep: #e8650a;
  --bone-2: #f4eee3;
  --steel-soft: #c4c8cc;

  /* semantic surfaces — LIGHT theme = default */
  --bg: #ece4d6;
  --bg-2: #f4eee3;
  --surface: #ffffff;
  --surface-2: #f7f2e8;
  --fg: #16151a;
  --fg-soft: #4a4852;
  --fg-faint: #7a7780;
  --line: rgba(22, 21, 26, 0.16);
  --line-strong: rgba(22, 21, 26, 0.30);
  --header-bg: rgba(236, 228, 214, 0.82);
  --poster-bg: #16151a;
  --poster-fg: #ece4d6;
  --footer-bg: #16151a;
  --footer-fg: #ece4d6;
  --footer-faint: #8e8a82;

  /* layout */
  --container: 1180px;
  --radius: 6px;
  --radius-sm: 4px;
  --shadow-sm: 0 3px 14px rgba(22, 21, 26, 0.10);
  --shadow: 0 16px 44px rgba(22, 21, 26, 0.18);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --font-display: "Anton", "Hanken Grotesk", Impact, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* DARK theme — lights down, blades up */
html.dark {
  --bg: #16151a;
  --bg-2: #1c1b21;
  --surface: #222027;
  --surface-2: #2a2831;
  --fg: #ece4d6;
  --fg-soft: #c4c0b8;
  --fg-faint: #8e8a82;
  --line: rgba(236, 228, 214, 0.16);
  --line-strong: rgba(236, 228, 214, 0.30);
  --header-bg: rgba(22, 21, 26, 0.84);
  --poster-bg: #0e0d11;
  --poster-fg: #ece4d6;
  --footer-bg: #0e0d11;
  --footer-fg: #ece4d6;
  --footer-faint: #8e8a82;
  --surface-2: #2a2831;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@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;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, select, textarea, button { font-family: inherit; }

::selection { background: var(--pop); color: #fff; }
:focus-visible {
  outline: 3px solid var(--pop);
  outline-offset: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--fg);
}
.display { font-family: var(--font-display); text-transform: uppercase; line-height: 0.86; }
.kicker {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pop-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
html.dark .kicker { color: var(--pop); }
.kicker::before {
  content: "";
  width: 30px; height: 3px;
  background: var(--pop);
}
.kicker.center { justify-content: center; }

/* ---------- Layout ---------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.muted { color: var(--fg-soft); }
.lede {
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  color: var(--fg-soft);
  max-width: 58ch;
  line-height: 1.55;
  font-weight: 400;
}
.section-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(2.8rem, 7vw, 5.4rem); margin-top: 14px; }
.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--pop); color: #fff; padding: 10px 18px; z-index: 200; font-weight: 800;
}
.skip-link:focus { left: 16px; }

/* ---------- Diagonal barber-stripe band (flat, NOT helical) ---------- */
.stripe-band {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--pop) 0 18px,
    var(--ink) 18px 36px
  );
  position: relative;
}
html.dark .stripe-band {
  background: repeating-linear-gradient(-45deg, var(--pop) 0 18px, #000 18px 36px);
}
.stripe-band.thin { height: 8px; }
.stripe-band.bone {
  background: repeating-linear-gradient(-45deg, var(--pop) 0 18px, var(--bone) 18px 36px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pop);
  color: #16151a;
  box-shadow: 0 6px 0 var(--pop-deep);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--pop-deep); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--pop-deep); }
.btn-dark {
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 6px 0 #000;
}
html.dark .btn-dark { background: var(--bone); color: var(--ink); box-shadow: 0 6px 0 var(--sand); }
.btn-dark:hover { transform: translateY(-2px); }
.btn-dark:active { transform: translateY(2px); box-shadow: 0 2px 0 #000; }
.btn-outline {
  background: transparent; color: var(--fg);
  border: 2px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--pop); color: var(--pop-deep); transform: translateY(-2px); }
html.dark .btn-outline:hover { color: var(--pop); }
.btn-ghost-light {
  background: transparent; color: var(--bone);
  border: 2px solid rgba(236,228,214,0.4);
}
.btn-ghost-light:hover { border-color: var(--pop); color: var(--pop); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 38px; font-size: 0.94rem; }
.btn svg { width: 17px; height: 17px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border-bottom: 2px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s, background 0.4s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--ink); }
html.dark .site-header.scrolled { border-bottom-color: var(--pop); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.brand .mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand .amp { color: var(--pop); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 15px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 0;
  height: 3px; background: var(--pop);
}
.nav-right { display: flex; align-items: center; gap: 12px; }

/* theme toggle */
.theme-toggle {
  width: 44px; height: 44px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  color: var(--fg-soft);
  transition: border-color 0.25s, color 0.25s, transform 0.3s;
}
.theme-toggle:hover { border-color: var(--pop); color: var(--pop-deep); transform: rotate(-12deg); }
html.dark .theme-toggle:hover { color: var(--pop); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .moon { display: none; }
html.dark .theme-toggle .sun { display: none; }
html.dark .theme-toggle .moon { display: block; }

/* hamburger */
.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  position: relative;
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2.5px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  padding: 100px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.6rem;
  text-transform: uppercase;
  color: var(--bone);
  padding: 10px 0;
  border-bottom: 2px solid rgba(236,228,214,0.14);
  transition: color 0.2s, padding-left 0.25s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--pop); padding-left: 8px; }
.mobile-nav .btn { margin-top: 22px; font-size: 1rem; }

/* ---------- HERO (poster) ---------- */
.hero {
  position: relative;
  background: var(--poster-bg);
  color: var(--poster-fg);
  overflow: hidden;
  padding: clamp(70px, 11vw, 130px) 0 0;
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  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.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-inner { position: relative; z-index: 2; }
.hero-kicker { color: var(--pop); }
.hero h1 {
  font-size: clamp(3.6rem, 14vw, 11rem);
  color: var(--poster-fg);
  line-height: 0.82;
  margin: 18px 0 0;
}
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--poster-fg);
  text-stroke: 2px var(--poster-fg);
}
.hero h1 .pop { color: var(--pop); }
.hero .lede { color: var(--steel-soft); max-width: 46ch; margin-top: 24px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  margin-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(40px, 6vw, 72px);
  flex-wrap: wrap;
}
/* big scissor/blade motif */
.hero-art { position: relative; flex-shrink: 0; width: clamp(160px, 30vw, 320px); }
.hero-art svg { width: 100%; height: auto; color: var(--pop); }
.hero-est {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.1em;
  color: var(--steel);
  text-transform: uppercase;
}

/* ---------- Marquee strip ---------- */
.ticker {
  background: var(--pop);
  color: #16151a;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: scrollX 28s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 24px;
  display: inline-flex; align-items: center; gap: 24px;
}
.ticker-track span::after { content: "✶"; color: #16151a; font-size: 0.9rem; }
@keyframes scrollX { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; justify-content: center; flex-wrap: wrap; white-space: normal; } }

/* ---------- Trust strip ---------- */
.trust { background: var(--bg-2); border-bottom: 2px solid var(--line); padding: 26px 0; }
html.dark .trust { background: var(--bg-2); }
.trust-track { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 60px); }
.trust-item { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 0.9rem; color: var(--fg-soft); }
.trust-item svg { width: 20px; height: 20px; color: var(--pop-deep); flex-shrink: 0; }
html.dark .trust-item svg { color: var(--pop); }
.trust-item b { color: var(--fg); font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.02em; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Service preview cards (ticket-stub) ---------- */
.svc-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  position: relative;
  padding: 28px;
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
html.dark .svc-card { border-color: var(--line-strong); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
/* ticket notch */
.svc-card::before, .svc-card::after {
  content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--ink); top: 50%; transform: translateY(-50%);
}
html.dark .svc-card::before, html.dark .svc-card::after { border-color: var(--line-strong); }
.svc-card::before { left: -13px; }
.svc-card::after { right: -13px; }
.svc-num {
  font-family: var(--font-display);
  font-size: 0.9rem; color: var(--pop-deep);
  letter-spacing: 0.1em; margin-bottom: 10px;
}
html.dark .svc-num { color: var(--pop); }
.svc-card h3 { font-size: 1.9rem; margin-bottom: 8px; }
.svc-card p { color: var(--fg-soft); font-size: 0.96rem; flex-grow: 1; }
.svc-meta-row { display: flex; align-items: center; gap: 10px; margin: 14px 0 0; color: var(--fg-faint); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.svc-meta-row svg { width: 15px; height: 15px; }
.svc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 18px;
  border-top: 2px dashed var(--line);
}
.price {
  font-family: var(--font-display);
  font-size: 2.8rem; color: var(--fg);
  line-height: 0.9; letter-spacing: 0.01em;
}
.price .free { color: var(--pop-deep); }
html.dark .price .free { color: var(--pop); }
.price small { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; color: var(--fg-faint); text-transform: uppercase; }
.svc-link {
  font-family: var(--font-body); font-weight: 800; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--pop-deep);
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s;
}
html.dark .svc-link { color: var(--pop); }
.svc-link:hover { gap: 11px; }
.svc-link svg { width: 15px; height: 15px; }

/* popular flag */
.popular { border-color: var(--pop); box-shadow: 0 0 0 4px rgba(255,122,26,0.18); }
.pop-flag {
  position: absolute; top: -2px; right: -2px;
  background: var(--pop); color: #16151a;
  font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.08em;
  padding: 6px 16px; text-transform: uppercase;
}

/* ---------- Stamp / seal badge ---------- */
.stamp {
  width: 92px; height: 92px; flex-shrink: 0;
  position: relative;
}
.stamp svg { width: 100%; height: 100%; color: var(--pop); }

/* ---------- Poster split (why us) ---------- */
.poster-split {
  background: var(--ink);
  color: var(--bone);
  position: relative; overflow: hidden;
}
.poster-split .container { position: relative; z-index: 2; }
.poster-grain {
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  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.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 0.9; color: var(--pop);
}
.stat .label { color: var(--steel); font-weight: 700; margin-top: 6px; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--surface);
  border: 2px solid var(--ink);
  padding: 30px 28px;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
html.dark .quote-card { border-color: var(--line-strong); }
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--pop); }
.stars svg { width: 18px; height: 18px; }
.quote-card p { font-size: 1.06rem; color: var(--fg); line-height: 1.5; font-weight: 400; }
.quote-by { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.avatar {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--ink); color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.2rem;
  border: 2px solid var(--pop);
}
html.dark .avatar { background: var(--surface-2); }
.quote-by .name { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.02em; }
.quote-by .area { color: var(--fg-faint); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--pop);
  color: #16151a;
  padding: clamp(48px, 8vw, 90px) clamp(28px, 6vw, 70px);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(2.8rem, 8vw, 6rem); color: #16151a; }
.cta-band p { margin: 16px auto 32px; max-width: 50ch; font-size: 1.08rem; font-weight: 600; color: #2a1c0a; }
.cta-band .btn-dark { box-shadow: 0 6px 0 #000; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-fg);
  padding: clamp(56px, 8vw, 84px) 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .brand { color: var(--footer-fg); margin-bottom: 16px; }
.footer-brand p { color: var(--footer-faint); max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.04em; color: var(--pop); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { color: var(--footer-faint); font-size: 0.95rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--footer-fg); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--pop); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 2px solid rgba(236,228,214,0.14);
  padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  color: var(--footer-faint); font-size: 0.86rem;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 2px solid rgba(236,228,214,0.2);
  display: grid; place-items: center; color: var(--footer-faint);
  transition: all 0.25s; border-radius: var(--radius-sm);
}
.footer-social a:hover { background: var(--pop); color: #16151a; border-color: var(--pop); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- Sticky mobile book bar ---------- */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  background: var(--ink);
  border-top: 3px solid var(--pop);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 12px; align-items: center;
}
.book-bar .bb-info { flex: 1; min-width: 0; color: var(--bone); }
.book-bar .bb-info .bb-from { font-size: 0.7rem; color: var(--steel); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.book-bar .bb-info .bb-price { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.book-bar .btn { flex-shrink: 0; }

/* ---------- Page hero (interior poster) ---------- */
.page-hero {
  background: var(--poster-bg);
  color: var(--poster-fg);
  padding: clamp(110px, 15vw, 160px) 0 clamp(48px, 7vw, 76px);
  position: relative; overflow: hidden;
}
.page-hero .hero-grain { opacity: 0.06; }
.page-hero h1 { font-size: clamp(3.2rem, 11vw, 7.4rem); color: var(--poster-fg); margin-top: 14px; line-height: 0.84; }
.page-hero h1 .pop { color: var(--pop); }
.page-hero .lede { color: var(--steel-soft); margin-top: 18px; }
.page-hero .hero-kicker { color: var(--pop); }

/* ---------- Services list ---------- */
.svc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------- About ---------- */
.story-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 76px); align-items: center; }
.story-visual { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 3px solid var(--ink); }
html.dark .story-visual { border-color: var(--line-strong); }
.story-visual svg { width: 100%; height: 100%; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid var(--ink); }
html.dark .values-grid { border-color: var(--line-strong); }
.value-card { padding: 32px 28px; border-right: 2px solid var(--ink); }
html.dark .value-card { border-right-color: var(--line-strong); }
.value-card:last-child { border-right: none; }
.value-card .v-num { font-family: var(--font-display); font-size: 3rem; color: var(--pop); line-height: 1; margin-bottom: 12px; }
.value-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.value-card p { color: var(--fg-soft); font-size: 0.95rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { text-align: center; }
.team-avatar {
  width: 130px; height: 130px; margin: 0 auto 18px;
  background: var(--ink); color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 3rem;
  border: 3px solid var(--pop);
  position: relative;
}
html.dark .team-avatar { background: var(--surface-2); }
.team-card h3 { font-size: 1.5rem; }
.team-card .role { color: var(--pop-deep); font-weight: 800; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }
html.dark .team-card .role { color: var(--pop); }
.team-card p { color: var(--fg-soft); font-size: 0.92rem; margin-top: 10px; }

.certs { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: stretch; }
.cert {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  background: var(--surface); border: 2px solid var(--ink);
  font-weight: 700; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.04em;
}
html.dark .cert { border-color: var(--line-strong); }
.cert svg { width: 26px; height: 26px; color: var(--pop-deep); }
html.dark .cert svg { color: var(--pop); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.tile { overflow: hidden; position: relative; border: 2px solid var(--ink); cursor: pointer; }
html.dark .tile { border-color: var(--line-strong); }
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 2; }
.tile-art { position: absolute; inset: 0; transition: transform 0.5s var(--ease); }
.tile-art svg { width: 100%; height: 100%; }
.tile-cap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  background: linear-gradient(180deg, transparent 45%, rgba(14,13,17,0.86) 100%);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.tile:hover .tile-cap { opacity: 1; transform: translateY(0); }
.tile:hover .tile-art { transform: scale(1.06); }
.tile-cap h3 { color: var(--bone); font-size: 1.5rem; }
.tile-cap span { color: var(--pop); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 36px; }
.contact-method {
  display: flex; gap: 16px; align-items: center;
  padding: 18px 20px; background: var(--surface); border: 2px solid var(--ink);
  transition: transform 0.2s, border-color 0.2s;
}
html.dark .contact-method { border-color: var(--line-strong); }
.contact-method:hover { transform: translateX(6px); border-color: var(--pop); }
.contact-method .cm-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--pop); color: #16151a;
  display: grid; place-items: center;
}
.contact-method .cm-icon svg { width: 22px; height: 22px; }
.contact-method .cm-label { font-size: 0.72rem; color: var(--fg-faint); font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-method .cm-value { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.02em; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.hours-table th, .hours-table td { padding: 13px 0; text-align: left; border-bottom: 2px solid var(--line); font-size: 0.96rem; }
.hours-table th { font-family: var(--font-body); font-weight: 700; color: var(--fg-soft); }
.hours-table td { text-align: right; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--pop-deep); }
html.dark .hours-table tr.today th, html.dark .hours-table tr.today td { color: var(--pop); }
.hours-table .closed { color: var(--fg-faint); font-family: var(--font-body); font-weight: 700; }

/* forms */
.form-card { background: var(--surface); border: 2px solid var(--ink); padding: clamp(28px, 4vw, 42px); }
html.dark .form-card { border-color: var(--line-strong); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 800; font-size: 0.78rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.field .req { color: var(--pop-deep); }
html.dark .field .req { color: var(--pop); }
.input, .select, .textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-2); color: var(--fg);
  font-size: 1rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--pop);
  box-shadow: 0 0 0 4px rgba(255,122,26,0.18);
}
.textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error { color: var(--pop-deep); font-size: 0.82rem; margin-top: 6px; display: none; font-weight: 700; }
html.dark .field-error { color: var(--pop); }
.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: var(--pop-deep); }
.field.invalid .field-error { display: block; }
.form-success {
  display: none; align-items: center; gap: 14px;
  padding: 20px; background: var(--ink); color: var(--bone);
  border-left: 5px solid var(--pop); margin-top: 8px;
}
.form-success.show { display: flex; }
.form-success svg { width: 32px; height: 32px; color: var(--pop); flex-shrink: 0; }
.form-success p { font-weight: 600; font-size: 0.95rem; }

/* map */
.map-card { position: relative; aspect-ratio: 16/12; border: 3px solid var(--ink); overflow: hidden; }
html.dark .map-card { border-color: var(--line-strong); }
.map-card svg { width: 100%; height: 100%; }
.map-pin { position: absolute; top: 44%; left: 50%; transform: translate(-50%, -100%); animation: pinBob 2.4s ease-in-out infinite; }
@keyframes pinBob { 0%,100% { transform: translate(-50%,-100%); } 50% { transform: translate(-50%,-116%); } }
.map-pin svg { width: 46px; height: 56px; filter: drop-shadow(0 6px 8px rgba(0,0,0,0.4)); }
.map-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--ink); color: var(--bone);
  padding: 12px 18px; font-weight: 700; font-size: 0.86rem;
  display: flex; align-items: center; gap: 8px; border-left: 4px solid var(--pop);
}
.map-badge svg { width: 16px; height: 16px; color: var(--pop); }

/* ---------- Pricing & FAQ page ---------- */
.price-list { border: 2px solid var(--ink); background: var(--surface); }
html.dark .price-list { border-color: var(--line-strong); }
.price-row {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 26px; border-bottom: 2px solid var(--line);
  transition: background 0.2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--surface-2); }
.price-row.featured { background: var(--ink); color: var(--bone); }
.price-row.featured .pr-name { color: var(--bone); }
.price-row.featured .pr-desc { color: var(--steel-soft); }
.price-row.featured .pr-price { color: var(--pop); }
.pr-info { flex: 1; min-width: 0; }
.pr-name { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.01em; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pr-tag { font-family: var(--font-body); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; background: var(--pop); color: #16151a; padding: 4px 10px; text-transform: uppercase; }
.pr-desc { color: var(--fg-soft); font-size: 0.94rem; margin-top: 4px; }
.pr-dur { color: var(--fg-faint); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.pr-dur svg { width: 14px; height: 14px; }
.pr-price { font-family: var(--font-display); font-size: 2.6rem; color: var(--fg); line-height: 0.9; min-width: 90px; text-align: right; }
.pr-price .free { color: var(--pop-deep); }
html.dark .pr-price .free { color: var(--pop); }
.pr-book { flex-shrink: 0; }

/* FAQ accordion */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 2px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--fg);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--pop-deep); }
html.dark .faq-q:hover { color: var(--pop); }
.faq-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 2px solid var(--line-strong); border-radius: var(--radius-sm);
  display: grid; place-items: center; position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
}
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--fg); }
.faq-icon::before { width: 14px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 14px; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-icon { background: var(--pop); border-color: var(--pop); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #16151a; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; color: var(--fg-soft); font-size: 1rem; line-height: 1.6; max-width: 70ch; }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(28px, 4vw, 44px); align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: 22px; }
.panel { background: var(--surface); border: 2px solid var(--ink); padding: clamp(24px, 4vw, 34px); }
html.dark .panel { border-color: var(--line-strong); }
.panel-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.panel-head .step-no {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--pop); color: #16151a;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem;
}
.panel-head h2 { font-size: 1.7rem; }

/* slots */
.slot-label { font-weight: 800; font-size: 0.78rem; margin-bottom: 12px; display: block; text-transform: uppercase; letter-spacing: 0.06em; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.slot {
  padding: 13px 8px; border: 2px solid var(--line-strong);
  background: var(--bg-2); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; text-align: center;
  transition: all 0.2s;
}
.slot .slot-tag { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; color: var(--fg-faint); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }
.slot:hover:not(:disabled) { border-color: var(--pop); transform: translateY(-2px); }
.slot.selected { background: var(--pop); color: #16151a; border-color: var(--pop); }
.slot.selected .slot-tag { color: #2a1c0a; }
.slot:disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

/* payment tabs */
.pay-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.pay-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border: 2px solid var(--line-strong); background: var(--bg-2);
  font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em;
  transition: all 0.2s;
}
.pay-tab:hover { border-color: var(--pop); }
.pay-tab.active { border-color: var(--pop); background: var(--pop); color: #16151a; }
.pay-tab svg { width: 30px; height: 19px; }
.pay-panel { display: none; }
.pay-panel.active { display: block; animation: fadeIn 0.3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.redirect-note {
  display: flex; gap: 14px; align-items: center;
  padding: 22px; background: var(--surface-2); border: 2px dashed var(--line-strong);
}
.redirect-note svg { width: 32px; height: 32px; color: var(--pop-deep); flex-shrink: 0; }
html.dark .redirect-note svg { color: var(--pop); }
.redirect-note p { font-size: 0.94rem; color: var(--fg-soft); }
.redirect-note b { color: var(--fg); }

.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card-input-wrap { position: relative; }
.card-input-wrap .card-brand { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 34px; height: 22px; }

/* order summary */
.summary { position: sticky; top: 98px; }
.summary-card { background: var(--ink); color: var(--bone); padding: clamp(26px, 4vw, 34px); position: relative; overflow: hidden; }
.summary-card .stripe-top { position: absolute; top: 0; left: 0; right: 0; height: 8px; background: repeating-linear-gradient(-45deg, var(--pop) 0 14px, #000 14px 28px); }
.summary-card h3 { color: var(--bone); font-size: 1.7rem; margin: 14px 0 2px; }
.summary-card .sum-sub { color: var(--steel); font-size: 0.84rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 22px; }
.sum-line { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-bottom: 2px solid rgba(236,228,214,0.12); font-size: 0.96rem; }
.sum-line .sum-label { color: var(--steel); }
.sum-line .sum-val { font-weight: 700; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-top: 16px; }
.sum-total .t-label { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.02em; }
.sum-total .t-val { font-family: var(--font-display); font-size: 2.8rem; color: var(--pop); line-height: 0.9; }

.promo-row { display: flex; gap: 10px; margin: 18px 0; }
.promo-row .input { background: rgba(236,228,214,0.08); border-color: rgba(236,228,214,0.2); color: var(--bone); }
.promo-row .input::placeholder { color: var(--steel); }
.promo-row .btn { padding: 14px 18px; }
.promo-msg { font-size: 0.82rem; font-weight: 700; margin-top: -8px; margin-bottom: 8px; min-height: 1.1em; }
.promo-msg.ok { color: var(--pop); }
.promo-msg.err { color: #ff9a5e; }

.trust-foot { margin-top: 22px; }
.ssl-row { display: flex; align-items: center; gap: 10px; color: var(--bone); font-weight: 700; font-size: 0.88rem; margin-bottom: 14px; }
.ssl-row svg { width: 20px; height: 20px; color: var(--pop); }
.gateways { display: flex; flex-wrap: wrap; gap: 7px; }
.gw-chip { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.03em; padding: 6px 10px; background: var(--bone); color: #16151a; }
.demo-note { margin-top: 18px; font-size: 0.78rem; color: var(--steel); display: flex; gap: 8px; align-items: center; }
.demo-note svg { width: 15px; height: 15px; flex-shrink: 0; }

.pay-btn-wrap { margin-top: 8px; }
.spinner { width: 20px; height: 20px; border-radius: 50%; border: 2.5px solid rgba(22,21,26,0.35); border-top-color: #16151a; animation: spin 0.7s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn.loading .spinner { display: block; }
.btn.loading .btn-text { opacity: 0.7; }

/* ---------- Success ---------- */
.success-wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.check-circle {
  width: 120px; height: 120px; margin: 0 auto 30px;
  background: var(--pop); display: grid; place-items: center; position: relative;
}
.check-circle::after { content: ""; position: absolute; inset: -8px; border: 3px solid var(--pop); opacity: 0; animation: ring 2s ease-out infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.28); opacity: 0; } }
.check-circle svg { width: 58px; height: 58px; }
.check-circle svg path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw 0.8s var(--ease) 0.3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.success-wrap h1 { font-size: clamp(3rem, 8vw, 5.4rem); margin-bottom: 12px; }
.ref-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 2px solid var(--pop);
  padding: 10px 22px; margin: 12px 0 28px; font-weight: 700;
}
.ref-pill .ref-code { font-family: var(--font-display); font-size: 1.4rem; color: var(--pop-deep); letter-spacing: 0.04em; }
html.dark .ref-pill .ref-code { color: var(--pop); }
.success-summary { background: var(--surface); border: 2px solid var(--ink); padding: 30px; margin: 30px 0; text-align: left; }
html.dark .success-summary { border-color: var(--line-strong); }
.success-summary .ss-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 2px solid var(--line); }
.success-summary .ss-row:last-child { border-bottom: none; }
.success-summary .ss-label { color: var(--fg-soft); font-weight: 700; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.06em; }
.success-summary .ss-val { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.02em; }
.steps { display: grid; gap: 16px; margin: 30px 0; text-align: left; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-item .step-dot { width: 44px; height: 44px; flex-shrink: 0; background: var(--ink); color: var(--pop); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; }
html.dark .step-item .step-dot { background: var(--surface-2); }
.step-item h3 { font-size: 1.35rem; margin-bottom: 4px; }
.step-item p { color: var(--fg-soft); font-size: 0.95rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ---------- Misc ---------- */
.split-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.intro-pair { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.faq-link { color: var(--pop-deep); font-weight: 800; }
html.dark .faq-link { color: var(--pop); }
.mini-note { font-size: 0.84rem; color: var(--fg-faint); margin-top: 10px; }
.big-num-bg {
  font-family: var(--font-display); font-size: clamp(8rem, 20vw, 18rem);
  color: var(--surface-2); line-height: 0.8; position: absolute; right: 0; top: 0; z-index: 0; pointer-events: none; user-select: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-list, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 2px solid var(--ink); }
  html.dark .value-card { border-bottom-color: var(--line-strong); }
  .value-card:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-right .btn-primary { display: none; }
  .hamburger { display: block; }
  .story-grid, .contact-grid, .checkout-grid, .intro-pair { grid-template-columns: 1fr; }
  .story-visual { max-width: 440px; margin: 0 auto; }
  .summary { position: static; order: -1; }
  .book-bar { display: flex; }
  body { padding-bottom: 80px; }
  .price-row { flex-wrap: wrap; gap: 12px; }
  .pr-price { text-align: left; min-width: 0; }
  .pr-book { width: 100%; }
  .pr-book .btn { width: 100%; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .svc-list, .team-grid, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .field-row, .card-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .pay-tab { padding: 10px 12px; font-size: 0.74rem; }
}
@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .tile.wide, .tile.tall { grid-column: auto; grid-row: auto; }
}
