:root {
  --ink: #111820;
  --ink-soft: #344251;
  --field: #f4f1eb;
  --paper: #fbfaf7;
  --line: #d9d2c5;
  --gold: #b38442;
  --gold-dark: #7a5628;
  --steel: #536577;
  --white: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(17, 24, 32, 0.12);
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.wordmark {
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-action {
  border: 1px solid var(--ink);
  padding: 9px 13px;
  color: var(--ink) !important;
  white-space: nowrap;
}

.hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(179, 132, 66, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(17, 24, 32, 0.98), rgba(17, 24, 32, 0.9)),
    repeating-linear-gradient(135deg, rgba(179, 132, 66, 0.16) 0 1px, transparent 1px 18px);
  color: var(--white);
  overflow: hidden;
}

.hero-inner,
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px;
}

.hero-inner {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 7vw, 5.9rem);
}

.homepage h1 {
  max-width: 690px;
  font-size: clamp(2.55rem, 5.4vw, 4.65rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.homepage h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
}

.hero .lead {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.88);
}

.section-lead {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.button.quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-portrait {
  position: relative;
  margin: 0;
  align-self: end;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 8% 10% -7% -8%;
  border: 1px solid rgba(179, 132, 66, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.04);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: 36px;
  width: 46%;
  height: 12px;
  background: var(--gold);
}

.hero-portrait img {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  padding: 28px;
}

.hero-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: var(--field);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

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

.panel,
.principle,
.form-box,
.video-placeholder {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
}

.principle {
  min-height: 172px;
}

.principle h3,
.panel h3 {
  margin-bottom: 10px;
}

.principle p,
.panel p,
.list p {
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

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

.statement-list,
.copy-block {
  max-width: 850px;
  display: grid;
  gap: 18px;
  margin-top: 26px;
  font-size: 1.08rem;
}

.recognition-section {
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(244, 241, 235, 0.84)),
    repeating-linear-gradient(90deg, rgba(83, 101, 119, 0.09) 0 1px, transparent 1px 96px);
}

.recognition-list {
  max-width: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.recognition-list p {
  min-height: 210px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.recognition-list p:last-child {
  border-right: 0;
}

.recognition-list span {
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.feature-band {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.mission-mark {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(179, 132, 66, 0.62);
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.16em;
  background:
    linear-gradient(135deg, rgba(179, 132, 66, 0.14), transparent),
    var(--paper);
}

.belief-section {
  background:
    linear-gradient(180deg, var(--paper), #ffffff);
}

.belief-grid {
  max-width: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.belief-grid p {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  min-height: 168px;
  box-shadow: 0 16px 32px rgba(17, 24, 32, 0.05);
}

.belief-grid p:nth-child(1),
.belief-grid p:nth-child(4) {
  grid-column: span 3;
}

.belief-grid p:nth-child(2),
.belief-grid p:nth-child(3),
.belief-grid p:nth-child(5) {
  grid-column: span 2;
}

.statement-list p,
.copy-block p {
  color: var(--ink-soft);
}

.statement-list strong,
.copy-block strong {
  color: var(--ink);
}

.rule {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.personal-invitation .split {
  align-items: center;
}

.personal-invitation {
  background:
    linear-gradient(90deg, rgba(244, 241, 235, 0.96), rgba(251, 250, 247, 0.92)),
    repeating-linear-gradient(135deg, rgba(179, 132, 66, 0.11) 0 1px, transparent 1px 24px);
}

.image-placeholder {
  min-height: 430px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(17, 24, 32, 0.07), rgba(17, 24, 32, 0.07)),
    var(--white);
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: var(--ink-soft);
}

.image-placeholder span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.portrait-frame {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 24, 32, 0.12);
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.invitation-portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.video-placeholder {
  margin-top: 34px;
  min-height: 315px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink-soft);
  background:
    linear-gradient(rgba(17, 24, 32, 0.06), rgba(17, 24, 32, 0.06)),
    var(--white);
}

.join-band-section {
  background:
    linear-gradient(rgba(17, 24, 32, 0.95), rgba(17, 24, 32, 0.92)),
    repeating-linear-gradient(135deg, rgba(179, 132, 66, 0.2) 0 1px, transparent 1px 18px);
  color: var(--white);
}

.join-band-section .copy-block p,
.join-band-section .copy-block strong {
  color: rgba(255, 255, 255, 0.88);
}

.cta-panel {
  max-width: 890px;
  border-left: 4px solid var(--gold);
  padding-left: 34px;
}

.cta-panel.light {
  max-width: 860px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: var(--white);
  padding: 34px;
}

.video-placeholder span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-box {
  max-width: 780px;
  margin-top: 34px;
}

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

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

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b9c0c7;
  background: var(--white);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.form-note,
.form-status {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.form-status[role="status"] {
  color: var(--gold-dark);
  font-weight: 750;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: var(--white);
}

@media (max-width: 860px) {
  .nav-wrap,
  .main-nav {
    align-items: flex-start;
  }

  .nav-wrap {
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 13px;
  }

  .hero-inner,
  .split,
  .grid,
  .grid.two,
  .recognition-list,
  .belief-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-portrait {
    align-self: center;
  }

  .hero-portrait::after {
    right: 18px;
  }

  .recognition-list p {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .recognition-list p:last-child {
    border-bottom: 0;
  }

  .belief-grid p:nth-child(n) {
    grid-column: auto;
  }

  .mission-mark {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    gap: 16px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .main-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
  }

  .hero-inner,
  .section-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .homepage h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .homepage h2 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .hero-portrait::before {
    inset: 7% 5% -6% -4%;
  }

  .hero-portrait::after {
    width: 50%;
    right: -10px;
    bottom: 20px;
  }

  .recognition-list p,
  .belief-grid p {
    padding: 22px;
  }

  .feature-band {
    gap: 22px;
  }

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

  .button {
    width: 100%;
  }

  .nav-action {
    width: 100%;
    text-align: center;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .cta-panel,
  .cta-panel.light {
    padding-left: 20px;
  }
}
