/* ==========================================================================
   ShearPerfection Salon — Design Tokens
   ========================================================================== */
:root {
  --black: #08080a;
  --black-1: #0e0e11;
  --black-2: #17171b;
  --black-3: #1f1f24;
  --gold: #c9a34d;
  --gold-light: #e8c87a;
  --gold-deep: #8a6a2e;
  --ivory: #f6f2e8;
  --ivory-muted: #b7b0a1;
  --border-gold: rgba(201, 163, 77, 0.22);
  --border-gold-strong: rgba(201, 163, 77, 0.5);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --space-2xs: 0.4rem;
  --space-xs: 0.8rem;
  --space-sm: 1.2rem;
  --space-md: 2rem;
  --space-lg: 3.2rem;
  --space-xl: 5.2rem;
  --space-2xl: 8rem;

  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 200ms;
  --dur: 320ms;
  --dur-slow: 560ms;

  --nav-h: 84px;
}

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

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

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: visible;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea {
  font: inherit;
}

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

@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;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  position: relative;
  padding-block: var(--space-2xl);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h2.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ivory);
}

.section-lede {
  margin-top: var(--space-sm);
  color: var(--ivory-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.gold-text {
  color: var(--gold);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold-strong) 50%, transparent);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
  min-height: 44px;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: #150f04;
  box-shadow: 0 8px 24px -8px rgba(201, 163, 77, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(201, 163, 77, 0.6);
}

.btn-outline {
  border: 1px solid var(--border-gold-strong);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.7rem 1.3rem;
  font-size: 0.72rem;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out),
    height var(--dur) var(--ease-out), backdrop-filter var(--dur) var(--ease-out);
}

.nav.is-scrolled {
  height: 68px;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-gold);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-gold-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  flex-shrink: 0;
}

.brand-word b {
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  padding-block: 0.4rem;
  transition: color var(--dur) var(--ease-out);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ivory);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  cursor: pointer;
}

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

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6, 6, 8, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur) var(--ease-out), visibility var(--dur), transform var(--dur) var(--ease-out);
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ivory);
}

.mobile-drawer a:hover {
  color: var(--gold);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(120% 90% at 82% 12%, rgba(201, 163, 77, 0.16), transparent 55%),
    radial-gradient(90% 70% at 8% 92%, rgba(201, 163, 77, 0.1), transparent 60%),
    linear-gradient(180deg, #050506 0%, #0a0a0c 55%, #08080a 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-md);
  padding-block: var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-bottom: var(--space-md);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6bcB6f;
  box-shadow: 0 0 0 3px rgba(107, 203, 111, 0.18);
}

.status-dot.is-closed {
  background: #c96b4d;
  box-shadow: 0 0 0 3px rgba(201, 107, 77, 0.18);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  line-height: 1.02;
  color: var(--ivory);
}

.hero-title .title-line {
  display: block;
}

.hero-title .title-line + .title-line {
  margin-top: 0.08em;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero-title .char,
.hero-title .word-inner {
  display: inline-block;
  will-change: transform;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: var(--space-md);
  font-size: 1.1rem;
  color: var(--ivory-muted);
  max-width: 46ch;
}

.hero-actions {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-meta {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
}

.hero-meta-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

.scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ivory-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollcue 2.2s var(--ease-out) infinite;
}

@keyframes scrollcue {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.01% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ==========================================================================
   The Craft (portfolio cards)
   ========================================================================== */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.craft-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--black-1);
  cursor: default;
}

.craft-card-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 700ms var(--ease-out), opacity var(--dur) var(--ease-out);
}

.craft-card:hover .craft-card-pattern {
  transform: scale(1.06);
}

.craft-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.1) 0%, rgba(8, 8, 10, 0.55) 68%, rgba(8, 8, 10, 0.92) 100%);
}

.craft-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-md);
  z-index: 1;
}

.craft-card-index {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}

.craft-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ivory);
  margin-top: 0.3rem;
}

.craft-card-desc {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--ivory-muted);
}

/* Generative gold-line patterns per style */
.pattern-box {
  background: repeating-linear-gradient(
      45deg,
      rgba(201, 163, 77, 0.16) 0 2px,
      transparent 2px 22px
    ),
    repeating-linear-gradient(-45deg, rgba(201, 163, 77, 0.16) 0 2px, transparent 2px 22px),
    #131316;
}

.pattern-boho {
  background: radial-gradient(circle at 20% 20%, rgba(201, 163, 77, 0.22), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(201, 163, 77, 0.16), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(201, 163, 77, 0.18), transparent 50%), #121215;
}

.pattern-feedin {
  background: repeating-linear-gradient(100deg, rgba(201, 163, 77, 0.2) 0 1.5px, transparent 1.5px 14px), #121215;
}

.pattern-microlinks {
  background: radial-gradient(rgba(201, 163, 77, 0.35) 1.5px, transparent 1.6px), #121215;
  background-size: 18px 18px;
}

.pattern-keratin {
  background: linear-gradient(120deg, rgba(201, 163, 77, 0.22), transparent 60%),
    linear-gradient(300deg, rgba(201, 163, 77, 0.12), transparent 55%), #101013;
}

.pattern-blowout {
  background: repeating-radial-gradient(circle at 50% 120%, rgba(201, 163, 77, 0.22) 0 2px, transparent 2px 26px),
    #121215;
}

/* ==========================================================================
   Services & Pricing
   ========================================================================== */
.services-layout {
  display: grid;
  gap: var(--space-xl);
}

.price-category {
  border-top: 1px solid var(--border-gold);
  padding-top: var(--space-lg);
}

.price-category + .price-category {
  margin-top: var(--space-xl);
}

.price-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.price-category-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 500;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 var(--space-xl);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-block: 0.85rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.price-row .name {
  font-size: 0.98rem;
  color: var(--ivory);
}

.price-row .name small {
  display: block;
  color: var(--ivory-muted);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.price-row .leader {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 163, 77, 0.35);
  transform: translateY(-4px);
}

.price-row .price {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.05rem;
  white-space: nowrap;
}

.price-note {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  color: var(--ivory-muted);
  font-size: 0.9rem;
  background: rgba(201, 163, 77, 0.04);
}

.services-cta {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Story & Reviews
   ========================================================================== */
.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.story-visual {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-lg));
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  background: radial-gradient(circle at 30% 20%, rgba(201, 163, 77, 0.28), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(201, 163, 77, 0.14), transparent 55%), #101013;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.story-copy p {
  color: var(--ivory-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.story-copy p:first-of-type {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}

.reviews-block {
  margin-top: var(--space-xl);
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.reviews-head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ivory);
}

.review-links {
  display: flex;
  gap: var(--space-sm);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  border: 1px dashed var(--border-gold-strong);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--ivory-muted);
  font-size: 0.92rem;
  font-style: italic;
}

.testimonial-card .stars {
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  display: block;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-row {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-gold-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

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

.info-row h4 {
  font-size: 0.95rem;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.info-row a,
.info-row p {
  color: var(--ivory-muted);
  font-size: 0.92rem;
}

.info-row a:hover {
  color: var(--gold);
}

.hours-table {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--border-gold);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  color: var(--ivory-muted);
}

.hours-row.is-today {
  color: var(--gold-light);
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-gold-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

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

.social-icon:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.map-embed {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  filter: grayscale(0.5) invert(0.92) contrast(0.88);
  aspect-ratio: 16/10;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

.field input,
.field select,
.field textarea {
  background: var(--black-1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--ivory);
  min-height: 44px;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--black-2);
}

.field .hint {
  font-size: 0.76rem;
  color: var(--ivory-muted);
  opacity: 0.7;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-gold);
  padding-block: var(--space-xl) var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  margin-top: var(--space-sm);
  color: var(--ivory-muted);
  font-size: 0.9rem;
  max-width: 32ch;
}

.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--ivory-muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--ivory-muted);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Mobile sticky booking bar
   ========================================================================== */
.mobile-book-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  padding-bottom: calc(var(--space-xs) + env(safe-area-inset-bottom));
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-gold);
}

.mobile-book-bar .btn {
  flex: 1;
}

/* ==========================================================================
   Reveal utility (GSAP hooks)
   ========================================================================== */
.reveal {
  opacity: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .craft-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-visual {
    position: relative;
    top: 0;
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta .btn-outline,
  .nav-cta .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .nav-inner {
    gap: var(--space-sm);
  }

  .brand {
    min-width: 0;
    overflow: hidden;
  }

  .brand-word {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .scroll-cue {
    display: none;
  }

  .hero-meta {
    row-gap: var(--space-md);
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .mobile-book-bar {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 640px) {
  :root {
    --space-2xl: 5rem;
    --space-xl: 3.4rem;
  }

  .craft-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    gap: var(--space-md);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .price-category-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
