/* ==========================================================================
   King Cuts - Fresno, CA
   Editorial cream + warm gold body. Dark dramatic hero + booking moments.
   DM Serif Display + Inter.
   ========================================================================== */

:root {
  /* Cream "premium magazine" palette (default scope) */
  --bg:          #F5EFE2;
  --bg-elev:    #FFFFFF;
  --bg-raised:  #FBF6EB;
  --bg-alt:     #EDE5D2;

  --border:     #E5DDC9;
  --border-2:   #D4C9AE;

  --text:       #16110C;
  --text-2:     #5C544A;
  --text-3:     #8B8278;

  /* Gold variants - bright for dark bg, deep for cream bg */
  --gold:        #A87A2E;
  --gold-soft:   #C89A4A;
  --gold-deep:   #7A5520;
  --gold-bright: #D4A24C;
  --gold-glow:   #E5BC73;

  --chrome:     #C0C5CD;

  --shadow-sm:  0 1px 2px rgba(22,17,12,.06);
  --shadow-md:  0 12px 32px -10px rgba(22,17,12,.14);
  --shadow-lg:  0 28px 64px -20px rgba(22,17,12,.18);
  --shadow-gold: 0 0 80px -20px rgba(212,162,76,.45);

  /* Spacing (8pt) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --container:    1200px;
  --container-sm:  840px;

  /* Motion */
  --ease:    cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast:  180ms;
  --t-base:  260ms;
  --t-slow:  520ms;

  /* Type */
  --f-display: "DM Serif Display", "Bodoni Moda", Georgia, serif;
  --f-body:    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Dark theme scope (applied to hero + booking section) */
.theme-dark {
  --bg:          #0A0A0C;
  --bg-elev:    #131318;
  --bg-raised:  #1B1B22;
  --bg-alt:     #08080A;
  --border:     #25252E;
  --border-2:   #3A3A48;
  --text:       #F2EBDE;
  --text-2:     #B5AC9C;
  --text-3:     #7B7468;
  /* On dark, use the brighter gold for text and accents */
  --gold:       #D4A24C;
  --gold-soft:  #E5BC73;
  --gold-deep:  #A57A2E;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(900px 600px at 90% -10%, rgba(168,122,46,.06), transparent 60%),
    radial-gradient(700px 500px at -10% 35%, rgba(168,122,46,.04), transparent 55%);
}

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

::selection { background: var(--gold); color: #FFF; }

/* Skip link */
.skip {
  position: absolute;
  left: var(--s-4);
  top: -200px;
  background: var(--gold);
  color: #FFF;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 100;
  transition: top var(--t-fast) var(--ease);
}
.skip:focus-visible { top: var(--s-4); }

/* Focus rings (custom, visible) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Reusable bits ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-soft);
}

.section {
  padding: var(--s-9) var(--s-5);
  position: relative;
}
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.theme-dark.section--alt {
  background:
    linear-gradient(to bottom, var(--bg-alt), var(--bg) 30%, var(--bg) 70%, var(--bg-alt));
}

.section__head {
  max-width: 760px;
  margin: 0 auto var(--s-8);
  text-align: center;
}
.section__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: var(--s-4);
  color: var(--text);
}
.section__title em {
  font-style: italic;
  color: var(--gold);
}
.section__lede {
  margin-top: var(--s-5);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 60ch;
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 26px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, #E5BC73, #C89A4A 60%, #8C6420);
  color: #FFF8E8;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 14px 30px -10px rgba(168,122,46,.45);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 18px 38px -10px rgba(168,122,46,.55);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(22,17,12,.04);
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  background: rgba(22,17,12,.08);
  border-color: var(--gold);
}
.theme-dark .btn--ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: var(--border-2);
}
.theme-dark .btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--gold);
}

.btn--xl {
  font-size: 17px;
  padding: 20px 34px;
  min-height: 60px;
}

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,239,226,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-4) var(--s-5);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-6);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.nav__crown {
  width: 28px;
  height: 22px;
  color: var(--gold);
  display: inline-flex;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav__brand-sub {
  font-size: 11px;
  margin-top: 4px;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__links {
  display: none;
  justify-self: center;
  gap: var(--s-6);
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
  padding: 6px 4px;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 4px; right: 4px; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #FFF8E8;
  background: linear-gradient(180deg, #E5BC73, #C89A4A 70%, #8C6420);
  padding: 12px 18px;
  border-radius: 999px;
  min-height: 44px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease);
  box-shadow: 0 8px 20px -8px rgba(168,122,46,.4);
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(168,122,46,.55);
}
.nav__cta-arrow { transition: transform var(--t-fast) var(--ease); }
.nav__cta:hover .nav__cta-arrow { transform: translateX(2px); }

@media (min-width: 900px) {
  .nav__links { display: inline-flex; }
}

/* ---------- Hero (DARK MOMENT) ---------- */

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 12vh, 120px) var(--s-5) var(--s-10);
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}
.hero__glow {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 80%;
  background:
    radial-gradient(700px 420px at 70% 30%, rgba(212,162,76,.22), transparent 60%),
    radial-gradient(500px 300px at 20% 70%, rgba(192,197,205,.06), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}
.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(54px, 11vw, 124px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: var(--s-5);
  color: var(--text);
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  margin-top: var(--s-5);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 56ch;
}
.hero__cta {
  margin-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.hero__meta {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--s-4);
  max-width: 540px;
}
.hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--s-3) var(--s-4);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-3);
}
.hero__meta li span {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--text);
  line-height: 1.1;
}

.hero__mark {
  display: none;
  position: relative;
  pointer-events: none;
}
.hero__mark img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  filter: drop-shadow(var(--shadow-gold)) drop-shadow(var(--shadow-lg));
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.05fr .95fr;
    gap: var(--s-9);
  }
  .hero__mark { display: block; }
}

/* ---------- Trust strip ---------- */

.strip {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip__list {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-4) var(--s-5);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  font-size: 14px;
  color: var(--text-2);
}
.strip__k {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 8px;
}
.strip__list a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border-2); }
.strip__list a:hover { text-decoration-color: var(--gold); }

@media (min-width: 768px) {
  .strip__list {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
  }
}

/* ---------- About / Pillars ---------- */

.pillars {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.pillar {
  padding: var(--s-6);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.pillar:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pillar__num {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.pillar__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  margin-top: var(--s-3);
  color: var(--text);
}
.pillar__body {
  margin-top: var(--s-3);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

@media (min-width: 768px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}

/* ---------- Services ---------- */

.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

.service {
  padding: var(--s-6);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.service:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.service__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  color: var(--text);
}
.service__price {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.service__from {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-right: 6px;
  vertical-align: 4px;
}
.service__body {
  margin-top: var(--s-3);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}
.service__tag {
  position: absolute;
  top: -10px;
  left: var(--s-6);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #FFF8E8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.service--feature {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(168,122,46,.04), transparent 60%),
    var(--bg-elev);
}

.services__foot {
  max-width: var(--container);
  margin: var(--s-6) auto 0;
  text-align: center;
  color: var(--text-2);
  font-size: 15px;
}
.services__foot a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border-2);
}
.services__foot a:hover { text-decoration-color: var(--gold); }

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Gallery ---------- */

.gallery__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.gallery__tile {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(168,122,46,.08), transparent 60%),
    linear-gradient(180deg, var(--bg-elev), var(--bg-raised));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.gallery__tile:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery__mark {
  width: 44px;
  height: 34px;
  color: rgba(168,122,46,.45);
  display: inline-flex;
}
.gallery__foot {
  max-width: var(--container);
  margin: var(--s-6) auto 0;
  text-align: center;
  color: var(--text-2);
  font-size: 15px;
}
.gallery__foot a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border-2);
}
.gallery__foot a:hover { text-decoration-color: var(--gold); }

@media (min-width: 768px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
}

/* ---------- Reviews ---------- */

.reviews__wrap {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

.review {
  position: relative;
  padding: var(--s-6);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.review:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review__stars {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
}

.review__body {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--text);
  flex: 1;
}

.review__emoji {
  font-family: var(--f-body);
  font-size: 56px;
  line-height: 1;
}

.review__caption {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}

.review__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-elev);
  box-shadow: 0 0 0 1px var(--border);
  background: var(--bg-raised);
}

.review__avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 65%, var(--gold-deep));
  color: #FFF8E8;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  border: 2px solid var(--bg-elev);
  box-shadow: 0 0 0 1px var(--gold-deep), 0 8px 18px -8px rgba(168,122,46,.4);
}

.review__who {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.review__name {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.review__date {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: 3px;
}

/* Featured (Juan's long quote) */
.review--featured {
  padding: var(--s-8) var(--s-6);
  background:
    linear-gradient(180deg, rgba(168,122,46,.05), transparent 40%),
    var(--bg-elev);
  border-color: var(--border-2);
}
.review--featured::before {
  content: "“";
  position: absolute;
  top: 16px;
  left: 22px;
  font-family: var(--f-display);
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  opacity: .22;
  pointer-events: none;
}
.review--featured .review__body {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.review--featured .review__avatar--initial {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  font-size: 26px;
}

.review--short {
  text-align: center;
  align-items: center;
}
.review--short .review__caption { text-align: left; }
.review--short .review__body { display: flex; align-items: center; justify-content: center; min-height: 90px; }

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

.reviews__foot {
  max-width: var(--container);
  margin: var(--s-6) auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-2);
}
.reviews__foot a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border-2);
}
.reviews__foot a:hover { text-decoration-color: var(--gold); }

@media (min-width: 768px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}
@media (min-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(4, 1fr); }
  .reviews__wrap { gap: var(--s-5); }
}

/* ---------- Booking CTA (DARK MOMENT) ---------- */

.book {
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.book .book__card {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: var(--s-9) var(--s-5);
  background:
    radial-gradient(600px 320px at 50% 0%, rgba(212,162,76,.12), transparent 60%),
    linear-gradient(180deg, var(--bg-raised), var(--bg-elev));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.book__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(180deg, rgba(212,162,76,.6), rgba(212,162,76,0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.book__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: var(--s-4);
  color: var(--text);
}
.book__lede {
  margin: var(--s-5) auto 0;
  font-size: 18px;
  color: var(--text-2);
  max-width: 56ch;
  line-height: 1.6;
}
.book__steps {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  max-width: 560px;
  margin-inline: auto;
}
.book__steps li {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-5);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  text-align: left;
}
.book__steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(212,162,76,.14);
  color: var(--gold);
  font-family: var(--f-display);
  font-size: 16px;
}
.book .btn { margin-top: var(--s-6); }

@media (min-width: 768px) {
  .book__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
  }
}

/* ---------- Visit ---------- */

.visit__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.visit__card {
  padding: var(--s-6);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.visit__card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.visit__k {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.visit__v {
  margin-top: var(--s-3);
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--text);
}
.visit__link {
  display: inline-block;
  margin-top: var(--s-4);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border-2);
}
.visit__link:hover { text-decoration-color: var(--gold); }

@media (min-width: 768px) {
  .visit__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--s-8) var(--s-5) var(--s-7);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  text-align: center;
}
.footer__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__crown {
  width: 32px;
  height: 24px;
  color: var(--gold);
}
.footer__name {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--text);
  line-height: 1;
}
.footer__sub {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4) var(--s-6);
}
.footer__links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--t-fast) var(--ease);
}
.footer__links a:hover { color: var(--gold); }
.footer__legal {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    align-items: center;
  }
  .footer__brand { align-items: flex-start; }
  .footer__links { justify-content: center; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__mark img { animation: none; }
}
