:root {
  --ink: #182321;
  --muted: #60716b;
  --paper: #f3f0e8;
  --sea: #9bc4c3;
  --sun: #e7b66e;
  --line: rgba(24, 35, 33, .18);
}

* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  font: 16px/1.55 Georgia, "Times New Roman", serif;
}
main { max-width: 1100px; margin: auto; padding: 28px 6vw 32px; }
.hero { min-height: 68vh; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; width: 42vw; height: 42vw; max-width: 500px; max-height: 500px; right: -8vw; top: 8vh; border-radius: 50%; background: radial-gradient(circle at 42% 35%, #f8d49a 0 7%, transparent 8%), linear-gradient(145deg, var(--sea), #477c7f); opacity: .88; z-index: -1; }
.eyebrow, .number, footer { font: 11px/1.2 Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { color: var(--muted); }
h1 { max-width: 720px; margin: 12px 0 18px; font-size: clamp(4rem, 12vw, 9rem); font-weight: 400; letter-spacing: -.07em; line-height: .82; }
.lede { max-width: 530px; margin: 0; font-size: clamp(1.2rem, 2vw, 1.55rem); }
.actions { display: flex; gap: 24px; align-items: center; margin-top: 34px; }
.button { padding: 12px 18px; color: var(--paper); background: var(--ink); text-decoration: none; border-radius: 999px; font: 12px Arial, sans-serif; letter-spacing: .04em; }
.text-link { color: var(--ink); text-underline-offset: 5px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
article { padding: 28px 30px 34px 0; border-right: 1px solid var(--line); }
article:not(:first-child) { padding-left: 30px; }
article:last-child { border-right: 0; }
.number { color: var(--muted); }
h2 { margin: 22px 0 10px; font-size: 1.7rem; font-weight: 400; letter-spacing: -.03em; }
article p { max-width: 270px; margin: 0; color: var(--muted); }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 110px 0; }
.specs h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); margin-top: 10px; }
dl { margin: 0; border-top: 1px solid var(--line); }
dl div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
dt { color: var(--muted); } dd { margin: 0; }
footer { display: flex; justify-content: space-between; padding-top: 22px; color: var(--muted); }
@media (max-width: 700px) { .hero { min-height: 75vh; } .hero::after { width: 80vw; height: 80vw; right: -25vw; top: 4vh; opacity: .5; } .feature-grid, .specs { grid-template-columns: 1fr; } article, article:not(:first-child) { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); } .specs { padding: 70px 0; gap: 28px; } footer { display: block; } footer span { display: block; margin-top: 8px; } }
