:root {
  --ink: #071225;
  --ink-soft: #263345;
  --muted: #687386;
  --line: #dce1e8;
  --paper: #fbfbf8;
  --white: #ffffff;
  --gold: #d0ad68;
  --gold-dark: #b88f44;
  --blue: #0a1d3b;
  --cyan: #d7edf2;
  --sage: #dfe9df;
  --rose: #f1e1dc;
  --shadow: 0 24px 70px rgba(7, 18, 37, 0.12);
  --font-body: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Avenir Next", Avenir, "Century Gothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(215, 237, 242, 0.78), rgba(255, 255, 255, 0) 34%),
    linear-gradient(240deg, rgba(241, 225, 220, 0.7), rgba(255, 255, 255, 0) 36%),
    var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  grid-template-areas:
    "brand ."
    "nav language";
  align-items: center;
  column-gap: clamp(24px, 5vw, 72px);
  row-gap: 12px;
  min-height: 0;
  padding: 22px clamp(20px, 5vw, 72px) 8px;
  border-bottom: 1px solid rgba(220, 225, 232, 0.85);
  background: rgba(251, 251, 248, 0.86);
  backdrop-filter: blur(18px);
}

.brand-link {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-left: clamp(18px, 2.6vw, 42px);
  width: clamp(234px, 23.8vw, 313px);
  height: 66px;
}

.brand-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.brand-link img[src$=".svg"] {
  mix-blend-mode: normal;
}

.header-actions {
  display: contents;
}

.nav-links {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px);
  justify-self: start;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-dark);
  text-shadow: 0 0 18px rgba(208, 173, 104, 0.34);
}

.language-switcher {
  grid-area: language;
  justify-self: end;
  align-self: center;
  position: relative;
  display: grid;
  transform: translateY(-12px);
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid rgba(7, 18, 37, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: var(--ink);
  background: rgba(208, 173, 104, 0.12);
}

.language-switcher button.is-active {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 8px 18px rgba(208, 173, 104, 0.34);
}

.section-band {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding-top: clamp(44px, 6vw, 76px);
  padding-bottom: clamp(54px, 7vw, 92px);
  overflow: hidden;
}

.hero-grid,
.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 5.5vw, 74px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 420;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.domain-label {
  letter-spacing: 0.12em;
  text-transform: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  hyphens: auto;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  max-width: 860px;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  overflow-wrap: normal;
  hyphens: none;
}

.mobile-break-space {
  display: none;
}

h1 {
  font-size: clamp(1.98rem, 3.18vw, 2.92rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.71rem, 3.64vw, 3.2rem);
  font-weight: 500;
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  font-weight: 500;
  line-height: 1.18;
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
  line-height: 1.5;
  hyphens: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(208, 173, 104, 0.28);
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: end;
  width: min(100%, 480px);
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(7, 18, 37, 0.11);
  border-radius: 50%;
}

.hero-visual::before {
  inset: 7%;
}

.hero-visual::after {
  inset: 20%;
  border-color: rgba(208, 173, 104, 0.22);
}

.hero-visual img {
  width: min(76%, 520px);
  border-radius: 50%;
  box-shadow: var(--shadow);
  z-index: 2;
}

.orbit,
.signal {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.orbit-one {
  inset: 3%;
  border: 2px solid rgba(208, 173, 104, 0.4);
  border-left-color: transparent;
  animation: spin 18s linear infinite;
}

.orbit-two {
  inset: 17%;
  border: 2px solid rgba(7, 18, 37, 0.18);
  border-right-color: transparent;
  animation: spin 24s linear infinite reverse;
}

.signal {
  width: 14px;
  height: 14px;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(208, 173, 104, 0.12);
}

.signal-one {
  top: 12%;
  left: 22%;
}

.signal-two {
  right: 10%;
  bottom: 24%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(10, 29, 59, 0.09);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.purpose {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  margin-top: 44px;
}

.split p,
.foundation-copy p,
.manifesto-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.fields {
  background: linear-gradient(180deg, #f6f8f4, #eef5f5);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid rgba(7, 18, 37, 0.1);
  background: rgba(7, 18, 37, 0.12);
}

.field-grid article {
  min-height: 322px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.84);
}

.field-grid span {
  display: block;
  margin-bottom: 88px;
  color: var(--gold-dark);
  font-weight: 650;
}

.field-grid p,
.principle-list p {
  margin: 18px 0 0;
  color: var(--muted);
}

.manifesto {
  color: var(--white);
  background:
    linear-gradient(rgba(7, 18, 37, 0.88), rgba(7, 18, 37, 0.88)),
    radial-gradient(circle at 70% 20%, rgba(208, 173, 104, 0.34), transparent 30%),
    var(--ink);
}

.manifesto-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.manifesto .eyebrow {
  color: #d7b777;
}

.manifesto h2 {
  max-width: 1040px;
}

.manifesto p {
  max-width: 760px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.78);
}

.compact {
  width: min(980px, 100%);
}

.principle-list {
  display: grid;
  gap: 1px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list div:last-child {
  border-bottom: 0;
}

.principle-list strong {
  color: var(--gold-dark);
  font-size: 1.08rem;
}

.principle-list p {
  margin: 0;
  font-size: 1.08rem;
}

.foundation {
  background: var(--white);
}

.foundation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 88px);
}

.foundation-copy {
  display: grid;
  gap: 24px;
  align-content: start;
  padding-top: 10px;
}

.foundation-copy .legal-note {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 560;
}

.contact {
  background: linear-gradient(135deg, var(--sage), var(--cyan) 58%, var(--rose));
}

.contact-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  margin: 0 auto;
}

.contact-inner .button {
  margin-top: 34px;
}


.legal-section {
  display: none;
  background: var(--paper);
  border-top: 1px solid rgba(220, 225, 232, 0.75);
}

.legal-section:target {
  display: block;
}

.privacy-section {
  background: #ffffff;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(32px, 6vw, 86px);
}

.legal-copy {
  display: grid;
  gap: 22px;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.legal-copy p {
  margin: 0;
}

.legal-copy strong {
  color: var(--ink);
  font-weight: 560;
}

.legal-copy .legal-note {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.86rem;
}

.footer-links a {
  color: var(--ink);
  transition: color 160ms ease, text-shadow 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-dark);
  text-shadow: 0 0 18px rgba(208, 173, 104, 0.34);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.92rem;
}

.site-footer img {
  width: 164px;
  mix-blend-mode: multiply;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "language";
    align-items: start;
    gap: 10px;
  }

  .brand-link {
    margin-left: 0;
  }

  .nav-links {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .language-switcher {
    justify-self: start;
    transform: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .foundation-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

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

@media (max-width: 640px) {
  .section-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-link,
  .brand-link img {
    width: 154px;
    height: 50px;
  }

  .header-actions {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    max-width: 100%;
  }

  .language-switcher {
    width: min(100%, 214px);
  }

  .language-switcher button {
    min-width: 0;
  }

  h1 {
    font-size: clamp(1.56rem, 8.08vw, 2.33rem);
  }

  .desktop-break {
    display: none;
  }

  .mobile-break-space {
    display: inline;
  }

  h2 {
    font-size: clamp(1.49rem, 7.52vw, 2.1rem);
  }

  .button {
    width: 100%;
  }

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

  .field-grid article {
    min-height: 250px;
  }

  .field-grid span {
    margin-bottom: 42px;
  }

  .principle-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
