/* ==========================================================================
   BARSTYLEZ. Editorial homepage stylesheet (v2 overhaul)
   Single-author sheet. Pairs 1:1 with index.html.
   Direction: minimalist, editorial, dark, ALIVE. Photography breathes,
   red is a whisper, oversized outline index numerals + one thin red
   through-line are the signature hand. Content is VISIBLE BY DEFAULT.
   Palette: canvas #0B0B0D, surface #131317, text #F4F1EC, muted #A7A29B,
   red #E10E1B (CTA/active/whisper only), oxblood #7A0D14, hairline #262329.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --canvas: #0B0B0D;
  --surface: #131317;
  --surface-2: #17171C;
  --text: #F4F1EC;
  --muted: #A7A29B;
  --faint: #8A857D;
  --red: #E10E1B;
  --oxblood: #7A0D14;
  --hairline: #262329;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-accent: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 6vw, 4.5rem);
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-pad: clamp(4.5rem, 13vw, 9.5rem);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--red) 22%, transparent);
  transition: box-shadow 0.4s var(--ease), outline-offset 0.4s var(--ease);
}

.skip-link {
  position: absolute; left: 0; top: -60px;
  background: var(--text); color: var(--canvas);
  padding: 0.6rem 1rem; z-index: 200; border-radius: 0 0 var(--radius) 0;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Film grain overlay (fixed, non-interactive, ~4%) ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   REVEAL SYSTEM  (content is VISIBLE BY DEFAULT)
   Resting state = fully visible. Only when JS confirms it can animate does it
   add html.js-reveal, which applies a MOSTLY-visible from-state (opacity .55 +
   16px lift). IntersectionObserver then adds .is-in to settle it home. If JS
   never runs, no class is added, so everything is fully visible. If the
   observer somehow never fires, elements rest at opacity .55 (still readable),
   and a load fallback settles anything still in view. Never invisible.
   ========================================================================== */
.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js-reveal .reveal:not(.is-in) { opacity: 0.55; transform: translateY(16px); }
html.js-reveal .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  html.js-reveal .reveal:not(.is-in) { opacity: 1; transform: none; }
}

/* ==========================================================================
   LENIS smooth scroll  (weighted, premium; desktop non-touch only)
   Content is visible with or without Lenis. html.lenis avoids double-smoothing.
   ========================================================================== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
html.lenis { scroll-behavior: auto; }

/* ==========================================================================
   SCROLL-CRAFT MOTION  (JS opt-in; visible by default, cleans up at rest)
   Every helper class is added by motion.js only when motion is allowed, then
   removed on transitionend. No JS / reduced motion  ->  none of this applies.
   ========================================================================== */

/* Masked line reveal: the heading is the mask; the .ml-inner span is slid by
   inline styles from motion.js (inline beats the cascade, so no specificity
   fights). CSS only supplies the clip and block display. Cleaned up at rest. */
.ml-mask { overflow: hidden; }
.ml-mask .ml-inner { display: block; }

/* Image-grow + fade-up are fully inline-driven from motion.js. Nothing to
   declare here: the from/to states and transitions are set on element.style
   so they always win over the existing photo/hover rules, then stripped. */

/* Hero parallax replaces the ken-burns loop while active (no double transform). */
html.js-parallax .hero__slot { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .ml-mask { overflow: visible; }
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; z-index: 2; padding-block: var(--section-pad); }
.section--tight { padding-block: clamp(3rem, 8vw, 5.5rem); }

/* The single thin red through-line drawn between sections (signature motif) */
.thread {
  border: 0; height: 1px; margin: 0;
  width: 100%; max-width: var(--wrap);
  margin-inline: auto;
  background: var(--hairline);
  position: relative;
}
.thread::before {
  content: ""; position: absolute; top: 0; left: var(--gutter);
  width: 54px; height: 1px; background: var(--red);
}

/* ---------- Kicker: oversized outline index numeral + label (signature) ---------- */
.kicker {
  display: flex; align-items: baseline; gap: 0.85rem;
  margin: 0 0 1.4rem;
}
.kicker__idx {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 0.8;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1px var(--faint);
  text-stroke: 1px var(--faint);
}
.kicker__label {
  font-family: var(--font-accent);
  font-size: clamp(0.92rem, 2.6vw, 1.08rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  transform: translateY(-0.15em);
}
.kicker__label .on { color: var(--red); }

/* ---------- Headings ---------- */
.h-lead {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 460;
  font-size: clamp(2.1rem, 6.4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  max-width: 18ch;
  text-wrap: balance;
}
.h-lead em { font-style: italic; }
.lede {
  color: var(--muted);
  max-width: 54ch;
  margin-top: 1.4rem;
  font-size: clamp(1.02rem, 2.3vw, 1.16rem);
}

/* ---------- Editable placeholder slots (zero fabrication markers) ---------- */
.slot {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82em;
  color: var(--muted);
  background: rgba(122,13,20,0.06);
  border: 1px dashed color-mix(in srgb, var(--oxblood) 60%, var(--hairline));
  border-radius: 4px;
  padding: 0.05em 0.5em;
  line-height: 1.4;
  white-space: nowrap;
}
.slot--block { display: block; white-space: normal; padding: 0.6rem 0.8rem; margin-top: 0.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--oxblood); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--muted); }
.btn--block { width: 100%; }

/* Magnetic CTA (desktop pointer only) with underline draw */
.magnetic { position: relative; }
.magnetic .magnetic__label { position: relative; }
.magnetic .magnetic__label::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: currentColor; opacity: 0.7;
  transition: right 0.4s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .magnetic:hover .magnetic__label::after { right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .btn, .magnetic { transition: none; transform: none !important; }
  .magnetic .magnetic__label::after { transition: none; }
}

/* Quiet inline text link */
.tlink {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono); font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0.25rem;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.tlink .arw { color: var(--red); transition: transform 0.3s var(--ease); }
.tlink:hover { border-color: var(--muted); }
.tlink:hover .arw { transform: translateX(4px); }

/* ==========================================================================
   STICKY TOP BAR
   ========================================================================== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--canvas) 78%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 64px;
}
.brand { display: inline-flex; align-items: baseline; gap: 0.05em; line-height: 1; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.brand__word .st { color: var(--red); }
.brand__reg { font-size: 0.6rem; color: var(--muted); transform: translateY(-0.55em); font-family: var(--font-body); }

.topbar__actions { display: flex; align-items: center; gap: 0.6rem; }

.wa-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--red); color: #fff;
  font-weight: 600; font-size: 0.9rem;
  padding: 0.55rem 1rem; border-radius: 999px;
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.wa-pill:hover { background: var(--oxblood); }
.wa-pill svg { width: 1.05em; height: 1.05em; }
.wa-pill__text { display: none; }

.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--hairline); border-radius: 10px;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; display: block; width: 18px; height: 1.5px; background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.hamburger span { position: relative; }
.hamburger span::before { position: absolute; top: -6px; left: 0; }
.hamburger span::after { position: absolute; top: 6px; left: 0; }

.topbar__links { display: none; }

@media (min-width: 900px) {
  .wa-pill__text { display: inline; }
  .hamburger { display: none; }
  .topbar__links {
    display: flex; align-items: center; gap: 1.7rem;
    font-size: 0.9rem; color: var(--muted);
    font-family: var(--font-mono); letter-spacing: 0.02em;
  }
  .topbar__links a { transition: color 0.4s var(--ease); }
  .topbar__links a:hover { color: var(--text); }
}

/* ==========================================================================
   VISUAL OVERLAY NAV (mobile full-screen photo tiles)
   ========================================================================== */
.overlay-nav {
  position: fixed; inset: 0; z-index: 150;
  background: var(--canvas);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.overlay-nav[data-open="true"] { transform: translateY(0); }
.overlay-nav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem var(--gutter); border-bottom: 1px solid var(--hairline);
  position: sticky; top: 0; background: var(--canvas); z-index: 2;
}
.overlay-close {
  width: 44px; height: 44px; border: 1px solid var(--hairline); border-radius: 10px;
  background: transparent; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--text);
}
.overlay-nav__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  padding: 2px;
}
.overlay-tile {
  position: relative; aspect-ratio: 3 / 4;
  display: flex; align-items: flex-end;
  background: var(--surface);
  overflow: hidden;
}
.overlay-tile .photo-slot { position: absolute; inset: 0; border-radius: 0; }
.overlay-tile__label {
  position: relative; z-index: 2;
  font-family: var(--font-accent);
  font-size: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.9rem; line-height: 1;
  background: linear-gradient(0deg, rgba(11,11,13,0.85), transparent);
  width: 100%;
}
.overlay-nav__links {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  padding: 1.6rem var(--gutter) 2.4rem;
  font-family: var(--font-accent); font-size: 1.3rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.overlay-nav__links a:hover { color: var(--text); }

body[data-nav-open="true"] { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .overlay-nav { transition: none; }
}

/* ==========================================================================
   PHOTO SLOTS (clean, editorial: no boxy red frames)
   ========================================================================== */
.photo-slot {
  display: block;
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
}
.photo-slot__img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.photo-slot[data-ratio="16x9"] { aspect-ratio: 16 / 9; }
.photo-slot[data-ratio="4x3"] { aspect-ratio: 4 / 3; }
.photo-slot[data-ratio="1x1"] { aspect-ratio: 1 / 1; }
.photo-slot[data-ratio="3x4"] { aspect-ratio: 3 / 4; }

/* ==========================================================================
   HERO  (full-bleed, VISIBLE photo, restrained text, scrim only where text sits)
   ========================================================================== */
.hero { position: relative; z-index: 2; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__slot {
  position: absolute; inset: -3%;
  border-radius: 0;
  transform: scale(1.02);
  transform-origin: 62% 42%;
}
.hero__slot .photo-slot__img { object-position: 58% 54%; }
@media (prefers-reduced-motion: no-preference) {
  .hero__slot { animation: kenburns 30s var(--ease) both alternate infinite; }
}
@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to   { transform: scale(1.08) translate3d(-1.4%, -1%, 0); }
}
/* Scrim: a quiet overall wash for AA, then a deep bed anchored bottom-left
   under the text so the headline reads with authority against a busy frame. */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,11,13,0.42) 0%, rgba(11,11,13,0) 30%, rgba(11,11,13,0.55) 66%, rgba(11,11,13,0.96) 100%),
    linear-gradient(75deg, rgba(11,11,13,0.9) 0%, rgba(11,11,13,0.55) 34%, rgba(11,11,13,0) 62%),
    radial-gradient(130% 95% at 6% 108%, rgba(11,11,13,0.9) 0%, rgba(11,11,13,0) 58%);
}
.hero__inner {
  position: relative; z-index: 2;
  min-height: min(94vh, 880px);
  padding-block: clamp(5rem, 16vh, 9rem) clamp(2.8rem, 7vh, 4.5rem);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  /* full wrap width so the block anchors bottom-LEFT, not floating centre */
  max-width: var(--wrap);
}
@media (max-width: 899px) {
  /* clear the sticky bottom mobile bar so the credit line never collides */
  .hero__inner { padding-bottom: 6.5rem; }
}
.hero__tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 3.4vw, 1.4rem);
  letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.3rem;
}
.hero__tagline .st { color: var(--red); }
.hero h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.5rem, 8.5vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.024em;
  max-width: 15ch;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--text); }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.hero__cred {
  margin-top: 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem; letter-spacing: 0.03em;
  color: var(--muted);
  display: flex; align-items: center; gap: 0.7rem;
  max-width: 46ch; line-height: 1.5;
}
.hero__cred::before {
  content: ""; flex: none; width: 30px; height: 1px; background: var(--red);
}
.hero__cred strong { color: var(--text); font-weight: 400; }

/* ==========================================================================
   FOUNDER  (the human: real face, plainly-stated credential)
   ========================================================================== */
.founder__grid { display: grid; gap: clamp(2rem, 6vw, 4rem); margin-top: 0.5rem; }
.founder__portrait {
  position: relative;
  max-width: 420px;
}
.founder__portrait .photo-slot { aspect-ratio: 4 / 5; }
.founder__portrait figcaption {
  margin-top: 0.8rem;
  font-family: var(--font-mono); font-size: 0.74rem;
  letter-spacing: 0.04em; color: var(--faint); text-transform: uppercase;
}
.founder__body { align-self: center; }
.founder__quote {
  font-family: var(--font-display);
  font-weight: 460; font-style: italic;
  font-size: clamp(1.5rem, 4.4vw, 2.4rem);
  line-height: 1.22; letter-spacing: -0.01em;
  max-width: 20ch;
  margin-top: 0.4rem;
}
.founder__quote .on { color: var(--red); font-style: normal; }
.founder__text { color: var(--muted); margin-top: 1.5rem; max-width: 48ch; }
.founder__cred {
  margin-top: 1.8rem; padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 0.35rem;
  max-width: 46ch;
}
.founder__cred-line {
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.02em;
  color: var(--text);
}
.founder__cred-sub { color: var(--muted); font-size: 0.88rem; }
.founder__cred-line em { color: var(--red); font-style: normal; }

@media (min-width: 860px) {
  .founder__grid { grid-template-columns: 0.8fr 1.2fr; align-items: center; }
}

/* ==========================================================================
   EVENTS  (editorial alternating full-width / two-thirds rhythm)
   ========================================================================== */
.events { display: flex; flex-direction: column; gap: clamp(2.6rem, 7vw, 5.5rem); margin-top: clamp(2.5rem, 6vw, 4rem); }
.ev { display: block; position: relative; }
.ev__media { position: relative; overflow: hidden; }
.ev__media .photo-slot { aspect-ratio: 4 / 3; border-radius: var(--radius); }
.ev__media .photo-slot__img { transition: transform 1.2s var(--ease); transform: scale(1.001); }
@media (hover: hover) and (pointer: fine) {
  .ev:hover .ev__media .photo-slot__img { transform: scale(1.045); }
}
@media (prefers-reduced-motion: reduce) {
  .ev__media .photo-slot__img { transition: none; }
  .ev:hover .ev__media .photo-slot__img { transform: none; }
}
/* Caption reads as one tight editorial block: numeral + name on a line,
   the meta sits quietly beneath it. No more marooned far-right float. */
.ev__cap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 0.9rem; row-gap: 0.5rem;
  margin-top: 1.15rem;
}
.ev__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--faint); text-stroke: 1px var(--faint);
  transform: translateY(-0.02em);
}
.ev__name {
  font-family: var(--font-display); font-weight: 480;
  font-size: clamp(1.5rem, 5vw, 2.4rem); line-height: 1;
  letter-spacing: -0.015em;
  transition: color 0.4s var(--ease);
}
.ev__name .on { color: var(--red); }
.ev__meta {
  grid-column: 2; /* aligns under the name, past the numeral */
  font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.05em;
  color: var(--muted); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.ev__meta .arw { color: var(--red); transition: transform 0.3s var(--ease); }
.ev:hover .ev__meta .arw { transform: translateX(5px); }
.ev:hover .ev__name { color: var(--text); }

@media (min-width: 820px) {
  .ev__media .photo-slot { aspect-ratio: 16 / 9; }
  /* asymmetric two-thirds rows */
  .ev--right .ev__media { width: 68%; margin-left: auto; }
  .ev--left  .ev__media { width: 68%; margin-right: auto; }
  .ev--full .ev__media .photo-slot { aspect-ratio: 21 / 9; }
}

/* ==========================================================================
   SERVICES  (sticky selector, restrained)
   ========================================================================== */
.services__layout { display: grid; gap: 2rem; margin-top: clamp(2.2rem, 5vw, 3.2rem); }
.services__list { display: flex; flex-direction: column; }
.service-tab {
  display: flex; align-items: baseline; gap: 1rem;
  width: 100%; text-align: left;
  padding: 1.15rem 0.2rem;
  border: none; background: transparent;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  transition: color 0.4s var(--ease), padding-left 0.4s var(--ease);
}
.services__list .service-tab:last-child { border-bottom: 1px solid var(--hairline); }
.service-tab__idx {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--faint);
  min-width: 1.8em;
}
.service-tab__name {
  font-family: var(--font-display); font-weight: 460;
  font-size: clamp(1.35rem, 4.5vw, 2rem); line-height: 1.1;
  letter-spacing: -0.012em;
}
.service-tab[aria-selected="true"] { color: var(--text); padding-left: 1rem; }
.service-tab[aria-selected="true"] .service-tab__idx { color: var(--red); }
@media (prefers-reduced-motion: reduce) {
  .service-tab { transition: color 0.2s; }
  .service-tab[aria-selected="true"] { padding-left: 0.2rem; }
}

.services__stage { position: relative; }
.service-panel { display: none; }
.service-panel[data-active="true"] { display: block; animation: fade 0.45s var(--ease) both; }
@media (prefers-reduced-motion: reduce) {
  .service-panel[data-active="true"] { animation: none; }
}
@keyframes fade { from { opacity: 0.35; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.service-panel .photo-slot { margin-bottom: 1.3rem; aspect-ratio: 4 / 3; }
.service-panel__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 4.5vw, 2.1rem); margin-bottom: 0.6rem;
}
.service-panel__desc { color: var(--muted); max-width: 48ch; }
.service-panel__link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1.3rem;
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--text);
  border-bottom: 1px solid var(--hairline); padding-bottom: 0.3rem;
  transition: border-color 0.25s var(--ease);
}
.service-panel__link .arw { color: var(--red); }
.service-panel__link:hover { border-color: var(--muted); }

@media (min-width: 880px) {
  .services__layout { grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 6vw, 5rem); align-items: start; }
  .services__stage { position: sticky; top: 96px; }
}

/* ==========================================================================
   BAR SPECS  (the mobile bar unit, mono labels, minimalist)
   ========================================================================== */
.specs { margin: 2rem 0 0; display: flex; flex-direction: column; }
.specs__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.85rem 0; border-top: 1px solid var(--hairline);
}
.specs__row:last-child { border-bottom: 1px solid var(--hairline); }
.specs__row dt {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--faint);
}
.specs__row dd {
  margin: 0; font-family: var(--font-mono); font-size: 0.95rem;
  color: var(--text); text-align: right;
}
.specs__cta { margin-top: 2rem; }

/* ==========================================================================
   PACKAGES  (from-$ slots, quieter cards)
   ========================================================================== */
.packages__grid { display: grid; gap: 1px; margin-top: clamp(2.2rem, 5vw, 3.2rem); grid-template-columns: 1fr; background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.pkg {
  position: relative; z-index: 2;
  background: var(--canvas);
  padding: 2.4rem 1.8rem;
  display: flex; flex-direction: column;
}
.pkg--featured { background: var(--surface); }
.pkg__flag {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red);
}
.pkg__name {
  font-family: var(--font-accent); font-size: 1.8rem; letter-spacing: 0.05em;
  text-transform: uppercase; line-height: 1;
}
.pkg__for { color: var(--muted); font-size: 0.9rem; margin-top: 0.4rem; }
.pkg__price {
  margin: 1.3rem 0 1.1rem; display: flex; align-items: baseline; gap: 0.4rem;
  font-family: var(--font-mono);
}
.pkg__price-from { color: var(--faint); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.pkg__list { display: flex; flex-direction: column; gap: 0.65rem; margin: 0.4rem 0 1.6rem; }
.pkg__list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.94rem; color: var(--text); }
.pkg__list svg { width: 16px; height: 16px; flex: none; color: var(--oxblood); margin-top: 4px; }
.pkg .btn { margin-top: auto; }

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

/* ==========================================================================
   SOCIAL PROOF  (real reviews only, reserved layout)
   ========================================================================== */
/* Honesty as a design move: one reserved statement, radical air, no dead
   placeholder cards. The measure is wide, the note quiet, a hairline holds
   the space where quotes will live. */
.proof__reserve { max-width: 60ch; }
.proof__reserve .h-lead { max-width: 20ch; }
.proof__reserve-note {
  color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.1rem);
  max-width: 56ch; margin-top: 1.5rem; line-height: 1.6;
  padding-top: 1.5rem; border-top: 1px solid var(--hairline);
}
.proof__reply {
  margin-top: 1.6rem; color: var(--faint); font-size: 0.9rem;
  font-family: var(--font-mono); letter-spacing: 0.02em;
}

/* ==========================================================================
   MINI GALLERY strip
   ========================================================================== */
.gallery-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: 74%;
  gap: 0.7rem; margin-top: clamp(2rem, 5vw, 3rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.6rem;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--hairline); border-radius: 10px; }
.gallery-strip .photo-slot { scroll-snap-align: start; aspect-ratio: 4 / 3; }
.gallery-cta { margin-top: 1.6rem; }
@media (min-width: 760px) { .gallery-strip { grid-auto-columns: 32%; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { margin-top: clamp(2rem, 5vw, 3rem); border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 0.2rem;
  font-family: var(--font-display); font-weight: 460; font-size: clamp(1.08rem, 3vw, 1.35rem);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .sign {
  flex: none; width: 26px; height: 26px; position: relative;
  border: 1px solid var(--hairline); border-radius: 50%;
}
.faq summary .sign::before, .faq summary .sign::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--red);
  transform: translate(-50%, -50%);
}
.faq summary .sign::before { width: 11px; height: 1.5px; }
.faq summary .sign::after { width: 1.5px; height: 11px; transition: transform 0.3s var(--ease); }
.faq details[open] summary .sign::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__answer { padding: 0 0.2rem 1.5rem; color: var(--muted); max-width: 68ch; }
.faq__answer a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .faq summary .sign::after { transition: none; }
}

/* ==========================================================================
   FINAL CTA band + FOOTER
   ========================================================================== */
.final-cta {
  position: relative; z-index: 2; overflow: hidden;
  border-top: 1px solid var(--hairline);
}
.final-cta__inner {
  padding-block: clamp(4.5rem, 12vw, 7.5rem);
  text-align: center; position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.final-cta h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.1rem, 8vw, 4rem); line-height: 1.02; letter-spacing: -0.02em;
  max-width: 17ch; margin-inline: auto; margin-top: 1.2rem;
}
.final-cta__sub { color: var(--muted); margin-top: 1.1rem; }
.final-cta__btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.final-cta__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 50% 122%, rgba(122,13,20,0.35), transparent 70%);
}

.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--hairline);
  padding-block: 3.5rem 7rem;
  color: var(--muted); font-size: 0.92rem;
}
.footer__top { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer__brand .brand__word { font-size: 1.8rem; }
.footer__tag {
  font-family: var(--font-accent); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.7rem; font-size: 0.9rem;
}
.footer__col h4 {
  font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase;
  font-size: 0.72rem; color: var(--faint); margin-bottom: 1rem; font-weight: 400;
}
.footer__col li { margin-bottom: 0.55rem; }
.footer__col a:hover { color: var(--text); }
.footer__contact div { margin-bottom: 0.7rem; }
.footer__contact strong { color: var(--faint); font-weight: 400; display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); }
.footer__contact a:hover { color: var(--text); }
.footer__socials { display: flex; gap: 0.7rem; margin-top: 0.7rem; }
.footer__socials a {
  width: 40px; height: 40px; border: 1px solid var(--hairline); border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; color: var(--muted);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer__socials a svg { width: 18px; height: 18px; }
.footer__socials a:hover { color: var(--text); border-color: var(--muted); }
.footer__bar {
  margin-top: 2.8rem; padding-top: 1.5rem; border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.02em; color: var(--faint);
}
.footer__credit a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
@media (min-width: 760px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.6rem; }
}

/* ==========================================================================
   FLOATING WHATSAPP + BOTTOM STICKY MOBILE BAR
   ========================================================================== */
.wa-float {
  position: fixed; z-index: 90; right: 16px; bottom: 78px;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.6);
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.wa-float:hover { background: var(--oxblood); transform: translateY(-2px); }
.wa-float svg { width: 26px; height: 26px; }

.mobile-bar {
  position: fixed; z-index: 95; left: 0; right: 0; bottom: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: color-mix(in srgb, var(--canvas) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 0.55rem 0.4rem 0.7rem; color: var(--muted); font-size: 0.72rem;
  font-family: var(--font-accent); letter-spacing: 0.1em; text-transform: uppercase;
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a.is-wa { color: var(--red); }
.mobile-bar a:active { color: var(--text); }
@media (min-width: 900px) {
  .mobile-bar { display: none; }
  .wa-float { bottom: 22px; }
}

/* ==========================================================================
   MISC
   ========================================================================== */
.divider-note {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted);
  border: 1px dashed var(--hairline); border-radius: var(--radius);
  padding: 0.8rem 1rem; margin-top: 1.6rem;
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.divider-note strong { color: var(--red); font-weight: 600; }

.section-head { max-width: 62ch; }
.section-head--split { display: grid; gap: 1.2rem; }
@media (min-width: 820px) {
  .section-head--split {
    grid-template-columns: 1.15fr 0.85fr; align-items: end; max-width: none;
  }
  .section-head--split .lede { margin-top: 0; }
}
