:root {
  --ink: #17211c;
  --muted: #5f6b65;
  --line: #dfe5df;
  --paper: #f7f5ef;
  --white: #ffffff;
  --sage: #6d897a;
  --copper: #b96f3a;
  --forest: #21392f;
  --gold: #d7aa4d;
  --shadow: 0 20px 55px rgba(23, 33, 28, 0.16);
}

* {
  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.55;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.88);
  border-bottom: 1px solid rgba(223, 229, 223, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--ink);
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.lang-button {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.lang-button.active {
  color: var(--white);
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 148px clamp(20px, 5vw, 72px) 76px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 24, 20, 0.8) 0%, rgba(12, 24, 20, 0.58) 43%, rgba(12, 24, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(12, 24, 20, 0.46) 0%, rgba(12, 24, 20, 0) 52%);
}

.hero-content {
  position: relative;
  max-width: 790px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c77a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.intro,
.band,
.categories,
.process,
.proof,
.contact {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--white);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: 0;
}

.intro p:last-child,
.contact-copy p:last-child {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.band {
  background: var(--forest);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.focus-panel,
.category-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 8px;
}

.focus-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.panel-number {
  color: #f1c77a;
  font-weight: 900;
}

h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.focus-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.categories {
  background: #edf1ea;
}

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

.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(23, 33, 28, 0.06);
}

.category-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 36px;
  border: 1px solid rgba(185, 111, 58, 0.35);
  border-radius: 8px;
  color: var(--copper);
  font-weight: 900;
}

.category-card p {
  margin: 0;
  color: var(--muted);
}

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

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 520px);
  gap: 42px;
  align-items: center;
  background: var(--paper);
}

.proof-copy p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.proof-stats {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-stats div {
  display: grid;
  gap: 6px;
  padding: 26px;
  background: var(--white);
}

.proof-stats strong {
  color: var(--forest);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.proof-stats span {
  color: var(--muted);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.steps li {
  min-height: 210px;
  padding: 30px;
  background: var(--white);
}

.steps strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

.steps span {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 420px);
  gap: 40px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(33, 57, 47, 0.96), rgba(109, 137, 122, 0.94)),
    var(--forest);
}

.contact .section-kicker {
  color: #f1c77a;
}

.contact-box {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-box span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.contact-box a {
  font-size: 24px;
  font-weight: 850;
}

.contact-box small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

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

.site-footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page {
  background: var(--white);
}

.legal-main {
  max-width: 900px;
  min-height: 100vh;
  padding: 140px clamp(20px, 5vw, 72px) 80px;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
}

.legal-main > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.legal-section p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .intro,
  .contact,
  .proof,
  .focus-grid,
  .category-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .focus-panel,
  .category-card,
  .steps li {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .lang-button {
    min-width: 34px;
  }

  .hero {
    min-height: 86vh;
    padding: 120px 20px 50px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 42px);
    line-height: 1.08;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 24, 20, 0.84) 0%, rgba(12, 24, 20, 0.58) 100%),
      linear-gradient(0deg, rgba(12, 24, 20, 0.42), rgba(12, 24, 20, 0));
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-box a {
    font-size: 20px;
  }
}
