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

:root {
  --cream:  #FCFAF6;
  --white:  #ffffff;
  --sand:   #F3EEE7;
  --navy:   #10273D;
  --ink:    #1D3A4F;
  --muted:  #70808F;
  --gold:   #d4af37;
  --gold-l: #e5c875;
  --font-serif: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

/* --- NAV OFFSET ------------------------------------------------- */
:root { --nav-h: 84px; }
main { padding-top: var(--nav-h); }
.page--home main { padding-top: 0; }

body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* --- CUSTOM CURSOR ---------------------------------------------- */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(184,145,74,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), width 0.3s ease, height 0.3s ease;
}
a:hover ~ .cursor, button:hover ~ .cursor {
  transform: translate(-50%,-50%) scale(2);
}

/* --- NAV -------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 52px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(184,145,74,0.15);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav__logo {
  text-decoration: none;
  display: flex; align-items: center;
  position: relative;
}
.nav__logo-img {
  height: 64px;
  width: auto;
  transition: opacity 0.4s ease;
  display: block;
}
/* Light version — hidden by default (white bg) */
.nav__logo-img--light {
  filter: brightness(0) invert(1);
  opacity: 0;
}
/* Dark version — always visible */
.nav__logo-img--dark {
  filter: none;
  opacity: 1;
  position: absolute;
  top: 0; left: 0;
  height: 64px;
  width: auto;
}
.nav__links {
  display: flex; align-items: center; gap: 40px;
}
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--navy); }
.nav__cta {
  border: 1px solid rgba(184,145,74,0.4) !important;
  padding: 8px 22px;
  color: var(--gold) !important;
  border-radius: 1px;
  transition: all 0.2s !important;
}
.nav__cta:hover { background: var(--gold) !important; color: white !important; }

/* --- NAV DROPDOWN ----------------------------------------------- */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  color: var(--muted); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: color 0.2s;
}
.nav__dropdown-chevron { transition: transform 0.25s; flex-shrink: 0; }
.nav__dropdown:hover .nav__dropdown-chevron { transform: rotate(180deg); }
.nav__dropdown-trigger:hover { color: var(--navy); }
.nav__dropdown-trigger.active { color: var(--navy); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 4px); left: -20px;
  background: white;
  border: 1px solid var(--sand);
  box-shadow: 0 12px 40px rgba(12,30,46,0.12);
  min-width: 260px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
/* JS adds .open class — avoids hover-gap timing issue */
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all; transform: none;
}
.nav__dropdown-menu a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 20px; text-decoration: none;
  border-bottom: 1px solid var(--sand);
  transition: background 0.15s;
  color: var(--navy);
  font-size: 0.82rem; letter-spacing: 0; text-transform: none;
}
.nav__dropdown-menu a:last-child { border-bottom: none; }
.nav__dropdown-menu a:hover { background: var(--cream); }
.nav__dropdown-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.nav__dropdown-menu strong { display: block; font-size: 0.8rem; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
.nav__dropdown-menu em { display: block; font-size: 0.7rem; color: var(--muted); font-style: normal; letter-spacing: 0.04em; }

/* Mobile sub-links */
.nav__mobile-svc {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__mobile-svc > a {
  flex: 1;
  border-bottom: none !important;
  border-top: none !important;
}
.nav__mobile-svc-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  padding: 0 28px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s, transform 0.25s;
  flex-shrink: 0;
}
.nav__mobile-svc-toggle.open {
  transform: rotate(180deg);
  color: var(--gold-l);
}
.nav__mobile-sub {
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 4px 0 10px;
}
.nav__mobile-sub.open { display: flex; }
.nav__mobile-sub a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 40px;
  font-size: 0.68rem;
  font-family: var(--font-sans);
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-left: none;
  margin-left: 0;
  border-bottom: none;
  border-top: none !important;
  transition: color 0.2s;
}
.nav__mobile-sub a:hover { color: var(--gold-l); }
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
  transform-origin: center;
}

/* --- HERO ------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__bg-wrap { position: absolute; inset: 0; }
.hero__bg {
  position: absolute; inset: -5%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.82) saturate(0.35) contrast(0.9);
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
/* White vignette top + bottom — yacht centre stays clear */
.hero__gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,  rgba(255,255,255,0.82) 0%, transparent 28%),
    linear-gradient(to top,     rgba(255,255,255,0.82) 0%, transparent 28%);
  pointer-events: none;
}

/* --- SVG HOTSPOT OVERLAY ---------------------------------------- */
.hero__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 10;
  pointer-events: none;
}
.hotspot {
  pointer-events: all;
  cursor: none;
}
.hs__rect {
  fill: none;
  stroke: rgba(212,170,106,0);
  stroke-width: 1;
  stroke-dasharray: 7 4;
  transition: stroke 0.4s ease, filter 0.4s ease;
}
.hotspot:hover .hs__rect, .hotspot.active .hs__rect {
  stroke: rgba(212,170,106,0.9);
  filter: drop-shadow(0 0 8px rgba(212,170,106,0.5));
}
.hs__tick {
  stroke: rgba(255,255,255,0);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke 0.4s ease;
}
.hotspot:hover .hs__tick, .hotspot.active .hs__tick { stroke: rgba(255,255,255,0.9); }
.hs__dot {
  opacity: 0.95;
}
/* Galley = red */
.hs__dot--galley {
  fill: #e03535;
  filter: drop-shadow(0 0 5px rgba(224,53,53,0.9));
}
/* Laundry = blue */
.hs__dot--laundry {
  fill: #2d8ef5;
  filter: drop-shadow(0 0 5px rgba(45,142,245,0.9));
}
.hs__pulse {
  fill: none;
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: hsPulse 2.6s ease-out infinite;
}
.hs__pulse--galley  { stroke: #e03535; }
.hs__pulse--laundry { stroke: #2d8ef5; }
.hs__pulse--2 { animation-delay: 1.3s; }
@keyframes hsPulse {
  0%   { transform: scale(1);   opacity: 0.9; }
  100% { transform: scale(9);   opacity: 0;   }
}

/* Vertical leader (photo bottom → hull dot) — always visible */
.hs__leader--vert {
  stroke: rgba(255,255,255,0.3) !important;
  stroke-width: 1;
  stroke-dasharray: 5 4;
  opacity: 1 !important;
  transition: stroke 0.4s ease;
}
.hotspot:hover .hs__leader--vert,
.hotspot.active .hs__leader--vert {
  stroke: rgba(255,255,255,0.65) !important;
}

/* --- TRAVELING SIGNAL DOT --------------------------------------- */
.hs__travel {
  fill: white;
  filter: drop-shadow(0 0 4px rgba(255,255,255,1));
  transform-box: fill-box;
  transform-origin: center;
  pointer-events: none;
}
/* galley: cy=500 → cy=396, delta = -104px */
@keyframes travelGalley {
  0%   { transform: translateY(0);      opacity: 0; }
  7%   { opacity: 1; }
  86%  { opacity: 1; }
  100% { transform: translateY(-104px); opacity: 0; }
}
/* laundry: cy=502 → cy=390, delta = -112px */
@keyframes travelLaundry {
  0%   { transform: translateY(0);      opacity: 0; }
  7%   { opacity: 1; }
  86%  { opacity: 1; }
  100% { transform: translateY(-112px); opacity: 0; }
}
.hs__travel--galley  { animation: travelGalley  2.2s ease-in-out infinite; }
.hs__travel--laundry { animation: travelLaundry 2.2s ease-in-out infinite 0.5s; }
.hs__leader {
  stroke: rgba(212,170,106,0);
  stroke-width: 0.8;
  stroke-dasharray: 4 3;
  transition: stroke 0.5s ease 0.1s;
}
.hotspot:hover .hs__leader, .hotspot.active .hs__leader {
  stroke: rgba(212,170,106,0.65);
}
.hs__label-id {
  font-family: 'Courier New', monospace;
  font-size: 9px;
  fill: #ffffff;
  letter-spacing: 0.14em;
  opacity: 0;
}
.hs__label-name {
  font-family: 'Courier New', monospace;
  font-size: 7.5px;
  fill: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  opacity: 0;
}
.hotspot:hover .hs__label-id,
.hotspot.active .hs__label-id  { opacity: 1 !important; }
.hotspot:hover .hs__label-name,
.hotspot.active .hs__label-name { opacity: 1 !important; }

/* Sync label flash with travel dot arrival (86-96% of 2.2s) */
@keyframes labelSync {
  0%, 84% { opacity: 0; }
  89%     { opacity: 1; }
  96%     { opacity: 1; }
  100%    { opacity: 0; }
}
#hotspotGalley  .hs__label-id,
#hotspotGalley  .hs__label-name { animation: labelSync 2.2s ease-in-out infinite; }
#hotspotLaundry .hs__label-id,
#hotspotLaundry .hs__label-name { animation: labelSync 2.2s ease-in-out infinite 0.5s; }

/* Mobile: hide side leaders, move labels above frames */
@media (max-width: 768px) {
  #hotspotGalley,
  #hotspotLaundry { transform: translateY(150px); }

  #hotspotGalley  .hs__leader:not(.hs__leader--vert),
  #hotspotLaundry .hs__leader:not(.hs__leader--vert) { display: none; }

  /* Galley: id at y=325 → 264, name at y=340 → 278  (14px apart) */
  #hotspotGalley .hs__label-id   { transform: translate(167px, -61px); text-anchor: middle; }
  #hotspotGalley .hs__label-name { transform: translate(167px, -62px); text-anchor: middle; }

  /* Laundry: push down +80px from previous position to sit just above frame */
  #hotspotLaundry .hs__label-id   { transform: translate(-105px, -55px); text-anchor: middle; }
  #hotspotLaundry .hs__label-name { transform: translate(-105px, -56px); text-anchor: middle; }
}
.hs__scan {
  stroke: transparent;
  stroke-width: 1;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}
.hotspot:hover .hs__scan, .hotspot.active .hs__scan {
  stroke: rgba(212,170,106,0.35);
  animation: hsScan 1.4s ease-out forwards;
}
@keyframes hsScan {
  from { stroke-dashoffset: 300; }
  to   { stroke-dashoffset: -300; }
}

/* --- PHOTO — intro drift + hover flash ------------------------- */

/* 1) Page-load drift: sway left-right, damped oscillation, then settle */
@keyframes hsDrift {
  0%   { transform: translateX(-55px); opacity: 0; }
  18%  { transform: translateX(42px);  opacity: 1; }
  36%  { transform: translateX(-28px); }
  52%  { transform: translateX(16px);  }
  65%  { transform: translateX(-9px);  }
  76%  { transform: translateX(5px);   }
  86%  { transform: translateX(-2px);  }
  100% { transform: translateX(0);     }
}

/* 2) Hover flash: bright camera-flash burst, fires on every mouse-enter */
@keyframes hsFlash {
  0%   { filter: brightness(1)   saturate(1); }
  12%  { filter: brightness(3.2) saturate(0.2); }
  28%  { filter: brightness(1.5) saturate(0.8); }
  60%  { filter: brightness(1)   saturate(1); }
  100% { filter: brightness(1)   saturate(1); }
}

.hs__photo {
  opacity: 1;
}

/* Flash fires when travel dot arrives (~88% of 2.2s cycle) */
@keyframes photoArrival {
  0%   { filter: brightness(1)   saturate(1); }
  86%  { filter: brightness(1)   saturate(1); }
  92%  { filter: brightness(2.8) saturate(0.2); }
  100% { filter: brightness(1)   saturate(1); }
}
#photoGalley  { animation: photoArrival 2.2s ease-in-out infinite; }
#photoLaundry { animation: photoArrival 2.2s ease-in-out infinite 0.5s; }

/* hover flash — re-fires on every mouseenter because pointer:none on SVG
   means we use the .hotspot:hover selector which toggles per-enter        */
.hotspot:hover .hs__photo {
  animation: hsFlash 0.5s ease-out;
}

.hotspot.active .hs__photo { opacity: 0; }

/* Rect border */
.hs__rect {
  fill: none;
  stroke: rgba(160,215,255,0.55);
  stroke-width: 1;
  stroke-dasharray: 6 4;
  transition: stroke 0.4s ease, filter 0.4s ease;
}
.hotspot:hover .hs__rect, .hotspot.active .hs__rect {
  stroke: rgba(212,170,106,0.95);
  filter: drop-shadow(0 0 10px rgba(212,170,106,0.5));
}

/* Hover blur on bg */
.hero__bg {
  transform-origin: 50% 58%;
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1),
              filter 0.5s ease;
}
.hero__bg.hs-blur {
  filter: brightness(0.82) saturate(0.35) contrast(0.9) blur(7px);
}
.hero.zone-galley  .hero__bg { transform: scale(1.2) translate(-2%, 3%); }
.hero.zone-laundry .hero__bg { transform: scale(1.2) translate(-10%, 3%); }

/* --- FULLSCREEN OVERLAY ----------------------------------------- */
.fs-overlay {
  position: fixed;
  z-index: 500;
  overflow: hidden;
  display: none;
  border-radius: 1px;
  transition: top 0.7s cubic-bezier(0.4,0,0.2,1),
              left 0.7s cubic-bezier(0.4,0,0.2,1),
              width 0.7s cubic-bezier(0.4,0,0.2,1),
              height 0.7s cubic-bezier(0.4,0,0.2,1);
}
.fs-overlay.open {
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0;
}
.fs-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.5s ease;
  filter: brightness(0.65);
}
.fs-overlay.open .fs-img { filter: brightness(0.78); }
.fs-bar {
  position: absolute;
  bottom: 52px; left: 52px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
  border-top: 1px solid rgba(212,170,106,0.35);
  padding-top: 16px;
}
.fs-overlay.open .fs-bar { opacity: 1; }
.fs-tag {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold-l);
  margin-bottom: 6px;
}
.fs-desc {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 300;
  color: white;
}
.fs-close {
  position: absolute;
  top: 28px; right: 28px;
  width: 44px; height: 44px;
  background: rgba(8,18,30,0.55);
  border: 1px solid rgba(212,170,106,0.35);
  color: var(--gold-l);
  font-size: 0.85rem;
  border-radius: 1px;
  cursor: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s, background 0.2s;
}
.fs-overlay.open .fs-close { opacity: 1; }
.fs-close:hover { background: rgba(184,145,74,0.25); }

.hero__scanline {
  stroke: rgba(212,170,106,0.12);
  stroke-width: 1;
  animation: scanlineMove 3.5s ease-in-out 0.8s both;
}
@keyframes scanlineMove {
  0%   { transform: translateY(0);    opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(900px); opacity: 0; }
}

/* hero__reveal removed — replaced by .fs-overlay */

/* --- HERO COPY -------------------------------------------------- */
.hero__copy {
  position: absolute;
  bottom: 11%;
  left: 6%;
  z-index: 20;
  max-width: 600px;
  pointer-events: none;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 28px 32px 24px;
}
.hero__copy a,
.hero__copy button { pointer-events: auto; }
.hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}
.hero.ready .hero__eyebrow { opacity: 1; transform: none; }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 38px;
  display: flex; flex-direction: column;
}
.hero__title-line {
  display: block;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.95s cubic-bezier(0.4,0,0.2,1);
}
.hero__title-line--indent { padding-left: 2.2em; }
.hero.ready .hero__title-line:nth-child(1) { clip-path: inset(0 0 0% 0); transition-delay: 0.65s; }
.hero.ready .hero__title-line:nth-child(2) { clip-path: inset(0 0 0% 0); transition-delay: 0.82s; }
.hero.ready .hero__title-line:nth-child(3) { clip-path: inset(0 0 0% 0); transition-delay: 0.99s; }
.hero__btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 1.4s, transform 0.6s ease 1.4s, color 0.2s;
}
.hero__btn::after {
  content: '';
  display: block;
  width: 44px; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.hero__btn:hover { color: var(--gold); }
.hero__btn:hover::after { width: 72px; }
.hero.ready .hero__btn { opacity: 1; transform: none; }
.hero__scroll {
  position: absolute;
  right: 52px; bottom: 42px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 20;
  opacity: 0;
  transition: opacity 0.6s ease 1.8s;
}
.hero.ready .hero__scroll { opacity: 1; }
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, var(--gold-l), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero__scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* --- LAYOUT HELPERS --------------------------------------------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 52px;
}
.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 64px;
  color: var(--navy);
}
.section-title--light { color: white; }

.js [data-fade] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
[data-fade].visible { opacity: 1; transform: none; }

/* --- SERVICES --------------------------------------------------- */
.services {
  padding: 130px 0;
  background: white;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(12,30,46,0.08);
}
.services__card {
  background: white;
  padding: 52px 40px;
  border-right: 1px solid rgba(12,30,46,0.08);
  transition: background 0.3s;
  position: relative;
}
.services__card:last-child { border-right: none; }
.services__card::after {
  content: '';
  position: absolute; bottom: 0; left: 40px; right: 40px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.services__card:hover { background: var(--cream); }
.services__card:hover::after { transform: scaleX(1); }
.services__icon {
  width: 36px; height: 36px;
  color: var(--gold);
  margin-bottom: 28px;
}
.services__icon svg { width: 100%; height: 100%; }
.services__card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.services__card p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
}

/* --- PROJECTS --------------------------------------------------- */
.projects {
  padding: 130px 0 0;
  background: var(--cream);
}
.projects__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  gap: 2px;
  background: var(--sand);
}
.projects__item {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  display: block;
}
.projects__img {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.projects__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s ease;
}
.projects__item:hover .projects__img img {
  transform: scale(1.05);
  filter: brightness(0.88);
}
.projects__info {
  padding: 22px 24px 26px;
  background: var(--cream);
  border-top: 1px solid var(--sand);
}
.projects__num {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
}
.projects__info h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin: 6px 0 4px;
  text-decoration: none;
}
.projects__item:hover .projects__info h3 {
  color: var(--gold);
  transition: color 0.3s ease;
}
.projects__info p {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* --- CONTACT CTA SECTION ---------------------------------------- */
.contact {
  padding: 160px 0;
  text-align: center;
  background: var(--navy);
}
.contact .section-eyebrow { color: var(--gold-l); }
.contact__actions { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.contact__btn-primary {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-l);
  text-decoration: none;
  padding: 16px 36px;
  border: 1px solid var(--gold-l);
  border-radius: 1px;
  transition: background 0.25s, color 0.25s;
}
.contact__btn-primary:hover { background: transparent; color: var(--gold-l); }
.contact__btn {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-l);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,170,106,0.3);
  padding-bottom: 4px;
  transition: border-color 0.3s, letter-spacing 0.4s;
  letter-spacing: 0.01em;
}
.contact__btn:hover { border-color: var(--gold-l); letter-spacing: 0.05em; }

/* --- STATS ------------------------------------------------------ */
.stats { padding: 80px 0; background: var(--navy); }
.stats--light { background: var(--cream); }
.stats--light .stats__num  { color: var(--navy); }
.stats--light .stats__label { color: var(--muted); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.stats--light .stats__grid { border-color: rgba(12,30,46,0.08); }
.stats__item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats--light .stats__item { border-color: rgba(12,30,46,0.08); }
.stats__item:last-child { border-right: none; }
.stats__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--gold-l);
  letter-spacing: -0.02em;
}
.stats__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
}

/* --- PROCESS ---------------------------------------------------- */
.process {
  padding: 130px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.process__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.process__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 240, 232, 0.82);
  backdrop-filter: blur(1px);
  z-index: 1;
}
.process .container { position: relative; z-index: 2; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid rgba(12,30,46,0.08);
}
.process__step {
  padding: 44px 36px;
  border-right: 1px solid rgba(12,30,46,0.08);
  position: relative;
}
.process__step:last-child { border-right: none; }
.process__num {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.process__step h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.process__step p { font-size: 0.82rem; line-height: 1.85; color: var(--muted); }

/* --- PARTNERS --------------------------------------------------- */
.partners { padding: 100px 0; background: white; text-align: center; }
.partners--about { background: var(--cream); }
.partners__logos {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  margin-top: 40px;
}
.partners__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 1px solid rgba(12,30,46,0.10);
  border-radius: 1px;
  background: white;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.partners--about .partners__logo-item { background: var(--cream); }
.partners__logo-item:hover { border-color: rgba(184,145,74,0.4); box-shadow: 0 2px 12px rgba(12,30,46,0.06); }
.partners__logo-item img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.3s;
}
.partners__logo-item:hover img { filter: grayscale(0) opacity(1); }
.about-partners__text { max-width: 580px; margin: 0 auto; font-size: 0.88rem; line-height: 1.8; color: var(--muted); }

/* --- TESTIMONIALS ----------------------------------------------- */
.testimonials { padding: 120px 0; background: var(--navy); }
.testimonials__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 56px; }
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,170,106,0.15);
  padding: 52px 44px;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.6;
  color: white;
  margin-bottom: 28px;
}
.testimonial cite {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-l);
  font-style: normal;
}
.projects__cta { text-align: center; padding: 64px 0 100px; }

/* --- SERVICES LINK ---------------------------------------------- */
.services__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,145,74,0.3);
  padding-bottom: 2px;
  transition: border-color 0.25s;
}
.services__link:hover { border-color: var(--gold); }

/* --- PAGE HERO (inner pages) ------------------------------------ */
.page-hero {
  position: relative;
  min-height: 55vh;
  height: auto;
  display: flex;
  align-items: flex-end;
  padding-top: 130px;  /* clear fixed nav */
  padding-bottom: 72px;
  overflow: hidden;
  /* support bg-image on section directly (agent-created pages) */
  background-size: cover;
  background-position: center;
}
.page-hero--short { height: 42vh; min-height: 340px; }
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.4);
}
/* when bg-image is on section (div only — not img elements) */
div.page-hero__bg:not([style]) {
  filter: none;
  background: linear-gradient(to bottom, rgba(8,18,30,0.55) 0%, rgba(8,18,30,0.75) 100%);
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,18,30,0.65) 0%, rgba(8,18,30,0.2) 60%, transparent 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
  /* reset any inline padding overrides from agent pages */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  width: 100%;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.0;
  color: white;
  margin-top: 16px;
}

/* --- ABOUT PAGE ------------------------------------------------- */
.about-intro { padding: 120px 0; background: var(--cream); }
.about-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro__text p { font-size: 0.88rem; line-height: 1.9; color: var(--muted); margin-bottom: 18px; }
.about-intro__text .section-title { margin-bottom: 28px; }
.about-intro__img-inner {
  height: 520px;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
}
.values { padding: 130px 0; background: var(--cream); }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 64px; }
.values__card {
  background: white;
  padding: 44px 32px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.values__card:hover { border-color: var(--gold); background: var(--cream); }
.values__icon { width: 36px; height: 36px; color: var(--gold); margin-bottom: 24px; }
.values__icon svg { width: 100%; height: 100%; }
.values__card h4 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.values__card p { font-size: 0.8rem; line-height: 1.85; color: var(--muted); }

/* --- PROJECTS PAGE ---------------------------------------------- */
.proj-filter { padding: 52px 0 0; background: var(--cream); border-bottom: 1px solid var(--sand); }
.proj-filter__tabs { display: flex; flex-wrap: wrap; gap: 4px; }
.proj-tab {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  padding: 10px 20px;
  cursor: none;
  border-radius: 1px;
  transition: all 0.2s;
}
.proj-tab:hover { color: var(--navy); border-color: rgba(12,30,46,0.15); }
.proj-tab.active { color: var(--gold); border-color: rgba(184,145,74,0.4); background: rgba(184,145,74,0.05); }
.proj-grid-section { padding: 80px 0 120px; background: var(--cream); }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.proj-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  overflow: hidden;
  transition: box-shadow 0.3s, opacity 0.4s ease, transform 0.4s ease;
}
.proj-card:hover { box-shadow: 0 8px 40px rgba(12,30,46,0.08); }
.proj-card:hover { box-shadow: 0 8px 40px rgba(12,30,46,0.08); }
.proj-card__img {
  height: 240px;
  overflow: hidden;
  filter: brightness(0.78);
  position: relative;
}
.proj-card__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: filter 0.4s, transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.proj-card:hover .proj-card__img img { filter: brightness(0.9); transform: scale(1.03); }
.proj-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-l);
  background: rgba(8,18,30,0.65);
  padding: 5px 10px;
  border: 1px solid rgba(212,170,106,0.25);
}
.proj-card__num {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}
.proj-card__body { padding: 28px 28px 32px; }
.proj-card__body h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--navy); margin-bottom: 6px; }
.proj-card__sub { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 14px; }
.proj-card__desc { font-size: 0.8rem; line-height: 1.8; color: var(--muted); margin-bottom: 18px; }
.proj-card__specs { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.proj-card__specs li { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--muted); padding-left: 14px; position: relative; }
.proj-card__specs li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); }

/* --- CONTACT PAGE ----------------------------------------------- */
.contact-section { padding: 100px 0 140px; background: white; }
.contact-section__grid { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start; }
.contact-form-wrap {}
.contact-form__title { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 300; color: var(--navy); margin-bottom: 8px; }
.contact-form__sub { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 44px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.cf__row { display: flex; gap: 20px; }
.cf__row--2 .cf__field { flex: 1; }
.cf__field { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.cf__field label { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); }
.cf__field label span { color: var(--gold); }
.cf__field input, .cf__field select, .cf__field textarea {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(12,30,46,0.15);
  padding: 13px 16px;
  border-radius: 1px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.cf__field input:focus, .cf__field select:focus, .cf__field textarea:focus { border-color: var(--gold); }
.cf__field textarea { resize: vertical; }
.cf__submit {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  background: var(--navy);
  border: 1px solid var(--navy);
  padding: 16px 44px;
  cursor: none;
  border-radius: 1px;
  transition: background 0.25s, color 0.25s;
  margin-top: 8px;
}
.cf__submit:hover { background: var(--gold); border-color: var(--gold); }
.contact-info { padding-top: 8px; }
.contact-info__block { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--sand); }
.contact-info__block:last-of-type { border-bottom: none; }
.contact-info__block h4,
.contact-info__label { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; color: var(--navy); margin-bottom: 10px; }
.contact-info__block p { font-size: 0.82rem; line-height: 1.8; color: var(--muted); }
.contact-info__link { display: block; font-size: 1.05rem; color: var(--navy); text-decoration: none; transition: color 0.2s; margin-bottom: 10px; }
.contact-info__link:hover { color: var(--gold); }
.contact-info__wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #25d366; text-decoration: none;
  border: 1px solid rgba(37,211,102,0.3);
  padding: 8px 16px; border-radius: 1px;
  transition: background 0.2s;
}
.contact-info__wa:hover { background: rgba(37,211,102,0.08); }
.contact-info__promise {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 32px;
}
.contact-info__promise span { color: var(--gold); margin-right: 4px; }

/* --- FOOTER ----------------------------------------------------- */
.footer { background: var(--navy); }
.footer__top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 52px; }
.footer__logo-img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; margin-bottom: 20px; }
.footer__tagline { font-size: 0.8rem; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.footer__contact-list { display: flex; flex-direction: column; gap: 4px; }
.footer__contact-list a, .footer__contact-list span {
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.2s;
  min-height: 44px; display: flex; align-items: center;
}
.footer__contact-list a:hover { color: var(--gold-l); }
.footer__col h4,
.footer__col-title {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 20px;
  font-family: var(--font-sans); font-weight: 400;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 0.8rem; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer__col ul a:hover { color: white; }
.footer__address { font-size: 0.78rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer__whatsapp {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #25d366; text-decoration: none;
  border: 1px solid rgba(37,211,102,0.25); padding: 7px 14px; border-radius: 1px;
  transition: background 0.2s;
}
.footer__whatsapp:hover { background: rgba(37,211,102,0.08); }
.footer__bottom { padding: 24px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* --- LANG SWITCHER ---------------------------------------------- */
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(12,30,46,0.06);
  border: 1px solid rgba(12,30,46,0.2);
  color: var(--navy);
  padding: 7px 12px;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(12,30,46,0.1); border-color: var(--gold); }
.lang-btn.open { background: rgba(12,30,46,0.08); border-color: var(--gold); }
.lang-btn__name { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }
.lang-btn__chevron { width: 14px; height: 14px; fill: var(--navy); transition: transform 0.2s; flex-shrink: 0; }
.lang-btn.open .lang-btn__chevron { transform: rotate(180deg); }
.lang-btn .fi { font-size: 1rem; border-radius: 2px; }

.lang-overlay {
  position: fixed; inset: 0;
  background: rgba(8,18,30,0.65);
  z-index: 900;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.lang-overlay.open { opacity: 1; pointer-events: all; }

.lang-panel {
  position: fixed; top: 0; left: 0; right: 0;
  background: white;
  z-index: 901;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 60px rgba(8,18,30,0.28);
}
.lang-panel.open { transform: translateY(0); }

.lang-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 5%;
  background: var(--navy);
  color: white;
  position: sticky; top: 0; z-index: 2;
}
.lang-panel__head h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 300;
  letter-spacing: 0.1em;
  margin: 0;
}
.lang-panel__close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 0 4px;
  transition: color 0.2s;
}
.lang-panel__close:hover { color: white; }

.lang-search-wrap {
  padding: 16px 5% 12px;
  border-bottom: 1px solid var(--sand);
  background: white;
  position: sticky; top: 61px; z-index: 1;
}
.lang-search-wrap input {
  width: 100%; max-width: 440px;
  padding: 10px 16px;
  border: 1px solid rgba(12,30,46,0.18);
  border-radius: 1px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  color: var(--navy);
}
.lang-search-wrap input:focus { border-color: var(--gold); }

.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  padding: 8px 5% 40px;
  gap: 0;
}
.lang-continent { padding: 24px 0 4px; }
.lang-continent h4,
.lang-continent__title {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(12,30,46,0.35);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--sand);
}
.lang-list { display: flex; flex-wrap: wrap; gap: 6px; }
.lang-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  border-radius: 1px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--sand);
  transition: all 0.15s;
  white-space: nowrap;
}
.lang-item .fi { font-size: 1rem; border-radius: 1px; }
.lang-item:hover { background: var(--cream); border-color: var(--gold); color: var(--navy); }
.lang-item.active { background: var(--navy); color: white; border-color: var(--navy); }
.lang-item.active:hover { background: var(--navy); }

@media (max-width: 768px) {
  .lang-grid { grid-template-columns: 1fr; }
  .lang-btn__name { display: none; }
}

/* --- NAV ACTIVE ------------------------------------------------- */
.nav__links a.active { color: var(--navy); }

/* --- MOBILE ----------------------------------------------------- */
@media (max-width: 1100px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__card { border-right: none; border-bottom: 1px solid rgba(12,30,46,0.08); }
  .projects__strip { grid-template-columns: 1fr 1fr; }
  .projects__img { height: 280px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .about-intro__grid { grid-template-columns: 1fr; gap: 44px; }
  .about-intro__img-inner { height: 320px; }
  .contact-section__grid { grid-template-columns: 1fr; gap: 52px; }
}
/* --- MOBILE NAV DRAWER ------------------------------------------ */
.nav__mobile-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  background: var(--navy);
  z-index: 800;
  overflow: hidden;          /* clips the two side-by-side panels */
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav__mobile-drawer.open { transform: translateX(0); }

/* Gold line draws across top when drawer opens */
.nav__mobile-drawer::before {
  content: '';
  position: absolute;
  top: 72px; left: 0;
  width: 0; height: 1px;
  background: rgba(184,145,74,0.35);
  transition: width 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
  pointer-events: none;
  z-index: 1;
}
.nav__mobile-drawer.open::before { width: 100%; }

/* -- PANELS ------------------------------------------------------- */
.mob-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 88px;
  padding-bottom: 52px;
  overflow-y: auto;
  transition: transform 0.48s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Panel 1 — main menu */
.mob-panel--main { transform: translateX(0); }

/* Panel 2 — services sub — waits off-screen to the right */
.mob-panel--sub  { transform: translateX(100%); }

/* Push: main slides left, sub slides in */
.nav__mobile-drawer.sub-open .mob-panel--main { transform: translateX(-100%); }
.nav__mobile-drawer.sub-open .mob-panel--sub  { transform: translateX(0); }

/* -- SHARED LINK STYLE -------------------------------------------- */
.mob-panel a {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 18px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.mob-panel a:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.mob-panel a:hover  { color: white; background: rgba(255,255,255,0.04); }
.mob-panel a.active { color: var(--gold-l); }

/* Hover underline grows from centre */
.mob-panel a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mob-panel a:not(.nav__cta):hover::after,
.mob-panel a:not(.nav__cta).active::after { width: 36px; }

/* Quote CTA */
.mob-panel .nav__cta {
  margin-top: 32px;
  border: 1px solid rgba(212,170,106,0.35) !important;
  color: var(--gold-l) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em;
  padding: 14px 48px !important;
  background: none !important;
  width: auto !important;
  border-bottom: 1px solid rgba(212,170,106,0.35) !important;
  border-top: none !important;
  transition: background 0.25s !important;
}
.mob-panel .nav__cta:hover { background: rgba(212,170,106,0.08) !important; }
.mob-panel .nav__cta::after { display: none; }

/* -- SERVICES TRIGGER BUTTON (panel 1) --------------------------- */
.mob-svc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  padding: 18px 40px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.mob-svc-btn::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mob-svc-btn:hover  { color: white; background: rgba(255,255,255,0.04); }
.mob-svc-btn:hover::after { width: 36px; }
.mob-svc-btn.active { color: var(--gold-l); }
.mob-svc-btn.active::after { width: 36px; }
.mob-svc-btn__arrow {
  opacity: 0.4;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
}
.mob-svc-btn:hover .mob-svc-btn__arrow { opacity: 0.7; transform: translateX(5px); }

/* -- SUB-PANEL SPLIT HEADER --------------------------------------- */
.mob-sub-hdr {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
}
.nav__mobile-drawer.sub-open .mob-sub-hdr {
  animation: mobNavIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 140ms;
}

/* ← icon-only back button */
.mob-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 58px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  padding: 20px 0 20px 24px;
  cursor: pointer;
  transition: color 0.2s, transform 0.25s;
}
.mob-back-btn:hover { color: var(--gold-l); transform: translateX(-3px); }

/* Centred hub link */
.mob-sub-hdr__title {
  flex: 1;
  text-align: center;
  font-family: var(--font-sans) !important;
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none;
  padding: 20px 0 !important;
  border: none !important;
  background: none !important;
  transition: color 0.2s !important;
}
.mob-sub-hdr__title:hover { color: var(--gold-l) !important; }
.mob-sub-hdr__title.active { color: var(--gold-l) !important; }
.mob-sub-hdr__title::after { display: none !important; }

/* Spacer mirrors back-btn width for visual balance */
.mob-sub-hdr__spacer { width: 58px; flex-shrink: 0; }

/* -- STAGGER ANIMATIONS ------------------------------------------- */

/* Panel 1 main items: hidden until drawer opens */
.mob-panel--main > a,
.mob-panel--main > button.mob-svc-btn {
  opacity: 0;
  transform: translateY(22px);
}

/* Cascade in when drawer opens */
.nav__mobile-drawer.open .mob-panel--main > a,
.nav__mobile-drawer.open .mob-panel--main > button.mob-svc-btn {
  animation: mobNavIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 65ms + 90ms);
}

/* Panel 2 service links: hidden until sub opens */
.mob-panel--sub > a {
  opacity: 0;
  transform: translateY(20px);
}

/* Cascade in when sub panel slides into view */
.nav__mobile-drawer.sub-open .mob-panel--sub > a {
  animation: mobNavIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--si, 0) * 65ms + 240ms);
}

@keyframes mobNavIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav__burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); background: white !important; }
.nav__burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); background: white !important; }

@media (max-width: 768px) {
  .nav { padding: 10px 24px; }
  .nav.scrolled { padding: 10px 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile-drawer { display: flex; }
  .hero__copy { left: 5%; right: 5%; bottom: 3%; }
  .hero__scroll { display: none; }
  .hero__seo-desc { display: none; }
  .container { padding: 0 24px; }
  .section-title { margin-bottom: 40px; }
  .proj-grid { grid-template-columns: 1fr; }
  .proj-filter__tabs { gap: 6px; }
  .process__steps { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .cf__row--2 { flex-direction: column; }
  .contact__actions { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  .projects__strip { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__item { padding: 32px 16px; }
}

/* --- PROJ CARD LINKS -------------------------------------------- */
.proj-card__img-link { display: block; text-decoration: none; }
.proj-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.proj-card h3 a:hover { color: var(--gold); }
.proj-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.proj-card__cta:hover { color: var(--navy); }

/* --- PROJECT DETAIL PAGE ---------------------------------------- */
.proj-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.proj-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  transition: transform 8s ease;
}
.proj-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,30,46,0.85) 0%, rgba(12,30,46,0.3) 60%, transparent 100%);
}
.proj-hero .container { position: relative; z-index: 1; padding-bottom: 64px; }
.proj-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 12px 0 8px;
  max-width: 820px;
}
.proj-hero__sub {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.proj-hero .hero__eyebrow a { color: var(--gold-l); text-decoration: none; }
.proj-hero .hero__eyebrow a:hover { color: white; }

.proj-detail { padding: 100px 0 80px; }
.proj-detail__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.proj-detail__content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.85;
  margin-bottom: 24px;
}
.proj-detail__content p:last-child { margin-bottom: 0; }

.proj-detail__sidebar {
  background: var(--navy);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.proj-detail__sidebar h2 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.proj-detail__dl { display: grid; grid-template-columns: auto 1fr; gap: 0; }
.proj-detail__dl dt {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.proj-detail__dl dd {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.proj-detail__dl dt:last-of-type,
.proj-detail__dl dd:last-of-type { border-bottom: none; }
.proj-detail__cta {
  display: block;
  margin-top: 28px;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 24px;
  transition: background 0.25s;
}
.proj-detail__cta:hover { background: var(--gold-l); }

/* --- PROJECT PREV/NEXT NAV -------------------------------------- */
.proj-nav { padding: 60px 0; background: var(--sand); border-top: 1px solid rgba(12,30,46,0.08); }
.proj-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.proj-nav__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  max-width: 420px;
}
.proj-nav__item--next { text-align: right; margin-left: auto; }
.proj-nav__label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.proj-nav__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  transition: color 0.2s;
}
.proj-nav__item:hover .proj-nav__title { color: var(--gold); }

@media (max-width: 900px) {
  .proj-detail__grid { grid-template-columns: 1fr; gap: 48px; }
  .proj-detail__sidebar { position: static; }
  .proj-nav__inner { flex-direction: column; align-items: flex-start; }
  .proj-nav__item--next { text-align: left; margin-left: 0; }
}

/* --- HERO SEO TAGLINE ------------------------------------------- */
.hero__seo-tagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1.8;
}

/* --- SECTION SUBTITLE ------------------------------------------- */
.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin-top: -24px;
  margin-bottom: 56px;
}
.expertise__intro { max-width: 780px; }

/* --- EXPERTISE SECTION ------------------------------------------ */
.expertise {
  padding: 120px 0;
  background: var(--cream);
}
.expertise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  margin-top: 64px;
}
.expertise__block h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,145,74,0.25);
}
.expertise__block p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .expertise__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- FAQ SECTION ------------------------------------------------ */
.faq {
  padding: 120px 0;
  background: var(--sand);
}
.faq .section-title {
  margin-bottom: 56px;
}
.faq__list {
  max-width: 860px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid rgba(12,30,46,0.1);
}
.faq__item:first-child {
  border-top: 1px solid rgba(12,30,46,0.1);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.01em;
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--gold); }
.faq__item.open .faq__q { color: var(--gold); }
.faq__chevron {
  width: 20px; height: 20px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.faq__item.open .faq__chevron { transform: rotate(180deg); }
.faq__icon {
  display: inline-block;
  transition: transform 0.25s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 0 22px;
}
.faq__a p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* --- GENERIC BUTTONS (agent-generated service pages) ------------ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--gold);
  border-radius: 1px;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(184,145,74,0.45);
  border-radius: 1px;
  transition: border-color 0.25s, background 0.25s;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(184,145,74,0.08); }

/* --- RESOURCE CARDS (shared: listing + related guides) ----------- */
.res-grid-section { padding: 80px 0 120px; background: var(--cream); }
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 960px) { .res-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .res-grid { grid-template-columns: 1fr; } }

.res-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s, opacity 0.4s ease;
}
.res-card:hover { box-shadow: 0 8px 40px rgba(12,30,46,0.08); }
.res-card__img-link { display: block; overflow: hidden; }
.res-card__img { aspect-ratio: 16/9; overflow: hidden; }
.res-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: filter 0.4s, transform 0.6s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.res-card:hover .res-card__img img { filter: brightness(0.88); transform: scale(1.03); }
.res-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.res-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.res-card__cat { color: var(--gold); font-weight: 500; }
.res-card__sep { opacity: 0.4; }
.res-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 14px;
}
.res-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.res-card__title a:hover { color: var(--gold); }
.res-card__excerpt {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 22px;
  flex: 1;
}
.res-card__cta {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.res-card:hover .res-card__cta { color: var(--navy); }

/* --- RESOURCE FILTER TABS ---------------------------------------- */
.res-tab {
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  padding: 10px 20px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 400;
  border-radius: 1px;
  transition: all 0.2s;
}
.res-tab:hover { color: var(--navy); border-color: rgba(12,30,46,0.15); }
.res-tab.active { color: var(--gold); border-color: rgba(184,145,74,0.4); background: rgba(184,145,74,0.05); }

/* --- SEO: img elements replacing CSS background-image divs ------ */
img.proj-hero__bg,
img.page-hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
img.about-intro__img-inner {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
img.hero__bg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  img.about-intro__img-inner { height: 320px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SHOP — listing + product detail (TR only)
   ═══════════════════════════════════════════════════════════════════ */

/* -- Shared buttons ---------------------------------------------- */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn-gold--lg { font-size: 0.84rem; padding: 15px 36px; }

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(12,30,46,0.25);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

/* -- Eyebrow label ---------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* -- Shop Hero -------------------------------------------------- */
.shop-hero {
  background: var(--navy);
  padding: 110px 0 80px;
  text-align: center;
}
.shop-hero__inner { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.shop-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
  text-wrap: balance;
}
.shop-hero__sub {
  font-size: 0.92rem;
  color: rgba(247,243,237,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* -- Shop layout ----------------------------------------------- */
.shop-wrap {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 52px 100px;
}

/* -- Sidebar --------------------------------------------------- */
.shop-sidebar {
  flex: 0 0 240px;
  min-width: 200px;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Search */
.shop-search {
  display: flex;
  align-items: center;
  border: 1px solid rgba(12,30,46,0.15);
  background: #fff;
}
.shop-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--navy);
  background: transparent;
}
.shop-search button {
  background: none;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
}
.shop-search button:hover { color: var(--gold); }

/* Category nav */
.shop-cats__title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.shop-cats__all,
.shop-cats__parent,
.shop-cats__leaf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  font-size: 0.84rem;
  color: var(--navy);
  padding: 7px 0;
  border-bottom: 1px solid rgba(12,30,46,0.07);
  transition: color 0.15s;
}
.shop-cats__all:hover,
.shop-cats__parent:hover,
.shop-cats__leaf:hover { color: var(--gold); }
.shop-cats__all.active,
.shop-cats__parent.active,
.shop-cats__leaf.active { color: var(--gold); font-weight: 500; }

.shop-cats__count {
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: 6px;
}
.shop-cats__children {
  padding-left: 12px;
  display: none;
}
.shop-cats__group.open .shop-cats__children { display: block; }
.shop-cats__leaf { font-size: 0.8rem; color: #4a606e; }

/* Brand tags */
.shop-brands-filter { display: flex; flex-wrap: wrap; gap: 6px; }
.shop-brand-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: 0.74rem;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  color: var(--navy);
  background: rgba(12,30,46,0.05);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.shop-brand-tag:hover { border-color: var(--gold); color: var(--gold); }
.shop-brand-tag.active { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Sidebar CTA */
.shop-sidebar-cta {
  background: var(--navy);
  padding: 24px 20px;
  text-align: center;
}
.shop-sidebar-cta p {
  color: rgba(247,243,237,0.7);
  font-size: 0.82rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* -- Shop main area -------------------------------------------- */
.shop-main { flex: 1; min-width: 0; }

.shop-cat-h2 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.45;
  margin: 0 0 8px;
}
.shop-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(12,30,46,0.1);
  margin-bottom: 32px;
}
.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(12,30,46,0.06);
}
.shop-breadcrumb a { color: var(--muted); text-decoration: none; }
.shop-breadcrumb a:hover { color: var(--navy); }
.shop-breadcrumb span { color: var(--muted); }
.shop-count { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }

/* -- Pagination ------------------------------------------------ */
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--border, #e8ecef);
}
.shop-pagination__info {
  font-size: 0.8rem;
  color: var(--muted);
}
.shop-pagination__info strong {
  color: var(--ink, #1a2233);
  font-weight: 600;
}
.shop-pagination__btns {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.shop-pag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink2, #3a4d61);
  border: 1px solid var(--border, #e8ecef);
  background: var(--surface, #fff);
  transition: all 0.15s;
  white-space: nowrap;
}
.shop-pag-btn:hover {
  border-color: var(--navy, #1a3c5e);
  color: var(--navy, #1a3c5e);
  background: var(--panel, #f4f6f9);
}
.shop-pag-btn--active {
  background: var(--navy, #1a3c5e);
  border-color: var(--navy, #1a3c5e);
  color: #fff;
  cursor: default;
  pointer-events: none;
}
.shop-pag-btn--nav {
  padding: 0 14px;
  gap: 4px;
}
.shop-pag-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 36px;
  font-size: 0.8rem;
  color: var(--muted);
}
@media (max-width: 480px) {
  .shop-pagination { flex-direction: column; align-items: flex-start; }
  .shop-pag-btn--nav span { display: none; }
}

/* -- Product grid ---------------------------------------------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.shop-grid--related {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(12,30,46,0.08);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.shop-card:hover {
  box-shadow: 0 8px 32px rgba(12,30,46,0.12);
  transform: translateY(-2px);
}
.shop-card__img-wrap {
  height: 240px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-card__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.shop-card:hover .shop-card__img-wrap img { transform: scale(1.04); }

.shop-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shop-card__meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.shop-card__brand {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.shop-card__cat {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.shop-card__name, .product-title {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
  flex: 1;
}
.shop-card__cta {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.shop-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--muted);
}
.shop-empty a { color: var(--gold); text-decoration: none; }

/* ═══ Product Detail Page ═══════════════════════════════════════════ */

/* Breadcrumb */
.prod-breadcrumb {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 14px 0;
  padding-top: 100px;
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 10;
}
.prod-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.prod-breadcrumb .container::-webkit-scrollbar { display: none; }
.prod-breadcrumb a,
.prod-breadcrumb span { white-space: nowrap; flex-shrink: 0; }
.prod-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.15s; }
.prod-breadcrumb a:hover { color: var(--gold); }
.prod-breadcrumb span { color: #bbb; }
.prod-breadcrumb__current {
  color: var(--navy);
  font-weight: 500;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

/* Brand logo hybrid */
.prod-info__brand-wrap { margin-bottom: 16px; }
.prod-info__brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(12,30,46,0.1);
  border-radius: 4px;
  padding: 8px 14px;
  transition: border-color 0.15s;
}
.prod-info__brand-logo-link:hover { border-color: rgba(12,30,46,0.25); }
.prod-info__brand-logo { height: 28px; width: auto; max-width: 110px; object-fit: contain; display: block; }

/* Rating link in info panel */
.prod-info__rating-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-bottom: 4px;
}
.stars { display: inline-flex; gap: 1px; }
.prod-info__rating-avg { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.prod-info__rating-count { color: var(--muted); font-size: 0.82rem; }

/* -- Reviews section -- */
.prod-reviews {
  background: #f9f8f6;
  border-top: 1px solid rgba(12,30,46,0.07);
  padding: 72px 0 80px;
}
.prod-reviews__header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(12,30,46,0.09);
}
.prod-reviews__title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0;
}
.prod-reviews__summary { display: flex; align-items: center; gap: 8px; }
.prod-reviews__avg { font-size: 1rem; font-weight: 600; color: var(--gold); }
.prod-reviews__total { color: var(--muted); font-size: 0.82rem; }

.review-msg {
  padding: 13px 18px;
  border-radius: 4px;
  margin-bottom: 28px;
  font-size: 0.88rem;
}
.review-msg--ok  { background: #f0faf0; border: 1px solid #a8d5a8; color: #2d6a2d; }
.review-msg--err { background: #fff4f4; border: 1px solid #e0b0b0; color: #8b2020; }

.review-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 56px; }
.review-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(12,30,46,0.08);
}
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-item__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.review-item__author {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.review-item__date {
  color: var(--muted);
  font-size: 0.76rem;
  margin-left: auto;
  letter-spacing: 0.03em;
}
.review-item__body { margin: 0; font-size: 0.93rem; color: #4a5468; line-height: 1.8; }

.review-empty { color: var(--muted); font-style: italic; margin-bottom: 48px; }

/* Review form */
.review-form-wrap {
  background: #fff;
  border: 1px solid rgba(12,30,46,0.09);
  border-radius: 6px;
  padding: 40px 44px;
  max-width: 600px;
}
.review-form__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(12,30,46,0.08);
}
.review-form { display: flex; flex-direction: column; gap: 20px; max-width: 100%; }
.review-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-form input,
.review-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid rgba(12,30,46,0.16);
  border-radius: 3px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
  background: #faf9f8;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}
.review-form input:focus,
.review-form textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.review-form textarea { resize: vertical; min-height: 110px; }
.review-form__full {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-form__note {
  font-size: 0.74rem;
  color: var(--muted);
  margin: -4px 0 0;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

/* Star picker */
.review-form__stars { border: none; padding: 0; margin: 0; }
.review-form__stars legend {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.star-picker { display: flex; flex-direction: row-reverse; gap: 6px; width: fit-content; }
.star-picker input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-picker label { cursor: pointer; color: #d8d4cc; transition: color 0.15s; }
.star-picker label svg { fill: currentColor; display: block; width: 22px; height: 22px; }
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: var(--gold); }

@media (max-width: 768px) {
  .prod-reviews { padding: 52px 0 60px; }
  .review-form-wrap { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .review-form__row { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 24px 20px; }
}

/* Product wrap: gallery + info */
.prod-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: start;
  padding: 48px 52px 60px;
}

/* -- Gallery -- */
.prod-gallery { position: sticky; top: 90px; min-width: 0; }
.prod-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid rgba(12,30,46,0.08);
  overflow: hidden;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -- Lightbox -- */
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lb-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 4px 32px rgba(12,30,46,0.12);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.lb-overlay.open img { transform: scale(1); }
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #0c1e2e;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12,30,46,0.06);
  border: none;
  color: #0c1e2e;
  font-size: 2rem;
  width: 52px;
  height: 80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  border-radius: 2px;
}
.lb-nav:hover { background: rgba(12,30,46,0.14); }
.lb-nav--prev { left: 16px; }
.lb-nav--next { right: 16px; }
.lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(12,30,46,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.prod-gallery__main img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12,30,46,0.55);
  color: #fff;
  border: none;
  width: 38px;
  height: 56px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 2;
}
.gallery-nav:hover { background: rgba(12,30,46,0.85); }
.gallery-nav--prev { left: 0; }
.gallery-nav--next { right: 0; }

.prod-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.gallery-thumb {
  flex: 0 0 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  background: #f8f7f5;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.15s;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb:hover { border-color: rgba(184,145,74,0.5); }

/* Video thumb */
.gallery-thumb--video { position: relative; border-radius: 4px; }
.gallery-thumb--video img { object-fit: cover; }
.gallery-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: #fff;
  background: rgba(0,0,0,.38);
  transition: background .15s;
  pointer-events: none;
}
.gallery-thumb--video:hover .gallery-thumb__play { background: rgba(0,0,0,.55); }
.gallery-thumb__vid-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a2e;
}

/* -- Product info -- */
.prod-info { padding-right: 0; padding-top: 8px; }


.prod-info__brand {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.prod-info__name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 10px;
}
.prod-info__cat { margin-bottom: 20px; }
.prod-info__cat a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(106,126,142,0.3);
  padding-bottom: 1px;
}
.prod-info__cat a:hover { color: var(--navy); }

.prod-info__short {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #3a4e5c;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(12,30,46,0.1);
}
.prod-info__short ul,
.prod-info__short ol { padding-left: 18px; }
.prod-info__short li { margin-bottom: 4px; }

/* Price / stock / tags meta row */
.prod-info__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.prod-info__price {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.prod-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.prod-stock-badge--in  { background: #dcfce7; color: #166534; }
.prod-stock-badge--out { background: #fef9c3; color: #854d0e; }
.prod-stock-badge--in::before  { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #16a34a; }
.prod-stock-badge--out::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #ca8a04; }
.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.prod-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(12,30,46,0.05);
  border: 1px solid rgba(12,30,46,0.1);
  padding: 3px 9px;
  border-radius: 12px;
}

/* Attributes table */
.prod-attrs {
  margin-bottom: 28px;
  border: 1px solid rgba(12,30,46,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.prod-attrs__title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  padding: 13px 16px;
  background: rgba(12,30,46,0.03);
  border-bottom: 1px solid rgba(12,30,46,0.08);
}
.prod-attrs__body { position: relative; }
/* Collapsed: show first 3 rows, fade rest */
.prod-attrs:not(.expanded) tbody tr:nth-child(n+4) { display: none; }
.prod-attrs:not(.expanded) .prod-attrs__body::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}
.prod-attrs table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.prod-attrs tr:nth-child(even) { background: rgba(12,30,46,0.018); }
.prod-attrs th,
.prod-attrs td {
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(12,30,46,0.06);
  vertical-align: top;
}
.prod-attrs tr:last-child th,
.prod-attrs tr:last-child td { border-bottom: none; }
.prod-attrs th { font-weight: 500; color: var(--muted); width: 40%; }
.prod-attrs td { color: var(--navy); font-weight: 400; }
/* Toggle button */
.prod-attrs__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 16px;
  background: rgba(12,30,46,0.02);
  border: none;
  border-top: 1px solid rgba(12,30,46,0.08);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s;
}
.prod-attrs__toggle:hover { background: rgba(12,30,46,0.05); }
.prod-attrs__toggle svg { transition: transform 0.3s ease; flex-shrink: 0; }
.prod-attrs.expanded .prod-attrs__toggle svg { transform: rotate(180deg); }

/* CTA row */
.prod-info__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.prod-info__note {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
}

/* -- Full description -- */
.prod-desc-wrap {
  background: #fff;
  padding: 60px 0;
  border-top: 1px solid rgba(12,30,46,0.08);
  margin-top: 20px;
}
.prod-desc {
  max-width: 780px;
  font-size: 0.9rem;
  line-height: 1.85;
  color: #3a4e5c;
}
.prod-desc h1, .prod-desc h2, .prod-desc h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--navy);
  margin: 28px 0 12px;
  text-wrap: balance;
}
.prod-desc h2 { font-size: 1.5rem; }
.prod-desc h3 { font-size: 1.15rem; }
.prod-desc p { margin-bottom: 14px; }
.prod-desc ul, .prod-desc ol { padding-left: 20px; margin-bottom: 14px; }
.prod-desc li { margin-bottom: 6px; }
.prod-desc hr { border: none; border-top: 1px solid rgba(12,30,46,0.12); margin: 32px 0; }
.prod-desc table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 0.85rem; overflow-x: auto; display: block; }
.prod-desc th, .prod-desc td { padding: 9px 14px; border: 1px solid rgba(12,30,46,0.1); text-align: left; }
.prod-desc th { background: rgba(12,30,46,0.04); font-weight: 600; }

/* -- Related products -- */
.prod-related {
  background: var(--sand);
  padding: 60px 0 80px;
}
.prod-related__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
}

/* -- Brand Archive Page -------------------------------------------- */
.brand-hero {
  background: #f0ece6;
  padding: 100px 0 30px;
  border-bottom: 1px solid rgba(12,30,46,0.08);
  position: relative;
  overflow: hidden;
}
.brand-hero__bg-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,30,46,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.brand-hero__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}
.brand-hero__left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-right: 48px;
  min-width: 200px;
}
.brand-hero__logo-wrap {
  width: 180px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(12,30,46,0.08);
  padding: 24px;
  box-shadow: 0 2px 16px rgba(12,30,46,0.07);
}
.brand-hero__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-hero__badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(188,155,100,0.10);
  border: 1px solid rgba(188,155,100,0.28);
  padding: 4px 10px;
  border-radius: 3px;
  white-space: nowrap;
  text-align: center;
}
.brand-hero__divider {
  flex: 0 0 1px;
  background: linear-gradient(to bottom, transparent, rgba(12,30,46,0.12) 20%, rgba(12,30,46,0.12) 80%, transparent);
  align-self: stretch;
  margin: 0 48px 0 0;
}
.brand-hero__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.brand-hero__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
}
.brand-hero__count {
  font-size: 0.82rem;
  color: rgba(12,30,46,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-hero__tagline {
  font-size: 0.97rem;
  color: rgba(12,30,46,0.65);
  line-height: 1.65;
  max-width: 560px;
  margin: 4px 0 8px;
}
.brand-hero__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.brand-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
}
.brand-hero__cta--primary {
  background: var(--navy);
  color: #fff;
}
.brand-hero__cta--primary:hover {
  background: #162842;
}
.brand-hero__cta--wa {
  background: transparent;
  color: rgba(12,30,46,0.65);
  border: 1px solid rgba(12,30,46,0.18);
}
.brand-hero__cta--wa:hover {
  border-color: var(--navy);
  color: var(--navy);
}
@media (max-width: 680px) {
  .brand-hero { padding: 112px 0 44px; }
  .brand-hero__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .brand-hero__left { flex-direction: row; padding-right: 0; min-width: 0; align-items: center; }
  .brand-hero__logo-wrap { width: 100px; height: 80px; padding: 14px; }
  .brand-hero__divider { display: none; }
  .brand-hero__name { font-size: 1.7rem; }
  .brand-hero__tagline { display: none; }
}

.brand-desc-top,
.brand-desc-bottom {
  padding: 48px 0;
}
.brand-desc-top { background: #fff; border-bottom: 1px solid rgba(12,30,46,0.08); }
.brand-desc-bottom { background: var(--sand); border-top: 1px solid rgba(12,30,46,0.08); }
.brand-desc-inner {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #3a4e5c;
  max-width: 860px;
}
.brand-desc-inner h2, .brand-desc-inner h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--navy);
  margin: 20px 0 10px;
}
.brand-desc-inner p { margin-bottom: 12px; }
.brand-desc-inner ul, .brand-desc-inner ol { padding-left: 20px; margin-bottom: 12px; }

.brand-products { padding: 48px 0 80px; }
@media (max-width: 768px) {
  .brand-products { padding-left: 10px; padding-right: 10px; }
}

/* -- Category desc blocks ------------------------------------------ */
.shop-cat-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #3a4e5c;
  padding: 20px 0;
  border-bottom: 1px solid rgba(12,30,46,0.08);
  margin-bottom: 24px;
}
.shop-cat-desc--bottom {
  border-bottom: none;
  border-top: 1px solid rgba(12,30,46,0.08);
  margin-top: 32px;
  margin-bottom: 0;
  padding-top: 24px;
}
.shop-cat-desc p { margin-bottom: 10px; }
.shop-cat-desc h2, .shop-cat-desc h3 { font-family: var(--font-serif); font-weight: 400; color: var(--navy); margin-bottom: 8px; }

/* -- Brand link in product detail --------------------------------- */
.prod-info__brand-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,145,74,0.3);
  transition: border-color 0.15s;
}
.prod-info__brand-link:hover { border-color: var(--gold); }

/* -- Category grid (shop home + top-cat) -------------------------- */
.cat-grid-section { margin-bottom: 48px; }
.cat-grid-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cat-grid-section__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
}
.cat-grid-section__header .cat-grid-section__title { margin-bottom: 0; }
.cat-grid-section__all {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.cat-grid-section__all:hover { text-decoration: underline; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.cat-grid--four {
  grid-template-columns: repeat(4, 1fr);
}
.cat-grid--leaf {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(12,30,46,0.08);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.cat-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(12,30,46,0.10); }

.cat-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card--sm .cat-card__img { aspect-ratio: 3/2; }
.cat-card__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.cat-card:hover .cat-card__img img { transform: scale(1.04); }

.cat-card__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-card__name {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}
.cat-card__count {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--gold);
}

/* Featured products separator */
.cat-grid-section--featured {
  padding-top: 40px;
  border-top: 1px solid rgba(12,30,46,0.07);
  margin-top: 8px;
}

/* Bottom CTA strip */
.shop-cta-strip {
  background: var(--navy);
  border-radius: 6px;
  padding: 36px 40px;
  margin-top: 48px;
}
.shop-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.shop-cta-strip__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}
.shop-cta-strip__sub {
  font-size: 0.83rem;
  color: rgba(247,243,237,0.55);
  max-width: 420px;
  line-height: 1.5;
}
.shop-cta-strip__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.shop-cta-strip__wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(247,243,237,0.75);
  border: 1px solid rgba(247,243,237,0.15);
  text-decoration: none;
  transition: all 0.18s;
}
.shop-cta-strip__wa:hover { color: var(--cream); border-color: rgba(247,243,237,0.4); }

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-grid--four { grid-template-columns: repeat(2, 1fr); }
  .cat-grid--leaf { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cat-card__body { padding: 10px 12px; }
  .cat-grid-section { margin-bottom: 32px; }
  .shop-cta-strip { padding: 28px 20px; }
  .shop-cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .shop-cta-strip__actions { width: 100%; }
}

/* -- Brand category slider ----------------------------------------- */
.brand-cats-slider {
  position: relative;
  margin: 0 -52px 36px;
  overflow: hidden;
}
.brand-cats-slider__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 52px 16px;
  -webkit-overflow-scrolling: touch;
}
.brand-cats-slider__track::-webkit-scrollbar { display: none; }

.brand-cat-card {
  flex-shrink: 0;
  width: 180px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(12,30,46,0.08);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.brand-cat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(12,30,46,0.10);
}
.brand-cat-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-cat-card__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.brand-cat-card:hover .brand-cat-card__img img { transform: scale(1.04); }

.brand-cat-card__body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-cat-card__parent {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-cat-card__name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}
.brand-cat-card__count {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 2px;
}

.brand-cats-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 36px;
  height: 36px;
  border: 1px solid rgba(12,30,46,0.12);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: border-color 0.15s, color 0.15s;
}
.brand-cats-slider__arrow--prev { left: 10px; }
.brand-cats-slider__arrow--next { right: 10px; }
.brand-cats-slider__arrow:hover { border-color: var(--gold); color: var(--gold); }
.brand-cats-slider__arrow[hidden] { display: none; }

@media (max-width: 768px) {
  .brand-cats-slider { margin: 0 -16px 24px; }
  .brand-cats-slider__track { padding: 4px 16px 12px; gap: 12px; }
  .brand-cat-card { width: 140px; }
  .brand-cats-slider__arrow { display: none; }
}


/* -- Shop filter bar (mobile sticky) ------------------------------ */
.shop-filter-bar {
  display: none;
  position: sticky;
  top: 68px;
  z-index: 120;
  background: var(--cream);
  border-bottom: 1px solid rgba(12,30,46,0.08);
  padding: 10px 16px;
  align-items: center;
  gap: 10px;
}
.shop-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(12,30,46,0.15);
  cursor: pointer;
}
.shop-filter-active {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--navy);
  background: var(--gold);
  color: #fff;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.shop-filter-active a { color: #fff; text-decoration: none; opacity: 0.8; }
.shop-filter-active a:hover { opacity: 1; }

/* -- Shop overlay -------------------------------------------------- */
.shop-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,35,0.45);
  z-index: 200;
  backdrop-filter: blur(2px);
}
.shop-overlay.open { display: block; }

/* -- Sidebar close button ------------------------------------------ */
.shop-sidebar__close {
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--muted);
  cursor: pointer;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(12,30,46,0.08);
  width: 100%;
}

/* ═══ Responsive ═══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .shop-wrap { flex-direction: column; padding: 40px 24px 80px; gap: 32px; }
  .shop-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 20px; min-width: 0; }
  .shop-cats { flex: 0 0 100%; }
  .shop-brands-filter { flex-direction: row; }
  .shop-sidebar-cta { flex: 0 0 100%; }
  .prod-wrap { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 60px; }
  .prod-gallery { position: static; max-width: 560px; }
  .prod-info { padding-right: 0; }
}
@media (max-width: 768px) {
  /* Shop grid 2 sütun */
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .shop-filter-bar { display: flex; }

  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(300px, 82vw);
    height: 100%;
    background: #fff;
    z-index: 210;
    padding: 24px 20px;
    overflow-y: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
    transition: left 0.32s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 4px 0 24px rgba(10,22,35,0.18);
  }
  .shop-sidebar.open { left: 0; }
  .shop-sidebar__close { display: flex; }

  .shop-wrap { padding: 28px 16px 60px; overflow-x: hidden; }
  html, body { overflow-x: clip; }

  /* Product page */
  /* prod-breadcrumb padding-top inherited from base (100px) */
  .prod-gallery { max-width: 100%; }
}
@media (max-width: 640px) {
  .shop-hero { padding: 90px 0 60px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .prod-info__cta { flex-direction: column; }
  .btn-gold, .btn-outline, .btn-whatsapp { text-align: center; }

  /* Product detail — edge-to-edge gallery, info below */
  .prod-breadcrumb { padding-bottom: 10px; }
  /* prod-wrap.container has padding:0 at this breakpoint, gallery fills full width naturally */
  .prod-wrap { padding: 0 0 48px; gap: 0; }
  .prod-gallery { width: 100%; position: static; }
  .prod-gallery__main {
    aspect-ratio: unset;
    height: auto;
    min-height: 240px;
    border-left: none;
    border-right: none;
  }
  .prod-gallery__main img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .prod-gallery__thumbs { padding: 0 12px; }
  .prod-info { padding: 10px 16px 0; }
  .prod-info__name { font-size: 1.35rem; }
  .prod-attrs { margin-top: 20px; }
  .prod-info__cta { gap: 10px; }
}

/* -- Product Videos ----------------------------------------------- */
.prod-videos {
  padding: 3.5rem 0;
  background: #f8f9fa;
}
.prod-videos__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 1.75rem;
  font-weight: 600;
}
.prod-videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 520px), 1fr));
  gap: 1.75rem;
}
.prod-video-item {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.prod-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.prod-video-embed iframe,
.prod-video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}
.prod-video-item__title {
  font-size: .88rem;
  color: var(--muted, #6c7a8a);
  font-weight: 500;
  line-height: 1.4;
}

/* -- FAQ Accordion ----------------------------------------------- */
.prod-faq {
  background: #fff;
  border-top: 1px solid rgba(12,30,46,0.07);
  padding: 56px 0;
}
.prod-faq__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(12,30,46,0.08); }
.faq-item:first-child { border-top: 1px solid rgba(12,30,46,0.08); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--gold); }
.faq-q span { flex: 1; }
.faq-icon { flex-shrink: 0; color: var(--muted); transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p {
  padding-bottom: 18px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #4a5568;
}

/* -- Downloads inline (info panel) -------------------------------- */
.prod-info__downloads { margin-top: 20px; }
.prod-info__downloads-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.prod-info__downloads .download-list { flex-direction: column; gap: 6px; }
.prod-info__downloads .download-link { padding: 8px 12px; font-size: 0.8rem; }

/* -- Downloads --------------------------------------------------- */
.prod-downloads {
  background: var(--cream);
  border-top: 1px solid rgba(12,30,46,0.07);
  padding: 48px 0;
}
.prod-downloads__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 24px;
}
.download-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.download-item { flex: 0 0 auto; }
.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid rgba(12,30,46,0.18);
  background: #fff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.download-link:hover { border-color: var(--gold); background: #fffbf5; }
.download-icon { color: var(--gold); flex-shrink: 0; }
.download-size { color: var(--muted); font-size: 0.74rem; margin-left: 4px; }

/* --- HERO HOTSPOT: hide SVG labels on mobile (too small to read, outside viewBox) - */
@media (max-width: 768px) {
  .hs__label-id,
  .hs__label-name { display: none; }
}
