@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin-ext.woff2") format("woff2");
}

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/fonts/syne-latin-ext.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f3efe6;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #fffdf8;
  --ink: #171515;
  --text: #2a2624;
  --muted: #6d665f;
  --line: rgba(23, 21, 21, 0.12);
  --accent: #ff6b2c;
  --signal: #1d8f6a;
  --blue: #2563eb;
  --shadow: 0 24px 70px rgba(31, 24, 19, 0.1);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #f7f2e8 0%, #f3efe6 52%, #efe8dc 100%);
  font-family: "Space Grotesk", sans-serif;
}

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 239, 230, 0.74);
  border-bottom: 1px solid rgba(23, 21, 21, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #171515 0%, #382c25 100%);
  color: #fff8f1;
  box-shadow: 0 16px 34px rgba(23, 21, 21, 0.22);
  font-family: "Syne", sans-serif;
  font-weight: 800;
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.brand-copy span,
.footer-brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu a {
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.menu a.active,
.button.primary {
  background: var(--ink);
  color: #fff;
}

.hero,
.section,
.footer-wrap {
  padding: 34px 0;
}

.hero-card,
.service-card,
.split-section,
.included-card,
.cta {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  padding: 28px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 520px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Syne", sans-serif;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  line-height: 0.95;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.94;
  text-wrap: balance;
}

h3 {
  font-size: 1.48rem;
}

.lead {
  max-width: 56ch;
  margin-top: 18px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-copy p:not(.lead),
.section-head p,
.service-card p,
.split-copy p,
.included-card p,
.cta p {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy p:not(.lead) {
  max-width: 62ch;
  margin-top: 16px;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(23, 21, 21, 0.12);
}

.button.soft {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 21, 21, 0.12);
}

.dark-panel {
  position: relative;
  min-height: 520px;
  padding: 24px;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17, 19, 26, 0.97), rgba(34, 28, 27, 0.98)),
    linear-gradient(135deg, rgba(255, 107, 44, 0.18), rgba(37, 99, 235, 0.12));
}

.dark-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.26;
}

.panel-top,
.panel-list,
.panel-note {
  position: relative;
  z-index: 1;
}

.panel-top,
.panel-note,
.panel-list li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: 22px;
}

.panel-top strong,
.panel-note strong {
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.panel-top span,
.panel-note span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.panel-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.panel-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

.panel-note {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 18px;
  border-radius: 22px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.section-head p {
  max-width: 62ch;
}

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

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
}

.card-index {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.12);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66));
}

.split-copy {
  display: grid;
  gap: 16px;
}

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

.stat-card {
  min-height: 145px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
}

.stat-card strong {
  color: var(--ink);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.5;
}

.included-card,
.cta {
  padding: 28px;
}

.included-card {
  display: grid;
  gap: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
}

.note-line {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(29, 143, 106, 0.22);
  border-radius: 20px;
  background: rgba(29, 143, 106, 0.08);
  color: var(--muted);
  line-height: 1.7;
}

.note-line strong {
  color: var(--ink);
}

.cta {
  display: grid;
  gap: 16px;
  background: linear-gradient(135deg, rgba(23, 21, 21, 0.96), rgba(38, 34, 33, 0.96));
}

.cta h2,
.cta .eyebrow,
.cta p {
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.72);
}

.cta .button.primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.footer-wrap {
  border-top: 1px solid rgba(23, 21, 21, 0.08);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-note {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-card,
  .split-section,
  .service-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .dark-panel {
    min-height: auto;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(2.7rem, 7vw, 4.8rem);
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero-card,
  .service-card,
  .split-section,
  .included-card,
  .cta {
    padding: 22px;
  }

  .button {
    width: 100%;
  }
}
