:root {
  --ink: #1e2424;
  --muted: #5f6862;
  --paper: #f6f4ee;
  --line: rgba(30, 36, 36, 0.14);
  --green: #304a3f;
  --leaf: #6f8b74;
  --clay: #a65d42;
  --gold: #d5a24e;
  --wood: #b97945;
  --dark: #151918;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 25, 24, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 244, 238, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.topbar-glass {
  position: fixed;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(15, 19, 18, 0.36);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

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

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
}

.topbar-glass .brand-mark {
  background: rgba(255, 255, 255, 0.18);
}

.nav {
  gap: clamp(12px, 2vw, 28px);
  color: inherit;
  font-size: 14px;
  font-weight: 650;
}

.personal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: calc(100vh - 72px);
  padding: clamp(70px, 12vw, 140px) clamp(18px, 5vw, 72px) clamp(42px, 8vw, 90px);
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric {
  display: block;
  color: var(--green);
  font-size: 48px;
  font-weight: 850;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

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

.project-card,
.offer-list article,
.process-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured-card {
  color: var(--white);
  background: linear-gradient(145deg, #304a3f, #18231f 62%, #9b573f);
  box-shadow: var(--shadow);
}

.muted-card,
.offer-list article,
.process-grid article {
  background: rgba(255, 255, 255, 0.64);
}

.project-tag {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.muted-card .project-tag {
  color: var(--clay);
}

.project-card p,
.offer-list p,
.process-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.featured-card p {
  color: rgba(255, 255, 255, 0.78);
}

.project-link {
  display: inline-flex;
  margin-top: 22px;
  font-weight: 850;
}

.split-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(22px, 5vw, 72px);
}

.offer-list {
  display: grid;
  gap: 14px;
}

.offer-list article {
  min-height: 0;
}

.contact-band,
.request-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(28px, 5vw, 72px);
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: var(--dark);
  border-radius: 8px;
}

.contact-band .eyebrow,
.request-band .eyebrow {
  color: var(--gold);
}

.wood-page {
  --quiet-paper: #eee8dc;
  --quiet-stone: #ded3c2;
  --quiet-wood: #d4b08c;
  --quiet-sage: #6f826e;
  --quiet-forest: #314236;
  --quiet-ink: #1e1f1d;
  --quiet-silver: #b7bcb9;
}

.wood-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.wood-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wood-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 15, 14, 0.88), rgba(12, 15, 14, 0.48) 47%, rgba(12, 15, 14, 0.14)),
    linear-gradient(0deg, rgba(12, 15, 14, 0.32), transparent 42%);
}

.wood-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 118px clamp(18px, 5vw, 72px) 64px;
}

.wood-hero-copy .lead {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
}

.process-grid article img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.process-grid article h3,
.process-grid article p,
.process-grid article .step {
  margin-right: 20px;
  margin-left: 20px;
}

.step {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 28px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
}

.request-band {
  background: linear-gradient(145deg, #304a3f, #151918 66%, #7b4b32);
}

.request-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
}

.home-page {
  --quiet-paper: #eee8dc;
  --quiet-stone: #ded3c2;
  --quiet-wood: #d4b08c;
  --quiet-sage: #6f826e;
  --quiet-forest: #314236;
  --quiet-ink: #1e1f1d;
  --quiet-silver: #b7bcb9;
  color: var(--quiet-ink);
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.42), transparent 38%),
    radial-gradient(circle at 18% 8%, rgba(212, 176, 140, 0.26), transparent 34%),
    linear-gradient(180deg, var(--quiet-paper), #e2d7c7 58%, var(--quiet-paper));
}

.home-page h1,
.home-page h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.home-page h3,
.home-page .brand,
.home-page .nav,
.home-page .button,
.home-page .eyebrow,
.home-page .project-tag {
  letter-spacing: 0;
}

.home-page .nav {
  color: rgba(30, 31, 29, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.quiet-brand {
  gap: 12px;
  color: var(--quiet-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
}

.quiet-logo {
  width: 44px;
  height: 44px;
  display: block;
}

.home-page .eyebrow {
  color: rgba(30, 31, 29, 0.64);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.home-page .button {
  min-height: 44px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-weight: 500;
}

.home-page .button.primary {
  color: var(--quiet-ink);
  background: transparent;
}

.home-page .button.primary::after {
  content: "->";
  margin-left: 18px;
}

.home-page .button.secondary {
  color: rgba(30, 31, 29, 0.64);
  background: transparent;
  border-color: currentColor;
}

.quiet-web-hero {
  min-height: 100vh;
  padding: 0;
  background: var(--quiet-paper);
}

.web-frame {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 82px;
  background: var(--quiet-paper);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.frame-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 40px;
  align-items: center;
  gap: clamp(18px, 4vw, 64px);
  min-height: 82px;
  padding: 14px clamp(22px, 6vw, 96px);
  background: rgba(238, 232, 220, 0.9);
  border-bottom: 1px solid rgba(30, 31, 29, 0.08);
  box-shadow: 0 14px 34px rgba(30, 31, 29, 0.06);
  backdrop-filter: blur(18px);
}

.frame-links {
  gap: clamp(24px, 4vw, 58px);
  justify-content: center;
}

.menu-lines {
  display: grid;
  gap: 6px;
  justify-self: end;
  width: 26px;
  padding: 8px 0;
}

.menu-lines span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--quiet-ink);
}

.frame-hero {
  position: relative;
  min-height: calc(100vh - 178px);
  overflow: hidden;
}

.frame-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.frame-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(238, 232, 220, 0.98) 0%, rgba(238, 232, 220, 0.9) 27%, rgba(238, 232, 220, 0.42) 50%, rgba(238, 232, 220, 0.04) 76%),
    linear-gradient(0deg, rgba(30, 31, 29, 0.14), transparent 36%);
}

.frame-hero-copy {
  position: relative;
  z-index: 2;
  width: min(48%, 620px);
  padding: clamp(74px, 9vw, 132px) 0 clamp(48px, 7vw, 96px) clamp(32px, 7vw, 96px);
}

.frame-hero-copy h1 {
  margin-bottom: 34px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.98;
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 8px;
  color: var(--quiet-ink);
  border-bottom: 1px solid rgba(30, 31, 29, 0.56);
  font-size: 15px;
}

.quiet-link::after {
  content: "->";
}

.frame-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 96px;
  align-items: center;
  gap: 16px;
  padding: 22px clamp(22px, 6vw, 112px);
  color: rgba(245, 243, 239, 0.92);
  background:
    linear-gradient(90deg, #314236, #1f2b24 56%, #1e1f1d);
}

.frame-benefits span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  font-size: 16px;
  white-space: nowrap;
}

.frame-benefits svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

.quiet-work {
  padding-top: clamp(72px, 10vw, 132px);
  background: linear-gradient(180deg, #e9dfd0, #eee8dc);
  border-top: 0;
}

.quiet-work .section-head,
.quiet-offer {
  border-top: 1px solid rgba(30, 31, 29, 0.12);
}

.home-page .section-head {
  align-items: start;
}

.home-page .section-head h2,
.quiet-offer h2 {
  font-size: clamp(40px, 6vw, 78px);
}

.home-page .project-card,
.home-page .offer-list article {
  min-height: 250px;
  background: rgba(222, 211, 194, 0.38);
  border-color: rgba(30, 31, 29, 0.13);
  box-shadow: none;
}

.home-page .project-card h3,
.home-page .offer-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.home-page .project-card p,
.home-page .offer-list p {
  color: rgba(30, 31, 29, 0.62);
}

.home-page .project-tag {
  color: var(--quiet-sage);
  font-weight: 600;
}

.quiet-card-featured {
  color: var(--quiet-paper);
  background:
    linear-gradient(145deg, rgba(49, 66, 54, 0.96), rgba(30, 31, 29, 0.98)),
    var(--quiet-forest);
}

.quiet-card-featured p {
  color: rgba(245, 243, 239, 0.72);
}

.quiet-card-featured .project-tag {
  color: var(--quiet-wood);
}

.quiet-card-featured .project-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.quiet-offer .offer-list {
  gap: 0;
  border-top: 1px solid rgba(30, 31, 29, 0.12);
}

.quiet-offer .offer-list article {
  min-height: 0;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(30, 31, 29, 0.12);
  border-radius: 0;
}

.quiet-contact {
  color: var(--quiet-paper);
  background:
    linear-gradient(120deg, rgba(111, 130, 110, 0.2), transparent 36%),
    var(--quiet-forest);
  border-radius: 8px;
}

.quiet-contact h2 {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.quiet-contact .button.primary,
.quiet-contact .button.secondary {
  color: var(--quiet-paper);
}

@media (max-width: 920px) {
  .personal-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head,
  .contact-band,
  .request-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .quiet-web-hero {
    min-height: auto;
    padding: 0;
  }

  .web-frame {
    padding-top: 82px;
  }

  .frame-nav {
    grid-template-columns: 1fr 32px;
  }

  .frame-links {
    display: none;
  }

  .frame-hero-copy {
    width: min(70%, 520px);
    padding-left: clamp(24px, 8vw, 64px);
  }

  .frame-benefits {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-glass {
    position: absolute;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  .wood-hero {
    min-height: 820px;
  }

  .project-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .quiet-brand {
    font-size: 20px;
  }

  .quiet-logo {
    width: 38px;
    height: 38px;
  }

  .frame-nav {
    min-height: 58px;
    padding: 10px 18px;
  }

  .web-frame {
    padding-top: 58px;
  }

  .frame-hero {
    min-height: 560px;
  }

  .frame-hero img {
    object-position: 64% center;
  }

  .frame-hero::before {
    background:
      linear-gradient(180deg, rgba(238, 232, 220, 0.98) 0%, rgba(238, 232, 220, 0.9) 42%, rgba(238, 232, 220, 0.2) 78%),
      linear-gradient(0deg, rgba(30, 31, 29, 0.18), transparent 36%);
  }

  .frame-hero-copy {
    width: auto;
    padding: 54px 24px 0;
  }

  .frame-hero-copy h1 {
    font-size: 48px;
  }

  .frame-benefits {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 24px;
  }

  .frame-benefits span {
    justify-content: start;
    white-space: normal;
  }
}

.quiet-demo-page {
  --quiet-paper: #eee8dc;
  --quiet-stone: #ded3c2;
  --quiet-wood: #d4b08c;
  --quiet-sage: #6f826e;
  --quiet-forest: #314236;
  --quiet-ink: #1e1f1d;
  --quiet-silver: #b7bcb9;
  color: var(--quiet-ink);
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.34), transparent 42%),
    radial-gradient(circle at 80% 12%, rgba(111, 130, 110, 0.18), transparent 28%),
    linear-gradient(180deg, var(--quiet-paper), #e3d8c8 58%, var(--quiet-paper));
}

.quiet-demo-page h1,
.quiet-demo-page h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.quiet-demo-page .eyebrow {
  color: rgba(30, 31, 29, 0.58);
  font-weight: 600;
}

.demo-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 82px);
  background: rgba(238, 232, 220, 0.88);
  border-bottom: 1px solid rgba(30, 31, 29, 0.1);
  backdrop-filter: blur(18px);
}

.demo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.demo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--quiet-paper);
  background: var(--quiet-forest);
  border: 1px solid rgba(30, 31, 29, 0.16);
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
}

.demo-links {
  gap: clamp(20px, 4vw, 54px);
  color: rgba(30, 31, 29, 0.7);
  font-size: 13px;
  font-weight: 500;
}

.demo-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 78px;
}

.demo-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.demo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(238, 232, 220, 0.98) 0%, rgba(238, 232, 220, 0.9) 30%, rgba(238, 232, 220, 0.36) 56%, rgba(238, 232, 220, 0.05) 82%),
    linear-gradient(0deg, rgba(30, 31, 29, 0.14), transparent 42%);
}

.demo-hero-copy {
  position: relative;
  z-index: 2;
  width: min(52%, 720px);
  padding: clamp(82px, 10vw, 144px) 0 clamp(58px, 7vw, 94px) clamp(24px, 7vw, 92px);
}

.demo-hero-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 1;
}

.quiet-demo-page .lead {
  color: rgba(30, 31, 29, 0.68);
}

.quiet-demo-page .button {
  min-height: 46px;
  border-radius: 0;
  font-weight: 650;
}

.quiet-demo-page .button.primary {
  color: var(--quiet-paper);
  background: var(--quiet-forest);
}

.quiet-demo-page .button.secondary {
  color: var(--quiet-ink);
  background: rgba(238, 232, 220, 0.28);
  border-color: rgba(30, 31, 29, 0.24);
}

.quiet-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: rgba(245, 243, 239, 0.92);
  background: rgba(30, 31, 29, 0.14);
}

.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px;
  background: var(--quiet-forest);
  font-size: 15px;
  text-align: center;
}

.strip-item svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strip-item span {
  min-width: 0;
}

.prototype-page .strip-item:nth-child(2) {
  background: #26352d;
}

.service-page .strip-item:nth-child(2) {
  background: #384837;
}

.demo-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 82px);
  border-top: 1px solid rgba(30, 31, 29, 0.12);
}

.demo-split h2,
.choice-intro h2,
.image-feature h2,
.quiet-process h2 {
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.02;
}

.demo-service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(30, 31, 29, 0.12);
}

.demo-service-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(30, 31, 29, 0.12);
}

.demo-service-list span,
.quiet-steps span {
  color: var(--quiet-sage);
  font-weight: 800;
}

.demo-service-list h3,
.quiet-steps h3 {
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.demo-service-list p,
.quiet-steps p,
.image-feature p {
  color: rgba(30, 31, 29, 0.62);
  line-height: 1.58;
}

.choice-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(49, 66, 54, 0.08), transparent 46%),
    #e6dccb;
  border-top: 1px solid rgba(30, 31, 29, 0.12);
}

.choice-intro {
  max-width: 520px;
}

.choice-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: stretch;
}

.choice-list {
  display: grid;
  align-content: center;
  gap: 0;
}

.choice-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px 18px;
  width: 100%;
  padding: 24px 0;
  color: var(--quiet-ink);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(30, 31, 29, 0.16);
  cursor: pointer;
}

.choice-item:first-child {
  border-top: 1px solid rgba(30, 31, 29, 0.16);
}

.choice-item span {
  color: var(--quiet-sage);
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.choice-item h3 {
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
}

.choice-item p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(30, 31, 29, 0.62);
  font-size: 16px;
  line-height: 1.55;
}

.choice-item:hover,
.choice-item:focus-visible,
.choice-item.is-active {
  color: var(--quiet-forest);
}

.choice-item:focus-visible {
  outline: 2px solid rgba(49, 66, 54, 0.32);
  outline-offset: 6px;
}

.choice-item:hover span,
.choice-item:focus-visible span,
.choice-item.is-active span {
  color: var(--quiet-ink);
  transform: translateX(6px);
}

.choice-preview {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--quiet-forest);
  box-shadow: 0 26px 74px rgba(30, 31, 29, 0.18);
}

.choice-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 31, 29, 0.22));
  pointer-events: none;
}

.choice-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 260ms ease, transform 520ms ease;
}

.choice-preview img.is-active {
  opacity: 1;
  transform: scale(1);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background: #ded3c2;
}

.image-feature.reverse {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.image-feature.reverse img {
  order: 2;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border: 1px solid rgba(30, 31, 29, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(30, 31, 29, 0.12);
}

.quiet-process {
  border-top: 1px solid rgba(30, 31, 29, 0.12);
}

.quiet-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(30, 31, 29, 0.12);
  border-left: 1px solid rgba(30, 31, 29, 0.12);
}

.quiet-steps article {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid rgba(30, 31, 29, 0.12);
  border-bottom: 1px solid rgba(30, 31, 29, 0.12);
  background: rgba(222, 211, 194, 0.32);
}

.demo-request {
  color: var(--quiet-paper);
  background:
    linear-gradient(120deg, rgba(212, 176, 140, 0.15), transparent 38%),
    var(--quiet-forest);
}

.demo-request .button.primary {
  color: var(--quiet-paper);
  background: transparent;
  border-color: rgba(245, 243, 239, 0.42);
}

@media (max-width: 920px) {
  .demo-split,
  .choice-showcase,
  .image-feature,
  .image-feature.reverse {
    grid-template-columns: 1fr;
  }

  .choice-board {
    grid-template-columns: 1fr;
  }

  .choice-preview {
    min-height: 360px;
    order: -1;
  }

  .image-feature.reverse img {
    order: 0;
  }

  .quiet-steps {
    grid-template-columns: 1fr 1fr;
  }

  .demo-hero-copy {
    width: min(70%, 620px);
  }
}

@media (max-width: 640px) {
  .demo-nav {
    grid-template-columns: 1fr;
    position: absolute;
    gap: 10px;
    min-height: 0;
    padding: 14px 18px;
  }

  .demo-links {
    display: none;
  }

  .demo-hero {
    min-height: 720px;
  }

  .demo-hero img {
    object-position: 68% center;
  }

  .demo-hero::before {
    background:
      linear-gradient(180deg, rgba(238, 232, 220, 0.98) 0%, rgba(238, 232, 220, 0.9) 44%, rgba(238, 232, 220, 0.2) 78%),
      linear-gradient(0deg, rgba(30, 31, 29, 0.18), transparent 38%);
  }

  .demo-hero-copy {
    width: auto;
    padding: 112px 22px 40px;
  }

  .demo-hero-copy h1 {
    font-size: 44px;
  }

  .quiet-strip,
  .quiet-steps {
    grid-template-columns: 1fr;
  }

  .strip-item {
    justify-content: flex-start;
    min-height: 72px;
    text-align: left;
  }

  .demo-service-list article,
  .choice-item {
    grid-template-columns: 1fr;
  }

  .choice-item p {
    grid-column: 1;
  }

  .choice-preview {
    min-height: 280px;
  }
}
