:root {
  --green-950: #10231d;
  --green-900: #163228;
  --green-800: #23483a;
  --cream: #f6f1e8;
  --cream-2: #fffaf0;
  --gold: #c5a05c;
  --gold-soft: #e2c98e;
  --ink: #16201c;
  --muted: #66736d;
  --line: rgba(197, 160, 92, 0.28);
  --shadow: 0 24px 60px rgba(16, 35, 29, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(16, 35, 29, 0.92);
  color: var(--cream-2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
  color: rgba(255, 250, 240, 0.78);
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-soft);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  min-height: calc(92vh - 74px);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(56px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(16, 35, 29, 0.98), rgba(22, 50, 40, 0.94)),
    radial-gradient(circle at 76% 20%, rgba(197, 160, 92, 0.22), transparent 34%);
  color: var(--cream-2);
}

.hero-copy {
  max-width: 720px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 680px;
  font-size: clamp(2.45rem, 4.9vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.16rem;
  line-height: 1.24;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: var(--green-950);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-soft);
}

.button-secondary {
  border-color: rgba(255, 250, 240, 0.28);
  color: var(--cream-2);
}

.hero-visual {
  overflow: hidden;
  border: 1px solid rgba(226, 201, 142, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(36px, 6vw, 64px);
}

.section-heading p {
  max-width: 760px;
  font-size: 1.04rem;
}

.narrow {
  max-width: 720px;
}

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

.feature-card {
  min-height: 275px;
  padding: 28px;
  border: 1px solid rgba(22, 50, 40, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.68);
}

.feature-number {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 800;
}

.method {
  background: var(--green-900);
  color: var(--cream-2);
}

.method p {
  color: rgba(255, 250, 240, 0.7);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline li {
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.timeline li:last-child {
  border-right: 0;
}

.timeline span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-soft);
  font-size: 1.08rem;
  font-weight: 800;
}

.team-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  margin-bottom: 28px;
}

.team-panel p {
  font-size: 1.08rem;
}

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

.stats-grid div {
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: var(--cream-2);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: 1.05rem;
}

.stats-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--cream-2);
}

.contact p {
  color: rgba(255, 250, 240, 0.72);
}

.contact-note {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(226, 201, 142, 0.28);
  border-radius: 8px;
  color: rgba(255, 250, 240, 0.74);
  line-height: 1.6;
}

code {
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(226, 201, 142, 0.3);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.9);
  font-weight: 720;
}

label span {
  color: rgba(255, 250, 240, 0.55);
  font-weight: 520;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 4px;
  background: rgba(255, 250, 240, 0.95);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold-soft);
  outline: 3px solid rgba(197, 160, 92, 0.22);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold-soft);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #0b1814;
  color: rgba(255, 250, 240, 0.74);
}

.site-footer span {
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
}

@media (max-width: 1040px) {
  .hero,
  .contact,
  .team-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .timeline li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .feature-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
