/* ============================================
   COMPONENTS — nav, hero, buttons, cards, forms
   ============================================ */

/* ─────────────────────────────────────────────
   UTILITY BAR (very top, above nav)
   ───────────────────────────────────────────── */
.utility-bar {
  position: relative;
  z-index: var(--z-utility);
  background: var(--c-ink-2);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.utility-bar__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--sp-2) var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2.4s ease-out infinite;
}
.status.is-closed .status__dot {
  background: #9CA3AF;
  animation: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
}
.lang-btn {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--d-fast) var(--ease-out);
  border-radius: 2px;
}
.lang-btn.is-active {
  color: var(--c-pop);
  font-weight: 600;
}
.lang-btn:hover {
  color: #fff;
}
.lang-divider {
  color: rgba(255, 255, 255, 0.25);
}

/* ─────────────────────────────────────────────
   STICKY NAV
   ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(35, 38, 43, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line-dark);
  transition: background var(--d-normal) var(--ease-out);
}

.site-nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--sp-3) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

/* Logo (wordmark) */
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--f-display);
  font-weight: 900;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.logo small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  opacity: 0.55;
  margin-bottom: 2px;
}
.logo__mark {
  font-size: 17px;
  text-transform: uppercase;
}
.logo--lg .logo__mark {
  font-size: 26px;
}
.logo--lg small {
  font-size: 10px;
  margin-bottom: 4px;
}
/* Real badge logo — circular mask hides the square JPG's white corners */
.logo__badge {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.logo--lg .logo__badge {
  width: 88px;
  height: 88px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  font-size: 14px;
  font-weight: 500;
}
.site-nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--c-bone);
  transition: color var(--d-fast) var(--ease-out);
}
.site-nav__links a:hover {
  color: #fff;
}
.site-nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-pop);
  transition: width var(--d-normal) var(--ease-out);
}
.site-nav__links a:hover::after,
.site-nav__links a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-bone);
  transition: transform var(--d-fast) var(--ease-out);
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  transition: transform var(--d-fast) var(--ease-out),
              background var(--d-fast) var(--ease-out),
              border-color var(--d-fast) var(--ease-out),
              color var(--d-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--pop {
  background: var(--c-pop);
  color: #fff;
}
.btn--pop:hover {
  background: var(--c-pop-hover);
}

.btn--ink {
  background: var(--c-ink);
  color: #fff;
}
.btn--ink:hover {
  background: #000;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--sm {
  padding: 10px 16px;
  font-size: 12px;
}
.btn--lg {
  padding: 18px 28px;
  font-size: 14px;
}

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__img,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video {
  z-index: 0;
}
/* Hero slideshow */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
}
.hero__slide.is-active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  /* Left-to-right scrim keeps the headline readable on any slide,
     layered over the original top-to-bottom darkening. */
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.25) 42%, rgba(0,0,0,0) 68%),
    linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.08) 32%, rgba(0,0,0,0.68) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: var(--sp-7);
}

.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: var(--sp-5);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--t-hero);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero__sub {
  font-size: var(--t-body-lg);
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: var(--sp-6);
  opacity: 0.92;
}

.hero__ctas {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* Hero stills slider strip */
.hero__strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
}
.hero__strip-item {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-sm);
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: opacity var(--d-normal) var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__strip-item.is-active {
  opacity: 1;
}
.hero__strip-item:hover {
  opacity: 1;
}
.hero__strip-placeholder {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}

@media (max-width: 640px) {
  .hero__strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero__strip-item:nth-child(n+4) { display: none; }
}

/* ─────────────────────────────────────────────
   WELCOME
   ───────────────────────────────────────────── */
.welcome__title {
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  max-width: 880px;
  margin-bottom: var(--sp-5);
}

.welcome__body {
  font-size: var(--t-body-lg);
  max-width: 720px;
  color: var(--c-mute-2);
  margin-bottom: var(--sp-6);
}

.welcome__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.meta-tag {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--c-ink);
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   STOCK — category grid
   ───────────────────────────────────────────── */
.stock__title {
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  margin-bottom: var(--sp-4);
  color: #fff;
  max-width: 800px;
}

.stock__sub {
  font-size: var(--t-body);
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin-bottom: var(--sp-7);
}

.stock__note {
  margin-top: var(--sp-7);
  font-size: var(--t-small);
  color: rgba(255, 255, 255, 0.55);
  max-width: 720px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-1);
}

.cat {
  aspect-ratio: 1;
  background: var(--cat-bg);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--sp-4);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--d-normal) var(--ease-out);
}

.cat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity var(--d-normal) var(--ease-out);
}

.cat:hover {
  transform: scale(1.02);
  z-index: 1;
}
.cat:hover::before {
  opacity: 1;
}

.cat__name {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: var(--sp-2);
  position: relative;
  z-index: 2;
}

.cat__brands {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 2;
  transition: color var(--d-normal) var(--ease-out);
  margin: 0;
}

.cat:hover .cat__brands {
  color: rgba(255, 255, 255, 0.9);
}

/* Photo cards — real category group shots (white-bg product photography).
   Text drops to the bottom over an always-on scrim so it stays readable. */
.cat--photo {
  background-color: var(--c-bone-3);
  background-size: cover;
  background-position: center;
  justify-content: flex-end;
}
.cat--photo::before {
  opacity: 1;
  background: linear-gradient(to bottom, transparent 38%, rgba(14, 11, 8, 0.45) 62%, rgba(14, 11, 8, 0.88));
}
.cat--photo:hover { transform: scale(1.02); }
.cat--photo .cat__name,
.cat--photo .cat__brands { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); }

@media (max-width: 980px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────
   DELIVERY
   ───────────────────────────────────────────── */
.delivery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  margin-top: var(--sp-5);
}

.delivery__title {
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  margin-bottom: var(--sp-4);
}

.delivery__copy {
  font-size: var(--t-body-lg);
  color: var(--c-mute-2);
  margin-bottom: var(--sp-5);
  max-width: 480px;
}

.postcode {
  display: flex;
  gap: 0;
  max-width: 420px;
  border: 1.5px solid var(--c-ink);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: var(--sp-3);
}
.postcode input {
  flex: 1;
  padding: 14px 18px;
  border: 0;
  background: transparent;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--c-ink);
  text-transform: uppercase;
}
.postcode input::placeholder {
  color: var(--c-mute);
  letter-spacing: 0.05em;
}
.postcode input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.03);
}
.postcode__note {
  font-size: 12px;
  color: var(--c-mute);
  max-width: 380px;
  margin-bottom: var(--sp-5);
}

.delivery__map {
  position: relative;
  aspect-ratio: 5 / 4;
  background: var(--c-bone);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
/* Leaflet delivery map — real streets, desaturated to match the brand card */
.delivery__map-canvas {
  position: absolute;
  inset: 0;
  background: var(--c-bone);
}
.delivery__map-canvas .leaflet-tile-pane {
  filter: grayscale(1) contrast(0.9) brightness(1.08);
}
.delivery__map-canvas .leaflet-container { background: var(--c-bone); }
/* Shop pin — orange dot, white ring (matches the badge marker on the card) */
.delivery-pin {
  width: 18px;
  height: 18px;
  background: var(--c-pop);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(253, 90, 2, 0.6);
}
.map-label {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  z-index: 500;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: rgba(244, 236, 221, 0.9);
  padding: 4px 8px;
  border-radius: var(--r-sm);
  backdrop-filter: blur(4px);
}

@media (max-width: 780px) {
  .delivery__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
}

/* ─────────────────────────────────────────────
   VISIT
   ───────────────────────────────────────────── */
.visit__photo-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--sp-3);
}
.visit__photo-h {
  color: #fff;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--sp-4);
  align-items: baseline;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-line);
}
.info-row:last-of-type {
  border-bottom: 0;
}
.info-row--note {
  display: block;
  font-size: 13px;
  color: var(--c-mute);
  font-style: italic;
  margin-top: var(--sp-3);
  border: 0;
  padding: 0;
}
.info-row__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.info-row__value {
  font-size: 15px;
  line-height: 1.5;
}
.info-row__value a {
  border-bottom: 1px solid currentColor;
  transition: opacity var(--d-fast) var(--ease-out);
}
.info-row__value a:hover {
  opacity: 0.7;
}

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */
.faq__title {
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  margin-bottom: var(--sp-6);
}

.faq__list {
  border-top: 1px solid var(--c-line);
}

.faq-item {
  border-bottom: 1px solid var(--c-line);
}

.faq-item__q {
  width: 100%;
  padding: var(--sp-4) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-ink);
  transition: color var(--d-fast) var(--ease-out);
}
.faq-item__q:hover {
  color: var(--c-pop);
}
.faq-item__q[aria-expanded="true"] {
  font-weight: 700;
}

.faq-item__icon {
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--c-mute);
  transition: transform var(--d-normal) var(--ease-out);
}
.faq-item__q[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  color: var(--c-pop);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-mute-2);
  transition: max-height var(--d-normal) var(--ease-out),
              padding var(--d-normal) var(--ease-out);
  padding: 0 0 0 0;
}
.faq-item__a.is-open {
  max-height: 320px;
  padding: 0 0 var(--sp-5) 0;
}

/* ─────────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────────── */
.contact__title {
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  margin-bottom: var(--sp-3);
}

.contact__lede {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--c-mute-2);
  max-width: 52ch;
  margin-bottom: var(--sp-6);
}

.contact__media {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* ── Map embed ── */
.map-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-ink);
  box-shadow: 0 30px 60px -30px rgba(14, 11, 8, 0.25);
}
.map-wrap__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.02) saturate(0.92);
}
.map-wrap__open {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  background: var(--c-ink);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background var(--d-fast) var(--ease-out);
}
.map-wrap__open:hover {
  background: var(--c-pop);
}

/* ── 360° interior tour ── */
.tour-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-ink);
  box-shadow: 0 30px 60px -30px rgba(14, 11, 8, 0.25);
}
.tour-wrap__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Subtle vignette + cool-down so overlay text reads cleanly */
  filter: brightness(0.85) saturate(0.92);
  transition: opacity var(--d-normal) var(--ease-out);
}
.tour-wrap__viewer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--d-normal) var(--ease-out);
}
.tour-wrap__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--sp-5);
  color: #fff;
  background: linear-gradient(180deg,
    rgba(14, 11, 8, 0) 0%,
    rgba(14, 11, 8, 0.55) 45%,
    rgba(14, 11, 8, 0.92) 100%);
  transition: opacity var(--d-normal) var(--ease-out);
}
.tour-wrap__eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-pop);
  margin-bottom: var(--sp-2);
}
.tour-wrap__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}
.tour-wrap__cta {
  appearance: none;
  background: var(--c-pop);
  color: var(--c-ink);
  border: 0;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--d-fast) var(--ease-out),
              transform var(--d-fast) var(--ease-out);
}
.tour-wrap__cta:hover {
  background: var(--c-pop-hover);
  transform: translateY(-1px);
}
.tour-wrap__cta:active {
  transform: translateY(0);
}

/* States */
.tour-wrap.is-loading .tour-wrap__cta {
  opacity: 0.6;
  pointer-events: none;
}
.tour-wrap.is-loading .tour-wrap__cta::after {
  content: ' …';
}
.tour-wrap.is-live .tour-wrap__poster,
.tour-wrap.is-live .tour-wrap__overlay {
  opacity: 0;
  pointer-events: none;
}
.tour-wrap.is-live .tour-wrap__viewer {
  opacity: 1;
}

/* ── Full-bleed 360° section (03 · STEP INSIDE) ── */
.tour-section {
  padding-block: 0;
  background: var(--c-ink);
}
.tour-wrap--full {
  aspect-ratio: auto;
  width: 100%;
  height: clamp(460px, 82vh, 860px);
  border-radius: 0;
  box-shadow: none;
}
.tour-wrap--full .tour-wrap__overlay {
  padding: var(--sp-8) 0 var(--sp-7);
}
.tour-wrap--full .tour-wrap__overlay-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.tour-wrap--full .tour-wrap__title {
  font-size: clamp(30px, 4.5vw, 60px);
  max-width: 16ch;
  margin-bottom: var(--sp-4);
}
.tour-wrap--full .tour-wrap__eyebrow {
  font-size: 11px;
}
.tour-wrap--full .tour-wrap__cta {
  padding: var(--sp-3) var(--sp-6);
  font-size: 15px;
}

/* ── Contact card (right column) ── */
.contact-card {
  background: var(--c-ink);
  color: #fff;
  padding: var(--sp-6);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  align-self: start;
}

.contact-card__chat {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--c-pop);
  color: var(--c-ink);
  border-radius: var(--r-md);
  transition: background var(--d-fast) var(--ease-out), transform var(--d-fast) var(--ease-out);
  border-bottom: 0;
}
.contact-card__chat:hover {
  background: var(--c-pop-hover);
  transform: translateY(-1px);
}
.contact-card__chat-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.contact-card__chat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 2px;
}
.contact-card__chat-value {
  font-weight: 600;
  font-size: 15px;
}

.contact-card__row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.contact-card__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact-card__value {
  font-size: 14px;
  line-height: 1.5;
}
.contact-card__value a {
  border-bottom: 1px solid currentColor;
  transition: opacity var(--d-fast) var(--ease-out);
}
.contact-card__value a:hover {
  opacity: 0.7;
}

/* ─────────────────────────────────────────────
   WHATSAPP FLOATING BUBBLE
   ───────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-pop);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  box-shadow: 0 12px 28px -8px rgba(253, 90, 2, 0.55),
              0 4px 10px -2px rgba(14, 11, 8, 0.25);
  transition: transform var(--d-fast) var(--ease-out),
              box-shadow var(--d-fast) var(--ease-out),
              background var(--d-fast) var(--ease-out);
  border-bottom: 0;
}
.wa-fab:hover {
  background: var(--c-pop-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(253, 90, 2, 0.6),
              0 6px 14px -3px rgba(14, 11, 8, 0.3);
}
.wa-fab:hover .wa-fab__pill {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.wa-fab__icon {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}
.wa-fab__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--c-pop);
  opacity: 0;
  animation: waPulse 2.4s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(0.85); opacity: 0.55; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
.wa-fab__pill {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--c-ink);
  color: #fff;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-fast) var(--ease-out),
              transform var(--d-fast) var(--ease-out);
  box-shadow: 0 6px 14px -4px rgba(14, 11, 8, 0.25);
}
@media (max-width: 640px) {
  .wa-fab {
    width: 54px;
    height: 54px;
  }
  .wa-fab__pill {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab__ring {
    animation: none;
  }
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.site-footer__brand .logo {
  color: #fff;
}
.site-footer__brand small {
  opacity: 0.6;
}
.site-footer__tag {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 380px;
  margin-top: var(--sp-3);
  line-height: 1.55;
}
.site-footer__est {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-pop);
  margin-top: var(--sp-4);
}

.site-footer__col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}
.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__col a {
  transition: color var(--d-fast) var(--ease-out);
}
.site-footer__col a:hover {
  color: var(--c-pop);
}

/* ─────────────────────────────────────────────
   AGE GATE MODAL
   ───────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 25% 70%, rgba(140, 80, 40, 0.35), transparent 50%),
    radial-gradient(circle at 75% 30%, rgba(80, 30, 40, 0.4), transparent 50%),
    rgba(14, 11, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--gutter);
  opacity: 0;
  transition: opacity var(--d-slow) var(--ease-out);
}
.age-gate.is-open {
  opacity: 1;
}
.age-gate[hidden] {
  display: none;
}

.age-gate__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  max-width: 460px;
  width: 100%;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(10px) scale(0.98);
  transition: transform var(--d-slow) var(--ease-out);
}
.age-gate.is-open .age-gate__card {
  transform: translateY(0) scale(1);
}

.age-gate__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-pop);
  margin-bottom: var(--sp-4);
}

.age-gate__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.age-gate__copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--sp-6);
  line-height: 1.55;
}

.age-gate__btns {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

.age-gate__fineprint {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   MOBILE NAV
   ───────────────────────────────────────────── */
@media (max-width: 880px) {
  .site-nav__links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .site-nav.is-open .site-nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--c-charcoal);
    padding: var(--sp-5) var(--gutter);
    gap: var(--sp-4);
    border-bottom: 1px solid var(--c-line-dark);
  }
}

/* GSAP reveal helpers — initial state */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal-immediate {
  opacity: 1;
  transform: none;
}

/* ── Back-to-top (footer) ── */
.to-top {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  width: fit-content;
  margin: var(--sp-6) auto 0;
  padding: 10px 20px;
  border: 1px solid var(--c-line-dark);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--d-fast) var(--ease-out),
              border-color var(--d-fast) var(--ease-out),
              transform var(--d-fast) var(--ease-out);
}
.to-top svg { width: 14px; height: 14px; }
.to-top:hover { color: #fff; border-color: var(--c-pop); transform: translateY(-2px); }
