/* ══════════════════════════════════════════
   SECTION SCROLL BUTTON
══════════════════════════════════════════ */
.section-scroll-btn {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.section-scroll-btn:hover {
  border-color: var(--red);
  background: rgba(230, 57, 70, 0.14);
  color: var(--white);
}
.section-scroll-btn svg {
  width: 18px;
  height: 18px;
  animation: scroll-btn-bounce 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
/* Hero variant — dark background for light hero */
#hero .section-scroll-btn {
  border-color: rgba(10, 22, 40, 0.22);
  background: rgba(10, 22, 40, 0.06);
  color: rgba(10, 22, 40, 0.5);
}
#hero .section-scroll-btn:hover {
  border-color: #DC2626;
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
}
@keyframes scroll-btn-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

/* ══════════════════════════════════════════
   TICKER STRIP
══════════════════════════════════════════ */
#ticker {
  background: var(--red);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  /* No section-texture — ticker is solid red */
  background-image: none;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  flex-shrink: 0;
}
#ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0 1.8rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.ticker-sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.55rem;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Brand bridge ── */
.brand-bridge {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, rgba(220,38,38,0.35) 60%, transparent 100%);
  background-image: none;
}

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
/* ── Red marquee band (replaces stats) ── */
#marquee-band {
  background: var(--red);
  height: 52px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.marquee-band-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: band-scroll 28s linear infinite;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
}
@keyframes band-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.band-sep { opacity: 0.6; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#about {
  background: var(--surface);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
  overflow: hidden;
}
#about::before {
  content: none;
}
/* Ghost typography */
#about::after {
  content: 'ABOUT';
  position: absolute;
  bottom: -0.1em; left: clamp(1rem, 3vw, 4rem);
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 1;
  color: var(--white);
  opacity: 0.026;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 1.5rem;
}

/* ── Image frame — decorative wrapper ── */
.about-img-frame {
  position: relative;
}
/* Large red offset block — sits behind and below-right of image */
.about-img-frame::after {
  content: '';
  position: absolute;
  top: 16px; right: -16px; left: 16px; bottom: -16px;
  background: linear-gradient(135deg, rgba(220,38,38,0.16) 0%, rgba(220,38,38,0.06) 100%);
  border-radius: var(--r-md);
  z-index: 0;
}
/* Thin white outline frame offset top-left */
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: 16px; bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-md);
  pointer-events: none;
  z-index: 0;
}
/* About image — landscape aspect ratio */
.about-img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 64px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0px, var(--red) 10px,
    transparent 10px, transparent 22px,
    #0A1628 22px, #0A1628 32px,
    transparent 32px, transparent 44px
  );
  z-index: 2;
  pointer-events: none;
}
.about-img-wrap::after { display: none; }
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-left: clamp(1rem, 2vw, 2rem);
  border-left: 3px solid var(--red);
}
.about-content .sec-header { margin-bottom: 0; }
.about-body {
  font-size: var(--t-body);
  color: var(--text-sub);
  line-height: 1.8;
  max-width: 52ch;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.about-stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
  display: block;
}
.about-stat-label {
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
  display: block;
}
.about-walk-in {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--t-small);
  font-weight: 700;
  color: var(--c-open);
  letter-spacing: 0.04em;
}
.about-walk-in svg { flex-shrink: 0; }

/* Benefit rows */
.about-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.about-benefit {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-sub);
  letter-spacing: 0.02em;
}
.benefit-icon { color: var(--red); flex-shrink: 0; }

/* Float card over photo */
.about-float-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 12px 16px;
  z-index: 4;
}
.about-float-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}
.about-float-sub {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#services {
  background: var(--surface-alt);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
  overflow: hidden;
}
/* Ghost typography */
#services::after {
  content: 'SERVICES';
  position: absolute;
  bottom: -0.08em; right: clamp(0.5rem, 2vw, 3rem);
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 1;
  color: var(--white);
  opacity: 0.024;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--elevated);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--red);
  border-radius: var(--r-md);
  padding: clamp(1.6rem, 2.5vw, 2.4rem);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--dur-med) var(--ease-out),
              background var(--dur-med),
              box-shadow var(--dur-med);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  background: repeating-linear-gradient(
    -45deg,
    rgba(220, 38, 38, 0.18) 0, rgba(220, 38, 38, 0.18) 5px,
    transparent 5px, transparent 14px
  );
  pointer-events: none;
}
.service-card:hover {
  background: var(--elevated-hi);
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(220, 38, 38, 0.3);
}
.service-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(220, 38, 38, 0.1), transparent 70%);
  opacity: 0.35;
  transition: opacity var(--dur-med);
  pointer-events: none;
}
.service-card:hover .service-glow { opacity: 1; }
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.service-icon {
  width: clamp(26px, 2.5vw, 36px);
  height: clamp(26px, 2.5vw, 36px);
  color: var(--red);
  display: block;
  flex-shrink: 0;
}
.service-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}
.service-desc {
  font-size: var(--t-small);
  color: var(--muted);
  line-height: 1.65;
}
/* sec-rule defined in base.css */

/* ── FSJ Column Menu ── */
.svc-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}
.svc-col {
  padding: 2.5rem 2rem 3rem;
  border-right: 1px solid var(--surface-border);
  position: relative;
  transition: transform 350ms var(--ease-out-expo), background 350ms, box-shadow 350ms;
}
.svc-col:last-child { border-right: none; }
.svc-col:hover {
  transform: translateY(-6px);
  background: rgba(230, 57, 70, 0.04);
  box-shadow: 0 20px 40px rgba(230, 57, 70, 0.08);
}

.svc-icon {
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}

/* Left border slide-in on hover */
.svc-col::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease-out);
  pointer-events: none;
}
.svc-col:hover::before { transform: scaleY(1); }
.svc-col:hover .svc-col-name {
  color: var(--red);
  transition: color 0.25s ease;
}

.svc-col-n {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--red);
  letter-spacing: 0.22em;
  margin-bottom: 0.75rem;
}
.svc-col-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.svc-col-rule {
  width: 24px; height: 2px;
  background: var(--red);
  margin-bottom: 1.5rem;
}
.svc-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.svc-list li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-left: 1rem;
  position: relative;
  transition: color var(--dur-fast), padding-left var(--dur-fast);
  cursor: default;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.45;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}
.svc-list li:hover {
  color: var(--white);
  padding-left: 1.25rem;
}
.svc-list li:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.3);
}

/* ══════════════════════════════════════════
   BUILD YOUR CUT (BYC) — Whitehorse-format wizard
══════════════════════════════════════════ */
.cut-explorer {
  max-width: 860px;
  margin: clamp(3.5rem, 7vh, 6rem) auto 0;
  background: var(--elevated);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--red);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cut-explorer::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  background: repeating-linear-gradient(-45deg, rgba(220,38,38,0.14) 0, rgba(220,38,38,0.14) 5px, transparent 5px, transparent 14px);
  pointer-events: none;
}
.byc-header {
  text-align: center;
  margin-bottom: 2rem;
}
.byc-eyebrow {
  display: inline-block;
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.byc-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}
.byc-sub {
  font-size: var(--t-small);
  color: var(--muted);
  margin-top: 0.4rem;
}
/* Step indicators */
.byc-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.byc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.byc-step-n {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 2px solid var(--border-subtle);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-med), border-color var(--dur-med), color var(--dur-med);
}
.byc-step span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--dur-med);
}
.byc-step.active .byc-step-n {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.byc-step.active span { color: var(--white); }
.byc-step.done .byc-step-n {
  background: transparent;
  border-color: var(--red);
  color: var(--red);
}
.byc-step-sep {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  min-width: 1.5rem;
  max-width: 4rem;
  margin-bottom: 1.4rem;
}
/* Panels */
.byc-panel { display: none; }
.byc-panel.active { display: block; }
.byc-q {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.byc-hint {
  font-size: var(--t-small);
  color: var(--muted);
  margin-bottom: 1.8rem;
}
/* Fade grid — visual bar selectors */
.byc-fade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.byc-fade-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 0.75rem;
  background: var(--surface-alt);
  border: 2px solid var(--border-subtle);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.byc-fade-opt:hover {
  border-color: rgba(220,38,38,0.5);
  transform: translateY(-2px);
}
.byc-fade-opt.selected {
  border-color: var(--red);
  background: rgba(220,38,38,0.08);
}
.byc-fade-bar {
  width: 32px;
  height: 60px;
  background: linear-gradient(to top, var(--red) var(--fade-h), var(--border-subtle) var(--fade-h));
  border-radius: 3px;
  transition: background var(--dur-med);
}
.byc-fade-opt.selected .byc-fade-bar { background: linear-gradient(to top, var(--red) var(--fade-h), rgba(220,38,38,0.15) var(--fade-h)); }
.byc-fade-lbl {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-align: center;
}
.byc-fade-desc {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
/* Slider */
.byc-slider-wrap { margin-bottom: 2rem; }
.byc-slider-val {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--red);
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
  min-height: 1.2em;
  transition: color 0.2s;
}
.byc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.byc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 2px 12px rgba(220,38,38,0.5);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.byc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.byc-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.byc-slider-labels span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Add-on grid */
.byc-addon-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.byc-addon-opt {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.4rem 1rem;
  background: var(--surface-alt);
  border: 2px solid var(--border-subtle);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
  color: var(--muted);
}
.byc-addon-opt:hover { border-color: rgba(220,38,38,0.5); transform: translateY(-2px); }
.byc-addon-opt.selected { border-color: var(--red); background: rgba(220,38,38,0.08); color: var(--red); }
.byc-addon-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-sub);
}
.byc-addon-opt.selected .byc-addon-name { color: var(--red); }
/* Nav buttons */
.byc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}
.byc-next, .byc-back {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
  min-height: 44px;
}
.byc-next {
  background: var(--red);
  color: var(--white);
  border: none;
}
.byc-next:disabled { background: var(--border-subtle); color: var(--muted); cursor: not-allowed; }
.byc-next:not(:disabled):hover { background: var(--red-dark); transform: translateY(-1px); }
.byc-back {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border-subtle);
}
.byc-back:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }
/* Result card */
.byc-result-card {
  text-align: center;
  padding: 1rem 0;
}
.byc-result-label {
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.byc-result-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.byc-result-desc {
  font-size: var(--t-body);
  color: var(--text-sub);
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 auto 1rem;
}
.byc-result-addons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  min-height: 0.5rem;
}
.byc-addon-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(220,38,38,0.4);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
}
.byc-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.byc-copy {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--surface-alt); color: var(--muted);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.1rem; border-radius: var(--r-sm); cursor: pointer; min-height: 44px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.byc-copy:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.byc-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--red); color: var(--white);
  border: none; padding: 0.6rem 1.4rem; border-radius: var(--r-sm);
  min-height: 44px; text-decoration: none;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.byc-call:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
#gallery {
  background: var(--surface-alt);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
#gallery .sec-header {
  padding: 0 clamp(1.5rem, 5vw, 6rem);
}

/* ══════════════════════════════════════════
   TRANSFORMATIONS
══════════════════════════════════════════ */
#transformations {
  background: var(--surface);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
}
.ba-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.ba-logo-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(220, 38, 38, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(8, 8, 16, 0.6);
}
.ba-logo-divider img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 3/4;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  border: 1px solid rgba(220,38,38,0.2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  transition: box-shadow 0.4s;
}
.ba-slider:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(220,38,38,0.3);
}
.ba-after { position: absolute; inset: 0; }
.ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  transition: none !important;
}
.ba-before img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--red);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(220,38,38,0.5);
}
.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(220,38,38,0.6);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.ba-label {
  position: absolute;
  bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,0.9);
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out), color 0.4s ease;
  z-index: 5;
  pointer-events: none;
}
.ba-slider.ba-revealed .ba-label {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.ba-label-before {
  left: 1.5rem;
}
.ba-label-after {
  right: 1.5rem;
  text-align: right;
}

/* Side tint overlays — add depth behind labels */
.ba-before::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.ba-after::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(10,22,40,0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* GSAP controls clip-path on the div only — img must not have its own clip-path */
.ba-slider .ba-before {
  transition: none !important;
}
.ba-slider .ba-before img {
  transition: none !important;
  clip-path: none !important;
}

/* Label pulse when handle reaches an extreme */
@keyframes ba-label-pulse {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  35%  { opacity: 1; transform: translateY(-4px) scale(1.15); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.ba-label.is-dominant {
  color: var(--red);
  animation: ba-label-pulse 0.45s ease-out forwards;
}

/* Handle glow pulse at extremes */
@keyframes ba-handle-glow {
  0%   { box-shadow: 0 4px 20px rgba(220,38,38,0.6); }
  50%  { box-shadow: 0 4px 40px rgba(220,38,38,1), 0 0 0 8px rgba(220,38,38,0.2); }
  100% { box-shadow: 0 4px 20px rgba(220,38,38,0.6); }
}
.ba-slider.at-extreme .ba-handle-btn {
  animation: ba-handle-glow 0.5s ease-out;
}

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
#reviews {
  background: var(--surface-alt);
  padding: var(--section-pad) 0;
  overflow: hidden;
}
/* Ghost typography */
#reviews::after {
  content: 'REVIEWS';
  position: absolute;
  bottom: -0.08em; right: clamp(0.5rem, 2vw, 3rem);
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 1;
  color: var(--white);
  opacity: 0.024;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}
#reviews .sec-header {
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  position: relative;
  z-index: 1;
}
/* review-card styles are in reviews.css */

/* ══════════════════════════════════════════
   LOCATION
══════════════════════════════════════════ */
#location {
  background: var(--surface);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 6rem);
  overflow: hidden;
}
#location::after {
  content: 'FIND US';
  position: absolute;
  bottom: -0.08em; right: clamp(0.5rem, 2vw, 3rem);
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 1;
  color: var(--white);
  opacity: 0.024;
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.location-map iframe {
  width: 100%;
  height: clamp(300px, 40vh, 480px);
  border: none;
  border-radius: var(--r-lg);
  filter: grayscale(0.3) contrast(1.05) brightness(0.85);
  display: block;
  border: 1px solid var(--border-subtle);
}
.map-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: clamp(300px, 40vh, 480px);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-subtle);
  background: var(--surface-alt);
  text-align: center;
  padding: 2rem;
}
.map-fallback p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}
.map-fallback.visible {
  display: flex;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.location-address h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
  color: var(--white);
}
.location-address p {
  color: var(--muted);
  font-size: var(--t-small);
}
.location-phone a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color var(--dur-fast);
}
.location-phone a:hover { color: var(--red); }
.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-sm);
  font-size: var(--t-small);
  color: var(--muted);
}
.hours-row.today {
  background: rgba(230, 57, 70, 0.1);
  color: var(--red);
  font-weight: 700;
  border-left: 2px solid var(--red);
}
.hours-row:hover { background: var(--red-dim); transition: background 150ms; }
.contact-status { margin-top: 0.25rem; }
.walk-in-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-open);
}

/* Location info rows + dual buttons */
.location-info-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.loc-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-sub);
}
.loc-icon { color: var(--red); flex-shrink: 0; }
.loc-phone {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.loc-phone:hover { color: var(--red); }
.loc-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
#cta {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 14vh, 11rem) clamp(1.5rem, 5vw, 6rem);
  text-align: center;
  background-image: none; /* no texture — has real bg image */
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/background.png');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  will-change: transform;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 5, 8, 0.94) 0%,
    rgba(6, 12, 20, 0.88) 50%,
    rgba(3, 5, 8, 0.94) 100%
  );
}
/* Red accent at top of CTA */
#cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red) 40%, var(--red) 60%, transparent);
  z-index: 3;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.cta-sub {
  font-size: var(--t-body);
  color: var(--text-sub);
  letter-spacing: 0.04em;
}
.cta-walk-in {
  font-size: var(--t-label);
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  background-image: none;
}
.footer-ghost {
  position: absolute;
  bottom: -0.1em;
  left: -0.02em;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem);
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem clamp(1.5rem, 5vw, 6rem) 3rem;
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer-col-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-col p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 6rem);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ══════════════════════════════════════════
   THE BLADE — straight razor ritual section
══════════════════════════════════════════ */
#blade {
  background: var(--surface-alt);
  padding: clamp(5rem, 10vh, 9rem) 0;
  position: relative;
  overflow: hidden;
}
/* Large ghost text background */
#blade::before {
  content: 'SHARP';
  position: absolute;
  bottom: -0.12em; right: -0.06em;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 1;
  color: var(--white);
  opacity: 0.018;
  letter-spacing: 0.04em;
  pointer-events: none;
  user-select: none;
}
/* Top red accent line */
#blade::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 70%);
}

.blade-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.blade-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.blade-rule {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(220, 38, 38, 0.5);
}
.blade-overline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  flex-shrink: 0;
}

.blade-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}
.blade-title-red {
  color: var(--red);
  font-style: normal;
}

.blade-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 4rem;
}

/* Three ritual steps */
.blade-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
}
.blade-step {
  flex: 1;
  max-width: 240px;
  padding: 0 1.5rem;
  text-align: center;
}
.blade-step-div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  flex-shrink: 0;
  padding-top: 1.5rem;
}
.blade-step-div svg {
  opacity: 0.6;
  height: 80px;
  width: 32px;
}
.blade-step-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
  border-radius: var(--r-sm);
  background: var(--elevated);
}
.blade-step-icon svg {
  width: 26px; height: 26px;
  color: var(--red);
}
.blade-step-n {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(220, 38, 38, 0.6);
  margin-bottom: 0.6rem;
}
.blade-step-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.blade-step-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

.blade-cta {
  display: flex;
  justify-content: center;
}
.blade-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

/* ══════════════════════════════════════════
   SECTION BACKGROUND IMAGES
   Replaces flat surface colours with textured dark images.
   A dark gradient overlay keeps all text/icons legible.
══════════════════════════════════════════ */
#about,
#transformations,
#location {
  background-image:
    linear-gradient(rgba(8, 8, 16, 0.78), rgba(8, 8, 16, 0.78)),
    url('../assets/images/texture-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#services,
#reviews,
#blade,
#gallery {
  background-image:
    linear-gradient(rgba(14, 14, 28, 0.78), rgba(14, 14, 28, 0.78)),
    url('../assets/images/dark-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
