/* =====================================================================
   GCUTZ — Modern Barbershop  ·  DARK theme
   Palette: #000000 (base)  #E43636 (red)  #E2DDB4 (cream)
   ===================================================================== */

:root {
  /* core brand colors (as provided) */
  --black:  #000000;
  --red:    #E43636;
  --cream:  #E2DDB4;
  --red-strong: #DC3030;  /* darker red for buttons/badges + red-on-dark text — white/red meets AA 4.5:1 */

  /* dark-theme surfaces (built on the black base) */
  --bg:        #000000;   /* primary background — BLACK */
  --surface:   #141210;   /* elevated cards */
  --surface-2: #1d1913;   /* chips / insets */
  --surface-3: #26211a;   /* hover / lighter inset */

  /* kept token names, repointed for the dark theme */
  --cream-50:  #0c0b09;   /* deepest wash */
  --cream-100: #1d1913;   /* soft dark chip */
  --cream-200: #26211a;   /* lighter dark chip */
  --red-soft:  rgba(228,54,54,.42);   /* red border tint on dark */
  --red-100:   rgba(228,54,54,.13);   /* red fill tint on dark */

  --head:      #FBF7EC;   /* headings — warm white */
  --ink:       #ECE7D6;   /* body text — soft cream-white */
  --ink-60:    rgba(236,231,214,.64);
  --ink-40:    rgba(236,231,214,.55);
  --line:      rgba(236,231,214,.14);

  /* "Sharp Cutz" signature corners — razor-sharp top-left, 30px sweep bottom-right */
  --radius:    0 18px;      /* sharp TL + BR, rounded TR + BL */
  --radius-sm: 0 12px;
  --radius-lg: 0 28px;
  --radius-pill: 0 16px;
  --shadow:   0 24px 60px -24px rgba(0,0,0,.9);
  --shadow-sm: 0 10px 30px -16px rgba(0,0,0,.85);

  --container: 1180px;
  --gutter: clamp(18px, 4vw, 40px);

  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Lora", Georgia, "Times New Roman", serif;
  --font-script: "Yellowtail", "Brush Script MT", cursive;
  --font-logo: "Pirata One", "Yellowtail", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1100px 560px at 82% -8%, rgba(228,54,54,.18), transparent 60%),
    radial-gradient(900px 520px at -8% 6%, rgba(226,221,180,.06), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  padding-bottom: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.text-red { color: var(--red); }
.muted { color: var(--ink-60); }
.center { text-align: center; }

/* ---------------------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--red-strong);
  --btn-fg: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: .01em;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 12px 26px -12px rgba(228,54,54,.85);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(228,54,54,.95); }
.btn:active { transform: translateY(0); }

.btn--solid { background: var(--red-strong); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--cream); color: var(--head); box-shadow: none; }

.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--lg { padding: 15px 28px; font-size: 1.05rem; }
.btn--xl { padding: 18px 34px; font-size: 1.15rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- top nav */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,7,6,.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 70px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 0 8px;
  flex: 0 0 auto;
}
.brand__name {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: .03em;
  color: var(--cream);
  line-height: 1;
}
.navlinks { display: flex; align-items: center; gap: 6px; }
.navlink {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--ink-60);
  transition: color .15s ease, background .15s ease;
}
.navlink:hover { color: var(--head); background: var(--surface-2); }
.navlink.active { color: var(--head); background: var(--surface-3); }

/* ---------------------------------------------------------------- tabs/panels */
.tab { display: none; animation: fade .45s ease both; }
.tab.active { display: block; }
@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section { padding-block: clamp(48px, 7vw, 96px); }
.section__head { margin-bottom: 36px; }
.section__head.center { max-width: 640px; margin-inline: auto; }
.section__title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: 0;
  margin: 6px 0 14px;
  color: var(--cream);
}
.kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
}
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--ink-60);
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.lead { font-size: 1.15rem; color: var(--ink); }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(40px, 6vw, 80px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 8px 0 18px;
  color: var(--head);
}
.hero__title .text-red {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.18em;
  line-height: 1;
}
.hero__lead {
  font-size: 1.2rem;
  color: var(--ink-60);
  max-width: 44ch;
  font-style: italic;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 30px; }
.hero__stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--head);
  line-height: 1;
}
.hero__stats span { font-size: .82rem; color: var(--ink-60); }

/* hero floating price card */
.hero__card { display: flex; justify-content: center; }
.pricecard {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform .3s ease;
}
.pricecard:hover { transform: rotate(0deg) translateY(-4px); }
.pricecard__top { padding: 26px 26px 18px; }
.pricecard__chip {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--cream);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.pricecard__top .pricecard__name { font-family: var(--font-display); font-size: 1.7rem; margin: 0 0 8px; color: var(--head); }
.pricecard__top p { margin: 0; color: var(--ink-60); font-size: .95rem; }
.pricecard__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 26px;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.pricecard__bottom .price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--cream); }

/* ---------------------------------------------------------------- about */
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.about__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, var(--surface) 0 14px, var(--surface-2) 14px 28px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink-40);
  font-weight: 600;
  box-shadow: var(--shadow);
}
.about__photo small { font-weight: 400; font-size: .8rem; }
.about__photo { overflow: hidden; }
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.about__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.tag {
  font-size: .85rem;
  font-weight: 600;
  background: var(--red-100);
  color: var(--red);
  border: 1px solid var(--red-soft);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}

/* ---------------------------------------------------------------- gallery / marquee */
.gallery { padding-block: clamp(40px, 6vw, 80px); }
.gallery__head { text-align: center; margin-bottom: 30px; }
.gallery__head .section__title { margin-top: 6px; }
.gallery__cta { text-align: center; margin-top: 30px; }

.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 8px 0;
  animation: scroll-x 95s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gtile {
  position: relative;
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 300px);
  aspect-ratio: 4/5;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 30% 0%, rgba(228,54,54,.22), transparent 55%),
    repeating-linear-gradient(135deg, var(--surface) 0 16px, var(--surface-2) 16px 32px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
}
.gtile img { width: 100%; height: 100%; object-fit: cover; }
.gtile__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--cream);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  margin: 14px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
}

/* ---------------------------------------------------------------- services */
.group__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.group__label h2 { font-family: var(--font-display); font-size: 1.7rem; margin: 0; color: var(--head); }
.group__meta { color: var(--red); font-weight: 700; font-size: .95rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  cursor: pointer;                 /* whole card is one big tap target */
  -webkit-tap-highlight-color: transparent;
}
.svc:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--cream));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red-soft); }
.svc:hover::after { transform: scaleX(1); }

.svc--feature {
  background: linear-gradient(170deg, var(--surface-2), rgba(228,54,54,.12));
  border-color: var(--red-soft);
}
.svc__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red-strong);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.svc__badge--alt { background: var(--cream); color: var(--black); }
.svc__icon {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 0 14px;
  margin-bottom: 14px;
}
.svc__name { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 8px; color: var(--head); }
.svc__desc { margin: 0 0 18px; color: var(--ink-60); font-size: .95rem; flex: 1; }
.svc__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.svc__price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--head); }
.svc__foot > div { display: flex; flex-direction: column; }
.svc__time { font-size: .78rem; color: var(--ink-40); margin-top: 2px; }
.svc__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--cream);
  background: var(--red-100);
  border: 1.5px solid var(--red-soft);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.svc__cta svg { transition: transform .2s ease; }
/* icon-less cards: keep the floating badge from overlapping the title */
.svc:not(:has(.svc__icon)):has(.svc__badge) .svc__name { margin-top: 26px; }
/* hovering anywhere on the card fills the CTA — pulls the eye to the action */
.svc:hover .svc__cta,
.svc:focus-visible .svc__cta {
  background: var(--red-strong);
  color: #fff;
  border-color: var(--red-strong);
  box-shadow: 0 10px 22px -12px rgba(228,54,54,.9);
}
.svc:hover .svc__cta svg { transform: translateX(3px); }
.svc:active { transform: translateY(-2px); }

.svc__banner {
  margin-top: 40px;
  background: var(--cream);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.svc__banner h2 { font-family: var(--font-display); font-size: 1.7rem; margin: 0 0 6px; color: var(--black); }
.svc__banner .muted { color: rgba(20,17,12,.7); }

/* testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.quote--feature {
  grid-column: span 2;
  background: linear-gradient(170deg, var(--surface-2), rgba(228,54,54,.12));
  border-color: var(--red-soft);
}
.quote__stars {
  color: var(--red);
  letter-spacing: 4px;
  font-size: .95rem;
}
.quote__text {
  margin: 0;
  flex: 1;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
}
.quote--feature .quote__text { font-size: 1.18rem; }
.quote__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.quote__who strong { font-family: var(--font-display); color: var(--head); }
.quote__who span { font-size: .85rem; color: var(--ink-60); }

/* ---------------------------------------------------------------- book */
.book__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.book__cta {
  margin: 28px 0;
  padding: 30px;
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.book__note { margin: 14px 0 0; color: var(--ink-60); font-size: .9rem; }
.book__contact { display: grid; gap: 12px; }
.contactrow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform .15s ease, border-color .15s ease;
}
.contactrow:hover { transform: translateX(4px); border-color: var(--red-soft); }
.contactrow__ico {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 0 10px;
  font-size: 1.2rem;
}

.book__menu {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.book__menu h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 16px; color: var(--head); }
.book__art {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.pricelist { list-style: none; margin: 0 0 22px; padding: 0; }
.pricelist li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  font-size: .98rem;
}
.pricelist li.divider { margin-top: 8px; border-top: 1px dashed var(--line); padding-top: 16px; }
.pricelist .dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.pricelist .amt { font-family: var(--font-display); font-weight: 700; color: var(--cream); }
.pricelist small { color: var(--ink-40); font-size: .8em; margin-left: 4px; }

/* ---------------------------------------------------------------- footer */
.footer {
  background: var(--black);
  color: var(--cream);
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-block: 34px;
}
.footer .brand__name { color: var(--cream); }
.footer .muted { color: rgba(226,221,180,.7); }
.footer__links { display: flex; gap: 22px; }
.footer__links a { font-family: var(--font-display); font-weight: 600; color: var(--cream); transition: color .15s; }
.footer__links a:hover { color: var(--red); }
.footer__copy { width: 100%; font-size: .85rem; padding-top: 8px; border-top: 1px solid rgba(226,221,180,.15); }

/* ---------------------------------------------------------------- mobile bottom nav */
.bottomnav { display: none; }

/* ---------------------------------------------------------------- toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(30px);
  background: var(--surface-3);
  color: var(--head);
  border: 1px solid var(--line);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 100;
  max-width: 90vw;
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------------------------------------------------------------- cookie consent */
.cookiebar {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 300;
  width: min(560px, calc(100vw - 32px));
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px 18px;
}
.cookiebar.show { display: block; }
.cookiebar__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--head);
  margin: 0 0 8px;
}
.cookiebar__text { margin: 0 0 16px; font-size: .88rem; line-height: 1.6; color: var(--ink-60); }
.cookiebar__text strong { color: var(--ink); }
.cookiebar__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookiebar__actions .btn { flex: 1 1 auto; }
.cookiebar__links { margin: 12px 0 0; font-size: .8rem; color: var(--ink-40); }
.cookiebar__links a { color: var(--ink-60); text-decoration: underline; }
.cookiebar__links a:hover { color: var(--red); }

/* the confirmation cut */
.cookiebar__scissors {
  position: absolute;
  top: calc(50% - 14px);
  left: -34px;
  font-size: 26px;
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.cookiebar::after {                 /* the seam the blades leave */
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(251,247,236,.9), var(--red));
  box-shadow: 0 0 10px rgba(228,54,54,.8);
}
.cookiebar.cutting { pointer-events: none; }
.cookiebar.cutting .cookiebar__scissors { animation: cb-scissors .8s ease-in forwards; }
.cookiebar.cutting::after { animation: cb-seam .8s ease-in forwards; }
@keyframes cb-scissors { 0% { opacity: 1; left: -34px; } 100% { opacity: 1; left: calc(100% + 8px); } }
@keyframes cb-seam { to { width: 100%; } }
.cookiebar--top {
  clip-path: inset(0 0 50% 0);
  animation: cb-half-up .6s ease-in forwards;
}
.cookiebar--bottom {
  display: block;
  clip-path: inset(50% 0 0 0);
  animation: cb-half-down .6s ease-in forwards;
}
@keyframes cb-half-up   { to { transform: translateX(-50%) translateY(-30px) rotate(-1.5deg); opacity: 0; } }
@keyframes cb-half-down { to { transform: translateX(-50%) translateY(55px) rotate(2deg); opacity: 0; } }

/* ---------------------------------------------------------------- legal pages */
.legal { max-width: 820px; }
.legal__back {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-60);
}
.legal__back:hover { color: var(--red); }
.legal__updated { font-size: .85rem; color: var(--ink-40); margin: 0 0 26px; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--head);
  margin: 30px 0 10px;
}
.legal p, .legal li { color: var(--ink-60); font-size: .98rem; line-height: 1.75; }
.legal p strong, .legal li strong { color: var(--ink); }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal li { margin-bottom: 10px; }
.legal a { color: var(--red); text-decoration: underline; }
.legal code {
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 1px 7px;
  border-radius: 0 8px;
  font-size: .9em;
}

/* =====================================================================
   RESPONSIVE — Tablet
   ===================================================================== */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { justify-content: flex-start; }
  .pricecard { transform: rotate(0); }
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 420px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .book__grid { grid-template-columns: 1fr; }
  .book__menu { position: static; }
}

/* =====================================================================
   RESPONSIVE — Mobile
   ===================================================================== */
@media (max-width: 620px) {
  /* swap top links for app-style bottom nav */
  .navlinks { display: none; }
  .topbar__cta { padding: 10px 18px; font-size: .9rem; }
  .topbar__inner { height: 62px; }

  body { padding-bottom: 76px; }   /* room for bottom nav */

  .cards { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .quote--feature { grid-column: auto; }
  .hero__stats { gap: 20px; }
  .hero__stats strong { font-size: 1.5rem; }
  .svc__banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .group__label { flex-direction: column; align-items: flex-start; gap: 4px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }

  .cookiebar { bottom: calc(84px + env(safe-area-inset-bottom)); }

  .bottomnav {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    background: rgba(8,7,6,.9);
    backdrop-filter: saturate(160%) blur(16px);
    border-top: 1px solid var(--line);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    justify-content: space-around;
  }
  .bnav {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .72rem;
    color: var(--ink-40);
    border-radius: 0 10px;
    transition: color .15s ease, background .15s ease;
  }
  .bnav.active { color: var(--head); }
  .bnav.active svg { color: var(--red); }
  .bnav--cta {
    color: #fff;
    background: var(--red-strong);
    margin: -2px 6px;
  }
  .bnav--cta.active { color: #fff; }
  .bnav--cta.active svg { color: #fff; }
}

/* =====================================================================
   LANDING GATE — one click cuts the hair and opens the site
   ===================================================================== */
body.gated { overflow: hidden; }

.gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: transparent;   /* the four strips below carry the backdrop */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.gate:focus-visible { outline: 3px solid var(--red); outline-offset: -6px; }

/* the screen itself — four strips that get cut apart and fall away */
.gate__strips { position: absolute; inset: 0; }
.strip {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
  width: 25.05%;
  background: #070605;   /* flat — the glow veil above adds the light */
}
.strip:nth-child(1) { left: 0;      --tilt: -2.5deg; --driftx: -3vw; }
.strip:nth-child(2) { left: 24.95%; --tilt: 1.5deg;  --driftx: -1vw; }
.strip:nth-child(3) { left: 49.95%; --tilt: -1.5deg; --driftx: 1vw; }
.strip:nth-child(4) { left: 74.95%; --tilt: 2.5deg;  --driftx: 3vw; }

/* one seamless unsplit copy — covers the strips until the curtain falls */
.gate__whole {
  position: absolute;
  inset: 0;
  background: #070605;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.gate.falling .gate__whole { display: none; }

/* one seamless light layer over the strips (fades as the curtain falls) */
.gate__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 560px at 82% -8%, rgba(228,54,54,.2), transparent 60%),
    radial-gradient(900px 520px at -8% 6%, rgba(226,221,180,.05), transparent 55%);
  pointer-events: none;
  z-index: 2;
  transition: opacity .3s ease;
}
.gate.falling .gate__glow { opacity: 0; }
.gate.falling .strip { animation: strip-fall .8s cubic-bezier(.5,0,.85,.5) forwards; }
.gate.falling .strip:nth-child(2) { animation-delay: .07s; }
.gate.falling .strip:nth-child(3) { animation-delay: .14s; }
.gate.falling .strip:nth-child(4) { animation-delay: .21s; }
@keyframes strip-fall { to { transform: translate(var(--driftx, 0), 110vh) rotate(var(--tilt)); } }

/* each strip carries a pixel-aligned full-width copy of the hero */
.strip__inner {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip:nth-child(1) .strip__inner { left: 0; }
.strip:nth-child(2) .strip__inner { left: -24.95vw; }
.strip:nth-child(3) .strip__inner { left: -49.95vw; }
.strip:nth-child(4) .strip__inner { left: -74.95vw; }

/* glowing seams left by the blades */
.seam {
  position: absolute;
  top: 0;
  height: 0;
  width: 2px;
  background: linear-gradient(rgba(251,247,236,.9), var(--red));
  box-shadow: 0 0 14px rgba(228,54,54,.8);
  z-index: 3;
}
#seam-1 { left: calc(25% - 1px); }
#seam-2 { left: calc(50% - 1px); }
#seam-3 { left: calc(75% - 1px); }
.gate.falling .seam { opacity: 0; transition: opacity .2s ease; }

/* --- the three tools --- */
.gate__tool {
  position: absolute;
  z-index: 6;              /* above the whole layer, glow and seams */
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  will-change: transform;
}
.gate__tool svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.55)) drop-shadow(0 0 14px rgba(226,221,180,.14));
}
.gate__tool.active { opacity: 1; }

/* act 1 · shears — visible from the start, floating in the corner */
.gate__scissors {
  top: clamp(16px, 5vh, 44px);
  right: clamp(16px, 5vw, 52px);
  width: clamp(150px, 18vw, 250px);
  opacity: 1;
  animation: scissor-float 3.2s ease-in-out infinite alternate;
}
@keyframes scissor-float {
  from { transform: translateY(0) rotate(-14deg); }
  to   { transform: translateY(10px) rotate(-4deg); }
}
.gate.cutting .gate__scissors { animation: none; }
.sc-move { transform-origin: 128px 60px; }
.gate__scissors.snipping .sc-move { animation: snip .14s ease-in-out infinite alternate; }
@keyframes snip { from { transform: rotate(-11deg); } to { transform: rotate(6deg); } }

/* act 2 · clippers — buzz in from the right */
.gate__clippers {
  bottom: 8vh;
  right: clamp(12px, 4vw, 40px);
  width: clamp(95px, 11vw, 150px);
}
.gate__clippers.buzzing svg { animation: buzz .06s steps(2) infinite; }
@keyframes buzz {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(1.4px, -1px); }
  100% { transform: translate(-1px, 1px); }
}

/* act 3 · straight razor — chops in from the left */
.gate__razor {
  bottom: 6vh;
  left: clamp(12px, 4vw, 40px);
  width: clamp(170px, 20vw, 270px);
}
.gate__razor.chopping svg {
  transform-origin: 78% 34%;
  animation: chop .34s ease-in-out infinite;
}
@keyframes chop {
  0%, 100% { transform: rotate(-14deg); }
  45%      { transform: rotate(11deg); }
}

/* --- centre: logo + hero --- */
.gate__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--gutter);
  pointer-events: none;
}
.gate__logo {
  width: min(90vw, 84vh);   /* near full-screen, capped by height so it never overflows */
  height: auto;
  display: block;
  border-radius: 0 clamp(12px, 2vw, 26px);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.9), 0 0 0 1px rgba(226,221,180,.1);
}
.gate__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.2vw, 4.4rem);
  line-height: 1.08;
  color: var(--head);
  margin: clamp(14px, 3vh, 28px) 0 4px;
}
.gate__script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.18em;
  line-height: 1;
}
.gate__sub {
  color: var(--ink-60);
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  letter-spacing: .04em;
  margin: 8px 0 0;
}

/* --- copy --- */
.gate__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.6vw, 3.2rem);
  line-height: 1.08;
  color: var(--head);
  margin: 16px 0 4px;
}
.gate__script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.18em;
  line-height: 1;
}
.gate__hint {
  color: var(--ink-60);
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  margin: 10px 0 0;
  animation: hint-pulse 2.2s ease-in-out infinite;
}
@keyframes hint-pulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
.gate.cutting .gate__hint { animation: none; opacity: 0; transition: opacity .3s ease; }
.gate.done .gate__hint { animation: none; opacity: .9; }

/* --- falling hair --- */
.strand {
  position: absolute;
  top: -24px;
  width: 3px;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  animation: hairfall var(--d) var(--delay) cubic-bezier(.45,.05,.65,1) forwards;
}
@keyframes hairfall {
  0%   { opacity: 0; transform: translate(0,0) rotate(0); }
  8%   { opacity: 1; }
  100% { opacity: .85; transform: translate(var(--dx), 112vh) rotate(var(--rot)); }
}

@media (prefers-reduced-motion: reduce) {
  .gate__scissors, .gate__hint, .gate__tool svg, .sc-move, .strip { animation: none; }
  .strand { animation: none; display: none; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
  .tab { animation: none; }
}


/* inline SVG icons (replaced the old emojis) */
.svc__icon svg { width: 24px; height: 24px; color: var(--red); }
.contactrow__ico svg { width: 20px; height: 20px; color: var(--cream); }
.cookiebar__scissors svg { width: 26px; height: 26px; display: block; }
.hero__stats .stat-star { width: .72em; height: .72em; color: var(--red); margin-left: 3px; vertical-align: -0.02em; }


/* =====================================================================
   ACCESSIBILITY  (WCAG 2.1 AA — added 2026)
   ===================================================================== */

/* 2.4.1 Bypass Blocks — keyboard/screen-reader users skip straight to content */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 400;
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform .18s ease;
}
body.gated .skip-link { display: none; }
.skip-link:focus { transform: translateY(0); outline: 3px solid var(--red); outline-offset: 2px; }

/* 2.4.7 Focus Visible — a clear keyboard-focus ring on every interactive element.
   Cream ring stays visible on the black page AND on the red buttons. */
a:focus-visible,
button:focus-visible,
.navlink:focus-visible,
.bnav:focus-visible,
.btn:focus-visible,
[tabindex]:focus-visible,
.contactrow:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 3px;
  border-radius: 3px;
}
