:root {
  --bg: #090909;
  --bg-alt: #111214;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --card: #141516;
  --card-soft: #17191b;
  --text: #f7f3ee;
  --muted: #d0c6b7;
  --muted-strong: #a69a8f;
  --gold: #d7b26e;
  --gold-soft: #e9d7ad;
  --beige: #efe2cf;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-soft);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 6.3rem);
  margin-bottom: 20px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 18px;
  max-width: 700px;
}

h3 {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  margin-bottom: 12px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(9, 9, 9, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 16px;
}

/* allow absolute positioning of language switch to the far right */
.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-btn {
  background: rgba(255,255,255,0.02);
  color: var(--beige);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #17120d;
  border-color: rgba(215,178,110,0.2);
}

/* ensure lang buttons are above the CTA and clickable */
.lang-switch { z-index: 60; }
.lang-btn { position: relative; z-index: 61; }
.header-actions .button { position: relative; z-index: 50; }

.header-actions { justify-self: end; display:flex; align-items:center; gap:12px; }
.main-nav { justify-self: center; }
.brand-text strong, .brand-text small { white-space: nowrap; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1b170f;
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 12px 30px rgba(215, 178, 110, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-text small {
  color: var(--muted-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #14100b;
  box-shadow: 0 18px 32px rgba(215, 178, 110, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(215, 178, 110, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 1));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 42px;
}

.lead {
  max-width: 650px;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--beige);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-stats li {
  min-width: 160px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.hero-stats span {
  color: var(--muted-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  min-height: 620px;
  display: flex;
  align-items: end;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.15), rgba(12, 12, 12, 0.75)),
    url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.visual-card {
  width: min(82%, 360px);
  margin: 0 0 36px 0;
  background: rgba(17, 18, 19, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 20px 22px;
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.visual-card p {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.problem {
  background: linear-gradient(180deg, var(--bg), var(--bg-alt));
}

.section-heading {
  margin-bottom: 38px;
}

.narrow {
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 22px;
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.cta-card {
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: rgba(215, 178, 110, 0.12);
  border: 1px solid rgba(215, 178, 110, 0.2);
  color: var(--gold-soft);
  font-weight: 700;
}

.path {
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.8), rgba(16, 16, 16, 1));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  margin-top: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215,178,110,0.1), rgba(215,178,110,0.8), rgba(215,178,110,0.1));
}

.timeline-step {
  position: relative;
  padding-top: 20px;
  text-align: center;
}

.timeline-step span {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #17120d;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 30px rgba(215, 178, 110, 0.18);
}

.timeline-step h3 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  text-align: center;
}

.brand-block {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(9, 9, 9, 0.98));
}

.brand-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.brand-panel {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(215, 178, 110, 0.12), rgba(12, 12, 12, 0.25)),
    url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.brand-panel blockquote {
  max-width: 320px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: center;
  color: var(--text);
}

.manifesto {
  padding: 20px 0 64px;
}

.manifesto-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.05));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 68px);
  text-align: center;
}

.manifesto-line {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
}

.manifesto-text {
  max-width: 820px;
  margin: 24px auto 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--beige);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.about-image {
  min-height: 520px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.12), rgba(14, 14, 14, 0.62)),
    url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.support-cta {
  background: linear-gradient(180deg, rgba(9,9,9,1), rgba(18,18,18,1));
}

.support-cta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-card h3 {
  margin-bottom: 10px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold-soft);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--beige);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.22);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 10, 1);
  padding: 24px 0 40px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  margin-right: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .brand-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .support-cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .main-nav {
    display: none;
  }

  .lang-switch { position: static; transform: none; margin-left: 12px; }

  .hero {
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .support-grid,
  .support-cta-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
