:root {
  --bg: #0f1b26;
  --bg-soft: #1e2d39;
  --bg-snow: #edf3f7;
  --surface: rgba(247, 251, 253, 0.96);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --surface-dark: rgba(15, 27, 38, 0.82);
  --line: rgba(27, 45, 60, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --text: #17232d;
  --muted: #667887;
  --white: #f7fbfd;
  --ice: #c7d8e4;
  --ice-strong: #6e8799;
  --glow: #7b95a8;
  --glow-strong: #9eb7c8;
  --shadow: 0 24px 80px rgba(27, 34, 32, 0.14);
  --radius-sm: 22px;
  --radius: 28px;
  --radius-lg: 32px;
  --content-width: min(1180px, calc(100% - 32px));
  --section-space: 75px;
  --section-space-half: calc(var(--section-space) / 2);
  --hero-title: clamp(2.7rem, 7vw, 5.2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(129, 162, 187, 0.12), transparent 24%),
    linear-gradient(180deg, #f4f8fb 0%, #e8eef2 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px);
  background-size: 220px 220px, 320px 320px, 420px 420px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--content-width);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 10, 14, 0.82);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
  background: rgba(4, 8, 12, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand img {
  width: 170px;
  height: 38px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: rgba(247, 251, 253, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 180ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: #1f3342;
}

.button.secondary {
  color: #11181e;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.94);
}

.button.dark {
  color: var(--white);
  background: #1f3342;
}

.button.light {
  color: var(--bg);
  background: #fff;
}

.page-hero,
.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  padding-bottom: 88px;
  margin-bottom: 40px;
}

.hero-media,
.hero-overlay,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.94) contrast(1.02) brightness(0.8);
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 18%, rgba(167, 197, 216, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(15, 27, 38, 0.2) 0%, rgba(15, 27, 38, 0.42) 34%, rgba(15, 27, 38, 0.92) 100%);
}

.hero-noise {
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px),
    radial-gradient(circle at 58% 72%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px);
  background-size: 220px 220px, 340px 340px, 300px 300px;
  animation: none;
}

@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .hero-noise {
    animation: drift 26s linear infinite;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  padding-top: 120px;
  text-align: center;
}

.kicker {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 253, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero h1,
.page-hero h1,
.display-title {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 0.9;
}

.home-hero h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(4rem, 8vw, 6.8rem);
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.14);
}

.hero-subtitle {
  max-width: 780px;
  margin: 20px auto 0;
  color: rgba(247, 251, 253, 0.82);
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(880px, calc(100% - 32px));
  margin: 44px auto 0;
}

.stat-card {
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(32, 36, 33, 0.46);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.stat-card span {
  color: rgba(247, 251, 253, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.intro-band {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: var(--section-space-half);
  padding-bottom: 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.impact-shell {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 100%, rgba(130, 152, 170, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(10, 15, 20, 0.98) 0%, rgba(13, 20, 28, 0.98) 100%);
  box-shadow: 0 30px 90px rgba(7, 11, 15, 0.28);
}

.impact-header {
  margin-bottom: 24px;
  text-align: center;
}

.impact-header .section-label {
  color: rgba(247, 251, 253, 0.68);
}

.impact-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(30, 36, 43, 0.96) 0%, rgba(25, 31, 38, 0.98) 100%),
    radial-gradient(circle at 50% 100%, rgba(155, 174, 189, 0.08), transparent 40%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.impact-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(110, 135, 153, 0.94) 0%, rgba(158, 183, 200, 0.72) 100%);
  pointer-events: none;
}

.impact-index {
  display: inline-block;
  margin-bottom: 26px;
  color: rgba(247, 251, 253, 0.46);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.impact-card h3 {
  max-width: 14ch;
  margin: 0;
  padding-bottom: 15px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.impact-card p {
  max-width: 32ch;
  margin: 0;
  color: rgba(247, 251, 253, 0.7);
  font-size: 0.93rem;
  line-height: 1.6;
}

.section {
  width: var(--content-width);
  margin: 0 auto;
  padding: var(--section-space-half) 0;
}

main > .section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.section.compact {
  padding-top: var(--section-space-half);
}

.section:has(> .cta-banner) {
  padding-top: var(--section-space-half);
  padding-bottom: var(--section-space-half);
}

.manifesto-section {
  width: var(--content-width);
  margin: 0 auto;
  padding: var(--section-space-half) 0;
}

.manifesto-panel {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
  padding: 44px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(21, 37, 51, 0.96) 0%, rgba(29, 52, 70, 0.92) 100%),
    radial-gradient(circle at 18% 18%, rgba(158, 183, 200, 0.16), transparent 20%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.manifesto-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 24, 34, 0.06) 0%, rgba(12, 24, 34, 0.24) 100%);
  pointer-events: none;
}

.manifesto-panel > * {
  position: relative;
  z-index: 1;
}

.manifesto-copy .display-title {
  max-width: 13ch;
  margin-top: 18px;
  color: var(--white);
}

.manifesto-text {
  max-width: 34ch;
  justify-self: end;
}

.manifesto-text p {
  margin: 0;
  color: rgba(247, 251, 253, 0.76);
  font-size: 0.95rem;
  line-height: 1.75;
}

.manifesto-text .button {
  margin-top: 24px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-header.centered {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-header.centered .lead {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6b756c;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.display-title {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  color: var(--text);
}

.display-title.light {
  color: var(--white);
}

.lead {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.lead.light {
  color: rgba(247, 251, 253, 0.78);
}

.section h3 {
  margin: 12px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.card,
.story-card,
.detail-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tilt {
  transform: none !important;
  transform-style: flat;
  transition: none;
}

.feature-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(8, 12, 18, 0.26);
}

.feature-card > img,
.feature-card::before {
  position: absolute;
  inset: 0;
}

.feature-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.82) contrast(1.01);
}

.feature-card::before {
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 19, 29, 0.52) 0%, rgba(8, 19, 29, 0.68) 42%, rgba(8, 19, 29, 0.94) 100%),
    radial-gradient(circle at 50% 120%, rgba(8, 19, 29, 0.5) 0%, rgba(8, 19, 29, 0) 55%);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.feature-content {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.feature-content .hero-actions {
  justify-content: flex-start;
}

.feature-content h3 {
  margin: 10px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.feature-content p {
  max-width: 30ch;
  margin: 0;
  color: rgba(247, 251, 253, 0.9);
  font-size: 0.92rem;
  line-height: 1.6;
}

.sticker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-frame {
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 45, 60, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(158, 183, 200, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(248, 251, 253, 0.96) 0%, rgba(238, 245, 249, 0.98) 100%);
}

.feature-frame .section-label {
  color: #6b7983;
}

.feature-frame .display-title.light {
  color: var(--text);
}

.feature-frame .lead.light {
  color: var(--muted);
}

.dark-zone {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(15, 27, 38, 0.84) 0%, rgba(10, 18, 27, 0.98) 100%),
    url("assets/images/MSR09021.jpeg") center / cover no-repeat;
}

.dark-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 22%, rgba(192, 202, 191, 0.12), transparent 20%),
    radial-gradient(circle at 80% 18%, rgba(168, 131, 95, 0.06), transparent 18%);
  pointer-events: none;
}

.dark-zone .section {
  position: relative;
  z-index: 1;
}

.quote-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.quote-copy {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-copy blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.quote-copy p {
  margin: 20px 0 0;
  color: rgba(247, 251, 253, 0.76);
  line-height: 1.8;
}

.quote-image {
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02) brightness(0.9);
}

.expedition-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 640px;
}

.expedition-media {
  position: relative;
  min-height: 100%;
}

.expedition-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expedition-body {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 241, 235, 0.98) 100%);
}

.expedition-body h3 {
  margin: 12px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.meta-line {
  color: var(--ice-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.body-copy {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.stack {
  display: grid;
  gap: 18px;
}

.info-box {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 34, 51, 0.08);
}

.info-box h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-list,
.check-list,
.principle-list,
.topic-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.info-list li,
.check-list li,
.topic-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
}

.info-list li::before,
.check-list li::before,
.topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice-strong), var(--glow));
}

.workshop-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15, 34, 51, 0.08);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.workshop-row:last-child {
  border-bottom: 0;
}

.workshop-row span:last-child {
  color: var(--muted);
  text-align: right;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(15, 34, 51, 0.08);
}

.price-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(35, 40, 36, 0.06);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.teaser-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.teaser-card {
  padding: 26px;
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(24, 30, 36, 0.98) 0%, rgba(19, 24, 30, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.teaser-card h3 {
  margin: 16px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.teaser-card p {
  margin: 0;
  color: rgba(247, 251, 253, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
}

.teaser-card .button {
  margin-top: 20px;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: inline-flex;
  gap: 22px;
  min-width: 100%;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(247, 251, 253, 0.78);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-form-wrap {
  padding: 28px;
}

.contact-form {
  height: 100%;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-form .field span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f808e;
}

.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(27, 45, 60, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

.contact-form .field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #4a5f70 50%),
    linear-gradient(135deg, #4a5f70 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form .field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus {
  outline: none;
  border-color: #38556b;
  box-shadow: 0 0 0 3px rgba(56, 85, 107, 0.15);
}

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

.form-alert {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(27, 45, 60, 0.14);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-alert.success {
  color: #154020;
  background: rgba(198, 239, 206, 0.85);
  border-color: rgba(47, 125, 50, 0.36);
}

.form-alert.error {
  color: #5c1111;
  background: rgba(255, 228, 228, 0.92);
  border-color: rgba(168, 38, 38, 0.34);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f808e;
}

.hp-field {
  display: none !important;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(27, 45, 60, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #38556b;
  box-shadow: 0 0 0 3px rgba(56, 85, 107, 0.15);
}

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

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-story {
  display: grid;
  gap: 24px;
}

.story-media-block {
  display: grid;
  gap: 0;
  height: 100%;
}

.image-panel {
  position: relative;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.image-panel-wide {
  min-height: 100%;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 19, 29, 0.42) 0%, rgba(8, 19, 29, 0.18) 42%, rgba(8, 19, 29, 0.52) 100%);
  pointer-events: none;
}

.image-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(32, 36, 33, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-tag-static {
  position: absolute;
  left: 34px;
  bottom: 34px;
  top: auto;
  right: auto;
  justify-self: auto;
}

.image-overlay-copy {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  top: auto;
  display: grid;
  gap: 10px;
  z-index: 2;
}

.image-overlay-copy p {
  max-width: 36ch;
  margin: 0;
  color: rgba(247, 251, 253, 0.88);
  font-size: 0.88rem;
  line-height: 1.55;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.image-overlay-copy .image-tag {
  position: static;
  order: 1;
  justify-self: start;
  margin: 0 0 2px;
}

.image-overlay-copy p {
  order: 2;
}

.copy-panel {
  padding: 34px;
  height: 100%;
}

.copy-panel h2 {
  margin: 12px 0 0;
}

.service-grid,
.instructor-grid,
.cases-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.instructor-card,
.case-card,
.principle-card {
  padding: 24px;
}

.instructor-card {
  padding: 0;
}

.instructor-copy {
  padding: 24px;
}

.profile-photo {
  width: 100%;
  height: 360px;
  margin: 0;
  object-fit: cover;
  display: block;
}

.service-card h3,
.instructor-card h3,
.case-card h3,
.principle-card h3 {
  margin: 12px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.service-card p,
.instructor-card p,
.case-card p,
.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.instructor-card p + p {
  margin-top: 14px;
}

.instructor-card a {
  color: var(--glow);
  font-weight: 700;
}

.page-hero {
  min-height: 60svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  background: var(--bg);
  text-align: center;
  margin-bottom: 40px;
}

.page-hero .hero-content {
  width: var(--content-width);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
}

.page-grid {
  display: grid;
  gap: var(--section-space);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 56px 32px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(32, 36, 33, 0.34) 0%, rgba(32, 36, 33, 0.84) 100%),
    url("assets/images/MSR09021.jpeg") center / cover no-repeat;
}

.cta-banner h2 {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.cta-banner p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(247, 251, 253, 0.8);
  font-size: 0.94rem;
  line-height: 1.7;
}

.cta-banner .hero-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

.site-footer {
  margin-top: 40px;
  padding: 52px 0 26px;
  color: rgba(247, 251, 253, 0.78);
  background: linear-gradient(180deg, #202421 0%, #262c28 100%);
}

.footer-inner {
  width: var(--content-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 34px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
}

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

.footer-copy,
.footer-col a,
.footer-col p {
  color: rgba(247, 251, 253, 0.68);
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: rgba(247, 251, 253, 0.96);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(247, 251, 253, 0.56);
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-parallax] {
  will-change: transform;
}

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }

@keyframes drift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-20px, 24px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .grid-3,
  .hero-stats,
  .teaser-strip,
  .service-grid,
  .instructor-grid,
  .cases-grid,
  .principle-grid,
  .quote-panel,
  .expedition-card,
  .split-layout,
  .contact-layout,
  .grid-2,
  .manifesto-panel,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .expedition-card {
    min-height: auto;
  }

  .expedition-media {
    min-height: 380px;
  }

  .image-panel {
    min-height: 420px;
  }

  .manifesto-text {
    max-width: none;
    justify-self: start;
  }
  
  .nav-actions .secondary {
	  display: none;
  }

}

@media (max-width: 820px) {
  :root {
    --content-width: min(calc(100% - 24px), 1180px);
    --hero-title: clamp(3.4rem, 16vw, 6rem);
  }

  .site-header {
    top: 10px;
    padding: 14px 16px;
    border-radius: 24px;
    backdrop-filter: none;
  }

  body::before {
    display: none;
  }
  
  .brand img {
    width: auto !important;
    height: 38px;
    object-fit: contain;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links,
  .nav-actions .button {
    display: none;
  }

  .site-header.open .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(7, 18, 29, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header.open .nav-actions .button {
    display: inline-flex;
  }

  .home-hero,
  .page-hero {
    min-height: 78svh;
	margin-bottom: 40px;
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--section-space-half) 0;
  }

  .quote-copy,
  .copy-panel,
  .cta-banner,
  .contact-form-wrap {
    padding: 24px;
  }

  .form-grid,
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #0f1b26;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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