:root {
  --ink: #13201d;
  --muted: #5e6f69;
  --line: #dbe6e1;
  --paper: #fbf7ef;
  --panel: #ffffff;
  --mint: #16a083;
  --mint-dark: #0f6f61;
  --gold: #e2b65c;
  --charcoal: #20312d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid rgba(19, 32, 29, 0.1);
  backdrop-filter: blur(12px);
}

.brand,
nav,
.hero-actions,
.metrics,
.fit-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--mint-dark);
}

nav {
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 750;
}

.header-cta {
  padding: 0 18px;
  color: #ffffff;
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: clamp(90px, 13vw, 150px) clamp(18px, 4vw, 56px) 56px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 32, 29, 0.9) 0%, rgba(19, 32, 29, 0.68) 44%, rgba(19, 32, 29, 0.18) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee8d5;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

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

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

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

.button {
  padding: 0 22px;
}

.button.primary {
  color: #ffffff;
  background: var(--mint);
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.metrics {
  justify-content: center;
  gap: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  background: var(--charcoal);
}

.metrics div {
  width: min(33.33%, 320px);
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 18px;
  color: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics strong {
  font-size: 40px;
}

.metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 32px;
}

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

.offer-card,
.delivery-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(32, 49, 45, 0.08);
}

.offer-card {
  padding: 24px;
}

.split,
.sample {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: center;
  background: #ffffff;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--mint-dark);
  font-weight: 900;
}

.steps p {
  margin: 0;
}

.sample {
  background: #edf7f3;
}

.delivery-preview {
  padding: 18px;
}

.preview-toolbar {
  display: flex;
  gap: 7px;
  padding-bottom: 16px;
}

.preview-toolbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.clip-tile {
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 111, 97, 0.18), rgba(226, 182, 92, 0.24)),
    linear-gradient(135deg, #20312d, #5f8178);
}

.preview-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.preview-lines span {
  height: 12px;
  border-radius: 999px;
  background: #dce8e3;
}

.preview-lines span:nth-child(2) {
  width: 78%;
}

.preview-lines span:nth-child(3) {
  width: 56%;
}

.fit-list {
  flex-wrap: wrap;
  gap: 12px;
}

.fit-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--charcoal);
  font-weight: 750;
}

.apply {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 4vw, 56px) 56px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  background: var(--charcoal);
  color: #ffffff;
}

.apply p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.apply h2 {
  max-width: 760px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(19, 32, 29, 0.82) 0%, rgba(19, 32, 29, 0.78) 100%),
      url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1000&q=78") center/cover;
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .metrics div {
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .offer-grid,
  .split,
  .sample {
    grid-template-columns: 1fr;
  }

  .apply {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 0 14px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
  }
}
