:root {
  --ink: #1f2526;
  --ivory: #eee5d7;
  --paper: #f8f4ed;
  --sand: #d9c8b5;
  --terra: #b9795b;
  --muted: #6e706d;
  --white: #ffffff;
  --line: #cfc4b7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: min(1180px, calc(100% - 64px)); margin: 0 auto; }

.site-header {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 244, 237, .94);
  backdrop-filter: blur(14px);
  padding-inline: max(32px, calc((100vw - 1180px) / 2));
}

.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand span { font-size: 25px; }
.brand small { margin-left: 2px; color: var(--terra); font-size: 9px; font-weight: 800; letter-spacing: .18em; }

.site-header nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 13px; font-weight: 700; }
.site-header nav a:hover { color: var(--terra); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: .2s ease;
}
.header-cta b { font-size: 16px; line-height: .7; }
.header-cta:hover { color: var(--ivory); background: var(--ink); }
.mini-grid {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: linear-gradient(90deg, currentColor 42%, transparent 42% 57%, currentColor 57%), linear-gradient(0deg, currentColor 42%, transparent 42% 57%, currentColor 57%);
  opacity: .72;
}

.hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); gap: 70px; align-items: center; min-height: 650px; padding: 62px 0 76px; }
.eyebrow, .feature-number, .draft-label { color: var(--terra); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }

.hero h1 { max-width: 610px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(39px, 4.25vw, 60px); font-weight: 500; letter-spacing: -.058em; line-height: 1.01; }
.hero h1 em { color: var(--terra); font-style: italic; }
.hero-slogan { margin: 20px 0 0; color: var(--terra); font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
.hero-lede { max-width: 475px; margin: 12px 0 30px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; color: var(--ivory); background: var(--ink); border: 1px solid var(--ink); font-size: 13px; font-weight: 800; transition: .2s ease; }
.button:hover { color: var(--ink); background: transparent; }
.text-link { color: var(--ink); border-bottom: 1px solid var(--terra); font-size: 13px; font-weight: 800; padding-bottom: 3px; }
.text-link:hover { color: var(--terra); }
.proof { display: flex; align-items: flex-start; gap: 9px; max-width: 330px; margin-top: 42px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.proof b { color: var(--ink); font-size: 20px; letter-spacing: -.07em; }
.proof-mark { display: inline-block; flex: 0 0 auto; width: auto !important; height: auto !important; color: var(--terra); background: transparent !important; font-size: 15px; line-height: 1.1; }
.proof > span:not(.proof-mark) { width: auto; height: auto; background: transparent; }

.hero-visual { position: relative; margin-right: 15px; border: 1px solid var(--line); background: var(--ivory); overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 15px; border: 1px solid rgba(31, 37, 38, .18); pointer-events: none; }
.hero-visual img { width: 100%; aspect-ratio: 1.68 / 1; object-fit: cover; filter: saturate(.86) contrast(.98); }
.hero-visual:hover img { transform: scale(1.025); }
.hero-visual img { transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.hero-copy { animation: rise-in .65s both; }
.hero-visual { animation: rise-in .8s .13s both; }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.visual-note { position: absolute; left: 24px; bottom: 23px; z-index: 1; display: flex; align-items: center; gap: 9px; max-width: 220px; padding: 10px 12px; color: var(--ink); background: rgba(248, 244, 237, .88); border: 1px solid rgba(31, 37, 38, .17); font-size: 11px; font-weight: 800; line-height: 1.25; }
.status-dot { width: 8px; height: 8px; flex: 0 0 8px; background: var(--terra); border-radius: 50%; }
.draft-label { position: absolute; right: 24px; top: 23px; z-index: 1; padding: 6px 8px; color: var(--ink); background: rgba(248, 244, 237, .86); border: 1px solid rgba(31, 37, 38, .16); font-size: 8px; }

.band { padding: 21px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ivory); }
.band-inner { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

section { padding: 115px 0; }
.intro { border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 80px; align-items: start; }
.section-kicker { margin: 0 0 17px; color: var(--terra); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.intro h2, .section-top h2, .story-copy h2, .contact-box h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 55px); font-weight: 500; letter-spacing: -.055em; line-height: 1.02; }
.intro-copy { max-width: 620px; color: var(--muted); font-size: 18px; line-height: 1.72; }
.intro-grid > p { max-width: 620px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.72; }
.benefits { padding: 78px 0 73px; background: var(--ivory); }
.benefits-heading { display: grid; grid-template-columns: 1.1fr .72fr; gap: 70px; align-items: end; margin-bottom: 46px; }
.benefits-heading h2 { max-width: 640px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 54px); font-weight: 500; letter-spacing: -.055em; line-height: 1.04; }
.benefits-heading > p { max-width: 450px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.benefit-grid article { min-height: 172px; padding: 23px 26px 20px 0; border-right: 1px solid var(--line); }
.benefit-grid article + article { padding-left: 26px; }
.benefit-grid article:last-child { border-right: 0; }
.benefit-grid span { color: var(--terra); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.benefit-grid h3 { margin: 32px 0 9px; font-size: 21px; letter-spacing: -.045em; }
.benefit-grid p { max-width: 280px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.intro-copy strong { color: var(--ink); font-weight: 800; }

.features { background: #f4ede2; }
.section-top { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: end; margin-bottom: 44px; }
.section-top p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { min-height: 300px; padding: 27px; border: 1px solid var(--line); background: #fbf8f3; transition: transform .22s ease, background .22s ease, border-color .22s ease; }
.feature-card:hover { background: var(--white); border-color: var(--sand); transform: translateY(-5px); }
.feature-card.featured { color: var(--ivory); background: var(--ink); border-color: var(--ink); }
.feature-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 60px; }
.feature-number { margin: 0; }
.feature-icon { display: grid; width: 48px; height: 48px; place-items: center; color: var(--ink); background: var(--paper); border: 1px solid var(--line); }
.feature-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-card.featured .feature-icon { color: var(--ink); background: var(--terra); border-color: var(--terra); }
.feature-card h3 { margin: 0 0 11px; font-size: 22px; letter-spacing: -.045em; line-height: 1.05; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }
.feature-card.featured p { color: #c9cbc5; }

.image-story { display: grid; grid-template-columns: 1.05fr .95fr; gap: 85px; align-items: center; }
.story-image { position: relative; border: 1px solid var(--line); }
.story-image img { width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; filter: saturate(.82); }
.story-image::before { content: ""; position: absolute; z-index: 1; inset: 16px; border: 1px solid rgba(255,255,255,.7); pointer-events: none; }
.story-copy p { max-width: 460px; margin: 24px 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.check-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 700; }
.check-list li::before { content: "✓"; display: grid; width: 20px; height: 20px; place-items: center; color: var(--terra); border: 1px solid var(--terra); font-size: 12px; }

.flow { color: var(--ivory); background: var(--ink); }
.flow .section-kicker { color: var(--terra); }
.flow h2 { max-width: 720px; color: var(--ivory); }
.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 56px; border-top: 1px solid rgba(238, 229, 215, .25); }
.flow-step { min-height: 215px; padding: 23px 27px 5px 0; border-right: 1px solid rgba(238, 229, 215, .25); }
.flow-step + .flow-step { padding-left: 27px; }
.flow-step:last-child { border-right: 0; }
.flow-step span { display: block; margin-bottom: 40px; color: var(--terra); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.flow-step h3 { margin: 0 0 11px; font-size: 20px; letter-spacing: -.035em; }
.flow-step p { margin: 0; color: #c9cbc5; font-size: 13px; line-height: 1.62; }

main { display: flex; flex-direction: column; }
.hero { order: 0; }
.intro { order: 1; }
.channels { order: 2; }
.features { order: 3; }
.image-story { order: 4; }
.flow { order: 5; }
.visual-story { order: 6; }
.contact { order: 7; }

.channels { overflow: hidden; padding: 105px 0 82px; border-bottom: 1px solid var(--line); background: #eae0d1; }
.channels-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .7fr); gap: 70px; align-items: end; margin-bottom: 56px; }
.channels-heading .eyebrow { grid-column: 1 / -1; margin: 0 0 -39px; }
.channels-heading h2 { max-width: 720px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(34px, 4vw, 55px); font-weight: 500; letter-spacing: -.055em; line-height: 1.02; }
.channels-heading > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.channel-marquee { width: 100%; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.channel-track { display: flex; width: max-content; animation: channel-scroll 28s linear infinite; }
.channel-marquee:hover .channel-track { animation-play-state: paused; }
.channel-set { display: flex; flex: 0 0 auto; }
.channel { display: flex; align-items: center; gap: 13px; min-width: 202px; height: 94px; padding: 0 28px; border-right: 1px solid var(--line); color: var(--ink); }
.channel b { font-size: 14px; letter-spacing: -.02em; }
.channel-icon { display: grid; width: 35px; height: 35px; place-items: center; color: var(--ink); border: 1px solid var(--ink); border-radius: 50%; transition: transform .25s ease, background .25s ease, color .25s ease; }
.channel:hover .channel-icon { color: var(--paper); background: var(--terra); border-color: var(--terra); transform: rotate(-9deg) scale(1.08); }
.channel-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.channel-icon .fill { fill: currentColor; stroke: none; }
.channel-note { display: flex; align-items: center; gap: 16px; padding-top: 22px; color: var(--muted); }
.channel-note span { flex: 1; height: 1px; background: var(--line); }
.channel-note p { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .03em; text-align: center; }
@keyframes channel-scroll { to { transform: translateX(-50%); } }

.visual-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.visual-story .story-image { order: 2; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 32px; background: var(--line); border: 1px solid var(--line); }
.metric { padding: 18px; background: var(--paper); }
.metric b { display: block; color: var(--terra); font-family: Georgia, "Times New Roman", serif; font-size: 32px; font-weight: 500; letter-spacing: -.06em; }
.metric span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.contact { padding-top: 0; background: var(--paper); }
.contact-box { display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 58px; color: var(--ivory); background: var(--terra); }
.contact-box h2 { max-width: 630px; }
.contact-box .button { color: var(--ink); background: var(--ivory); border-color: var(--ivory); white-space: nowrap; }
.contact-box .button:hover { color: var(--ivory); background: transparent; }

.site-footer { padding: 30px 0; color: var(--muted); border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 12px; }
.footer-brand { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 800; }
.footer-brand img { width: 23px; }

@media (max-width: 900px) {
  .hero, .intro-grid, .section-top, .image-story, .visual-story { grid-template-columns: 1fr; gap: 35px; }
  .hero { min-height: auto; padding-top: 55px; }
  .hero-visual { max-width: 800px; margin: 10px 15px 0 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(2) { border-right: 0; }
  .flow-step:nth-child(n+3) { border-top: 1px solid rgba(238, 229, 215, .25); padding-top: 23px; }
  .visual-story .story-image { order: 0; }
  .contact-box { flex-direction: column; align-items: flex-start; }
  .site-header nav { display: none; }
  .feature-top { margin-bottom: 45px; }
  .channels-heading { grid-template-columns: 1fr; gap: 20px; }
  .channels-heading .eyebrow { grid-column: auto; margin: 0; }
  .benefits-heading { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 700px) {
  .site-header { height: auto; min-height: 68px; flex-wrap: wrap; gap: 10px; padding: 10px 20px 9px; }
  .site-header nav { display: flex; order: 3; width: 100%; justify-content: flex-start; gap: 22px; padding-top: 8px; border-top: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; white-space: nowrap; }
  .site-header nav::-webkit-scrollbar { display: none; }
  .header-cta { margin-left: auto; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: fit-content; }
  .proof { align-items: flex-start; }
  .channels { padding: 74px 0 58px; }
  .channel { min-width: 174px; height: 78px; padding: 0 20px; }
  .channel-note { padding-inline: 20px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article + article { min-height: auto; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-grid article:last-child { border-bottom: 0; }
  .benefit-grid h3 { margin-top: 15px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 40px, 1180px); }
  .site-header { min-height: 68px; }
  .brand img { width: 30px; height: 30px; }
  .brand span { font-size: 22px; }
  .brand small { display: none; }
  .header-cta { padding: 9px 10px; font-size: 11px; }
  .hero { padding: 44px 0 58px; }
  .hero h1 { font-size: 40px; }
  .hero-slogan { font-size: 16px; }
  .hero-lede { font-size: 15px; }
  .proof { margin-top: 35px; }
  .band-inner { justify-content: center; flex-wrap: wrap; text-align: center; line-height: 1.7; }
  section { padding: 76px 0; }
  .section-top { margin-bottom: 28px; }
  .intro h2, .section-top h2, .story-copy h2, .contact-box h2 { font-size: 37px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; padding: 24px; }
  .feature-top { margin-bottom: 36px; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-step, .flow-step + .flow-step { min-height: auto; padding: 22px 0; border-right: 0; border-top: 1px solid rgba(238, 229, 215, .25); }
  .flow-step:first-child { border-top: 0; }
  .flow-step span { margin-bottom: 18px; }
  .metric-row { grid-template-columns: 1fr; }
  .contact-box { padding: 36px 26px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .visual-note { left: 12px; bottom: 12px; }
  .draft-label { top: 12px; right: 12px; }
  .hero-visual { width: calc(100% - 10px); }
  .hero-visual::after { inset: 10px; }
  .hero-visual img { aspect-ratio: 1.23 / 1; object-position: 66% center; }
  .visual-note { max-width: 185px; font-size: 10px; }
  .channels-heading h2 { font-size: 36px; }
  .channel-note span { display: none; }
  .channel-note p { text-align: left; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
}
