/* =========================================================
   AESTHETIC BARBER STUDIO — styles.css
   Dark craft base · champagne gold accent · neon lounge signature
   Mobile-first · CSS Grid + Flexbox · custom properties
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Base — neutral near-black, no color cast */
  --void:        #0a0a0b;
  --ink:         #101012;
  --surface:     #161618;
  --surface-2:   #1e1e21;
  --line:        rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.18);

  /* Accent — titanium silver (mapped onto the old "gold" names) */
  --gold:        #d8d8dd;
  --gold-bright: #ffffff;
  --gold-deep:   #9a9aa2;

  /* "neon" names kept but neutralised to a silver sheen (no rainbow) */
  --neon-violet:  #c9c9d0;
  --neon-magenta: #ededf1;
  --neon-cyan:    #b6b6be;
  --neon-grad: linear-gradient(100deg, #ededf1, #c4c4cc 55%, #f4f4f7);

  /* Text */
  --cream: #ececee;
  --fog:   #a2a2ab;   /* neutral gray */
  --fog-dim: #6c6c74;

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Sora", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  /* Rhythm */
  --wrap: 1180px;
  --gutter: clamp(1.15rem, 5vw, 2.5rem);
  --section-pad: clamp(4.5rem, 11vw, 9rem);
  --radius: 18px;
  --radius-lg: 26px;

  /* Shadows — neutral depth, no coloured glow */
  --shadow-1: 0 2px 8px rgba(0,0,0,.4);
  --shadow-2: 0 18px 40px -18px rgba(0,0,0,.72), 0 6px 16px -8px rgba(0,0,0,.55);
  --shadow-gold: 0 20px 55px -22px rgba(0,0,0,.6);
  --shadow-neon: 0 24px 70px -26px rgba(0,0,0,.6);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--void);
  color: var(--fog);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .1px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle neutral ambience anchored to the page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 45% at 82% -5%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(55% 45% at 50% 108%, rgba(255,255,255,.03), transparent 60%);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: #fff; color: #101012; }

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

/* keep content above ambient fog */
main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ---------- Typography helpers ---------- */
h1, h2, h3 { font-family: var(--font-display); color: var(--cream); line-height: 1.03; letter-spacing: -.02em; font-weight: 700; }
em {
  font-style: normal;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.28);
  text-underline-offset: 7px;
  text-decoration-thickness: 2px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--fog-dim);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow .dot {
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--gold);
  box-shadow: none;
}
.eyebrow-neon { color: var(--fog-dim); }
.eyebrow-neon .dot {
  background: var(--gold);
  box-shadow: none;
  animation: none;
}

.section-title {
  font-size: clamp(2rem, 6.4vw, 3.6rem);
  margin: .55rem 0 0;
  font-weight: 800;
}
.section-lede {
  max-width: 52ch;
  margin-top: 1.1rem;
  color: var(--fog);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .82rem; --pad-x: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn-lg { --pad-y: 1.05rem; --pad-x: 1.9rem; font-size: .86rem; }
.btn-sm { --pad-y: .6rem; --pad-x: 1.1rem; font-size: .74rem; }

.btn-gold {
  background: linear-gradient(180deg, #ffffff, var(--gold));
  color: #101012;
  font-weight: 700;
  box-shadow: var(--shadow-1);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -20px rgba(0,0,0,.7); }

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--cream);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; transform: translateY(-3px); }

.btn-wa {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #04140b;
  font-weight: 700;
  box-shadow: 0 20px 50px -20px rgba(37,211,102,.55);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 28px 64px -20px rgba(37,211,102,.7); }
.btn-wa[disabled] { filter: grayscale(.55) brightness(.8); cursor: not-allowed; transform: none; box-shadow: none; }
.wa-icon { flex: none; }

/* Focus visibility (quality floor) */
:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; border-radius: 6px; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--neon-grad);
  z-index: 200;
  box-shadow: none;
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,10,13,.72);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 11px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(180deg, var(--surface-2), var(--ink));
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.12), var(--shadow-1);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--cream); letter-spacing: .01em; }
.brand-sub { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; color: var(--fog-dim); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav-link {
  padding: .55rem .85rem; border-radius: 100px;
  font-size: .9rem; color: var(--fog);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-link:hover { color: var(--cream); background: rgba(255,255,255,.05); }
.nav-cta { margin-left: .5rem; }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; border-radius: 12px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease); }

/* ===================================================
   HERO
   =================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,13,.55) 0%, rgba(11,10,13,.15) 30%, rgba(11,10,13,.72) 72%, var(--void) 100%),
    linear-gradient(90deg, rgba(11,10,13,.78), rgba(11,10,13,.1) 65%);
}
.hero-glow {
  position: absolute; inset: 0; mix-blend-mode: screen; opacity: .3;
  background: radial-gradient(45% 40% at 78% 28%, rgba(255,255,255,.18), transparent 62%);
}

.hero-content { position: relative; z-index: 2; padding-top: 96px; padding-bottom: clamp(5.5rem, 17vh, 9.5rem); }
.hero-title {
  font-size: clamp(2.7rem, 11vw, 6.6rem);
  font-weight: 800;
  margin: 1.1rem 0 0;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.hero-lede { max-width: 46ch; margin-top: 1.4rem; color: #d7d1dd; font-size: clamp(1.02rem, 2.6vw, 1.22rem); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero-meta {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.1rem;
  margin-top: 2.4rem;
  font-family: var(--font-mono); font-size: .78rem; color: var(--fog);
}
.hero-meta .k { color: var(--gold); margin-right: .4rem; }
.hero-meta .divider { width: 1px; height: 16px; background: var(--line-strong); }
.hero-meta .rating { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta .stars { color: #fff; letter-spacing: 1px; }
.hero-meta .rating strong { color: var(--cream); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .55rem;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--fog-dim);
}
.scroll-line { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-bright); animation: scrolldrop 2s ease-in-out infinite; }
@keyframes scrolldrop { 0% { top: -50%; } 100% { top: 100%; } }

/* ===================================================
   SECTION BASE
   =================================================== */
.section { padding-block: var(--section-pad); position: relative; }
.section-head { max-width: 60ch; margin-bottom: clamp(2.4rem, 6vw, 4rem); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===================================================
   EXPERIENCE
   =================================================== */
.exp-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.exp-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-2);
  aspect-ratio: 4 / 3;
}
.exp-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .9s var(--ease); }
.exp-card:hover img { transform: scale(1.06); }
.exp-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.2rem 1.2rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(10,10,11,.92));
  display: flex; flex-direction: column; gap: .45rem;
}
.exp-card figcaption p { color: #dcdce0; font-size: .92rem; line-height: 1.4; }
.tag {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,.35); padding: .28rem .6rem; border-radius: 100px;
  background: rgba(255,255,255,.08);
}
.tag-neon { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); box-shadow: none; }
.exp-card--neon { border-color: var(--line); box-shadow: var(--shadow-2); }

.perks {
  list-style: none; margin-top: 2rem;
  display: grid; grid-template-columns: 1fr; gap: .2rem;
  border-top: 1px solid var(--line);
}
.perks li {
  display: flex; gap: 1rem; align-items: baseline;
  padding: 1.15rem .2rem; border-bottom: 1px solid var(--line);
  color: var(--fog); font-size: .98rem;
}
.perk-k { font-family: var(--font-mono); color: var(--gold); font-size: .78rem; letter-spacing: .1em; flex: none; }

/* ===================================================
   MASTER
   =================================================== */
.master-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 5vw, 3.5rem); align-items: center; }
.master-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-2); aspect-ratio: 4 / 5; }
.master-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 1s var(--ease); }
.master-media:hover img { transform: scale(1.05); }
.master-copy p { margin-top: 1.2rem; max-width: 50ch; }
.pull-quote {
  margin: 1.8rem 0; padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-size: clamp(1.2rem, 3.4vw, 1.6rem);
  color: var(--cream); line-height: 1.3; font-weight: 500;
}
.master-copy .btn { margin-top: .5rem; }

/* ===================================================
   SERVICES
   =================================================== */
.service-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.service-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.3rem;
  background:
    linear-gradient(180deg, var(--surface), var(--ink));
  box-shadow: var(--shadow-1);
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(255,255,255,.06), transparent 55%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.35); box-shadow: var(--shadow-2); }
.service-card:hover::after { opacity: 1; }
.service-card.is-selected {
  border-color: #fff;
  box-shadow: var(--shadow-2), inset 0 0 0 1px rgba(255,255,255,.4);
  background: linear-gradient(180deg, #202023, var(--ink));
}
.service-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.service-card h3 { font-size: 1.4rem; font-weight: 700; }
.price { font-family: var(--font-mono); font-weight: 700; color: #fff; font-size: 1.05rem; white-space: nowrap; }
.service-desc { margin-top: .7rem; font-size: .95rem; color: var(--fog); }
.service-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.3rem; }
.meta-chip { font-family: var(--font-mono); font-size: .72rem; color: var(--fog-dim); letter-spacing: .05em; }
.add-flag {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); opacity: .8; transition: opacity .3s var(--ease);
}
.service-card.is-selected .add-flag::before { content: "✓ Agregado"; }
.service-card.is-selected .add-flag { color: #fff; opacity: 1; font-size: 0; }
.service-card.is-selected .add-flag::before { font-size: .72rem; }

.service-card--feature { border-color: rgba(255,255,255,.28); }
.feature-flag {
  position: absolute; top: 0; right: 0;
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: #101012; background: #fff;
  padding: .3rem .7rem; border-bottom-left-radius: 12px;
}

.alacarte { margin-top: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; background: rgba(255,255,255,.015); }
.alacarte-title { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--fog-dim); margin-bottom: .4rem; }
.alacarte ul { list-style: none; display: grid; grid-template-columns: 1fr; }
.alacarte li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem .2rem; border-bottom: 1px solid var(--line);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.alacarte li:last-of-type { border-bottom: none; }
.alacarte li:hover { color: var(--cream); padding-left: .5rem; }
.alacarte li.is-selected { color: #fff; padding-left: .5rem; }
.alacarte li.is-selected span:first-child::before { content: "✓ "; color: #fff; }
.alacarte li .price { font-size: .92rem; }
.alacarte-note { margin-top: 1rem; font-size: .78rem; color: var(--fog-dim); font-family: var(--font-mono); }

/* ===================================================
   BOOKING
   =================================================== */
.booking { position: relative; }
.booking::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 50% at 80% 20%, rgba(255,255,255,.04), transparent 60%);
}
.booking-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }

/* Ticket preview — the signature element */
.ticket {
  margin-top: 1.8rem; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #0c0c0e;
  box-shadow: var(--shadow-2);
}
.ticket-head { display: flex; align-items: center; gap: .5rem; padding: .7rem .9rem; background: rgba(255,255,255,.04); border-bottom: 1px solid var(--line); }
.ticket-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--fog-dim); }
.ticket-dot:nth-child(1){ background: #57575e; }
.ticket-dot:nth-child(2){ background: #7a7a82; }
.ticket-dot:nth-child(3){ background: #9a9aa2; }
.ticket-title { margin-left: auto; font-family: var(--font-mono); font-size: .68rem; color: var(--fog-dim); letter-spacing: .1em; }
.ticket-body {
  padding: 1.1rem; font-family: var(--font-mono); font-size: .82rem; line-height: 1.7;
  color: #c9c9ce; white-space: pre-wrap; word-break: break-word; min-height: 96px;
}
.ticket-body .hl { color: #fff; }
.ticket.is-ready { border-color: rgba(255,255,255,.5); box-shadow: 0 24px 70px -26px rgba(0,0,0,.6); }

/* Form */
.booking-form {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--ink));
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-2);
  display: grid; gap: 1.5rem;
}
.fld { border: none; display: grid; gap: .7rem; }
.fld legend { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); padding: 0; }
.fld .opt { color: var(--fog-dim); }
.fld-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.input {
  width: 100%; padding: .95rem 1rem;
  background: var(--void); border: 1px solid var(--line-strong); border-radius: 12px;
  color: var(--cream); font-family: var(--font-body); font-size: 1rem;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  color-scheme: dark;
}
.input:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d8d8dd' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 13px 9px; padding-right: 2.6rem; }

/* Selected-service chips */
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips-empty { font-size: .86rem; color: var(--fog-dim); }
.sel-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .5rem .5rem .9rem; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: .84rem; font-family: var(--font-mono);
}
.sel-chip button { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(0,0,0,.35); color: #fff; font-size: .9rem; line-height: 1; }
.sel-chip button:hover { background: #fff; color: #101012; }

.chip-picker { display: flex; flex-wrap: wrap; gap: .5rem; }
.pick-chip {
  padding: .55rem 1rem; border-radius: 100px; font-size: .84rem;
  border: 1px solid var(--line-strong); color: var(--fog);
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.pick-chip:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.pick-chip.is-on { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* Time slots */
.time-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.time-chip {
  padding: .6rem 1rem; border-radius: 12px; font-family: var(--font-mono); font-size: .84rem;
  border: 1px solid var(--line-strong); color: var(--fog);
  transition: all .25s var(--ease);
}
.time-chip:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.time-chip.is-on { background: #fff; border-color: #fff; color: #101012; font-weight: 700; box-shadow: none; }

.form-error { color: #ff9a9a; font-size: .85rem; font-family: var(--font-mono); }
.form-hint { font-size: .78rem; color: var(--fog-dim); text-align: center; }

/* ===================================================
   CONTACT
   =================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.contact-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; background: linear-gradient(180deg, var(--surface), var(--ink));
  box-shadow: var(--shadow-1);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
a.contact-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.contact-icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.4rem; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.22);
}
.contact-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.contact-card p { font-size: .92rem; }
.contact-link { display: inline-block; margin-top: .7rem; font-family: var(--font-mono); font-size: .78rem; color: var(--gold); letter-spacing: .05em; }
.hours { width: 100%; border-collapse: collapse; margin-top: .3rem; font-size: .92rem; }
.hours td { padding: .5rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: .82rem; }
.hours td:last-child { text-align: right; color: var(--cream); }
.hours tr:last-child td { border-bottom: none; }
.contact-actions { display: flex; gap: .6rem; margin-top: .9rem; }
.contact-cta { margin-top: 2rem; width: 100%; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer { border-top: 1px solid var(--line); padding-top: 3rem; margin-top: 2rem; }
.footer-inner { display: grid; gap: 1.8rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.footer-brand { display: flex; gap: .9rem; align-items: center; }
.footer-name { font-family: var(--font-display); font-weight: 700; color: var(--cream); font-size: 1.1rem; }
.footer-tag { font-size: .82rem; color: var(--fog-dim); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.footer-nav a { font-size: .9rem; color: var(--fog); transition: color .25s var(--ease); }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; padding-block: 1.6rem; font-size: .78rem; color: var(--fog-dim); font-family: var(--font-mono); }

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.fab-wa {
  position: fixed; right: clamp(1rem, 4vw, 2rem); bottom: clamp(1rem, 4vw, 2rem);
  z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.7);
  transform: translateY(120px); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease), box-shadow .3s var(--ease);
}
.fab-wa.show { transform: none; opacity: 1; }
.fab-wa:hover { box-shadow: 0 18px 42px -8px rgba(37,211,102,.9); transform: scale(1.06); }

/* ===================================================
   RESPONSIVE — tablet & up
   =================================================== */
@media (min-width: 640px) {
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .exp-card { aspect-ratio: 4 / 3; }
  .perks { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
  .perks li:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .alacarte ul { grid-template-columns: 1fr 1fr; column-gap: 2rem; }
  .fld-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 960px) {
  .exp-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .exp-card { aspect-ratio: 3 / 2; }

  .master-grid { grid-template-columns: 5fr 6fr; }
  .master-media { aspect-ratio: 4 / 5; }

  .service-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }

  .booking-grid { grid-template-columns: 1fr 1.05fr; }
  .contact-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (min-width: 1100px) {
  .hero-content { padding-bottom: 9vh; }
}

/* ===================================================
   MOBILE NAV
   =================================================== */
@media (max-width: 860px) {
  .nav {
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .3rem;
    padding: 1.6rem var(--gutter) 2rem;
    background: #0c0c0e;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 50px -20px rgba(0,0,0,.85);
    transform: translateY(-120%);
    transition: transform .5s var(--ease);
    height: calc(100svh - 72px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav-link { padding: 1rem .3rem; font-size: 1.15rem; border-radius: 12px; border-bottom: 1px solid var(--line); }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-cta { margin: 1rem 0 0; justify-content: center; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { background: #0c0c0e; backdrop-filter: none; border-bottom-color: transparent; }
}

@media (max-height: 760px), (max-width: 560px) {
  .scroll-cue { display: none; }
}

/* ===================================================
   REDUCED MOTION
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-media img { transform: none; }
}
