:root {
  --bg: #f8f6f3;
  --bg-dark: #0a0a0a;
  --bg-soft: #f0ece6;
  --text: #121212;
  --text-muted: #6e6862;
  --text-light: rgba(248,246,243,0.72);
  --gold: #b8956a;
  --gold-light: #d9c4a3;
  --gold-dim: rgba(184,149,106,0.25);
  --border: #e4dfd8;
  --font: "DM Sans", system-ui, sans-serif;
  --font-ui: "DM Sans", system-ui, sans-serif;
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --hdr: 68px;
  --radius: 4px;
  --input-radius: 4px;
  --control-h: 48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--hdr);
  overflow-x: clip;
  overscroll-behavior: none;
  max-width: 100%;
}
body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overscroll-behavior: none;
  width: 100%;
  max-width: 100%;
  position: relative;
}

body.site-menu-open {
  overflow: hidden;
  height: 100%;
  height: 100dvh;
  touch-action: none;
  position: fixed;
  inset: 0;
  width: 100%;
}

body.site-lb-open {
  overflow: hidden;
  height: 100%;
  height: 100dvh;
  touch-action: none;
  position: fixed;
  inset: 0;
  width: 100%;
}

body.is-preloading {
  overflow: hidden;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

/* Theks akcenti — i njëjti font si pjesa tjetër e faqes */
.h2 em,
.hero-slide__title,
.about-hero__title em,
.quote p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
}

/* UI controls — DM Sans */
.hdr__nav a,
.hdr__toggle,
.btn,
.lbl,
.marquee__track,
.filters__btn,
.cform__row label,
.cform__row input,
.cform__row textarea,
.csel__trigger,
.csel__opt,
.quote footer,
.contact__list span,
.ftr,
.ftr__login,
.ftr__link,
.ig-strip .btn,
.vcard__placeholder .btn {
  font-family: var(--font-ui);
}
::selection { background: var(--gold-dim); color: var(--text); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
code { font-size: 11px; background: rgba(0,0,0,0.06); padding: 2px 6px; border-radius: var(--radius); }

.wrap { width: min(1160px, calc(100% - 48px)); margin-inline: auto; max-width: 100%; }

/* LOGO SVG */
.logo-img,
.logo-raster { width: 100%; height: auto; display: block; object-fit: contain; }
.logo-svg { width: 100%; height: auto; display: block; }
.logo-svg--light { color: #fff; }
.logo-svg--dark { color: #141414; }
.logo-svg--auto { color: currentColor; }
.hdr__logo-svg { width: 148px; transition: opacity 0.3s; }
.hdr__logo:hover .hdr__logo-svg { opacity: 0.85; }
.ftr__logo { width: 128px; margin: 0 auto; opacity: 0.9; }

/* HEADER */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--hdr);
  width: 100%;
  max-width: 100%;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.hdr.scrolled,
.hdr--solid {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: rgba(255,255,255,0.06);
}
.hdr__in {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; width: min(1160px, 100% - 40px); margin-inline: auto;
  gap: 12px;
}
.hdr__nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
@media (min-width: 901px) {
  .hdr__toggle { display: none !important; }
  .hdr__backdrop { display: none !important; }
}
.hdr__nav-link,
.hdr__nav a {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  padding: 8px 14px; position: relative;
  transition: color 0.25s;
}
.hdr__drop { position: relative; }
.hdr__drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.25s;
}
.hdr__drop-btn i { font-size: 14px; transition: transform 0.2s; }
.hdr__drop.is-open .hdr__drop-btn,
.hdr__drop-btn:hover { color: #fff; }
.hdr__drop.is-open .hdr__drop-btn i { transform: rotate(180deg); }
.hdr__drop-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  padding: 8px;
  background: rgba(12,12,12,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--input-radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300;
}
.hdr__drop.is-open .hdr__drop-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.hdr__drop-panel a {
  display: block;
  padding: 10px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.hdr__drop-panel a::after { display: none !important; }
.hdr__drop-panel a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.hdr__nav-link::after,
.hdr__nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.hdr__nav-link:hover, .hdr__nav-link.is-active,
.hdr__nav a:hover, .hdr__nav a.is-active { color: #fff; }
.hdr__nav-link:hover::after, .hdr__nav-link.is-active::after,
.hdr__nav a:hover::after, .hdr__nav a.is-active::after { transform: scaleX(1); }
.hdr__nav-link--accent { color: var(--gold-light) !important; }
.hdr__ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  margin-left: 8px;
  padding-inline: 18px !important;
}
.hdr__ig::after { display: none; }
.hdr__ig:hover { border-color: var(--gold); color: var(--gold-light) !important; }
.hdr__wa:hover { border-color: #25d366 !important; color: #86efac !important; }
.hdr__cta {
  margin-left: 6px;
  padding: 10px 18px !important;
  background: var(--gold) !important;
  color: #0a0a0a !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
}
.hdr__cta::after { display: none !important; }
.hdr__cta:hover {
  background: var(--gold-light) !important;
  color: #0a0a0a !important;
}
.hdr__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  z-index: 230;
  flex-shrink: 0;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.hdr__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 0;
  transition: transform 0.35s var(--ease), opacity 0.25s;
  transform-origin: center;
}
.hdr__toggle.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.hdr__toggle.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.hdr__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 205;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.hdr__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .hdr,
  .hdr.scrolled,
  .hdr--solid,
  body.site-menu-open .hdr,
  .hdr.menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hdr__toggle { display: flex; }
  .hdr__logo { position: relative; z-index: 230; }
  .hdr__cta { display: none; }
  .hdr__backdrop { display: block; }

  body.site-menu-open .hdr,
  .hdr.menu-open {
    background: rgba(8, 8, 8, 0.98) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  }

  .hdr__nav {
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--hdr) + 24px) 24px calc(32px + env(safe-area-inset-bottom, 0px));
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    pointer-events: none;
  }

  .hdr__nav.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .hdr__nav > .hdr__nav-link,
  .hdr__nav > .hdr__cta,
  .hdr__nav > .hdr__ig {
    font-size: 13px;
    padding: 16px 8px;
    letter-spacing: 0.16em;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hdr__nav > .hdr__nav-link::after,
  .hdr__nav > .hdr__cta::after,
  .hdr__nav > .hdr__ig::after {
    left: 8px;
    right: auto;
    width: 24px;
    margin-left: 0;
    bottom: 10px;
  }

  .hdr__nav > .hdr__nav-link.is-active {
    color: #fff;
  }

  .hdr__drop {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hdr__drop-btn {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
    padding: 16px 8px;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.7);
  }
  .hdr__drop.is-open .hdr__drop-btn {
    color: #fff;
  }
  .hdr__drop-panel,
  .hdr__drop.is-open .hdr__drop-panel {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    min-width: 0 !important;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s var(--ease);
    pointer-events: none;
    overflow: hidden;
    max-height: none;
  }
  .hdr__drop-panel__in {
    min-height: 0;
    overflow: hidden;
  }
  .hdr__drop.is-open .hdr__drop-panel {
    grid-template-rows: 1fr;
    pointer-events: auto;
  }
  .hdr__drop-panel a {
    display: block;
    padding: 14px 8px 14px 20px;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.72) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
  }
  .hdr__drop-panel a:hover,
  .hdr__drop-panel a:active {
    background: transparent;
    color: #fff !important;
  }
  .hdr__drop-panel a:last-child {
    border-bottom: none;
  }
  .hdr__drop-panel a::after {
    display: none !important;
  }

  .hdr__nav .hdr__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 16px 20px;
    border: none;
    border-bottom: none;
    background: var(--gold);
    color: #0a0a0a !important;
    font-size: 11px;
    letter-spacing: 0.14em;
    border-radius: var(--input-radius);
  }

  .hdr__nav .hdr__cta::after { display: none !important; }

  .hdr__nav .hdr__ig {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--input-radius);
    letter-spacing: 0.14em;
  }

  .hdr__nav .hdr__ig::after { display: none; }
}

/* HERO SLIDER */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  max-height: 1200px;
  background: var(--bg-dark);
  --hero-top-safe: calc(var(--hdr) + clamp(175px, 22vh, 235px));
  --hero-bottom-safe: clamp(188px, 25vh, 240px);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.hero::after {
  content: ""; pointer-events: none; position: absolute; inset: 0; z-index: 5;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-swiper, .hero-swiper .swiper-wrapper, .hero-slide { height: 100%; }
.hero-slide { position: relative; overflow: hidden; }
.hero-slide__bg {
  position: absolute; inset: -8%;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 8s var(--ease-out);
}
.swiper-slide-active .hero-slide__bg { transform: scale(1.14); }
.hero-slide__video {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s var(--ease-out);
}
.swiper-slide-active .hero-slide__video { transform: scale(1.14); }
.hero-slide__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 28%, transparent 45%),
    linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 38%, transparent 62%),
    rgba(0,0,0,0.1);
}
.hero-slide__content {
  position: absolute;
  top: var(--hero-top-safe);
  bottom: var(--hero-bottom-safe);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 clamp(20px, 5vw, 40px);
  margin: 0;
  max-width: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
  z-index: 8;
}
.swiper-slide-active .hero-slide__content {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide__loc {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.hero-slide__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4.2vw, 44px);
  font-weight: 500;
  font-style: normal;
  margin-bottom: 6px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 14ch;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}
.hero-slide__sub {
  font-family: var(--font-ui);
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 400;
  opacity: 0.88;
  letter-spacing: 0.01em;
  line-height: 1.5;
  max-width: 28ch;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

/* Hero UI layer — brand top, actions bottom */
.hero__ui {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding:
    calc(var(--hdr) + clamp(8px, 2vh, 20px))
    clamp(16px, 4vw, 32px)
    clamp(12px, 2vh, 20px);
  pointer-events: none;
}
.hero__brand {
  flex: 0 0 auto;
  text-align: center;
  width: 100%;
  max-width: 520px;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.hero__brand.is-dim {
  opacity: 0.35;
  transform: translateY(-6px);
}
.hero__logo-svg {
  width: min(280px, 72vw);
  margin: 0 auto 8px;
}
.hero__slogan {
  font-family: var(--font-script);
  font-size: clamp(24px, 4.8vw, 38px);
  font-weight: 500;
  line-height: 1.1;
  color: rgba(255,255,255,0.94);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.hero__cred {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  font-size: clamp(8px, 1.2vw, 10px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
  max-width: 42ch;
  margin: 0 auto;
}
.hero__cred-sep { opacity: 0.45; }

.hero__actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  pointer-events: auto;
}
.hero__actions .btn {
  width: 100%;
  max-width: 280px;
}

.hero__actions .hero-swiper__nav {
  position: static;
  transform: none;
  left: auto;
  bottom: auto;
  margin: 0;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.25s;
  pointer-events: auto;
}
.hero__scroll:hover { color: rgba(255,255,255,0.85); }
.hero__scroll i { font-size: 18px; animation: scroll-bounce 2s var(--ease) infinite; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(4px); opacity: 1; }
}

.hero-swiper__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 20;
}
.hero-swiper__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.1s linear;
}
.hero-swiper__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 20;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-swiper__btn {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  aspect-ratio: 1;
}
.hero-swiper__btn i {
  font-size: 16px;
  line-height: 1;
  display: block;
}
.hero-swiper__btn:hover {
  color: #fff;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.35);
}
.hero-swiper__btn:active { transform: scale(0.96); }
.hero-swiper__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 4px;
  border: none;
  margin: 0;
  min-height: 40px;
  width: auto !important;
}
.hero-swiper__pagination .swiper-pagination-bullet {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 0;
  opacity: 1;
  margin: 0 !important;
  transition: background 0.25s, width 0.25s, opacity 0.25s;
}
.hero-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 40px;
  height: 2px;
  border-radius: 0;
  opacity: 1;
}

@media (max-width: 768px) {
  .hero {
    --hero-top-safe: calc(var(--hdr) + clamp(108px, 15vh, 148px));
    --hero-bottom-safe: clamp(148px, 21vh, 172px);
    min-height: 560px;
  }
  .hero__logo-svg {
    width: min(200px, 56vw);
    margin-bottom: 4px;
  }
  .hero__slogan {
    font-size: clamp(20px, 5.8vw, 28px);
    margin-bottom: 0;
  }
  .hero__cred { display: none; }
  .hero-slide__loc { display: none; }
  .hero-slide__title {
    font-size: clamp(22px, 6.2vw, 30px);
    max-width: 16ch;
  }
  .hero-slide__sub {
    font-size: 12px;
    max-width: 24ch;
  }
  .hero__actions { gap: 10px; }
  .hero__actions .btn {
    padding: 13px 20px;
    font-size: 10px;
  }
  .hero__scroll { display: none; }
  .hero-swiper__btn {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
}

@media (max-height: 700px) and (max-width: 768px) {
  .hero {
    --hero-top-safe: calc(var(--hdr) + 96px);
    --hero-bottom-safe: 136px;
    min-height: 520px;
  }
  .hero__logo-svg { width: min(180px, 52vw); }
  .hero__slogan { font-size: 20px; }
  .hero-slide__sub { display: none; }
}

@media (max-height: 640px) {
  .hero {
    --hero-top-safe: calc(var(--hdr) + 88px);
    --hero-bottom-safe: 128px;
    min-height: 480px;
  }
  .hero__logo-svg { width: min(170px, 50vw); }
  .hero-slide__title { font-size: 20px; }
  .hero__scroll { display: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--font-ui);
  border-radius: var(--input-radius);
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}
.btn:active { transform: scale(0.97); }
.btn--gold {
  background: var(--gold); color: #1a1208;
  border: 1px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn--dark { background: var(--bg-dark); color: #fff; }
.btn--dark:hover { background: #1a1a1a; }
.btn--outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn--ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn--ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn--sm { padding: 11px 20px; font-size: 9px; }
.btn--full { width: 100%; }
.btn--full i { font-size: 16px; vertical-align: -2px; margin-right: 6px; }

/* MARQUEE */
.marquee {
  background: var(--bg-dark); color: rgba(255,255,255,0.42);
  padding: 16px 0; overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.05);
  width: 100%;
  max-width: 100%;
}
.marquee__track {
  display: flex; align-items: center; gap: 28px; width: max-content;
  animation: marquee 40s linear infinite;
  font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
}
.marquee__dot { color: var(--gold); opacity: 0.6; font-size: 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.sec { padding: clamp(80px, 14vw, 140px) 0; position: relative; max-width: 100%; overflow-x: clip; }
.sec--dark { background: var(--bg-dark); color: #f8f6f3; }
.sec--soft { background: var(--bg-soft); }
.sec--contact {
  background: linear-gradient(165deg, #0e0e0e 0%, #141210 50%, #0a0a0a 100%);
  color: #f8f6f3;
}
.lbl {
  display: block; font-size: 9px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.h2 em {
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.h2--light em { color: var(--gold-light); }
.h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.sec-head { margin-bottom: 40px; max-width: 560px; }
.sec-head__lead {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 4px 0 0;
  max-width: 42ch;
}
.sec-head__lead--center { margin-inline: auto; text-align: center; }
.sec-head--center { text-align: center; margin-inline: auto; }
.sec-head p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.sec--dark .sec-head p { color: rgba(255,255,255,0.48); }

/* ABOUT */
.about {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 7vw, 88px); align-items: center;
}
@media (max-width: 768px) { .about { grid-template-columns: 1fr; } }
.about__img {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__hero {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--border);
}
.about__hero-img,
.about__img > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out), opacity 0.45s var(--ease);
}
.about__hero:hover .about__hero-img { transform: scale(1.04); }
.about__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  max-width: 100%;
}
.about__thumb {
  aspect-ratio: 4/5;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--border);
  transition: opacity 0.2s var(--ease);
  opacity: 0.7;
}
.about__thumb:hover { opacity: 0.9; }
.about__thumb.is-active {
  opacity: 1;
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.about__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__txt p { color: var(--text-muted); font-size: 15px; margin-bottom: 16px; line-height: 1.75; }
.about__txt strong { color: var(--text); font-weight: 500; }
.stats {
  display: flex; gap: clamp(24px, 5vw, 48px); margin-top: 36px;
  padding-top: 28px; border-top: 1px solid var(--border);
}

/* KS stat cards — About & homepage */
.ks-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.ks-stats--page {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 0;
  padding: 0;
  background: none;
  border: none;
}
.stat-card__icon {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
}
.stat-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  width: 100%;
}
.stat-card__num {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.stat-card__num strong {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat-card__suffix {
  font-family: var(--font-display);
  font-size: 0.45em;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  transform: translateY(-0.15em);
}
.stat-card--text .stat-card__num strong {
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.02em;
}
.stat-card__label {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: none;
}

@media (max-width: 640px) {
  .ks-stats,
  .ks-stats--page {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat-card {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .stat-card:last-child { border-bottom: none; }
  .stat-card__icon { font-size: 20px; flex-shrink: 0; }
  .stat-card__num strong { font-size: 28px; }
  .stat-card--text .stat-card__num strong { font-size: 22px; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .ks-stats,
  .ks-stats--page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .stat-card__num strong { font-size: clamp(26px, 5vw, 34px); }
  .stat-card--text .stat-card__num strong { font-size: clamp(18px, 3.5vw, 22px); }
}

@media (max-width: 768px) {
  .about-facts .ks-stats--page {
    margin-top: 28px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.stats span {
  display: block; margin-top: 6px;
  font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--text-muted);
}

/* IG STRIP */
.ig-strip {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
  padding: clamp(48px, 8vw, 72px) 0;
}
.ig-strip__in {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.ig-strip p { color: var(--text-muted); font-size: 14px; margin-top: 6px; max-width: 420px; }
.ig-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px;
  margin-top: 36px;
}
.ig-grid__item {
  aspect-ratio: 1; overflow: hidden; display: block; position: relative;
  background: var(--border);
  opacity: 0; transform: translateY(16px);
  animation: ig-in 0.7s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.07s + 0.1s);
}
@keyframes ig-in {
  to { opacity: 1; transform: translateY(0); }
}
.ig-grid__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.ig-grid__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0.45);
  color: #fff; opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.ig-grid__overlay i { font-size: 22px; }
.ig-grid__item:hover img { transform: scale(1.08); filter: brightness(0.85); }
.ig-grid__item:hover .ig-grid__overlay { opacity: 1; }
@media (max-width: 900px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

/* GALLERY HORIZONTAL */
.filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 32px; }
.filters__btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filters__btn:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
.filters__btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1208;
}
.gallery-scroll {
  overflow-x: auto; overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  padding-bottom: 12px;
  max-width: 100%;
}
.gallery-scroll.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery-scroll::-webkit-scrollbar { height: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.gallery-scroll__track {
  display: flex; gap: 14px;
  padding: 0 max(24px, 5vw);
  width: max-content;
}
.gcard {
  flex: 0 0 min(300px, 72vw); scroll-snap-align: start;
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  cursor: pointer; margin: 0;
  background: #1a1a1a;
  border-radius: var(--radius);
}
.gcard.hidden { display: none; }
.gcard__idx {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  mix-blend-mode: difference;
}
.gcard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.4s;
}
.gcard:hover img { transform: scale(1.06); filter: brightness(0.92); }
.gcard figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  padding: 48px 18px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em; color: #fff;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.gcard:hover figcaption { transform: translateY(0); }
@media (hover: none) {
  .gcard figcaption { transform: translateY(0); }
}

/* VIDEO */
.video-sec__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.video-sec__top .sec-head { margin-bottom: 0; flex: 1; min-width: 240px; }
.video-sec__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.video-swiper { position: relative; overflow: hidden; }
.video-swiper .swiper-slide { height: auto; }
.vcard {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease);
}
.vcard:hover { transform: translateY(-3px); }
.vcard h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 16px 0 6px;
  line-height: 1.25;
}
.vcard p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.vcard__vid {
  aspect-ratio: 3/4;
  background: #111;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.vcard__vid video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vcard__placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.vcard__placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.vcard:hover .vcard__placeholder img { transform: scale(1.03); }
.vcard__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}
.vcard__play {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.vcard__play i { font-size: 20px; margin-left: 2px; }
.vcard:hover .vcard__play {
  border-color: var(--gold);
  background: rgba(184,149,106,0.35);
}
.vcard__overlay--ig {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
}
.vcard__ig-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.vcard__ig-hint i { font-size: 16px; }
.vcard__placeholder--ig .vcard__overlay .btn {
  min-width: 180px;
  text-align: center;
}
.video-swiper__prev,
.video-swiper__next {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  position: static;
  aspect-ratio: 1;
}
.video-swiper__prev:hover,
.video-swiper__next:hover {
  border-color: var(--gold);
  background: var(--bg-soft);
  color: var(--text);
}
.video-swiper__prev:active,
.video-swiper__next:active { transform: scale(0.96); }

@media (max-width: 768px) {
  .video-sec__top {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .video-sec__nav { justify-content: flex-end; }
}

/* SERVICES */
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: #fff; padding: 36px 30px;
  transition: background 0.35s, transform 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.svc:hover { background: var(--bg-soft); }
.svc:hover::before { transform: scaleX(1); }
.svc__n {
  font-family: var(--font-display); font-size: 40px;
  color: var(--gold); line-height: 1; margin-bottom: 18px; opacity: 0.85;
}
.svc h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.svc p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* PROCESS */
.sec--process { background: #fff; }
.process {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.process__step {
  background: #fff; padding: 36px 28px;
  transition: background 0.35s;
}
.process__step:hover { background: var(--bg-soft); }
.process__n {
  display: block; font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: 16px;
}
.process__step h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  margin-bottom: 10px;
}
.process__step p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* QUOTES */
.quote {
  background: #fff;
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  height: 100%;
}
.quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.8vw, 22px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 20px;
  color: var(--text);
}
.quote footer { font-size: 13px; color: var(--text-muted); }
.quote footer strong { color: var(--text); font-weight: 500; }
.quote-swiper { overflow: hidden; padding-bottom: 8px; }
.quote-swiper__pag { margin-top: 28px; text-align: center; }
.quote-swiper__pag .swiper-pagination-bullet {
  width: 24px;
  height: 2px;
  border-radius: 0;
  background: var(--border);
  opacity: 1;
  transition: width 0.25s, background 0.25s;
}
.quote-swiper__pag .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 32px;
  transform: none;
}

/* CONTACT */
.contact {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 80px); align-items: start;
}
@media (max-width: 768px) { .contact { grid-template-columns: 1fr; } }
.contact__intro { color: var(--text-light); margin-bottom: 28px; font-size: 15px; line-height: 1.7; }
.contact__list { list-style: none; }
.contact__list li { margin-bottom: 18px; font-size: 15px; }
.contact__list span {
  display: block; font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold); margin-bottom: 4px;
}
.contact__list a { transition: color 0.2s; }
.contact__list a:hover { color: var(--gold-light); }
.cform {
  display: flex; flex-direction: column; gap: 16px;
  padding: 36px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.cform__row label {
  display: block; font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.14em; color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
.cform__row input,
.cform__row textarea {
  width: 100%; padding: 14px 20px; font-family: inherit; font-size: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; outline: none;
  border-radius: var(--input-radius);
  transition: border-color 0.25s, background 0.25s;
}
.cform__row input[type="date"] { color-scheme: dark; }
.cform__row textarea {
  border-radius: var(--input-radius);
  min-height: 100px;
  resize: vertical;
}
.cform .csel { width: 100%; }
.cform__row input::placeholder, .cform__row textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.cform__row input:focus, .cform__row textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}

.cform__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.cform__feedback {
  padding: 12px 14px;
  border-radius: var(--input-radius);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.cform__feedback--ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}

.cform__feedback--err {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

.cform__hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.cform__hint--warn { color: #fcd34d; }

.cform-avail {
  margin: 4px 0 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--input-radius);
  background: rgba(255,255,255,0.03);
}

.cform-avail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.cform-avail__title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

.cform-avail__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.cform-avail__btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.cform-avail__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
  font-size: 10px;
  text-align: center;
  color: rgba(255,255,255,0.35);
}

.cform-avail__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cform-avail__pad { aspect-ratio: 1; }

.cform-avail__day {
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--input-radius);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.cform-avail__day.is-free:hover { border-color: var(--gold); }
.cform-avail__day.is-busy { background: rgba(239,68,68,0.15); border-color: rgba(239,68,68,0.35); color: #fca5a5; }
.cform-avail__day.is-past { opacity: 0.25; cursor: not-allowed; }
.cform-avail__day.is-selected { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }

.cform-avail__legend {
  margin: 10px 0 0;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 14px;
}

.cform-avail__legend .is-busy::before,
.cform-avail__legend .is-free::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}

.cform-avail__legend .is-busy::before { background: rgba(239,68,68,0.5); }
.cform-avail__legend .is-free::before { background: rgba(255,255,255,0.2); }

/* RESERVATION SECTION */
.sec--reserve {
  position: relative;
  overflow: hidden;
  background: #080808;
  color: #f8f6f3;
  padding-block: clamp(88px, 12vw, 128px) clamp(48px, 8vw, 72px);
}
.reserve__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.reserve__deco-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(184,149,106,0.12) 0%, transparent 55%),
    linear-gradient(180deg, #080808 0%, #0e0d0b 50%, #080808 100%);
}
.reserve {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 56px);
  align-items: stretch;
}
.reserve__intro {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.reserve__deco-img {
  position: absolute;
  left: 50%;
  top: 0;
  right: auto;
  transform: translateX(-50%);
  width: min(90vw, 900px);
  height: 60%;
  background-size: cover;
  background-position: center top;
  opacity: 0.14;
  filter: grayscale(0.35) contrast(1.05);
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
@media (max-width: 900px) {
  .reserve__deco-img { width: 100vw; opacity: 0.1; }
}
.reserve__lead {
  color: rgba(248,246,243,0.68);
  font-size: 15px;
  line-height: 1.75;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 32px;
}
.reserve__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}
@media (max-width: 720px) {
  .reserve__steps { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}
.reserve__steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.reserve__step-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,149,106,0.35);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
.reserve__steps strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #fff;
}
.reserve__steps p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.48);
}
.reserve__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}
.reserve__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}
.reserve__trust i { font-size: 16px; color: var(--gold); }
.reserve__panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}
.cform__hint--link { margin-top: 8px; }
.cform__hint--link a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cform__hint--link a:hover { color: #fff; }

/* SLOT PICKER */
.cform__row-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.slot-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.slot-picker__opt { cursor: pointer; }
.slot-picker__opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.slot-picker__box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--input-radius);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s, background 0.2s;
}
.slot-picker__box strong {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.slot-picker__box small {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.slot-picker__opt input:checked + .slot-picker__box {
  border-color: var(--gold);
  background: rgba(184,149,106,0.12);
  box-shadow: inset 0 0 0 1px rgba(184,149,106,0.35);
}
.slot-picker__opt.is-disabled .slot-picker__box {
  opacity: 0.45;
  cursor: not-allowed;
}
.slot-picker__opt.is-disabled { cursor: not-allowed; }

/* AVAILABILITY SECTION */
.sec--avail {
  background: #0e0e0e;
  color: #f8f6f3;
  padding-block: clamp(64px, 10vw, 96px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.avail__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
}
.avail__lead {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}
.avail__panel {
  max-width: 520px;
  margin-inline: auto;
}
.cform-avail--section {
  margin: 0;
  padding: clamp(20px, 4vw, 28px);
  border-radius: var(--input-radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.cform-avail--section .cform-avail__grid {
  gap: 6px;
}
.cform-avail--section .cform-avail__day {
  font-size: 14px;
  border-radius: var(--input-radius);
}
.cform-avail__legend .is-selected::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
  background: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.avail__back {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.avail__back:hover { color: var(--gold-light); }

.cform--reserve {
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--input-radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cform--reserve .cform__grid {
  grid-template-columns: 1fr;
}
.cform__head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cform__head h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #fff;
}
.cform__head p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.42);
}
.cform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) { .cform__grid { grid-template-columns: 1fr; } }
.cform__foot {
  margin-top: 4px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
}
.cform__foot a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cform__foot a:hover { color: #fff; }

/* CONTACT LITE */
.sec--contact-lite {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.contact-card--wa:hover { border-color: #25d366; }
.contact-card--wa .contact-card__icon { color: #25d366; background: rgba(37,211,102,0.08); }
@media (max-width: 900px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--input-radius);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.contact-card--static { cursor: default; }
.contact-card--static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}
.contact-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: var(--input-radius);
  color: var(--gold);
  font-size: 18px;
}
.contact-card__lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-card strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  word-break: break-word;
}
.contact-cta {
  text-align: center;
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--input-radius);
}
.contact-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* FLOATING MOBILE ACTIONS (WhatsApp + Rezervo) */
.mobile-action-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.mobile-action-bar__btn--rez {
  margin-left: auto;
  background: var(--gold);
  color: #0a0a0a;
}

.mobile-action-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-action-bar__btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.28);
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

.mobile-action-bar__btn i {
  font-size: 22px;
  line-height: 1;
}

.mobile-action-bar__btn:hover {
  transform: translateY(-2px);
}

.mobile-action-bar__btn--wa {
  background: rgba(8, 8, 8, 0.92);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #25d366;
}

.mobile-action-bar__btn--wa:hover {
  background: rgba(37, 211, 102, 0.12);
  color: #86efac;
}

.mobile-action-bar__btn--rez:hover {
  background: var(--gold-light);
  color: #0a0a0a;
}

@media (min-width: 769px) {
  .mobile-action-bar { display: none !important; }
  .admin-more-sheet { display: none !important; }
}

/* SERVICE CARDS HOVER */
.svc {
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.svc:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* PROCESS ACCENT */
.sec--process {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

/* FOOTER NAV */
.ftr__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.ftr__nav a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}
.ftr__nav a:hover { color: var(--gold-light); }

/* FOOTER */
.ftr {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.38);
  padding: 56px 0 0;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ftr__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(24px, 4vw, 40px);
  padding-bottom: 40px;
  text-align: left;
}
@media (max-width: 900px) {
  .ftr__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .ftr__grid { grid-template-columns: 1fr; text-align: center; }
}
.ftr__brand .ftr__logo { width: 140px; margin: 0 0 12px; opacity: 0.92; }
.ftr__slogan {
  font-family: var(--font-script);
  font-size: clamp(24px, 4.5vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255,255,255,0.82);
  margin: 0 0 8px;
  max-width: 280px;
}
.ftr__cred {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 14px;
}
.ftr__cred-sep { opacity: 0.45; }
@media (max-width: 520px) {
  .ftr__cred {
    flex-direction: column;
    gap: 4px;
  }
  .ftr__cred-sep { display: none; }
  .ftr__slogan,
  .ftr__cred { margin-inline: auto; justify-content: center; text-align: center; }
}
.ftr__tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 16px;
}
@media (max-width: 520px) {
  .ftr__tagline { margin-inline: auto; }
}
.ftr__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 520px) {
  .ftr__social { justify-content: center; }
}
.ftr__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  font-size: 18px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ftr__social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,149,106,0.08);
}
.ftr__col h3 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 14px;
}
.ftr__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}
.ftr__links a:hover { color: var(--gold-light); }
.ftr__col--contact p { margin: 0 0 6px; font-size: 13px; }
.ftr__col--contact a { color: rgba(255,255,255,0.55); }
.ftr__col--contact a:hover { color: var(--gold-light); }
.ftr__nui { font-size: 11px; color: rgba(255,255,255,0.28); margin-top: 4px; }
.ftr__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
}
@media (max-width: 768px) {
  .ftr {
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }
  body:has(.mobile-action-bar) .ftr {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }
  .ftr__bottom {
    padding: 22px 0 32px;
    align-items: center;
  }
}
.ftr__bottom-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ftr__bottom-meta p {
  margin: 0;
  color: rgba(255,255,255,0.42);
}
.ftr__credit {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
}
.ftr__credit a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.ftr__credit a:hover { color: var(--gold-light); }
@media (max-width: 520px) {
  .ftr__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-bottom: 36px;
  }
  body:has(.mobile-action-bar) .ftr__bottom {
    padding-bottom: 40px;
  }
}
.ftr__login {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: var(--input-radius, 4px);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ftr__login i {
  font-size: 18px;
  line-height: 1;
}
.ftr__login:hover {
  color: #fff;
  border-color: rgba(201, 169, 110, 0.55);
  background: rgba(201, 169, 110, 0.12);
}

/* LEGAL PAGE */
.legal-page {
  padding-top: calc(var(--hdr) + 48px);
  padding-bottom: 64px;
}
.legal-page__in { max-width: 720px; }
.legal-page__title { margin-bottom: 24px; }
.legal-page__body.prose p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.legal-page__back { margin-top: 32px; }
.legal-page__back a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}
.legal-page__back a:hover { color: var(--text); }

/* FOOTER NAV (legacy) */
.ftr__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

/* LIGHTBOX */
.lb {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.96);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px 72px;
  animation: lb-in 0.35s var(--ease);
}
.lb__fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 1100px);
}
.lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.lb__nav:hover:not(:disabled) {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
}
.lb__nav:disabled { opacity: 0.25; cursor: default; }
.lb__nav--prev { left: 16px; }
.lb__nav--next { right: 16px; }
.lb__count {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@keyframes lb-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lb[hidden] { display: none; }
.lb img {
  max-width: min(92vw, 1100px); max-height: 82vh; object-fit: contain;
  animation: lb-img 0.45s var(--ease-out);
}
@keyframes lb-img {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.lb p, .lb figcaption { color: rgba(255,255,255,0.55); margin-top: 16px; font-size: 13px; letter-spacing: 0.04em; text-align: center; }
.lb__x {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: #fff; font-size: 28px; cursor: pointer;
  opacity: 0.5; width: 44px; height: 44px;
  transition: opacity 0.2s, transform 0.2s;
}
.lb__x:hover { opacity: 1; transform: rotate(90deg); }

@media (max-width: 768px) {
  .lb {
    padding: 56px 12px 24px;
  }
  .lb__nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.1);
  }
  .lb__nav--prev { left: 8px; }
  .lb__nav--next { right: 8px; }
  .lb__x {
    top: 12px;
    right: 12px;
  }
  .lb img {
    max-height: 72vh;
  }
}

/* SITE PRELOADER */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080808;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.site-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-preloader__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 48%, rgba(184,149,106,0.16), transparent 72%),
    #080808;
}
.site-preloader__glow {
  position: absolute;
  width: min(90vw, 560px);
  aspect-ratio: 1080 / 454;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,106,0.2), transparent 70%);
  filter: blur(32px);
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}
.site-preloader__logo-wrap {
  position: relative;
  z-index: 1;
  width: min(90vw, 480px);
  max-width: 100%;
  padding: 0 12px;
}
.site-preloader__logo {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.96) translateY(6px);
  will-change: opacity, transform;
}
@keyframes preloader-fallback {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
.site-preloader:not(.is-animated) {
  animation: preloader-fallback 1.1s var(--ease) forwards;
}
.site-preloader:not(.is-animated) .site-preloader__logo {
  animation: preloader-logo-in 0.5s var(--ease-out) 0.05s forwards;
}
@keyframes preloader-logo-in {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(36px); }

.about__link { margin-top: 20px; }

/* ABOUT PAGE */
.about-page { padding-top: var(--hdr); }
.about-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 560px);
  display: flex;
  align-items: flex-end;
  background: var(--bg-dark);
  overflow: hidden;
}
.about-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transform: scale(1.04);
}
.about-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.88) 100%);
}
.about-hero__in {
  position: relative; z-index: 1;
  padding: clamp(48px, 10vw, 96px) 0 clamp(56px, 8vw, 80px);
  max-width: 640px;
}
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 16px;
}
.about-hero__title em {
  font-weight: 500;
  color: var(--gold-light);
}
.about-hero__lead {
  font-size: clamp(15px, 2.2vw, 17px);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 48ch;
}
.lbl--light { color: var(--gold-light); }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-story__img,
  .about .about__img {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .about-story__img .about__hero,
  .about .about__img .about__hero {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
  .about-story__img .about__thumbs,
  .about .about__img .about__thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
  .about-story__img .about__thumb,
  .about .about__img .about__thumb {
    aspect-ratio: 4 / 5;
  }
  .about-story__cap {
    bottom: 12px;
    left: 12px;
    font-size: 9px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.55);
  }
  .about-hero {
    min-height: clamp(260px, 46vh, 380px);
  }
  .about-hero__in {
    padding: clamp(36px, 8vw, 56px) 0 clamp(40px, 6vw, 56px);
  }
  .stat-card {
    background: none;
    border: none;
    border-radius: 0;
    min-height: 0;
    padding: 0;
  }
}
.about-story__img { position: relative; display: flex; flex-direction: column; gap: 10px; }
.about-story__cap {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.55);
  padding: 6px 12px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 36px);
  margin-top: 40px;
}
@media (max-width: 768px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.pillar__n {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.pillar p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}
@media (max-width: 768px) { .about-facts { grid-template-columns: 1fr; } }
.about-facts__grid {
  display: block;
}

.about-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.about-list i { font-size: 18px; color: var(--gold); }

@media (max-width: 768px) {
  .about-list {
    flex-direction: column;
    gap: 12px;
  }
  .about-list li {
    flex: none;
    min-width: 0;
    padding: 0;
    background: none;
    border: none;
    font-size: 14px;
  }
}

.about-cta__in { text-align: center; max-width: 560px; margin-inline: auto; }
.about-cta__p { color: var(--text-light); margin-bottom: 28px; font-size: 15px; }
.about-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
