/* GDMNK — Premium layout (CKM-inspired) */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Saira:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@400;500;600&display=swap');

:root {
  --ink: #0f172a;
  --navy: #0c1f3d;
  --brand-blue: #5b84b1;
  --brand-blue-light: #a3bacd;
  --brand-blue-deep: #3a4f66;
  --blur-glass: blur(14px);
  --shadow-soft: 0 10px 35px -18px rgba(15, 23, 42, 0.2);
  --shadow-luxury: 0 20px 80px -35px rgba(15, 23, 42, 0.35);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --font-body: 'Saira', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-zh: 'Noto Sans SC', 'Saira', sans-serif;
}

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

html { scroll-behavior: smooth; }

html[lang="zh-CN"] body { font-family: var(--font-zh); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(12, 31, 61, 0.04), transparent 35%),
    radial-gradient(circle at 90% 15%, rgba(12, 31, 61, 0.03), transparent 45%),
    #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }

.glass-panel {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.grid-lines {
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.section-divider {
  width: min(100%, 1280px);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 60;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue-light), var(--brand-blue), var(--brand-blue-deep));
}

.w-full { width: 100%; }

.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 200;
  padding: .65rem 1rem; background: var(--navy); color: #fff;
  border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  padding: .75rem 1rem 0;
}

.nav-shell {
  max-width: 1280px; margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: .65rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: box-shadow .3s ease, background .3s ease;
}

.site-header.is-scrolled .nav-shell {
  box-shadow: var(--shadow-luxury);
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.35rem; letter-spacing: .08em;
}

.brand img { height: 36px; width: auto; object-fit: contain; }

.nav-desktop { display: none; align-items: center; gap: .25rem; }
.nav-desktop a {
  padding: .5rem .85rem; font-size: .875rem; font-weight: 500;
  color: #475569; border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-desktop a:hover, .nav-desktop a.is-active {
  color: var(--navy); background: rgba(12, 31, 61, 0.06); font-weight: 600;
}

.header-actions { display: flex; align-items: center; gap: .5rem; }

.lang-pill {
  display: flex; padding: .2rem; border-radius: 999px;
  background: #f1f5f9; border: 1px solid #e2e8f0;
}
.lang-pill button {
  min-width: 38px; min-height: 38px; border-radius: 999px;
  font-size: .65rem; font-weight: 700; color: #64748b;
}
.lang-pill button.is-active { background: var(--navy); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 46px; padding: 0 1.25rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  border-radius: var(--radius-md);
  transition: all .25s ease;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: #152d52; transform: translateY(-1px); }
.btn-outline {
  border: 1px solid #cbd5e1; color: var(--ink); background: #fff;
}
.btn-outline:hover { border-color: var(--navy); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f8fafc; }
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.header-cta { display: none; }

.menu-btn {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}

.mobile-drawer {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-drawer.is-open { opacity: 1; visibility: visible; }

.mobile-panel {
  position: absolute; top: 0; right: 0;
  width: 75%;
  max-width: 75vw;
  height: 100%;
  background: #fff;
  padding: 1rem 1.25rem 1.75rem;
  transform: translateX(100%);
  transition: transform .35s ease;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  display: flex; flex-direction: column;
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
}
.mobile-drawer.is-open .mobile-panel { transform: none; }

.mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .5rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid #eef2f6;
  flex-shrink: 0;
}

.mobile-panel__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.mobile-panel__brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.mobile-panel__close {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: background .2s ease, border-color .2s ease;
}

.mobile-panel__close svg { width: 20px; height: 20px; }

.mobile-panel__close:hover {
  background: #fff;
  border-color: rgba(91, 132, 177, 0.45);
}

.mobile-panel nav {
  display: flex; flex-direction: column;
  padding-top: .25rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.mobile-panel nav a {
  display: block;
  padding: .75rem .5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--navy);
  border-bottom: 1px solid #f1f5f9;
  transition: color .2s ease;
}

.mobile-panel nav a:hover { color: var(--brand-blue); }

.mobile-panel__foot {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex-shrink: 0;
}

.mobile-panel__block { display: grid; gap: .65rem; }

.mobile-panel__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #64748b;
}

.mobile-panel__contacts {
  display: grid;
  gap: .45rem;
}

.mobile-panel__contact-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .75rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  transition: background .2s ease, border-color .2s ease;
}

.mobile-panel__contact-link svg {
  width: 18px;
  height: 18px;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.mobile-panel__contact-link:hover {
  background: #fff;
  border-color: rgba(91, 132, 177, 0.4);
}

.social-icons--mobile {
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: .5rem;
}

.social-icons--mobile .social-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: var(--navy);
}

.social-icons--mobile .social-icon:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.mobile-panel__block--lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.mobile-panel__block--lang .mobile-panel__label {
  flex-shrink: 0;
  margin: 0;
}

.lang-pill--menu { width: fit-content; flex-shrink: 0; }

@media (min-width: 1024px) {
  .nav-desktop, .header-cta { display: flex; }
  .menu-btn { display: none; }
}

.hero {
  position: relative;
  padding: 7rem 1rem 2rem;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: clamp(220px, 38vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 31, 61, 0.06) 0%, transparent 70%);
  filter: blur(2px);
}

.hero-orb--left { top: 8%; left: -8%; }
.hero-orb--right { top: 12%; right: -6%; }

.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; gap: 2.5rem; align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05; font-weight: 600;
  color: var(--navy); margin-bottom: 1.25rem;
  position: relative;
}

.hero-copy h1::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-light), transparent);
}

.hero-copy p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75; color: #475569;
  max-width: 36rem; margin-bottom: 1.75rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hero-foot {
    flex-flow: row wrap;
    align-items: center;
    gap: 1.25rem 1.75rem;
  }
}

.hero-social {
  flex: 0 0 auto;
}

.social-icons--hero {
  justify-content: flex-start;
  align-items: center;
}

.social-icons--hero .social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.social-icons--hero .social-icon:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.hero-visual { position: relative; min-width: 0; width: 100%; }

.hero-player {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  background: var(--navy);
}

.hero-player__video {
  display: block;
  width: 100%;
  height: clamp(280px, 45vw, 480px);
  object-fit: cover;
  background: #0a1628;
}

.hero-player__overlay-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: none;
  background: linear-gradient(180deg, rgba(12, 31, 61, 0.08) 0%, rgba(12, 31, 61, 0.42) 100%);
  color: #fff;
  cursor: pointer;
  transition: background .25s ease;
}

.hero-player__overlay-play:hover {
  background: linear-gradient(180deg, rgba(12, 31, 61, 0.12) 0%, rgba(12, 31, 61, 0.52) 100%);
}

.hero-player__overlay-play[hidden] { display: none; }

.hero-player__play-mark {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--brand-blue);
  border: 4px solid #fff;
  box-shadow: var(--shadow-luxury);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.hero-player__overlay-play:hover .hero-player__play-mark {
  transform: scale(1.04);
  background: var(--brand-blue-deep);
  box-shadow: 0 20px 48px -16px rgba(12, 31, 61, 0.55);
}

.hero-player__play-mark svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  margin-left: 3px;
}

.hero-player__overlay-text {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(12, 31, 61, 0.45);
}

.hero-player__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem .75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 15, 31, 0.92) 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.hero-player.is-playing .hero-player__controls,
.hero-player.has-started.is-paused .hero-player__controls,
.hero-player:focus-within .hero-player__controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-player.is-playing:not(:hover):not(:focus-within) .hero-player__controls {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.hero-player__btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(163, 186, 205, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}

.hero-player__btn:hover {
  background: rgba(91, 132, 177, 0.35);
  border-color: var(--brand-blue-light);
}

.hero-player__btn svg { width: 16px; height: 16px; }

.hero-player__progress-wrap {
  flex: 1;
  position: relative;
  min-width: 0;
  height: 22px;
  display: flex;
  align-items: center;
}

.hero-player__progress-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  pointer-events: none;
}

.hero-player__progress-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-blue-light), var(--brand-blue));
}

.hero-player__seek {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  height: 22px;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.hero-player__seek::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand-blue);
  box-shadow: 0 0 0 2px rgba(91, 132, 177, 0.35);
}

.hero-player__seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand-blue);
}

.hero-player__time {
  flex-shrink: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, 0.88);
  min-width: 4.5rem;
  text-align: right;
}

.hero-orbit {
  position: absolute; top: -1rem; right: -1rem; z-index: 4;
  width: clamp(96px, 38%, 180px); aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-soft);
  background: var(--navy);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.hero-orbit.is-hidden {
  opacity: 0;
  transform: scale(0.82);
  visibility: hidden;
  pointer-events: none;
}
.hero-orbit img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  padding: 10%;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 639px) {
  .hero-orbit { width: 32%; top: -.5rem; right: 0.5rem; }
}

.principles {
  grid-column: 1 / -1;
  margin-top: 2rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.principle {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  min-width: 0;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.principle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(91, 132, 177, 0.35);
}

.principle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(91, 132, 177, 0.14), rgba(12, 31, 61, 0.05));
  border: 1px solid rgba(91, 132, 177, 0.28);
  box-shadow: 0 6px 18px -8px rgba(91, 132, 177, 0.45);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.principle:hover .principle__icon {
  background: linear-gradient(145deg, rgba(91, 132, 177, 0.22), rgba(12, 31, 61, 0.08));
  border-color: rgba(91, 132, 177, 0.45);
  box-shadow: 0 8px 22px -6px rgba(91, 132, 177, 0.5);
}

.principle__icon svg,
.principle > svg {
  width: 18px;
  height: 18px;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.principle strong {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .principle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.15rem .85rem;
    gap: .75rem;
  }

  .principle__icon {
    width: 46px;
    height: 46px;
  }

  .principle__icon svg {
    width: 20px;
    height: 20px;
  }

  .principle strong {
    font-size: .78rem;
    line-height: 1.35;
  }
}

@media (min-width: 768px) {
  .principles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .principles { margin-top: 2.5rem; }
}

.section { padding: 4.5rem 1rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600; color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-title--center { text-align: center; margin-bottom: 2.5rem; }

.about-grid {
  display: grid; gap: 2.5rem; align-items: start;
}

.about-text p {
  font-size: 1.05rem; line-height: 1.8; color: #475569;
  margin-bottom: 1.15rem;
}

.about-highlight { color: var(--brand-blue); font-weight: 600; font-style: normal; }

.about-side { display: grid; gap: .85rem; }

.mvv-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.mvv-card h3 {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--brand-blue); margin-bottom: .65rem;
}
.mvv-card p { font-size: 1rem; line-height: 1.65; color: #334155; }
.mvv-card--dark {
  background: var(--navy); border-color: transparent; color: #fff;
}
.mvv-card--dark h3 { color: rgba(255,255,255,.7); }
.mvv-card--dark p { color: rgba(255,255,255,.88); }

.mvv-values {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.mvv-values li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.45;
  padding: .7rem 0;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(163, 186, 205, 0.22);
}

.mvv-values li:first-child { padding-top: 0; }
.mvv-values li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.mvv-values li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  box-shadow: 0 0 0 3px rgba(163, 186, 205, 0.18);
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1.1fr .9fr; }
}

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

.activity-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-luxury);
}

.activity-card img {
  width: 100%; height: clamp(220px, 24.2vw, 286px); object-fit: cover;
  transition: transform .6s ease;
}
.activity-card:hover img { transform: scale(1.04); }

.activity-body {
  padding: 1.5rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.activity-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  line-height: 1.35; color: var(--navy);
  margin-bottom: .65rem;
}

.activity-desc {
  font-size: .92rem;
  line-height: 1.65;
  color: #64748b;
}

@media (min-width: 640px) { .activities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .activities-grid { grid-template-columns: repeat(4, 1fr); } }


.why-list { display: grid; gap: 1rem; }

.why-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-luxury);
}

.why-item .highlight {
  color: var(--brand-blue);
  font-weight: 600;
  font-style: normal;
}
.why-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1; font-weight: 600;
  color: rgba(12, 31, 61, 0.08);
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: .5rem;
}
.why-item p { font-size: .95rem; line-height: 1.75; color: #475569; }

@media (min-width: 768px) {
  .why-list { grid-template-columns: repeat(2, 1fr); }
}

.contact-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(91, 132, 177, 0.06), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(12, 31, 61, 0.04), transparent 40%);
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-head {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-head .section-title {
  margin-bottom: 1rem;
}

.contact-head__lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: #475569;
  margin: 0;
}

.contact-cards {
  display: grid;
  gap: .85rem;
  min-width: 0;
}

.contact-form-wrap {
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
  }
}

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

  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }
}

.contact-form__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .contact-form__title {
    display: none;
  }
}

.contact-form {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.contact-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.contact-field label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: .4rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--navy);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #94a3b8;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(91, 132, 177, 0.15);
}

.contact-field textarea {
  resize: vertical;
  min-height: 0;
}

.contact-form__actions {
  margin-top: 1.25rem;
  display: grid;
  gap: .75rem;
}

.contact-form__submit { width: fit-content; }
.contact-form__submit:disabled { opacity: 0.72; cursor: wait; }

.contact-form__feedback {
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

.contact-form__feedback.is-success { color: #15803d; }
.contact-form__feedback.is-error { color: #b91c1c; }

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(91, 132, 177, 0.35);
}

.contact-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(91, 132, 177, 0.1), rgba(91, 132, 177, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon svg { width: 20px; height: 20px; color: var(--navy); }

.contact-card__label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: .35rem;
}

.contact-card__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .25rem;
  line-height: 1.4;
}

.contact-card__city { font-family: var(--font-display); font-size: 1.05rem; }

.contact-card__address {
  margin: 0 0 .35rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.55;
  color: #475569;
  white-space: pre-line;
}

.contact-card__meta {
  display: block;
  font-size: .875rem;
  color: #64748b;
  line-height: 1.5;
}

.contact-card a.contact-card__value:hover { color: var(--brand-blue); }

.country-line {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .35rem;
  font-size: .875rem;
  color: #64748b;
  line-height: 1.45;
}

.site-footer {
  background: #060f1f;
  color: rgba(255, 255, 255, 0.88);
  padding: 3.5rem 1rem 1.5rem;
  margin-top: 2.5rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.footer-waves img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 15, 31, 0.82) 0%, rgba(12, 31, 61, 0.5) 50%, rgba(12, 31, 61, 0.38) 100%),
    radial-gradient(circle at 18% 0%, rgba(91, 132, 177, 0.14), transparent 42%),
    radial-gradient(circle at 88% 100%, rgba(163, 186, 205, 0.1), transparent 38%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-block img {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
  max-width: 16rem;
  line-height: 1.45;
}

.footer-social-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: .85rem;
}

.footer-col__title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.footer-list { display: grid; gap: .85rem; }

.footer-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer-list__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-list__icon svg { width: 16px; height: 16px; color: var(--brand-blue); }

.footer-list a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  margin-bottom: .15rem;
}

.footer-list a:hover { color: var(--brand-blue); }

.footer-list small {
  display: block;
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-hours {
  display: block;
  margin-top: .35rem;
}

.footer-hours__label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(163, 186, 205, 0.95);
  margin-bottom: .15rem;
}

.footer-hours__text {
  display: block;
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: pre-line;
  line-height: 1.5;
}

.footer-list strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  margin-bottom: .2rem;
}

.footer-address {
  margin: 0 0 .35rem;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  white-space: pre-line;
}

.country-line--footer {
  margin-top: .25rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: .82rem;
}

.footer-list--legal li { padding-left: 0; }

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}

.social-icons--footer { justify-content: flex-start; }

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue));
  border-color: var(--brand-blue-light);
  color: #fff;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: center;
  padding-top: 1.35rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; }
  .footer-bar { justify-content: flex-start; text-align: left; }
}

.section--why {
  background:
    radial-gradient(circle at 0% 50%, rgba(91, 132, 177, 0.05), transparent 45%),
    radial-gradient(circle at 100% 20%, rgba(12, 31, 61, 0.04), transparent 40%);
}

.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 140ms; }
.reveal:nth-child(4) { transition-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .activity-card:hover { transform: none; }
  .contact-card:hover { transform: none; }
  .social-icon:hover { transform: none; }
}

@media (max-width: 479px) {
  .why-item { grid-template-columns: 1fr; }
}

.floating-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 55;
}

.contact-panel {
  position: absolute;
  bottom: calc(100% + .75rem);
  right: 0;
  width: min(100vw - 2rem, 16rem);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  box-shadow: var(--shadow-luxury);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 260ms ease;
}

.contact-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.contact-panel__title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: .75rem;
}

.contact-panel__links { display: grid; gap: .5rem; }

.contact-panel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .65rem .85rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  background: #fff;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease, border-color .2s, background .2s;
}

.contact-panel.is-open .contact-panel-link {
  opacity: 1;
  transform: translateY(0);
}

.contact-panel-link:hover {
  border-color: var(--brand-blue);
  background: rgba(91, 132, 177, 0.06);
}

.contact-panel-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand-blue);
}

.contact-panel-link--whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
}

.contact-panel-link--whatsapp svg { color: #25d366; }

.floating-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  background: var(--navy);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: var(--shadow-luxury);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.floating-contact__btn:hover {
  transform: translateY(-2px);
  background: #152d52;
}

.floating-contact__btn svg { width: 18px; height: 18px; }

.legal-page {
  padding: 7rem 1rem 4rem;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 2rem;
  font-size: .875rem;
  font-weight: 600;
  color: #64748b;
  transition: color .2s;
}

.legal-back:hover { color: var(--navy); }

.legal-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .75rem;
}

.legal-updated {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.legal-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .65rem;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
}
