/* ==========================================================================
   Smiles & Summits — smilesandsummits.com / .eu / .pl
   Design system: alpine ivory + champagne gold + graphite
   ========================================================================== */

:root {
  --ivory: #FAF7F1;
  --white: #FFFFFF;
  --gold: #C6A15B;
  --gold-deep: #A8842C;
  --graphite: #1C1C1E;
  --graphite-2: #2A2A2C;
  --silver: #C7CBD1;
  --night: #0E0E0F;
  --muted: #6E6A62;
  --muted-warm: #8B8578;
  --body: #45423C;
  --hairline: rgba(198, 161, 91, 0.35);
  --hairline-soft: rgba(198, 161, 91, 0.25);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--gold-deep); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold); }

section { scroll-margin-top: 86px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1320px; }

/* ---------- shared type ---------- */

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  margin-bottom: 64px;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.12;
  margin: 0;
  color: var(--graphite);
}

.section-head .lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  max-width: 760px;
  margin: 8px 0 0;
}

.rule { width: 56px; height: 1px; background: var(--gold); border: 0; margin: 0; }

.diamond { flex: 0 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 38px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--white);
}
.btn--gold:hover { opacity: 0.88; color: var(--white); }

.btn--ghost {
  border: 1px solid var(--graphite-2);
  color: var(--graphite);
  background: transparent;
}
.btn--ghost:hover { background: var(--graphite); color: var(--white); }

.btn--dark {
  background: var(--graphite);
  color: var(--white);
  font-family: var(--sans);
}
.btn--dark:hover { background: var(--graphite-2); color: var(--white); }

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chip--next { animation: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-top: 2px solid var(--gold);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.96);
  box-shadow: 0 1px 0 var(--hairline-soft);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--graphite);
}
.brand:hover { color: var(--graphite); }

.brand__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite-2);
}
.site-nav a:hover { color: var(--gold-deep); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid rgba(28, 28, 30, 0.25);
  padding-left: 24px;
}

.lang-switch a,
.lang-switch span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.lang-switch .is-active {
  color: var(--gold-deep);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.lang-switch a { color: #8B93A1; }
.lang-switch a:hover { color: var(--gold-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #D9DFE9 0%, #EAECEF 34%, #F6F2EA 62%, var(--ivory) 100%);
  padding: 140px 24px 90px;
}

.hero--photo {
  background-image:
    linear-gradient(180deg, rgba(250, 247, 241, 0.08) 0%, rgba(250, 247, 241, 0.30) 52%, rgba(250, 247, 241, 0.94) 100%),
    url("/assets/img/main_banner_2.jpg");
  background-size: cover;
  background-position: 68% center;
}

.hero--photo .hero__content {
  background: radial-gradient(closest-side, rgba(250, 247, 241, 0.62) 0%, rgba(250, 247, 241, 0.30) 62%, rgba(250, 247, 241, 0) 100%);
  padding: 34px 44px;
  border-radius: 24px;
}

.hero__glow {
  position: absolute;
  left: 50%;
  top: 14%;
  width: 560px;
  height: 560px;
  margin-left: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 205, 156, 0.55) 0%, rgba(230, 205, 156, 0) 68%);
  pointer-events: none;
}

.hero__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__scene svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__fog {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, rgba(250, 247, 241, 0) 0%, rgba(250, 247, 241, 0.94) 78%, var(--ivory) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero__kicker { color: var(--muted); }

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 7.4vw, 96px);
  line-height: 1.04;
  margin: 0;
  color: var(--graphite);
}

.hero__sub {
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--body);
  max-width: 640px;
  margin: 0;
}

.hero__motto {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--graphite-2);
}
.hero__motto .dot { color: var(--gold); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(20, 22, 26, 0.78);
  border: 1px solid rgba(198, 161, 91, 0.6);
}

.hero__badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__badge span:last-child {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F4EFE6;
}

.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero__scroll-cue .line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(168, 132, 44, 0) 0%, var(--gold-deep) 100%);
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  padding: 88px 0 96px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-top: 1px solid rgba(198, 161, 91, 0.5);
  padding-top: 26px;
  text-align: center;
}

.stat__value {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1;
}

.stat__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   The Idea
   ========================================================================== */

.idea {
  background: var(--white);
  border-top: 1px solid var(--hairline-soft);
  padding: 120px 0 130px;
}

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

.pillar {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-deep);
}

.pillar__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
}

.idea__quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 72px;
  text-align: center;
}

.idea__quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--gold-deep);
  margin: 0;
}

/* ==========================================================================
   The Journey — timeline
   ========================================================================== */

.journey {
  border-top: 1px solid var(--hairline-soft);
  padding: 120px 0 110px;
}

.timeline {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.timeline__spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, rgba(198, 161, 91, 0.15) 0%, var(--gold) 12%, var(--gold) 88%, rgba(198, 161, 91, 0.15) 100%);
}

.tl-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  align-items: center;
  margin-bottom: 34px;
}

.tl-row__marker {
  grid-column: 2;
  display: flex;
  justify-content: center;
}

.tl-row--left .tl-card { grid-column: 1; grid-row: 1; }
.tl-row--right .tl-card { grid-column: 3; grid-row: 1; }
.tl-row .tl-row__marker { grid-row: 1; }

.tl-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tl-card--next { border: 2px solid var(--gold); }

.tl-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.tl-card__name {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  color: var(--graphite);
  line-height: 1.1;
}

.tl-card__elev {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold-deep);
  font-style: italic;
}

.tl-card__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
}

.chip--done { background: var(--gold); color: var(--white); }
.chip--next { border: 1px solid var(--gold); color: var(--gold-deep); animation: chip-pulse 2.4s ease-in-out infinite; }
.chip--plan { border: 1px solid var(--silver); color: #8B93A1; }

@keyframes chip-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.tl-everest {
  position: relative;
  margin: 10px 0 44px;
  background: #16161A;
  border: 1px solid var(--gold);
  padding: 46px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.tl-everest__kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.tl-everest__name {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 58px);
  font-weight: 600;
  color: #F4EFE6;
  line-height: 1;
}

.tl-everest__elev {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}

.tl-everest__date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9A958B;
}

.tl-everest p {
  font-size: 15px;
  line-height: 1.7;
  color: #B9B4AA;
  max-width: 620px;
  margin: 6px 0 0;
}

.journey__note {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted-warm);
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
}

/* ==========================================================================
   Journal
   ========================================================================== */

.journal {
  background: var(--white);
  border-top: 1px solid var(--hairline-soft);
  padding: 120px 0 110px;
}

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

.journal-card {
  background: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

a.journal-card,
a.journal-card:hover { color: inherit; }

.journal-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 46px rgba(28, 28, 30, 0.13);
}

.journal-card:hover .journal-card__link {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .journal-card, .journal-card:hover { transition: none; transform: none; }
}

.journal-card__media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.journal-card__media svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.journal-card__tag {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  padding: 5px 10px;
}

.journal-card__tag--dark {
  color: #E8E4D8;
  background: rgba(20, 22, 26, 0.6);
}

.journal-card__body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.journal-card__date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.journal-card__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--graphite);
  line-height: 1.2;
}

.journal-card__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #56524A;
  margin: 0;
}

.journal-card__link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 6px;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.journal__follow {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.journal__follow a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}

/* ==========================================================================
   The Climber
   ========================================================================== */

.climber {
  border-top: 1px solid var(--hairline-soft);
  padding: 120px 0;
}

.climber__grid {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.climber__portrait {
  position: relative;
}

.climber__portrait::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(198, 161, 91, 0.55);
  pointer-events: none;
}

.climber__portrait-inner {
  position: relative;
  z-index: 1;
  aspect-ratio: 44 / 54;
  background: linear-gradient(180deg, #E4E0D6 0%, #D4CFC2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}

.climber__portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.climber__portrait-note {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-warm);
  text-align: center;
  line-height: 2;
  padding: 0 20px;
}

.climber__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.climber__info h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.12;
  margin: 0;
  color: var(--graphite);
}

.climber__creds {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-warm);
}

.climber__info p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  margin: 0;
}

.climber__facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.climber__fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--body);
}

.climber__fact svg { margin-top: 7px; }

.climber__quote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 26px;
  margin-top: 12px;
}

.climber__quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--graphite-2);
  margin: 0;
}

/* ==========================================================================
   Partnership (dark)
   ========================================================================== */

.partnership {
  position: relative;
  background: var(--night);
  padding: 130px 0;
  overflow: hidden;
}

.partnership__ridge {
  position: absolute;
  right: -60px;
  top: 40px;
  opacity: 0.12;
  pointer-events: none;
}

.partnership .section-head h2 { color: #F4EFE6; }
.partnership .kicker { color: var(--gold); }

.partnership__motto {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--gold);
  max-width: 720px;
  margin: 4px 0 0;
}

.roles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.role-card {
  background: #16161A;
  border: 1px solid var(--hairline);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.role-card:hover {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold), 0 14px 32px rgba(198, 161, 91, 0.12);
  transform: translateY(-4px);
  background: #191920;
}

@media (prefers-reduced-motion: reduce) {
  .role-card, .role-card:hover { transition: none; transform: none; }
}

.role-card__kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.role-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: #F4EFE6;
  line-height: 1.3;
}

.role-card__text {
  font-size: 13px;
  line-height: 1.6;
  color: #9A958B;
}

.tiers-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 76px 0 36px;
  text-align: center;
}

.tiers-head__title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: #F4EFE6;
}

.tiers-head__sub {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9A958B;
}

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

.tier {
  background: #131316;
  border: 1px solid rgba(198, 161, 91, 0.3);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

/* the gold frame rests on the first tier and follows the cursor on hover */
.tier--title {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold), 0 14px 34px rgba(198, 161, 91, 0.10);
}

.tiers:hover .tier--title:not(:hover) {
  border-color: rgba(198, 161, 91, 0.3);
  box-shadow: none;
}

.tiers .tier:hover {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold), 0 16px 38px rgba(198, 161, 91, 0.16);
  transform: translateY(-5px);
  background: #17171B;
}

@media (prefers-reduced-motion: reduce) {
  .tier, .tiers .tier:hover { transition: none; transform: none; }
}

.tier__name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.tier__sub {
  font-family: var(--serif);
  font-size: 18px;
  color: #F4EFE6;
  line-height: 1.35;
}

.tier__text {
  font-size: 13px;
  line-height: 1.6;
  color: #9A958B;
}

.partnership__principles {
  font-size: 12.5px;
  line-height: 1.8;
  color: #6F6A61;
  max-width: 860px;
  margin: 44px auto 0;
  text-align: center;
}

.partnership__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 48px;
  text-align: center;
}

.partnership__cta blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: #F4EFE6;
  max-width: 720px;
  margin: 0;
}

/* ==========================================================================
   Partners strip
   ========================================================================== */

.partners {
  padding: 74px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.partners__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.partners__kicker { color: var(--muted-warm); }

.partners__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px 48px;
  flex-wrap: wrap;
}

.partners__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* ==========================================================================
   Closing + contact
   ========================================================================== */

.contact {
  position: relative;
  background: var(--white);
  padding: 120px 0 110px;
  overflow: hidden;
}

.contact__ridge {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  opacity: 0.06;
  pointer-events: none;
}

.contact .section-head h2 { font-size: clamp(36px, 4.6vw, 58px); }

.contact__logo {
  width: 340px;
  max-width: 72vw;
  height: auto;
  margin-bottom: -8px;
}

.contact__closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
  margin: 0;
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  border: 1px solid #D9D2C4;
  background: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--graphite);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
}

.field input { height: 52px; }
.field textarea { min-height: 140px; resize: vertical; }

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

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-form__note {
  font-size: 13px;
  color: var(--muted-warm);
}

.contact-form__status {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
}

.contact-form__status.is-error { color: #A03D2E; }

.field--hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 26px;
  border-left: 1px solid rgba(198, 161, 91, 0.4);
  padding-left: 48px;
}

.contact-details__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-details__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-details a,
.contact-details__value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--graphite);
}

.contact-details a:hover { color: var(--gold-deep); }

.contact-details__soon { color: var(--muted-warm); }

.contact-details__small {
  font-size: 14.5px;
  line-height: 1.7;
  color: #56524A;
  font-family: var(--sans);
}

/* ==========================================================================
   Lightbox (click-to-zoom images)
   ========================================================================== */

[data-zoom] { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(14, 14, 15, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  cursor: zoom-out;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: none;
  border: 0;
  color: #F4EFE6;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--sans);
}

/* ==========================================================================
   Partners subpage
   ========================================================================== */

.phero {
  padding: 170px 0 84px;
  background: linear-gradient(180deg, #E9ECF1 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--hairline-soft);
}

.phero .section-head { margin-bottom: 0; }

.partner-block {
  padding: 84px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.partner-block__head {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.partner-block__logo {
  width: 190px;
  height: 84px;
  background: var(--white);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
}

.partner-block__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

.partner-block__logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}

.partner-block__title h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  margin: 0;
  color: var(--graphite);
}

.partner-block__role {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 6px;
}

.partner-block__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  max-width: 760px;
  margin: 0 0 36px;
}

.partner-block__desc .todo { color: var(--muted-warm); font-style: italic; }

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

.partner-gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, #E4E0D6 0%, #D4CFC2 100%);
}

.partner-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.partner-gallery__item:hover img { transform: scale(1.04); }

.partner-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 14px 10px;
  background: linear-gradient(180deg, rgba(14, 14, 15, 0) 0%, rgba(14, 14, 15, 0.55) 100%);
  color: #F4EFE6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  text-align: center;
  padding: 16px;
}

.partner-gallery__placeholder span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-warm);
  line-height: 1.9;
}

.partners-cta {
  padding: 96px 0;
  text-align: center;
}

.partners-cta blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--graphite-2);
  max-width: 700px;
  margin: 0 auto 30px;
}

@media (max-width: 760px) {
  .phero { padding: 130px 0 56px; }
  .partner-block { padding: 56px 0; }
  .partner-gallery { grid-template-columns: minmax(0, 1fr); }
  .partner-block__title h2 { font-size: 28px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--graphite);
  padding: 64px 0 44px;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--hairline-soft);
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__brand .brand__name { color: #F4EFE6; font-size: 18px; }

.site-footer__motto {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6F6A61;
}

.site-footer__cols {
  display: flex;
  gap: 72px;
  flex-wrap: wrap;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-footer__col a,
.site-footer__col span {
  font-size: 13px;
  color: #A9A49B;
}

.site-footer__col a:hover { color: var(--gold); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  flex-wrap: wrap;
}

.site-footer__bottom > div {
  font-size: 12.5px;
  color: #6F6A61;
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__credit img {
  height: 15px;
  width: 15px;
  border-radius: 3px;
  display: block;
}

.site-footer__credit a {
  color: #A9A49B;
  border-bottom: 1px solid rgba(198, 161, 91, 0.5);
  padding-bottom: 1px;
}
.site-footer__credit a:hover { color: var(--gold); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    background: rgba(250, 247, 241, 0.98);
    padding: 28px 24px 34px;
    box-shadow: 0 12px 30px rgba(28, 28, 30, 0.08);
  }
  .site-nav.is-open .lang-switch { border-left: 0; padding-left: 0; }
  .nav-toggle { display: block; }

  .stats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 24px; }
  .journal__grid { grid-template-columns: minmax(0, 1fr); max-width: 560px; margin: 0 auto; }
  .climber__grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .climber__portrait { max-width: 440px; }
  .roles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact__grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .contact-details { border-left: 0; padding-left: 0; border-top: 1px solid rgba(198, 161, 91, 0.4); padding-top: 40px; }
}

@media (max-width: 760px) {
  section { scroll-margin-top: 72px; }

  .site-header__inner { padding: 14px 20px; }
  .brand__name { font-size: 15px; letter-spacing: 0.18em; }

  .hero { padding: 120px 20px 80px; }
  .hero__ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .hero__ctas .btn { width: 100%; }
  .hero__motto { letter-spacing: 0.2em; font-size: 11px; }
  .hero__badge span:last-child { font-size: 10px; letter-spacing: 0.16em; }

  .stats { padding: 56px 0 60px; }
  .stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat__value { font-size: 40px; }

  .idea, .journey, .journal, .climber { padding: 68px 0 72px; }
  .partnership { padding: 76px 0; }
  .contact { padding: 68px 0 64px; }
  .section-head { margin-bottom: 40px; }

  .pillars { grid-template-columns: minmax(0, 1fr); gap: 16px; }

  /* timeline collapses to a left rail */
  .timeline__spine { left: 8px; margin-left: 0; }
  .tl-row {
    grid-template-columns: 34px minmax(0, 1fr);
    margin-bottom: 26px;
  }
  .tl-row__marker { grid-column: 1; grid-row: 1; align-self: start; padding-top: 10px; justify-content: flex-start; }
  .tl-row--left .tl-card,
  .tl-row--right .tl-card { grid-column: 2; grid-row: 1; }
  .tl-card { padding: 20px 20px; }
  .tl-card__name { font-size: 22px; }
  .tl-everest { padding: 30px 22px; }

  .roles { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .tiers { grid-template-columns: minmax(0, 1fr); gap: 14px; }

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

  .site-footer__top { flex-direction: column; gap: 36px; }
  .site-footer__cols { gap: 36px 48px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
