:root {
  --ink: #29211d;
  --ink-soft: #6f625a;
  --cream: #f4efe8;
  --paper: #fffaf5;
  --sage: #c8b28f;
  --forest: #4a3327;
  --forest-dark: #2b1e18;
  --sand: #d8c5ad;
  --line: rgba(61, 43, 34, 0.14);
  --white: #fff;
  --shadow: 0 22px 70px rgba(56, 38, 28, 0.13);
  --shadow-small: 0 12px 34px rgba(56, 38, 28, 0.09);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.zh,
.en {
  display: inline;
}

html[data-lang="zh"] .en,
html[data-lang="en"] .zh {
  display: none !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--forest);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.8;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--cream);
}

.section-dark {
  color: var(--white);
  background: var(--forest-dark);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-header > div:first-child {
  max-width: 760px;
}

.section-header p {
  max-width: 520px;
}

.topbar {
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--forest-dark);
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(61, 43, 34, 0.08);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid var(--forest);
  border-radius: 50% 50% 44% 44%;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--forest);
}

.brand-mark::before {
  left: 12px;
}

.brand-mark::after {
  right: 12px;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1;
  letter-spacing: -0.025em;
}

.brand-sub {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(89, 67, 53, 0.24);
  border-radius: 999px;
  color: var(--coffee);
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 750;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.portal-link:hover {
  border-color: var(--coffee);
  background: var(--white);
  transform: translateY(-1px);
}

.lang-toggle {
  display: inline-flex;
  min-width: 72px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 0.77rem;
  font-weight: 750;
  cursor: pointer;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.mobile-menu-toggle span {
  position: relative;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-menu-toggle span::before {
  top: -6px;
}

.mobile-menu-toggle span::after {
  top: 6px;
}

.mobile-drawer {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 21px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--forest);
  background: transparent;
}

.btn-outline:hover {
  color: var(--white);
  background: var(--forest);
}

.btn-light {
  border-color: var(--white);
  color: var(--forest-dark);
  background: var(--white);
}

.btn-light:hover {
  color: var(--forest-dark);
  background: var(--cream);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.arrow {
  font-size: 1.15em;
  transition: transform 180ms ease;
}

.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 112px);
  padding: 76px 0 82px;
  background:
    radial-gradient(circle at 82% 13%, rgba(200, 178, 143, 0.46), transparent 29%),
    linear-gradient(135deg, #fbf8f1 0%, #f2ece0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -24vw;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(74, 51, 39, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 98px);
}

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

.hero h1 {
  max-width: 760px;
}

.hero .lead {
  max-width: 630px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 38px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-proof span::before {
  content: "✓";
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 0.67rem;
}

.window-scene {
  position: relative;
  min-height: 570px;
  border-radius: 48% 48% 28px 28px;
  background: linear-gradient(180deg, #e4e2d7 0 70%, #d2c0a5 70%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.window-scene::before {
  content: "";
  position: absolute;
  inset: 54px 72px 116px;
  border: 14px solid #faf8f2;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.84) 49% 52%, transparent 52%),
    linear-gradient(180deg, #cfdede 0%, #eef2eb 48%, #b8c5b2 49%, #c8d0c0 100%);
  box-shadow: inset 0 0 0 2px rgba(61, 43, 34, 0.08);
}

.shade {
  position: absolute;
  z-index: 3;
  top: 68px;
  right: 86px;
  left: 86px;
  height: 176px;
  border-bottom: 8px solid #b7aa91;
  background: repeating-linear-gradient(180deg, #ded4c2 0 17px, #cfc3ad 18px 20px);
  box-shadow: 0 8px 14px rgba(43, 54, 50, 0.1);
}

.drape {
  position: absolute;
  z-index: 4;
  top: 39px;
  bottom: 101px;
  width: 29%;
  background: repeating-linear-gradient(90deg, #f4eee5 0 19%, #ded4c9 23%, #f8f4ed 39%);
  filter: drop-shadow(0 8px 10px rgba(48, 50, 45, 0.12));
}

.drape-left {
  left: 37px;
  border-radius: 70% 8px 0 16px;
}

.drape-right {
  right: 37px;
  border-radius: 8px 70% 16px 0;
  transform: scaleX(-1);
}

.bench {
  position: absolute;
  z-index: 5;
  right: 17%;
  bottom: 57px;
  left: 17%;
  height: 82px;
  border-radius: 18px 18px 8px 8px;
  background: #8ca194;
  box-shadow: 0 14px 0 #6b7f74;
}

.bench::before,
.bench::after {
  content: "";
  position: absolute;
  bottom: -37px;
  width: 12px;
  height: 35px;
  background: #5c574f;
}

.bench::before {
  left: 20%;
}

.bench::after {
  right: 20%;
}

.scene-tag {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 750;
}

.scene-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
}

.tag-one {
  top: 23%;
  right: -26px;
}

.tag-two {
  bottom: 18%;
  left: -32px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: 16px;
  padding: 24px 34px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--cream);
  font-size: 1.15rem;
}

.trust-item strong {
  display: block;
  font-size: 0.96rem;
}

.trust-item small {
  display: block;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 0 0 rgba(56, 38, 28, 0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow-small);
  transform: translateY(-6px);
}

.product-visual {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(145deg, #e9e2d4, #cbd8d0);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 30px 48px 0;
  border: 9px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, #b9d2d2, #e9eee6 56%, #c3cdb7 57%);
  box-shadow: 0 6px 18px rgba(26, 49, 42, 0.09);
}

.visual-drapery::after {
  content: "";
  position: absolute;
  inset: 16px 26px 0;
  background: repeating-linear-gradient(90deg, #f7f1e8 0 10%, #d8cec0 14%, transparent 24% 76%, #d8cec0 86%, #f7f1e8 90%);
}

.visual-roller::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 57px;
  left: 57px;
  height: 108px;
  border-bottom: 6px solid #b9ad96;
  background: #eee7da;
}

.visual-zebra::after {
  content: "";
  position: absolute;
  top: 35px;
  right: 55px;
  left: 55px;
  height: 145px;
  background: repeating-linear-gradient(180deg, rgba(239, 234, 221, 0.95) 0 18px, rgba(255, 255, 255, 0.45) 19px 34px);
}

.visual-roman::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 54px;
  left: 54px;
  height: 135px;
  border-bottom: 8px solid #b5a890;
  background: repeating-linear-gradient(180deg, #ddd1bd 0 26px, #c6b79f 27px 31px);
  box-shadow: 0 14px 12px rgba(47, 53, 48, 0.1);
}

.visual-cellular::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 57px;
  left: 57px;
  height: 142px;
  background: repeating-linear-gradient(180deg, #ece4d7 0 8px, #c8bdab 9px 10px);
}

.visual-blinds::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 55px;
  left: 55px;
  height: 136px;
  background: repeating-linear-gradient(180deg, #f2eee4 0 13px, #a8a093 14px 16px);
}

.visual-shutters::after {
  content: "";
  position: absolute;
  top: 33px;
  right: 52px;
  left: 52px;
  height: 150px;
  border: 7px solid #f7f4ec;
  background: repeating-linear-gradient(180deg, #edeae2 0 10px, #bdb9ae 11px 13px);
  box-shadow: inset 76px 0 0 -74px #f7f4ec;
}

.visual-motorized::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 58px;
  left: 58px;
  height: 120px;
  border-top: 8px solid #756f65;
  border-bottom: 6px solid #b9ad96;
  background: #ddd9cf;
  box-shadow: 70px 100px 0 -58px var(--forest);
}

.product-card-copy {
  padding: 22px 22px 24px;
}

.product-card-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 800;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  padding: 48px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.solution-card.commercial {
  color: var(--ink);
  background: var(--sand);
}

.solution-card::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -98px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.solution-card.commercial::after {
  border-color: rgba(29, 39, 36, 0.16);
}

.solution-card .solution-number {
  display: block;
  margin-bottom: 90px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-card.commercial .solution-number {
  color: rgba(29, 39, 36, 0.63);
}

.solution-card h3 {
  max-width: 470px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
}

.solution-card p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.77);
}

.solution-card.commercial p {
  color: rgba(29, 39, 36, 0.7);
}

.solution-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.solution-list li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.solution-card.commercial .solution-list li {
  border-color: rgba(29, 39, 36, 0.23);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}

.process-step {
  position: relative;
  min-height: 280px;
  padding: 28px 28px 28px 0;
  border-top: 1px solid var(--line);
  counter-increment: step;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  transform: rotate(45deg);
}

.process-step::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 64px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 80px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.05);
}

.feature-index {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
}

.feature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border-radius: 30px;
  color: var(--white);
  background: var(--forest);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -70px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 50%;
}

.cta-band h2,
.cta-band p,
.cta-band .cta-actions {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 90% 20%, rgba(200, 178, 143, 0.45), transparent 28%),
    var(--cream);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 7vw, 6.1rem);
}

.page-hero .lead {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--forest);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.filter-button {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 0.79rem;
  font-weight: 750;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-detail-card.is-hidden {
  display: none;
}

.product-detail-card .product-visual {
  height: 245px;
}

.product-detail-body {
  padding: 26px;
}

.product-detail-body > p {
  min-height: 72px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.mini-list {
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.mini-list li {
  position: relative;
  margin-top: 7px;
  padding-left: 17px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.mini-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--forest);
  background: rgba(200, 178, 143, 0.16);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.comparison-table td {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.comparison-table td:first-child {
  color: var(--ink);
  font-weight: 750;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.audience-block {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.audience-block.dark {
  color: var(--white);
  background: var(--forest-dark);
}

.audience-block > p {
  color: var(--ink-soft);
}

.audience-block.dark > p,
.audience-block.dark .mini-list li {
  color: rgba(255, 255, 255, 0.7);
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.space-card {
  min-height: 230px;
  padding: 28px;
  border-radius: var(--radius-small);
  background: var(--cream);
}

.space-card .space-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--white);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 39px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding-bottom: 54px;
}

.timeline-index {
  z-index: 2;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
}

.timeline-copy {
  padding: 8px 0 0;
}

.timeline-copy p {
  color: var(--ink-soft);
}

.timeline-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.timeline-notes span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  max-width: 780px;
  padding: 0 0 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 54px;
}

.quote-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.form-section {
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: 0;
}

.form-section-title {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.fieldset-label {
  font-size: 0.79rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
  outline: 0;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(74, 51, 39, 0.1);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice label {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
}

.choice input:checked + label {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.privacy-note {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.quote-sidebar {
  position: sticky;
  top: 114px;
}

.sidebar-card {
  margin-bottom: 16px;
  padding: 28px;
  border-radius: var(--radius-small);
  background: var(--cream);
}

.sidebar-card.dark {
  color: var(--white);
  background: var(--forest-dark);
}

.sidebar-card p,
.sidebar-card li {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.sidebar-card.dark p,
.sidebar-card.dark li {
  color: rgba(255, 255, 255, 0.7);
}

.sidebar-card ul {
  margin: 15px 0 0;
  padding-left: 20px;
}

.form-result {
  display: none;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(74, 51, 39, 0.2);
  border-radius: 12px;
  background: rgba(200, 178, 143, 0.16);
}

.form-result.show {
  display: block;
}

.form-result pre {
  overflow: auto;
  max-height: 330px;
  padding: 16px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-family: inherit;
  font-size: 0.78rem;
  white-space: pre-wrap;
}

.copy-status {
  margin-left: 10px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 750;
}

.site-footer {
  padding: 72px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #211713;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 54px;
}

.footer-brand .brand-name,
.footer-brand .brand-sub {
  color: var(--white);
}

.footer-brand .brand-mark {
  border-color: var(--white);
}

.footer-brand .brand-mark::before,
.footer-brand .brand-mark::after {
  background: var(--white);
}

.footer-brand > p {
  max-width: 330px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.74rem;
}

.mobile-quote-bar {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-actions > .btn {
    display: none;
  }

  .nav-actions > .portal-link {
    display: none;
  }

  .mobile-drawer {
    position: fixed;
    z-index: 95;
    top: 111px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 34px 20px;
    background: var(--paper);
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .mobile-drawer {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-drawer nav {
    display: grid;
    gap: 2px;
  }

  .mobile-drawer nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
  }

  .mobile-drawer .btn {
    width: 100%;
    margin-top: 26px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 40px;
  }

  .window-scene {
    min-height: 500px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-step:nth-child(2)::after {
    display: none;
  }

  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 76px;
  }

  .hero-grid,
  .why-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .window-scene {
    width: min(100%, 560px);
    min-height: 570px;
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .solution-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .space-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 66px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-sub {
    display: none;
  }

  .mobile-drawer {
    top: 96px;
  }

  .section {
    padding: 68px 0;
  }

  .section-header {
    display: block;
    margin-bottom: 30px;
  }

  .section-header .btn,
  .section-header .text-link {
    margin-top: 12px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .hero {
    padding-top: 48px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .window-scene {
    min-height: 430px;
    border-radius: 120px 120px 22px 22px;
  }

  .window-scene::before {
    inset: 48px 44px 96px;
    border-width: 10px;
  }

  .shade {
    top: 58px;
    right: 54px;
    left: 54px;
    height: 134px;
  }

  .drape {
    top: 37px;
    bottom: 82px;
  }

  .drape-left {
    left: 18px;
  }

  .drape-right {
    right: 18px;
  }

  .bench {
    bottom: 48px;
    height: 62px;
  }

  .scene-tag {
    font-size: 0.68rem;
  }

  .tag-one {
    top: 20%;
    right: -4px;
  }

  .tag-two {
    bottom: 16%;
    left: -5px;
  }

  .product-grid,
  .product-detail-grid,
  .process-grid,
  .feature-list,
  .space-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 350px;
  }

  .solution-card {
    min-height: 510px;
    padding: 32px;
  }

  .solution-card .solution-number {
    margin-bottom: 65px;
  }

  .process-step {
    min-height: auto;
    padding: 24px 0 30px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step::before {
    margin-bottom: 30px;
  }

  .cta-band {
    padding: 46px 26px;
  }

  .page-hero {
    padding: 62px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .audience-block {
    padding: 32px 26px;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline-item {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .timeline-index {
    width: 52px;
    height: 52px;
  }

  .quote-form {
    padding: 26px 20px;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-quote-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    background: var(--forest-dark);
    font-weight: 800;
  }
}

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