:root {
  color-scheme: light;
  --ink: #241f1a;
  --muted: #6f675f;
  --paper: #f6f2ea;
  --panel: #fffaf2;
  --line: #ded3c4;
  --accent: #b77a35;
  --accent-dark: #68411e;
  --deep: #15110d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand,
.header-actions,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
}

.header-actions {
  gap: 14px;
}

.text-link {
  font-size: 14px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--accent);
  color: white;
  padding: 0 20px;
  font-weight: 750;
}

.button.small {
  min-height: 36px;
  padding: 0 14px;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  background: var(--deep);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 112px);
  padding-top: 48px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f2c990;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 86px);
}

h2 {
  font-size: clamp(32px, 4.6vw, 56px);
}

h3 {
  font-size: 25px;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

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

.hero-status {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 34px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(86px, 1fr));
  gap: 0;
  width: min(520px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(18, 13, 9, 0.58);
  backdrop-filter: blur(10px);
}

.hero-status span,
.hero-status strong {
  padding: 12px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-status span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-status strong {
  font-size: 15px;
}

.section,
.split-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.feature-row article {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

.number {
  color: var(--accent);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 82px 0;
}

.split-section.reverse {
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
}

.split-section img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(55, 38, 22, 0.16);
}

ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.pricing-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.pricing-band div {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

  nav {
    display: none;
  }

  .intro-grid,
  .feature-row,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row article {
    min-height: auto;
  }

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

  .hero-status {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 38px auto 22px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-actions .text-link {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .hero-status {
    grid-template-columns: 1fr;
  }

  .hero-status span,
  .hero-status strong {
    border-right: 0;
  }
}
