/* FONTS */
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/public-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/public-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Young Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/young-serif-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Young Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/young-serif-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* TOKENS */
:root {
  --forest: #24402f;
  --forest-deep: #1b3225;
  --brick: #b55d3a;
  --brick-ink: #a3522f;
  --cream: #f3eee3;
  --paper: #fbf8f1;
  --ink: #1f211c;
  --ink-soft: #2c2e28;
  --line: #ddd5c4;
  --text-2: #4a4b44;
  --text-3: #6d6a5f;
  --sage: #8fa596;
  --sage-light: #b9c8bd;
  --on-forest: #d4dccd;
  --serif: "Young Serif", Georgia, "Times New Roman", serif;
  --sans: "Public Sans", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(16px, 3.4vw, 48px);
  --radius-xl: clamp(20px, 2vw, 28px);
  --section-pad: clamp(64px, 7vw, 96px);
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-bottom: 120px; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3, p { margin: 0; text-wrap: pretty; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: var(--forest); }
a:hover { color: var(--brick-ink); }
:focus-visible { outline: 2px solid var(--brick); outline-offset: 3px; border-radius: 4px; }
.utility :focus-visible, .hero-card :focus-visible, .problem-card :focus-visible, .check-cta-card :focus-visible, .cta-card :focus-visible, .demo-hero-card :focus-visible, .bento-forest :focus-visible, .site-footer :focus-visible { outline-color: var(--cream); }
.wrap { max-width: 1440px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--forest); color: var(--cream); padding: 8px 14px; border-radius: 999px; z-index: 100; }
.skip:focus { left: 8px; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--brick); color: var(--paper); }
.btn-cream { background: var(--cream); color: var(--forest); }
.btn-cream:hover { background: var(--paper); color: var(--brick-ink); }
.btn-ghost { border: 1.5px solid var(--sage); color: var(--cream); font-weight: 500; padding: 0 24px; }
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); background: rgba(243, 238, 227, 0.08); }
.btn-sm { min-height: 46px; padding: 0 22px; font-size: 15px; }

/* SAMPLE TAG */
.sample { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--brick-ink); border: 1px solid var(--brick-ink); border-radius: 999px; padding: 3px 8px; line-height: 1.2; }

.hero-panel .sample, .phone-screen .sample { color: #e8b9a5; border-color: #9c6f5c; }

/* HEADER */
.site-header .wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header .logo { display: flex; align-items: center; min-height: 44px; }
.site-header .logo img { height: 38px; width: auto; }
.site-nav { display: flex; gap: 36px; font-size: 15px; font-weight: 500; }
.site-nav a { padding: 10px 0; color: var(--ink); text-decoration: none; }
.site-nav a:hover { color: var(--brick-ink); }

/* HERO */
.hero .wrap { padding-top: 16px; padding-bottom: 48px; }
.hero-card {
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--cream);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; }
.hero-copy .eyebrow { color: var(--sage-light); }
.hero-copy h1 { font-size: clamp(40px, 4.2vw, 60px); line-height: 1.05; }
.hero-copy p { font-size: clamp(17px, 1.35vw, 19px); color: var(--on-forest); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; min-height: 460px; }
.hero-panel {
  position: absolute;
  inset: 0 0 80px 0;
  border-radius: 20px;
  background: var(--forest-deep);
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.call-log { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.call-log li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(243, 238, 227, 0.05); font-size: 14px; color: var(--on-forest); }
.call-log li span { white-space: nowrap; }
.call-log li span:nth-child(2) { flex: 1; overflow: hidden; text-overflow: ellipsis; }
.call-log .time { color: var(--sage); font-variant-numeric: tabular-nums; }
.call-log .tag { font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 999px; }
.call-log .tag-missed { color: #e8b9a5; background: rgba(181, 93, 58, 0.25); }
.call-log .tag-booked { color: var(--cream); background: rgba(143, 165, 150, 0.3); }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; color: var(--sage); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.booking-card {
  position: absolute;
  left: -40px;
  bottom: 0;
  width: min(380px, 100%);
  background: var(--paper);
  color: var(--ink);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: rotate(-2deg);
  box-shadow: 0 18px 40px rgba(15, 30, 20, 0.28);
}
.booking-top { display: flex; justify-content: space-between; align-items: center; }
.booking-brand { display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--forest); }
.booking-brand img { width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 0 0 1px var(--line); }
.booking-title { font-family: var(--serif); font-size: 26px; line-height: 1.15; }
.booking-rule { height: 1px; background: var(--line); }
.booking-rows { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--text-2); }
.booking-rows div { display: flex; justify-content: space-between; gap: 12px; }
.booking-rows span:last-child { color: var(--ink); font-weight: 500; }

/* INTRO */
.intro .wrap { padding-top: var(--section-pad); padding-bottom: 48px; display: flex; flex-direction: column; gap: 32px; }
.intro p { font-family: var(--serif); font-size: clamp(26px, 2.9vw, 42px); line-height: 1.3; letter-spacing: -0.01em; max-width: 1160px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 0; margin: -9px 0; font-size: 16px; font-weight: 600; text-decoration: none; }
.intro .text-link { align-self: flex-start; }
.text-link svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.text-link:hover svg { transform: translateX(3px); }

/* PROBLEM */
.problem .wrap { padding-bottom: 40px; }
.problem-card {
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--cream);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
}
.problem-copy { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.problem-copy .eyebrow { color: #a8a597; }
.pain-words { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; font-family: var(--serif); font-size: clamp(38px, 4.4vw, 64px); line-height: 1.1; letter-spacing: -0.02em; }
.pain-words li { color: #55574f; transition: color 0.35s ease; cursor: default; }
.pain-words li.is-on { color: var(--cream); }
.pain-words button { padding: 0; border: 0; background: none; font: inherit; letter-spacing: inherit; color: inherit; text-align: left; cursor: pointer; }
.pain-detail { font-size: 18px; color: #cfcbbf; max-width: 480px; min-height: 5.2em; }
.problem-visual { border-radius: 20px; background: var(--ink-soft); padding: 28px; display: flex; flex-direction: column; justify-content: center; gap: 16px; min-height: 360px; }
.phone-screen { background: #262822; border: 1px solid #3a3c35; border-radius: 18px; padding: 22px; display: flex; flex-direction: column; gap: 14px; max-width: 360px; width: 100%; margin: 0 auto; }
.phone-screen .panel-head { color: #a8a597; margin: 0; }
.missed { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-top: 1px solid #3a3c35; }
.missed:first-of-type { border-top: 0; }
.missed-icon { width: 36px; height: 36px; border-radius: 999px; background: rgba(181, 93, 58, 0.2); display: flex; align-items: center; justify-content: center; flex: none; }
.missed-icon svg { width: 18px; height: 18px; }
.missed-body { display: flex; flex-direction: column; font-size: 14px; line-height: 1.4; }
.missed-body strong { font-weight: 600; color: var(--cream); }
.missed-body span { color: #a8a597; }

/* STEPS */
.steps .wrap { padding-top: var(--section-pad); padding-bottom: 48px; display: flex; flex-direction: column; gap: 56px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px 48px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.08; }
.section-head p { font-size: 16px; color: var(--text-2); max-width: 440px; }

/* PROMISES */
.promises { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promises .wrap { padding-top: clamp(64px, 6vw, 88px); padding-bottom: clamp(64px, 6vw, 88px); display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: 40px 96px; align-items: start; }

/* SERVICES */
.services .wrap { padding-top: var(--section-pad); padding-bottom: 48px; display: flex; flex-direction: column; gap: 40px; }
.service-icon { width: 48px; height: 48px; border-radius: 14px; background: #e6ebe3; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 24px; height: 24px; }

/* DEMO */
.demo .wrap { padding-top: 24px; padding-bottom: 48px; }
.demo-card { border-radius: var(--radius-xl); background: var(--paper); border: 1px solid var(--line); padding: clamp(32px, 4vw, 56px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: center; }
.demo-copy { display: flex; flex-direction: column; gap: 22px; }
.demo-copy h2 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.08; }
.demo-copy > p { font-size: 17px; color: var(--text-2); max-width: 460px; }
.demo-line { display: flex; flex-direction: column; gap: 6px; }
.demo-line .eyebrow { color: var(--text-3); letter-spacing: 0.06em; }
.demo-line a { font-family: var(--serif); font-size: clamp(30px, 2.8vw, 40px); text-decoration: none; }
.demo-line .demo-soon { font-family: var(--serif); font-size: clamp(30px, 2.8vw, 40px); color: var(--text-3); }
.demo-hero .demo-line .demo-soon { color: var(--sage-light); }
.chat { background: var(--cream); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.chat-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.chat-head div { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.chat-head img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 0 0 1px var(--line); }
.bubble { max-width: 85%; padding: 12px 16px; font-size: 15px; line-height: 1.5; }
.bubble-in { align-self: flex-end; max-width: 80%; background: var(--forest); color: var(--cream); border-radius: 14px 14px 4px 14px; }
.bubble-out { align-self: flex-start; background: var(--paper); border-radius: 14px 14px 14px 4px; }
.chat-input { min-height: 48px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); display: flex; align-items: center; padding: 0 18px; font-size: 15px; color: var(--text-3); }

/* CLOSING */
.closing .wrap { padding-top: 64px; padding-bottom: 80px; display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.closing img { width: 56px; height: 56px; border-radius: 14px; box-shadow: 0 0 0 1px var(--line); }
.closing h2 { font-size: clamp(38px, 4.2vw, 60px); line-height: 1.05; max-width: 900px; }

/* FOOTER */
.site-footer { background: var(--forest); color: var(--on-forest); }
.site-footer .wrap { padding-top: 64px; padding-bottom: 32px; display: flex; flex-direction: column; gap: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 190px; height: auto; }
.footer-brand p { font-size: 15px; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; font-style: normal; }
.footer-col .eyebrow { font-size: 12px; color: var(--sage-light); }
.footer-col a { color: var(--on-forest); text-decoration: none; }
.footer-col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal { font-size: 13px; color: var(--sage-light); border-top: 1px solid #3a5a47; padding-top: 20px; }

/* LEGAL PAGES */
.legal .wrap { max-width: 820px; padding-top: 48px; padding-bottom: var(--section-pad); }
.legal h1 { font-size: clamp(38px, 4vw, 54px); line-height: 1.08; margin-bottom: 12px; }
.legal .updated { color: var(--text-3); font-size: 15px; margin-bottom: 40px; }
.legal h2 { font-size: 28px; margin: 44px 0 14px; letter-spacing: -0.01em; }
.legal p, .legal li { font-size: 17px; color: var(--text-2); }
.legal p + p { margin-top: 14px; }
.legal ul { padding-left: 22px; margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.legal strong { color: var(--ink); }
.legal .callout { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; margin: 20px 0; }

/* NAV STATE */
.site-nav a[aria-current="page"] { color: var(--forest); font-weight: 700; }

/* PAGE HEAD */
.page-head .wrap { padding-top: clamp(48px, 6vw, 88px); padding-bottom: 64px; display: flex; flex-direction: column; gap: 24px; }
.page-head .eyebrow { color: var(--brick-ink); }
.page-head h1 { font-size: clamp(40px, 4.4vw, 64px); line-height: 1.05; max-width: 900px; }
.page-head p { font-size: clamp(17px, 1.35vw, 19px); color: var(--text-2); max-width: 640px; }

/* SERVICE ROWS */
.service-row { border-top: 1px solid var(--line); }
.service-row .wrap { padding-top: 64px; padding-bottom: 64px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.service-row.flip .service-text { order: 2; }
.service-text { display: flex; flex-direction: column; gap: 18px; }
.service-text .service-icon { width: 52px; height: 52px; }
.service-text h2 { font-size: clamp(34px, 3vw, 44px); line-height: 1.1; }
.service-text > p { font-size: 17px; color: var(--text-2); max-width: 560px; }
.does-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding-top: 8px; }
.does-grid h3 { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); }
.does-grid .wont h3 { color: var(--brick-ink); }
.checks { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checks li { display: flex; gap: 10px; font-size: 15px; line-height: 1.5; }
.checks svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.wont .checks li { color: var(--text-2); }

/* MOCKS */
.mock { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.mock-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.mock-head.ruled { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.mock .bubble-out { background: var(--cream); }
.mock-title { font-size: 15px; font-weight: 600; }
.mock-sub { display: flex; flex-direction: column; gap: 2px; }
.mock-sub strong { font-size: 15px; font-weight: 600; }
.mock-sub small { font-size: 13px; color: var(--text-3); }
.chat-brand { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.chat-brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 0 0 1px var(--line); }
.dots { display: flex; gap: 6px; }
.dots span { width: 10px; height: 10px; border-radius: 999px; background: var(--line); }
.urlbar { min-height: 40px; border-radius: 999px; background: var(--cream); display: flex; align-items: center; padding: 0 16px; font-size: 13px; color: var(--text-3); white-space: nowrap; overflow: hidden; }
.site-preview { border-radius: 16px; background: var(--forest); color: var(--cream); padding: 32px; display: flex; flex-direction: column; gap: 14px; }
.site-preview .title { font-family: var(--serif); font-size: clamp(26px, 2.4vw, 34px); line-height: 1.1; }
.bar { height: 10px; border-radius: 4px; background: #3a5a47; }
.fake-btn { align-self: flex-start; min-height: 44px; padding: 0 20px; border-radius: 999px; background: var(--cream); color: var(--forest); display: flex; align-items: center; font-size: 14px; font-weight: 600; margin-top: 6px; }
.tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.tiles span { height: 64px; border-radius: 12px; background: var(--cream); }
.transcript { display: flex; flex-direction: column; gap: 12px; font-size: 15px; line-height: 1.55; }
.transcript div { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 12px; }
.transcript span:first-child { color: var(--text-3); }
.result { border-radius: 12px; background: #e6ebe3; padding: 14px 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 12px; font-size: 14px; }
.result strong { color: var(--forest); font-weight: 600; }
.result span { color: var(--text-2); }
.msg-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 64px; border-radius: 14px; background: var(--cream); padding: 12px 18px; }
.msg-row div { display: flex; flex-direction: column; gap: 2px; }
.msg-row strong { font-size: 15px; font-weight: 600; }
.msg-row small { font-size: 13px; color: var(--text-3); }
.pill { font-size: 12px; font-weight: 600; color: var(--forest); background: #e6ebe3; border-radius: 999px; padding: 4px 10px; white-space: nowrap; }

/* CTA BAND */
.cta-band .wrap { padding-top: 24px; padding-bottom: 64px; }
.cta-card { border-radius: var(--radius-xl); background: var(--forest); color: var(--cream); padding: clamp(32px, 4vw, 56px); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 32px 48px; }
.cta-card > div { display: flex; flex-direction: column; gap: 16px; max-width: 760px; }
.cta-card h2 { font-size: clamp(34px, 3.4vw, 48px); line-height: 1.1; }
.cta-card p { font-size: 18px; color: var(--on-forest); }


/* FAQ */
.faq { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq .wrap { padding-top: 80px; padding-bottom: 80px; display: flex; flex-direction: column; gap: 44px; }
.faq h2 { font-size: clamp(36px, 3.4vw, 48px); }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 64px; }
.faq-grid > div { display: flex; flex-direction: column; gap: 10px; padding-top: 24px; border-top: 1px solid var(--line); }
.faq-grid h3 { font-size: 24px; line-height: 1.25; letter-spacing: -0.01em; }
.faq-grid p { font-size: 16px; color: var(--text-2); }

/* DEMO PAGE */
.demo-hero .wrap { padding-top: 16px; padding-bottom: 48px; }
.demo-hero-card { border-radius: var(--radius-xl); background: var(--forest); color: var(--cream); padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.demo-hero-copy { display: flex; flex-direction: column; gap: 26px; }
.demo-hero-copy .eyebrow { color: var(--sage-light); }
.demo-hero-copy .demo-line .eyebrow { letter-spacing: 0.06em; }
.demo-hero-copy h1 { font-size: clamp(40px, 4.2vw, 60px); line-height: 1.05; }
.demo-hero-copy > p { font-size: clamp(17px, 1.35vw, 19px); color: var(--on-forest); max-width: 520px; }
.demo-line { display: flex; flex-direction: column; gap: 8px; }
.demo-number { font-family: var(--serif); font-size: clamp(34px, 3vw, 44px); color: var(--cream); text-decoration: none; }
.demo-number:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.try-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.try-list li { min-height: 44px; padding: 0 16px; border-radius: 999px; border: 1px solid #5e7a67; display: flex; align-items: center; font-size: 15px; }
.demo-hero .chat { background: var(--paper); color: var(--ink); }
.demo-hero .bubble-out, .demo-hero .chat-input { background: var(--cream); }
.call-request .wrap { padding-top: 72px; padding-bottom: 96px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 80px; align-items: start; }
.call-copy { display: flex; flex-direction: column; gap: 24px; padding-top: 12px; }
.call-copy h2 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.08; }
.call-copy > p { font-size: 18px; color: var(--text-2); max-width: 520px; }
.numbered { list-style: none; margin: 0; padding: 8px 0 0; display: flex; flex-direction: column; gap: 16px; }
.numbered li { display: flex; gap: 14px; }
.numbered span { width: 32px; height: 32px; border-radius: 999px; background: var(--brick); color: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; flex: none; }
.numbered p { font-size: 16px; padding-top: 4px; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 18px; }
.contact-card h3 { font-size: 28px; letter-spacing: -0.01em; }
.contact-card p { font-size: 16px; color: var(--text-2); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 6px; }
.btn-outline { border: 1.5px solid var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }

/* STEP LINE */
.step-line { list-style: none; margin: 0; padding: 0; position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.step-line::before { content: ""; position: absolute; top: 19px; left: 20px; right: 0; height: 1px; background: #cfc6b3; }
.step-line::after { content: ""; position: absolute; top: 15px; right: 0; width: 9px; height: 9px; border-radius: 999px; background: var(--brick); }
.step-line li { position: relative; display: flex; flex-direction: column; gap: 10px; padding-right: 24px; }
.step-dot { width: 40px; height: 40px; border-radius: 999px; background: var(--cream); border: 1px solid var(--forest); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; color: var(--forest); margin-bottom: 10px; flex: none; }
.step-line h3 { font-size: 24px; letter-spacing: -0.01em; }
.step-line p { font-size: 15px; color: var(--text-2); }

/* PROMISE LIST */
.promises-head { display: flex; flex-direction: column; gap: 18px; }
.promises-head h2 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.08; }
.promises-head p { font-size: 17px; color: var(--text-2); }
.promise-list { border-bottom: 1px solid var(--line); }
.promise-row { display: grid; grid-template-columns: minmax(0, 360px) minmax(0, 1fr); gap: 8px 32px; padding: 22px 0; border-top: 1px solid var(--line); align-items: baseline; }
.promise-title { display: flex; align-items: center; gap: 14px; }
.promise-title svg { width: 22px; height: 22px; flex: none; }
.promise-title h3 { font-size: 24px; letter-spacing: -0.01em; }
.promise-row p { font-size: 16px; color: var(--text-2); }

/* BENTO */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: minmax(330px, auto); gap: 16px; }
.bento-card { border-radius: 24px; background: var(--paper); border: 1px solid var(--line); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.bento-card h3 { font-size: 26px; line-height: 1.15; letter-spacing: -0.01em; }
.bento-card p { font-size: 15px; color: var(--text-2); }
.bento-wide { grid-column: span 2; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; align-items: center; padding: 36px; border: 0; }
.bento-wide h3 { font-size: clamp(28px, 2.3vw, 32px); line-height: 1.1; }
.bento-wide p { font-size: 16px; }
.bento-forest { background: var(--forest); color: var(--cream); }
.bento-forest p { color: var(--on-forest); }
.bento-sage { background: #e6ebe3; }
.bento-sage p { color: #3f463f; }
.bento-text { display: flex; flex-direction: column; gap: 16px; }
.bento-icon { width: 44px; height: 44px; border-radius: 12px; background: #e6ebe3; display: flex; align-items: center; justify-content: center; flex: none; }
.bento-icon svg { width: 22px; height: 22px; }
.bento-wide .bento-icon { width: 48px; height: 48px; border-radius: 13px; }
.bento-wide .bento-icon svg { width: 24px; height: 24px; }
.bento-forest .bento-icon { background: #35594a; }
.bento-sage .bento-icon { background: var(--paper); }
.bento .sample { font-size: 10px; padding: 2px 7px; flex: none; }
.mini-site { background: var(--paper); color: var(--ink); border-radius: 16px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.mini-site .dots span { width: 8px; height: 8px; }
.mini-url { border-radius: 999px; background: var(--cream); padding: 7px 12px; font-size: 12px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-page { border-radius: 12px; background: #e6ebe3; padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.mini-page .title { font-family: var(--serif); font-size: 22px; line-height: 1.15; color: var(--forest); }
.mini-page .bar { height: 8px; background: #cfd8cb; }
.mini-page .fake-btn { min-height: 36px; padding: 0 14px; background: var(--forest); color: var(--cream); font-size: 13px; margin-top: 2px; }
.bento-foot { margin-top: auto; border-radius: 12px; background: var(--cream); padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 14px; }
.bento-foot .muted { color: var(--text-3); }
.bento-bubble { margin-top: auto; display: flex; align-items: flex-end; gap: 8px; }
.bento-bubble div { background: var(--cream); border-radius: 14px 14px 14px 4px; padding: 10px 14px; font-size: 14px; line-height: 1.5; }
.bento-msgs { display: flex; flex-direction: column; gap: 8px; }
.bento-msgs .sample-row { display: flex; justify-content: flex-end; }
.bento-msgs .msg-row { background: var(--paper); min-height: 56px; padding: 8px 16px; }

/* TIMELINE */
.timeline .wrap { padding-top: 16px; padding-bottom: 96px; }
.tl-row { display: grid; grid-template-columns: 56px minmax(0, 1fr); column-gap: clamp(24px, 3.3vw, 48px); }
.tl-rail { position: relative; display: flex; justify-content: center; align-items: center; }
.tl-rail::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; margin-left: -0.5px; background: #cfc6b3; }
.tl-first .tl-rail::after, .tl-last .tl-rail::after { content: ""; position: absolute; left: 50%; width: 10px; height: 10px; margin-left: -5px; border-radius: 999px; background: var(--brick); }
.tl-first .tl-rail::after { top: 0; }
.tl-last .tl-rail::after { bottom: 0; }
.tl-num { position: relative; width: 40px; height: 40px; border-radius: 999px; background: var(--cream); border: 1px solid var(--forest); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; color: var(--forest); }
.tl-body { padding: 56px 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(48px, 7.8vw, 112px); align-items: center; }
.tl-body .mock { padding: 32px; }
.tl-text { display: flex; flex-direction: column; gap: 18px; max-width: 520px; }
.tl-text h2 { font-size: clamp(40px, 3.9vw, 56px); line-height: 1.05; }
.tl-text > p { font-size: clamp(17px, 1.35vw, 19px); color: var(--text-2); }
.need-get { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.need-get > div { display: flex; flex-direction: column; gap: 4px; font-size: 15px; line-height: 1.5; }
.ng-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.ng-get, .ng-get .ng-label { color: var(--forest); }
.tl-quote { padding: 64px 0; }
.tl-quote p { font-family: var(--serif); font-size: clamp(28px, 3.3vw, 48px); line-height: 1.15; letter-spacing: -0.02em; color: var(--forest); max-width: 22ch; }
.finding-list { display: flex; flex-direction: column; }
.finding-list > div { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 56px; border-bottom: 1px solid #ebe4d6; font-size: 15px; }
.finding-list > div > span:first-child { display: flex; align-items: center; gap: 10px; }
.finding-list .muted { font-size: 14px; color: var(--text-3); white-space: nowrap; }
.f-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--brick); flex: none; }
.check-ok { width: 22px; height: 22px; border-radius: 999px; background: var(--forest); display: flex; align-items: center; justify-content: center; flex: none; }
.check-ok svg { width: 14px; height: 14px; }
.test-line { display: flex; align-items: center; gap: 14px; }
.test-icon { width: 52px; height: 52px; border-radius: 14px; background: #e6ebe3; display: flex; align-items: center; justify-content: center; flex: none; }
.test-icon svg { width: 22px; height: 22px; }
.test-num { font-family: var(--serif); font-size: clamp(24px, 2.1vw, 30px); color: var(--forest); }
.try-say { display: flex; flex-direction: column; gap: 8px; }
.say-bubble { align-self: flex-start; background: var(--cream); border-radius: 14px 14px 14px 4px; padding: 10px 14px; font-size: 15px; }
.status-row { display: flex; justify-content: space-between; border-radius: 12px; background: #e6ebe3; padding: 12px 14px; font-size: 15px; }
.status-row strong { font-weight: 600; color: var(--forest); }
.report-block { display: flex; flex-direction: column; gap: 8px; }
.report-block + .report-block { padding-top: 12px; border-top: 1px solid #ebe4d6; }
.report-line { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 15px; }
.skel { width: 44px; height: 10px; border-radius: 4px; background: var(--line); flex: none; }

/* UTILITY BAR */
.utility { background: var(--forest); color: var(--on-forest); font-size: 14px; }
.utility .wrap { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utility-links { display: flex; align-items: center; gap: 24px; }
.utility a { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; color: var(--cream); font-weight: 500; text-decoration: none; }
.utility a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.utility svg { width: 15px; height: 15px; flex: none; }
.utility-sep { width: 1px; height: 16px; background: #3a5a47; }

/* CHECK CTA */
.check-cta .wrap { padding-top: 72px; padding-bottom: 8px; }
.check-cta-card { border-radius: var(--radius-xl); background: var(--forest); color: var(--cream); padding: clamp(32px, 4vw, 56px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 56px; align-items: center; }
.check-cta-copy { display: flex; flex-direction: column; gap: 22px; }
.check-cta-copy h2 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.08; }
.check-cta-copy p { font-size: 17px; color: var(--on-forest); max-width: 480px; }
.check-cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.link-light { padding: 10px 0; margin: -10px 0; font-size: 15px; color: var(--on-forest); text-decoration: underline; text-underline-offset: 4px; }
.link-light:hover { color: var(--cream); }
.check-preview { background: var(--paper); color: var(--ink); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.check-preview small { font-size: 13px; font-weight: 600; color: var(--text-3); }
.check-preview .q { font-family: var(--serif); font-size: 26px; line-height: 1.2; }
.preview-opts { display: flex; flex-direction: column; gap: 10px; }
.preview-opt { min-height: 52px; border-radius: 12px; border: 1px solid var(--line); display: flex; align-items: center; padding: 0 18px; font-size: 15px; }
.preview-opt.on { border: 1.5px solid var(--forest); background: #eef1ea; font-weight: 500; }
.btn { font-family: inherit; cursor: pointer; }
button.btn:not(.btn-ghost):not(.btn-outline) { border: 0; }

/* CHECK MODAL */
html.check-open { overflow: hidden; }
.check-modal { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; padding: 24px; }
.check-backdrop { position: absolute; inset: 0; background: rgba(31, 33, 28, 0.58); }
.check-dialog { position: relative; width: min(1040px, 100%); }
.check-panel { position: relative; width: 100%; max-height: calc(100vh - 48px); overflow-y: auto; border-radius: 28px; background: var(--cream); padding: 20px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 20px; box-shadow: 0 30px 80px rgba(15, 20, 15, 0.35); }
.check-intro { padding: 36px 20px 28px 32px; display: flex; flex-direction: column; gap: 22px; }
.check-wordmark { height: 34px; width: auto; align-self: flex-start; }
.check-chip { align-self: flex-start; display: flex; align-items: center; height: 30px; padding: 0 12px; border-radius: 999px; background: #e6ebe3; color: var(--forest); font-size: 13px; font-weight: 600; }
.check-intro h2 { font-size: clamp(32px, 3vw, 42px); line-height: 1.08; }
.check-intro h2 em { font-style: normal; color: var(--brick); }
.check-sub { display: none; font-size: 15px; color: var(--text-2); }
.check-points { list-style: none; margin: 0; padding: 4px 0 0; display: flex; flex-direction: column; gap: 14px; }
.check-points li { display: flex; gap: 12px; font-size: 16px; line-height: 1.45; }
.tick { width: 24px; height: 24px; border-radius: 999px; background: var(--forest); display: flex; align-items: center; justify-content: center; flex: none; }
.tick svg { width: 13px; height: 13px; }
.check-foot { margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 12px; font-size: 14px; color: var(--text-2); }
.check-foot img { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 0 0 1px var(--line); }
.check-card { position: relative; background: #fffdf8; border: 1px solid #e4dccb; border-radius: 20px; padding: 40px 36px 32px; min-height: 560px; display: flex; flex-direction: column; }
.check-body { flex-grow: 1; display: flex; flex-direction: column; outline: none; }
.check-step { font-size: 14px; color: var(--text-3); }
.check-bar { height: 6px; margin-top: 12px; border-radius: 999px; background: #ece6d9; overflow: hidden; }
.check-bar span { display: block; height: 6px; border-radius: 999px; background: var(--brick); transition: width 0.25s ease; }
.check-card h3 { font-size: 30px; line-height: 1.18; letter-spacing: -0.01em; margin-top: 30px; }
.check-helper { font-size: 16px; line-height: 1.55; color: var(--text-2); margin-top: 10px; }
.check-opts { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.check-opt { width: 100%; min-height: 56px; border-radius: 14px; border: 1px solid var(--line); background: #fffdf8; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font: 500 16px/1.3 var(--sans); color: var(--ink); text-align: left; cursor: pointer; }
.check-opt:hover { border-color: #b9ae98; }
.check-opt[aria-checked="true"] { border: 1.5px solid var(--forest); background: #eef1ea; }
.check-ring { width: 22px; height: 22px; border-radius: 999px; border: 1.5px solid #cfc6b3; display: flex; align-items: center; justify-content: center; flex: none; }
.check-opt[aria-checked="true"] .check-ring { border-color: var(--forest); }
.check-opt[aria-checked="true"] .check-ring::after { content: ""; width: 10px; height: 10px; border-radius: 999px; background: var(--forest); }
.check-nav { margin-top: auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.check-back { min-height: 44px; display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; background: none; font: 600 15px var(--sans); color: var(--forest); cursor: pointer; }
.check-back:disabled { color: #c9c2b3; cursor: default; }
.check-next { min-height: 52px; padding: 0 26px; border: 0; border-radius: 999px; background: var(--forest); color: var(--cream); display: inline-flex; align-items: center; gap: 8px; font: 600 15px var(--sans); cursor: pointer; }
.check-next:disabled { background: #b9b3a6; cursor: default; }
.check-back svg, .check-next svg { width: 16px; height: 16px; }
.check-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.check-field.full { grid-column: 1 / -1; }
.check-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.check-field input { width: 100%; height: 52px; border-radius: 12px; border: 1px solid var(--line); background: #ffffff; padding: 0 14px; font: 15px var(--sans); color: var(--ink); }
.check-field input:focus { outline: 2px solid var(--brick); outline-offset: 1px; }
.check-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; font-size: 13px; line-height: 1.55; color: var(--text-3); cursor: pointer; }
.check-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--forest); flex: none; }
.check-consent a { color: var(--text-3); text-decoration: underline; }
.check-error { margin-top: 12px; font-size: 14px; color: #a63244; }
.check-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.check-done { display: flex; flex-direction: column; gap: 14px; }
.check-done img { width: 56px; height: 56px; border-radius: 14px; box-shadow: 0 0 0 1px var(--line); }
.check-done h3 { margin-top: 0; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.15; }
.check-done p { font-size: 17px; color: var(--text-2); }
.check-done .check-book { font-size: 15px; }
.check-calendar { margin-top: 4px; border-radius: 14px; border: 1px solid var(--line); background: #ffffff; overflow: hidden; }
.check-calendar iframe { display: block; width: 100%; min-height: 640px; border: 0; }
.check-modal.is-done .check-dialog { width: min(1180px, 100%); }
.check-modal.is-done .check-panel { grid-template-columns: minmax(0, 1fr); }
.check-modal.is-done .check-intro { display: none; }
.check-modal.is-done { padding: 16px; }
.check-modal.is-done .check-panel { max-height: calc(100vh - 32px); padding: 12px; }
.check-modal.is-done .check-card { min-height: 0; padding: 20px 24px 12px; }
.check-modal.is-done .check-done { gap: 12px; }
.check-modal.is-done .check-done-head img { width: 48px; height: 48px; border-radius: 12px; }
.check-modal.is-done .check-done h3 { font-size: clamp(24px, 2vw, 28px); }
.check-modal.is-done .check-done p { font-size: 15px; }
.check-done-head { display: flex; align-items: flex-start; gap: 20px; }
.check-done-head > div { display: flex; flex-direction: column; gap: 8px; }
.check-done-head img { flex: none; }
.check-close { position: absolute; top: -16px; right: -16px; z-index: 2; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); box-shadow: 0 6px 16px rgba(15, 20, 15, 0.18); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.check-close svg { width: 18px; height: 18px; }

/* CONTACT BAR */
.contact-bar { position: fixed; right: 32px; bottom: 32px; z-index: 40; display: flex; align-items: center; gap: 8px; padding: 8px 8px 8px 24px; border-radius: 999px; background: #fffdf8; border: 1px solid #e4dccb; box-shadow: 0 16px 40px rgba(15, 20, 15, 0.16); }
.contact-bar-text { display: flex; flex-direction: column; gap: 1px; padding-right: 8px; line-height: 1.3; }
.contact-bar-text strong { font-size: 15px; font-weight: 600; color: var(--ink); }
.contact-bar-text span { font-size: 13px; color: var(--text-3); }
.contact-bar-icon { width: 48px; height: 48px; flex: none; border-radius: 999px; border: 1px solid var(--line); background: #fffdf8; color: var(--forest); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.contact-bar-icon svg { width: 18px; height: 18px; }
.contact-bar-cta { height: 48px; margin-left: 4px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--forest); color: var(--cream); display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 600 15px var(--sans); white-space: nowrap; cursor: pointer; transition: background-color 0.2s ease; }
.contact-bar-cta:hover { background: var(--brick); }
.contact-bar-cta svg { width: 16px; height: 16px; }
.cta-short { display: none; }
html.check-open .contact-bar { display: none; }

/* RESPONSIVE */
@media (max-width: 1280px) {
  .call-log li:nth-child(n+3) { display: none; }
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hero-card, .problem-card, .demo-card { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-visual { min-height: 420px; }
  .booking-card { left: 12px; }
  .problem-visual { min-height: 0; }
}
@media (max-width: 600px) {
  .site-header .wrap { height: 72px; }
  .site-header .logo img { height: 30px; }
  .site-header .btn-sm { min-height: 44px; padding: 0 16px; font-size: 14px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 380px; }
  .hero-panel { inset: 0 0 110px 0; padding: 20px; }
  .booking-card { left: 8px; right: 8px; width: auto; padding: 20px; }
  .booking-title { font-size: 22px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .pain-detail { min-height: 0; }
  .problem-visual { padding: 0; background: transparent; }
  .phone-screen { max-width: none; }
}
@media (max-width: 900px) {
  .service-row .wrap, .demo-hero-card, .call-request .wrap { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .service-row.flip .service-text { order: 0; }
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 600px) {
  .does-grid { grid-template-columns: minmax(0, 1fr); }
  .mock { padding: 20px; }
  .site-preview { padding: 24px; }
  .transcript div { grid-template-columns: minmax(0, 1fr); gap: 2px; }
  .cta-card .btn, .contact-actions .btn { width: 100%; }
}
@media (max-width: 1100px) {
  .promises .wrap { grid-template-columns: minmax(0, 1fr); }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .step-line { grid-template-columns: minmax(0, 1fr); }
  .step-line::before { top: 0; bottom: 0; left: 19px; right: auto; width: 1px; height: auto; }
  .step-line::after { top: auto; bottom: 0; left: 15px; right: auto; }
  .step-line li { padding: 0 0 32px 64px; gap: 6px; }
  .step-line .step-dot { position: absolute; left: 0; top: 0; margin: 0; }
  .tl-row { grid-template-columns: 28px minmax(0, 1fr); column-gap: 14px; }
  .tl-rail { align-items: flex-start; padding-top: 44px; }
  .tl-num { width: 28px; height: 28px; font-size: 13px; }
  .tl-body { display: flex; flex-direction: column; align-items: stretch; gap: 16px; padding: 40px 0; }
  .tl-text { display: contents; }
  .tl-text h2 { order: 1; font-size: 30px; line-height: 1.1; }
  .tl-text > p { order: 2; font-size: 16px; }
  .tl-body .mock { order: 3; padding: 18px; border-radius: 18px; }
  .need-get { order: 4; grid-template-columns: minmax(0, 1fr); gap: 14px; padding-top: 16px; }
  .tl-quote { padding: 36px 0; }
}
@media (max-width: 700px) {
  .bento { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; }
  .bento-wide { grid-column: auto; grid-template-columns: minmax(0, 1fr); padding: 28px; gap: 24px; }
  .promise-row { grid-template-columns: minmax(0, 1fr); }
  .finding-list > div { min-height: 48px; font-size: 14px; }
  .test-icon { width: 44px; height: 44px; }
}
@media (max-width: 900px) {
  .check-cta-card { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .check-modal { padding: 0; align-items: stretch; }
  .check-panel { width: 100%; max-height: none; height: 100%; border-radius: 0; padding: 0; gap: 0; grid-template-columns: minmax(0, 1fr); align-content: start; }
  .check-intro { padding: 20px 20px 4px; gap: 12px; }
  .check-wordmark, .check-points, .check-foot { display: none; }
  .check-sub { display: block; }
  .check-intro h2 { font-size: 30px; padding-right: 48px; }
  .check-card { border: 0; border-radius: 0; background: transparent; padding: 16px 20px 24px; min-height: 0; }
  .check-card h3 { font-size: 24px; margin-top: 20px; }
  .check-dialog { width: 100%; height: 100%; }
  .check-modal.is-done { padding: 0; }
  .check-modal.is-done .check-panel { max-height: none; padding: 0; }
  .check-modal.is-done .check-card { padding: 20px 16px 24px; }
  .check-done-head { gap: 14px; padding-right: 48px; }
  .check-done-head img { width: 44px; height: 44px; }
  .check-calendar { margin: 4px -4px 0; }
  .check-close { top: 12px; right: 12px; border: 0; box-shadow: none; background: #e7e0d2; }
  .check-opts { gap: 6px; margin-top: 14px; }
  .check-opt { min-height: 48px; }
  .check-card h3 { margin-top: 16px; }
}
@media (max-width: 600px) {
  .utility .wrap { padding: 0; }
  .utility-note, .utility-sep { display: none; }
  .utility-links { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .utility a { justify-content: center; min-height: 44px; }
  .utility a:first-child { border-right: 1px solid #3a5a47; }
  .check-fields { grid-template-columns: minmax(0, 1fr); }
  .check-preview { padding: 24px; }
  .check-preview .q { font-size: 22px; }
}
@media (max-width: 700px) {
  html { scroll-padding-bottom: 104px; }
  .site-footer .wrap { padding-bottom: 116px; }
  .footer-col { gap: 0; }
  .footer-col a { display: flex; align-items: center; min-height: 44px; }
  .contact-bar { left: 12px; right: 12px; bottom: 16px; padding: 8px; box-shadow: 0 16px 40px rgba(15, 20, 15, 0.18); }
  .contact-bar-text { display: none; }
  .contact-bar-cta { flex-grow: 1; margin-left: 0; padding: 0 16px; }
  .cta-long { display: none; }
  .cta-short { display: inline; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
