:root {
  --ink: #15231b;
  --paper: #f2f0e9;
  --lime: #d7ff45;
  --sage: #a6b8a0;
  --line: rgba(21, 35, 27, 0.18);
  --display: "Newsreader", Georgia, serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); }
a { color: inherit; text-decoration: none; }

.site-header {
  height: 78px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; border-bottom: 1px solid var(--line); position: sticky; top: 0;
  background: rgba(242, 240, 233, .9); backdrop-filter: blur(14px); z-index: 20;
}
.brand { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600; letter-spacing: .08em; }
.brand-mark { width: 19px; height: 19px; background: var(--ink); display: inline-block; border-radius: 50% 50% 4px 50%; transform: rotate(45deg); }
nav { display: flex; gap: 34px; font-size: 13px; }
nav a { position: relative; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--ink); transition: right .25s; }
nav a:hover::after { right: 0; }
.header-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 10px 18px; font-size: 12px; font-weight: 600; }

.hero { min-height: 650px; display: grid; grid-template-columns: 56% 44%; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-copy { padding: 100px 7vw 80px 8vw; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { font-size: 10px; letter-spacing: .22em; font-weight: 600; margin: 0 0 28px; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; margin: 0; }
h1 { font-size: clamp(58px, 7.3vw, 112px); line-height: .86; letter-spacing: -.055em; }
h1 em { color: #637260; font-weight: 500; }
.hero-description { max-width: 610px; font-size: 16px; line-height: 1.7; margin: 38px 0; color: #4d5b52; }
.hero-actions { display: flex; gap: 30px; align-items: center; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 2px; font-size: 13px; font-weight: 600; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.text-link { font-size: 13px; font-weight: 600; }
.text-link span { margin-left: 6px; transition: margin .2s; }
.text-link:hover span { margin-left: 11px; }
.hero-visual { background: var(--ink); position: relative; min-height: 560px; }
.hero-card { position: absolute; width: min(72%, 380px); aspect-ratio: .78; left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(3deg); background: var(--lime); padding: 34px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: -26px 30px 0 rgba(255,255,255,.07); }
.hero-card span, .hero-card small { font-size: 9px; letter-spacing: .2em; font-weight: 600; }
.hero-card strong { font-family: var(--display); font-size: clamp(40px, 4vw, 58px); line-height: .84; letter-spacing: -.04em; font-weight: 600; }
.orb { position: absolute; border: 1px solid rgba(215,255,69,.35); border-radius: 50%; }
.orb-one { width: 360px; height: 360px; right: -150px; top: -80px; }
.orb-two { width: 170px; height: 170px; left: -60px; bottom: -50px; background: var(--sage); opacity: .32; }

.trust-strip { display: grid; grid-template-columns: repeat(3, 160px) 1fr; gap: 30px; align-items: center; padding: 34px 8vw; border-bottom: 1px solid var(--line); }
.trust-strip div { display: flex; align-items: baseline; gap: 10px; }
.trust-strip strong { font-family: var(--display); font-size: 28px; }
.trust-strip span, .trust-strip p { font-size: 10px; letter-spacing: .08em; color: #68736c; }
.trust-strip p { text-align: right; }

.products-section { padding: 110px 8vw 130px; }
.section-heading { display: grid; grid-template-columns: 1fr 360px; align-items: end; margin-bottom: 58px; }
.section-heading h2, .about-title h2, .contact-section h2 { font-size: clamp(46px, 6vw, 82px); line-height: .95; letter-spacing: -.045em; }
.section-heading p:last-child { line-height: 1.7; color: #647068; font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { animation: card-in .65s both; }
.product-card:nth-child(2) { animation-delay: 90ms; }
.product-card:nth-child(3) { animation-delay: 180ms; }
@keyframes card-in { from { opacity: 0; transform: translateY(18px); } }
.product-image-wrap { aspect-ratio: 1 / 1.06; background: #e5e3db; overflow: hidden; position: relative; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.product-card:hover img { transform: scale(1.035); }
.product-image-wrap span { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; display: grid; place-items: center; background: var(--paper); border-radius: 50%; font-size: 10px; }
.product-info { padding: 24px 3px; }
.product-info small { font-size: 9px; letter-spacing: .18em; }
.product-info h3 { font-size: 31px; margin: 9px 0; }
.product-info p { font-size: 13px; line-height: 1.65; color: #627068; min-height: 64px; }
.product-info a { font-size: 12px; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.product-info a span { float: right; }

.about-section { background: #dfe4d8; padding: 100px 8vw; display: grid; grid-template-columns: 10% 46% 1fr; gap: 40px; }
.about-number { font-family: var(--display); font-size: 24px; }
.about-title h2 { max-width: 620px; }
.about-copy { padding-top: 45px; }
.about-copy p { line-height: 1.8; color: #4e5c53; font-size: 15px; }
.about-copy ul { list-style: none; padding: 24px 0 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.about-copy li { padding: 10px 0; font-size: 13px; }
.about-copy li::before { content: "↳"; margin-right: 12px; color: #657563; }

.contact-section { background: var(--ink); color: white; text-align: center; padding: 115px 8vw 90px; }
.contact-section .eyebrow { color: var(--lime); }
.contact-section > p:not(.eyebrow) { max-width: 590px; margin: 28px auto; color: #aeb9b1; line-height: 1.7; }
.contact-actions { display: flex; justify-content: center; gap: 10px; margin: 38px 0 76px; }
.button-light { background: var(--lime); color: var(--ink); min-width: 135px; }
.button-outline { border: 1px solid #657168; min-width: 135px; }
.contact-details { border-top: 1px solid #39483e; padding-top: 25px; display: flex; justify-content: center; gap: 6vw; color: #aeb9b1; font-size: 12px; }

footer { padding: 28px 5vw; display: flex; justify-content: space-between; align-items: center; }
footer p { font-size: 10px; color: #69736c; }

@media (max-width: 850px) {
  nav { display: none; }
  .site-header { height: 66px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 80px 7vw 70px; }
  .hero-visual { min-height: 500px; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); padding: 25px 6vw; }
  .trust-strip div { display: block; }
  .trust-strip p { display: none; }
  .product-grid { grid-template-columns: 1fr; gap: 46px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .about-section { grid-template-columns: 1fr; }
  .about-number { display: none; }
  .about-copy { padding-top: 0; }
  .contact-details { flex-direction: column; gap: 12px; }
}

@media (max-width: 520px) {
  .header-cta { display: none; }
  h1 { font-size: 58px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-card { width: 76%; }
  .products-section { padding: 80px 6vw 95px; }
  .about-section { padding: 80px 6vw; }
  footer { align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
