/* Navigation - Glass Morphism Interactive */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s;
}

.site-nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-nav);
}

[data-theme="light"] .site-nav.scrolled {
  background: var(--surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1280px, calc(100% - clamp(1.25rem, 4vw, 3rem)));
  max-width: 100%;
  margin-inline: auto;
  padding-inline: clamp(0.5rem, 2vw, 1rem);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1002;
}

.nav-brand__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.nav-brand__icon img {
  display: block;
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-brand__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-brand__text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Nav on image heroes */
.site-nav--on-hero:not(.scrolled) .nav-links a {
  color: rgba(245, 245, 245, 0.85);
}

.site-nav--on-hero:not(.scrolled) .nav-brand__text {
  color: #f5f5f5;
}

.site-nav--on-hero:not(.scrolled) .nav-brand__text span {
  color: var(--gold);
}

.site-nav--on-hero:not(.scrolled) .lang-toggle,
.site-nav--on-hero:not(.scrolled) .nav-toggle-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: #f5f5f5;
}

.site-nav--on-hero:not(.scrolled) .hamburger {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2), 0 4px 24px rgba(0, 0, 0, 0.45);
}

.site-nav--on-hero:not(.scrolled) .hamburger span {
  background: #fff;
}

.site-nav.scrolled .nav-links a {
  color: var(--muted);
}

.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links a.active {
  color: var(--text);
}

.site-nav.scrolled .nav-brand__text {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  left: 20%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1002;
}

.nav-toggle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: border-color 0.3s, background 0.3s;
}

.nav-toggle-btn:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.lang-toggle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.65rem;
  border-radius: 2px;
  border: 1px solid var(--glass-border);
  color: var(--muted);
  transition: all 0.3s;
}

.lang-toggle:hover,
.lang-toggle.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* Hamburger - distinctive, high visibility */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 10px;
  z-index: 1002;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), rgba(29, 92, 66, 0.35));
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.12),
    0 4px 22px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s, background 0.35s;
  animation: hamburger-pulse 2.8s ease-in-out infinite;
}

@keyframes hamburger-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(212, 175, 55, 0.12),
      0 4px 22px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(212, 175, 55, 0.22),
      0 6px 28px rgba(212, 175, 55, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

.hamburger:hover {
  transform: scale(1.06);
  border-color: #e8c84a;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.28), rgba(29, 92, 66, 0.45));
}

.hamburger.open {
  animation: none;
  background: rgba(212, 175, 55, 0.15);
}

[data-theme="light"] .hamburger {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.25), rgba(255, 255, 255, 0.9));
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.2),
    0 4px 18px rgba(15, 61, 46, 0.15);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.3s;
  transform-origin: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu - half-window slide panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 12, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.mobile-menu.open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 340px);
  height: 100%;
  max-height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--glass-border);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-cine);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 0.75rem) 1.5rem 2rem;
  overflow-y: auto;
}

[data-theme="light"] .mobile-menu__panel {
  background: var(--surface);
  box-shadow: -12px 0 48px rgba(15, 61, 46, 0.12);
}

[data-theme="light"] .mobile-menu__backdrop {
  background: rgba(15, 26, 20, 0.35);
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__close {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.mobile-menu__close:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  padding: 0.65rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.3s, padding-left 0.35s var(--ease-out);
  transform: translateX(16px);
  opacity: 0;
}

.mobile-menu.open .mobile-menu__links a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu.open .mobile-menu__links a:nth-child(1) { transition: opacity 0.4s 0.08s, transform 0.4s 0.08s, color 0.3s, padding-left 0.35s; }
.mobile-menu.open .mobile-menu__links a:nth-child(2) { transition: opacity 0.4s 0.12s, transform 0.4s 0.12s, color 0.3s, padding-left 0.35s; }
.mobile-menu.open .mobile-menu__links a:nth-child(3) { transition: opacity 0.4s 0.16s, transform 0.4s 0.16s, color 0.3s, padding-left 0.35s; }
.mobile-menu.open .mobile-menu__links a:nth-child(4) { transition: opacity 0.4s 0.2s, transform 0.4s 0.2s, color 0.3s, padding-left 0.35s; }
.mobile-menu.open .mobile-menu__links a:nth-child(5) { transition: opacity 0.4s 0.24s, transform 0.4s 0.24s, color 0.3s, padding-left 0.35s; }
.mobile-menu.open .mobile-menu__links a:nth-child(6) { transition: opacity 0.4s 0.28s, transform 0.4s 0.28s, color 0.3s, padding-left 0.35s; }
.mobile-menu.open .mobile-menu__links a:nth-child(7) { transition: opacity 0.4s 0.32s, transform 0.4s 0.32s, color 0.3s, padding-left 0.35s; }

.mobile-menu__links a:hover,
.mobile-menu__links a.active {
  color: var(--gold);
  padding-left: 0.5rem;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ========== HERO ========== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}

.hero__swiper.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.45, 0.05, 0.15, 1) !important;
}

.hero__swiper .swiper-slide {
  overflow: hidden;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero__slide-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  transform: translateZ(0);
}

.hero__slide-img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transform-origin: center center;
  transition: transform 2.4s cubic-bezier(0.45, 0.05, 0.15, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero__slide-img.is-ken-burns {
  animation: heroKenBurns 11s ease-in-out forwards;
  transition: none;
}

@keyframes heroKenBurns {
  0% { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.11) translate(-0.8%, -0.6%); }
}

.hero__slide-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(11, 13, 12, 0.55) 0%, rgba(11, 13, 12, 0.22) 42%, rgba(11, 13, 12, 0.08) 68%, rgba(11, 13, 12, 0.28) 100%),
    linear-gradient(0deg, rgba(11, 13, 12, 0.42) 0%, transparent 38%);
}

[data-theme="light"] .hero__slide-scrim {
  background:
    linear-gradient(100deg, rgba(11, 13, 12, 0.5) 0%, rgba(11, 13, 12, 0.2) 42%, rgba(11, 13, 12, 0.1) 68%, rgba(11, 13, 12, 0.25) 100%),
    linear-gradient(0deg, rgba(11, 13, 12, 0.38) 0%, transparent 38%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(11, 13, 12, 0.72) 0%, rgba(11, 13, 12, 0.35) 38%, rgba(11, 13, 12, 0.1) 62%, rgba(11, 13, 12, 0.25) 100%),
    linear-gradient(0deg, rgba(11, 13, 12, 0.45) 0%, transparent 35%);
  pointer-events: none;
}

[data-theme="light"] .hero__overlay {
  background:
    linear-gradient(100deg, rgba(11, 13, 12, 0.68) 0%, rgba(11, 13, 12, 0.32) 38%, rgba(11, 13, 12, 0.12) 62%, rgba(11, 13, 12, 0.22) 100%),
    linear-gradient(0deg, rgba(11, 13, 12, 0.4) 0%, transparent 35%);
}

[data-theme="light"] .page-hero__overlay {
  background:
    linear-gradient(0deg, rgba(11, 13, 12, 0.78) 0%, rgba(11, 13, 12, 0.32) 50%, rgba(11, 13, 12, 0.45) 100%);
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(11, 13, 12, 0.58) 0%, rgba(11, 13, 12, 0.28) 40%, rgba(11, 13, 12, 0.1) 65%, rgba(11, 13, 12, 0.24) 100%),
    linear-gradient(0deg, rgba(11, 13, 12, 0.42) 0%, transparent 42%);
}

[data-theme="light"] .page-hero__scrim {
  background:
    linear-gradient(100deg, rgba(11, 13, 12, 0.52) 0%, rgba(11, 13, 12, 0.22) 42%, rgba(11, 13, 12, 0.06) 68%, rgba(11, 13, 12, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 13, 12, 0.35) 0%, transparent 48%);
}

[data-theme="light"] .village-explorer__visual-overlay {
  background: linear-gradient(0deg, rgba(11, 13, 12, 0.82) 0%, rgba(15, 61, 46, 0.25) 50%, transparent 70%);
}

[data-theme="light"] .hero__main .display,
[data-theme="light"] .hero__main .lead,
[data-theme="light"] .hero__main .eyebrow,
[data-theme="light"] .page-hero .display,
[data-theme="light"] .page-hero .eyebrow,
[data-theme="light"] .page-hero .lead {
  color: #f5f5f5;
}

[data-theme="light"] .hero__main .lead {
  color: rgba(245, 245, 245, 0.85);
}

[data-theme="light"] .hero .btn--ghost {
  border-color: rgba(245, 245, 245, 0.45);
  color: #f5f5f5;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 12s infinite;
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: calc(var(--nav-h) + 2.5rem) 0 clamp(5.5rem, 11vh, 7rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, auto);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  max-width: 100%;
}

.hero__main {
  max-width: 600px;
  text-align: left;
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.hero__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.75rem;
  padding-bottom: 0.75rem;
  min-width: 0;
}

/* Partner Logos - premium glass + motion */
.hero__partners {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  padding: 1.1rem 1.35rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(15, 61, 46, 0.42) 0%,
    rgba(11, 13, 12, 0.52) 45%,
    rgba(212, 175, 55, 0.14) 100%
  );
  backdrop-filter: blur(36px) saturate(2) brightness(1.12);
  -webkit-backdrop-filter: blur(36px) saturate(2) brightness(1.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 6px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(212, 175, 55, 0.1);
  max-width: min(100%, 380px);
  animation:
    heroPartnersIn 1.1s var(--ease-cine) 0.85s both,
    heroPartnersFloat 7s ease-in-out 2.2s infinite;
}

.hero__partners::before {
  content: '';
  position: absolute;
  inset: -50% -80%;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.07) 48%,
    rgba(212, 175, 55, 0.22) 50%,
    rgba(255, 255, 255, 0.07) 52%,
    transparent 58%
  );
  animation: glassShine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.hero__partners::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.06);
  pointer-events: none;
  animation: glassPulse 4s ease-in-out infinite;
}

@keyframes heroPartnersIn {
  from {
    opacity: 0;
    transform: translateX(48px) translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes heroPartnersFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes glassShine {
  0% { transform: translateX(-30%) rotate(8deg); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateX(30%) rotate(8deg); opacity: 1; }
  85% { opacity: 0; }
  100% { transform: translateX(80%) rotate(8deg); opacity: 0; }
}

@keyframes glassPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

[data-theme="light"] .hero__partners {
  background: linear-gradient(
    135deg,
    rgba(15, 61, 46, 0.72) 0%,
    rgba(11, 13, 12, 0.78) 50%,
    rgba(15, 61, 46, 0.65) 100%
  );
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

[data-theme="light"] .hero__partner-logos .logo-bridge,
[data-theme="light"] .hero__partner-logos .logo-wbf {
  mix-blend-mode: normal;
  filter: brightness(1.05);
}

.hero__partners-label {
  position: relative;
  z-index: 1;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.75);
  white-space: nowrap;
  padding-right: 0.75rem;
  border-right: 1px solid rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}

.hero__partner-logos {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.1vw, 0.85rem);
  flex-wrap: wrap;
  max-width: 300px;
}

.hero__partner-logos img {
  height: clamp(26px, 3.2vw, 36px);
  width: auto;
  max-width: 58px;
  object-fit: contain;
  transition: transform 0.45s var(--ease-out), filter 0.45s;
  opacity: 0;
  animation: logoPopIn 0.65s var(--ease-cine) forwards;
}

.hero__partner-logos img:nth-child(1) { animation-delay: 1.05s; }
.hero__partner-logos img:nth-child(2) { animation-delay: 1.15s; }
.hero__partner-logos img:nth-child(3) { animation-delay: 1.25s; }
.hero__partner-logos img:nth-child(4) { animation-delay: 1.35s; }
.hero__partner-logos img:nth-child(5) { animation-delay: 1.45s; }
.hero__partner-logos img:nth-child(6) { animation-delay: 1.55s; }
.hero__partner-logos img:nth-child(7) { animation-delay: 1.65s; }

.hero__partner-logos .logo-sdg-wheel {
  height: clamp(34px, 4.2vw, 44px);
  max-width: 44px;
  object-fit: contain;
}

@keyframes logoPopIn {
  from {
    opacity: 0;
    transform: scale(0.75) translateY(8px);
  }
  to {
    opacity: 0.95;
    transform: scale(1) translateY(0);
  }
}

.hero__partner-logos img:hover {
  transform: scale(1.08) translateY(-2px);
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.35));
}

.hero__title {
  margin: 1.25rem 0 1.5rem;
}

.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line span {
  display: block;
  transform: translateY(110%);
  animation: heroLineIn 1.2s var(--ease-cine) forwards;
}

.hero__title .line:nth-child(2) span { animation-delay: 0.15s; }
.hero__title .line:nth-child(3) span { animation-delay: 0.3s; }

@keyframes heroLineIn {
  to { transform: translateY(0); }
}

.hero__subtitle {
  margin-bottom: 2.25rem;
  animation: fadeUp 1s var(--ease-cine) 0.5s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 1s var(--ease-cine) 0.7s both;
}

.hero__partner-logos .logo-sdg {
  height: clamp(30px, 3.8vw, 40px);
  max-width: 40px;
}

.hero__partner-logos .logo-bridge,
.hero__partner-logos .logo-wbf {
  mix-blend-mode: screen;
  filter: brightness(1.15);
  max-width: 72px;
}

.hero__partner-logos .logo-tourism-board {
  height: clamp(32px, 4vw, 42px);
  width: auto;
  max-width: 76px;
  object-fit: contain;
  filter: brightness(1.08) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

[data-theme="light"] .hero__partner-logos .logo-tourism-board {
  mix-blend-mode: normal;
  filter: brightness(1.02);
}

/* Hero Slide Counter */
.hero__counter {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.7);
  letter-spacing: 0.15em;
  animation: fadeUp 1s var(--ease-cine) 1s both;
  padding-right: 0.25rem;
}

.hero__scroll {
  color: rgba(245, 245, 245, 0.65);
}

.hero__counter span {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 600;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s var(--ease-cine) 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__side {
    align-items: stretch;
    width: 100%;
  }

  .hero__partners {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
  }

  .hero__counter {
    align-self: flex-end;
  }
}

/* ========== PROBLEM / SOLUTION ========== */

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ps-grid { grid-template-columns: 1fr; }
}

.ps-block {
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
}

.ps-block--problem {
  background: linear-gradient(160deg, rgba(248, 113, 113, 0.06), transparent);
  border-right: 1px solid var(--glass-border);
}

.ps-block--solution {
  background: linear-gradient(160deg, rgba(29, 92, 66, 0.15), transparent);
}

@media (max-width: 768px) {
  .ps-block--problem { border-right: none; border-bottom: 1px solid var(--glass-border); }
}

.ps-block__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
}

.ps-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.ps-block p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Moving Infographic Bars */
.infographic-bars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.bar-item {
  display: grid;
  grid-template-columns: 140px 1fr 60px;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 560px) {
  .bar-item { grid-template-columns: 1fr; gap: 0.35rem; }
}

.bar-item__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.bar-item__track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.bar-item__fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green-forest), var(--gold));
  transition: width 1.8s var(--ease-cine);
}

.bar-item__fill.animated { /* width set via inline style */ }

.bar-item__pct {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  text-align: right;
}

/* ========== VILLAGE EXPLORER (replaces map) ========== */

.village-explorer {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  min-height: 480px;
}

@media (max-width: 900px) {
  .village-explorer {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.village-explorer__visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border: 1px solid var(--glass-border);
}

.village-explorer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.45s var(--ease-out), transform 6s linear;
  opacity: 1;
}

.village-explorer__visual:hover .village-explorer__img {
  transform: scale(1.04);
}

.village-explorer__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 13, 12, 0.88) 0%, rgba(11, 13, 12, 0.25) 45%, transparent 70%);
  pointer-events: none;
}

[data-theme="light"] .village-explorer__visual-overlay {
  background: linear-gradient(0deg, rgba(212, 175, 55, 0.58) 0%, rgba(212, 175, 55, 0.2) 50%, transparent 75%);
}

.village-explorer__visual-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.village-explorer__visual-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
  color: #fff;
}

[data-theme="light"] .village-explorer__visual-text h3 {
  color: #0f1a14;
}

.village-explorer__visual-text p {
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.92);
  max-width: 48ch;
  line-height: 1.6;
}

[data-theme="light"] .village-explorer__visual-text p {
  color: rgba(15, 26, 20, 0.9);
}

.village-explorer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.village-explorer__btn {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  color: var(--text);
  transition: all 0.35s var(--ease-out);
}

.village-explorer__btn:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: var(--surface-2);
}

.village-explorer__btn.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(29, 92, 66, 0.25), var(--surface));
  box-shadow: inset 3px 0 0 var(--gold);
}

.village-explorer__btn-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.6;
}

.village-explorer__btn.active .village-explorer__btn-num {
  opacity: 1;
}

.village-explorer__btn-title {
  font-weight: 500;
  font-size: 0.92rem;
}

.village-explorer__btn-tag {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
}

/* ========== EXPERIENCE CARDS ========== */

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .exp-grid { grid-template-columns: 1fr; }
}

.exp-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.4s;
}

.exp-card:hover {
  border-color: var(--gold-soft);
}

.exp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-cine);
  filter: brightness(0.9) saturate(1.05);
}

[data-theme="light"] .exp-card__img {
  filter: brightness(0.95) saturate(1.05);
}

.exp-card:hover .exp-card__img {
  transform: scale(1.05);
  filter: brightness(0.78) saturate(1.1);
}

[data-theme="light"] .exp-card:hover .exp-card__img {
  filter: brightness(0.85) saturate(1.1);
}

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 13, 12, 0.72) 0%, rgba(11, 13, 12, 0.12) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.5s;
}

[data-theme="light"] .exp-card__overlay {
  background: linear-gradient(0deg, rgba(11, 13, 12, 0.68) 0%, rgba(11, 13, 12, 0.1) 48%, transparent 75%);
}

.exp-card:hover .exp-card__overlay {
  background: linear-gradient(0deg, rgba(15, 61, 46, 0.78) 0%, rgba(11, 13, 12, 0.2) 55%, transparent 78%);
}

[data-theme="light"] .exp-card:hover .exp-card__overlay {
  background: linear-gradient(0deg, rgba(11, 13, 12, 0.78) 0%, rgba(11, 13, 12, 0.22) 55%, transparent 80%);
}

.exp-card__num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.exp-card__desc {
  font-size: 0.82rem;
  color: rgba(245, 245, 245, 0.85);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s, opacity 0.4s, margin 0.4s;
}

.exp-card:hover .exp-card__desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 0.25rem;
}

/* ========== GALLERY MASONRY ========== */

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

@media (max-width: 900px) {
  .gallery-masonry { columns: 2; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.gallery-item:hover { border-color: var(--gold-soft); }

.gallery-item img {
  width: 100%;
  transition: transform 0.6s var(--ease-cine);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  color: var(--muted);
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green-forest);
  border-color: var(--green-forest);
  color: var(--text);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(11, 13, 12, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--text);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== PACKAGES & CALCULATOR ========== */

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.package-card {
  padding: 2rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--surface);
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
  position: relative;
}

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(29, 92, 66, 0.2), var(--surface));
}

.package-card:hover { transform: translateY(-6px); }

.package-card__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.package-card__price small {
  font-size: 0.9rem;
  color: var(--muted);
}

.package-card ul {
  margin: 1.5rem 0;
}

.package-card li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-left: 1.25rem;
  position: relative;
}

.package-card li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.65rem;
}

/* Package swiper (visit page) */
.package-swiper-wrap {
  position: relative;
  margin-top: 1.5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  max-width: 100%;
}

.package-swiper .swiper-slide {
  height: auto;
}

.package-swiper .package-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.package-swiper .package-card ul {
  flex: 1;
}

.package-swiper__pagination {
  bottom: 0 !important;
}

.package-swiper__pagination .swiper-pagination-bullet {
  background: var(--muted);
  opacity: 0.45;
}

.package-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

.package-swiper__prev,
.package-swiper__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--surface);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.package-swiper__prev { left: 0.25rem; }
.package-swiper__next { right: 0.25rem; }

.package-swiper__prev:hover,
.package-swiper__next:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .package-swiper__prev { left: 0; }
  .package-swiper__next { right: 0; }
}

.calculator {
  margin-top: 3rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--surface);
  overflow: hidden;
}

.calc-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(15, 61, 46, 0.2), transparent);
}

.calc-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.calc-header p {
  color: var(--muted);
  font-size: 0.9rem;
}

.calc-body {
  padding: 2rem 2.5rem 2.5rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .calc-grid { grid-template-columns: 1fr; }
}

.calc-addon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.calc-addon:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.calc-addon input {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
}

.calc-addon__text strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.calc-addon__text span {
  font-size: 0.78rem;
  color: var(--muted);
}

.calc-breakdown {
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}

.calc-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.calc-line span:last-child {
  color: var(--text);
  font-weight: 500;
}

.calc-line--total {
  border-bottom: none;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--glass-border);
  font-size: 1rem;
}

.calc-line--total span:last-child {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 600;
}

[data-theme="light"] .calculator {
  box-shadow: var(--shadow-card);
}

.calc-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.calc-field select,
.calc-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.calc-total {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-total__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
}

/* ========== BOOKING FORM ========== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field--full { grid-column: 1 / -1; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ========== FAQ ACCORDION ========== */

.faq-list {
  max-width: 800px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-align: left;
  color: var(--text);
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-cine), padding 0.4s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ========== TESTIMONIALS SWIPER ========== */

.testimonial-card {
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  height: auto;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ========== TIMELINE ========== */

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--green-forest), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
  transform: translateX(-4px);
}

.timeline-item__date {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ========== INVESTOR SECTION ========== */

.invest-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .invest-pillars { grid-template-columns: 1fr; }
}

/* Product Showcase */
.invest-pillar__icon {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
}

/* Testimonial ratings & flags */
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--gold);
  font-size: 0.8rem;
}

.testimonial-flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Visitor strip */
.visitor-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
}

.visitor-strip__score {
  text-align: center;
}

.visitor-strip__score-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.visitor-strip__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.visitor-strip__flags img {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.product-swiper-wrap {
  position: relative;
  padding-bottom: 2.75rem;
  overflow: hidden;
  max-width: 100%;
}

.product-swiper .swiper-slide {
  height: auto;
}

.product-swiper__pagination {
  bottom: 0 !important;
}

.product-swiper__pagination .swiper-pagination-bullet {
  background: var(--muted);
  opacity: 0.45;
}

.product-swiper__pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .product-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .product-showcase { grid-template-columns: 1fr; }
}

.product-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: transform 0.45s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.product-card__media {
  aspect-ratio: 4 / 3;
  max-height: 220px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  overflow: hidden;
}

.product-card__media img,
.product-card > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: none;
}

.product-card:hover img { transform: none; }

.product-card__label {
  position: relative;
  padding: 1rem 1rem 1.1rem;
  background: var(--surface);
  margin-top: auto;
}

.product-card__label h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.3;
}

.product-card__label h4 i {
  margin-right: 0.4rem;
  color: var(--gold-text);
  font-size: 0.85rem;
}

.invest-pillar {
  padding: 2rem;
  border-top: 2px solid var(--gold);
  background: var(--surface);
}

.invest-pillar__icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.invest-pillar h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.invest-pillar p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: clamp(320px, 45vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img,
.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}

.page-hero__overlay {
  display: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .display,
.page-hero .eyebrow,
.page-hero .lead {
  color: #f5f5f5;
}

.page-hero .display { max-width: 16ch; }

/* Split About */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  z-index: -1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--green-forest), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  border: 2px solid var(--gold-soft);
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* Contact Map Embed */
.contact-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 21 / 9;
  max-height: 240px;
  max-width: 720px;
  margin: 0 auto;
}

.contact-map--bottom {
  margin-top: 0;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.1);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}

.contact-info-item {
  padding: 1.5rem;
  text-align: center;
}

.contact-info-item svg {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-info-item h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

/* Growth plan milestones */
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.milestone-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}

.milestone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-forest), var(--gold));
}

.milestone-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
}

.milestone-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-text);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.milestone-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.growth-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  counter-reset: growth;
}

.growth-step {
  padding: 1.5rem;
  border-left: 2px solid var(--green-forest);
  counter-increment: growth;
}

.growth-step::before {
  content: counter(growth, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.3);
  display: block;
  margin-bottom: 0.5rem;
}

.growth-step p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Newsletter (footer) */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 10rem;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold-soft);
}

.newsletter-form .btn {
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

.newsletter-status {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: var(--muted);
}

.newsletter-status--ok { color: var(--green-forest); }
[data-theme="light"] .newsletter-status--ok { color: #1D5C42; }
.newsletter-status--err { color: #c45c5c; }

.newsletter-privacy {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.45;
}

.newsletter-privacy a {
  color: var(--gold-text, var(--gold));
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 4.2 star display */
.testimonial-stars--42 i:nth-child(5) {
  opacity: 0.25;
}

/* Privacy policy prose */
.privacy-prose {
  max-width: 68ch;
}

.privacy-prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.privacy-prose p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.privacy-prose p:first-of-type { margin-top: 0; }

[data-theme="light"] .privacy-prose h3 {
  color: var(--text-strong, #0f1a14);
}

.map-link-wrap {
  margin-top: 0.75rem;
  text-align: center;
}

.map-link-wrap a {
  font-size: 0.82rem;
  color: var(--gold-text, var(--gold));
  letter-spacing: 0.04em;
}
