:root {
  --paper: #f6f2ea;
  --ivory: #f8f5ef;
  --sand: #eee7da;
  --deep: #12352f;
  --green: #1e4a3f;
  --gray: #6f6a61;
  --gold: #b89b5e;
  --ink: #171717;
  --line: rgba(18, 53, 47, 0.14);
  --soft-line: rgba(184, 155, 94, 0.28);
  --shadow: 0 22px 60px rgba(23, 23, 23, 0.08);
  --font-sans: "Noto Sans SC", "PingFang SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", "Source Han Serif SC", serif;
  --font-en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 155, 94, 0.12), transparent 30%),
    linear-gradient(180deg, var(--ivory), var(--paper) 44%, var(--sand));
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18, 53, 47, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 53, 47, 0.018) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
  min-height: 72px;
  padding: 18px clamp(28px, 4vw, 56px);
  border-bottom: 1px solid rgba(18, 53, 47, 0.08);
  background: rgba(246, 242, 234, 0.86);
  backdrop-filter: blur(20px);
}

.brand-mark {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--deep);
  min-width: max-content;
}

.brand-logo-symbol {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup {
  display: grid;
  gap: 3px;
}

.brand-lockup strong {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.015em;
}

.brand-lockup small {
  color: rgba(62, 58, 52, 0.6);
  font-family: var(--font-en);
  font-size: 8px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 1.9vw, 30px);
  color: rgba(23, 23, 23, 0.7);
  font-size: 13px;
}

.desktop-nav a,
.header-action,
.button {
  white-space: nowrap;
}

.desktop-nav a,
.mobile-menu a {
  transition: color 220ms ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--deep);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: rgba(24, 34, 31, 0.72);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: rgba(18, 53, 47, 0.78);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid var(--deep);
  font-size: 14px;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.header-action,
.button.primary {
  background: var(--deep);
  color: var(--ivory);
}

.button.ghost {
  background: rgba(248, 245, 239, 0.58);
  color: var(--deep);
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--green);
  color: var(--ivory);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(248, 245, 239, 0.62);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--deep);
}

.mobile-menu {
  position: absolute;
  top: 76px;
  right: 18px;
  display: none;
  min-width: min(320px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 245, 239, 0.96);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: grid;
  gap: 14px;
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 150px) 0;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - 76px);
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) clamp(24px, 5vw, 72px);
  border-radius: 8px;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: flex;
  align-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(24px, 5vw, 72px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1100ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 26% 74%, rgba(246, 242, 234, 0.22), transparent 36%),
    linear-gradient(0deg, rgba(18, 53, 47, 0.08), transparent 42%);
  content: "";
}

.hero-copy {
  position: relative;
  isolation: isolate;
  z-index: 2;
  width: min(100%, 620px);
  max-width: 620px;
  min-width: 0;
  padding: clamp(22px, 2.6vw, 36px) clamp(24px, 3.2vw, 44px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy::before {
  position: absolute;
  inset: -42px -190px -42px -42px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 52%, rgba(248, 245, 239, 0.82) 0%, rgba(248, 245, 239, 0.54) 40%, rgba(248, 245, 239, 0.2) 62%, rgba(248, 245, 239, 0) 84%);
  content: "";
  pointer-events: none;
}

.hero-card,
.scene-content,
.climate-copy-panel,
.dewpoint-panel,
.climate-explanation,
.cinematic-panel .section-copy,
.module-card,
.brand-card,
.tool-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(18, 42, 35, 0.32) 0%, rgba(18, 42, 35, 0.2) 42%, rgba(18, 42, 35, 0.1) 100%);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(112%);
}

.hero-card {
  background:
    linear-gradient(135deg, rgba(18, 42, 35, 0.28) 0%, rgba(18, 42, 35, 0.17) 44%, rgba(18, 42, 35, 0.08) 100%);
  backdrop-filter: blur(10px) saturate(110%);
}

.hero-card::before {
  inset: -24px -90px -24px -24px;
  background:
    radial-gradient(ellipse at 24% 50%, rgba(248, 245, 239, 0.22), rgba(248, 245, 239, 0.06) 52%, rgba(248, 245, 239, 0) 78%);
}

.hero-card h1,
.hero-card h2,
.hero-card h3,
.scene-content h3,
.climate-copy-panel h3,
.dewpoint-panel h3,
.climate-explanation h3,
.cinematic-panel .section-copy h2,
.module-card h4,
.brand-card h4,
.tool-card h4 {
  color: rgba(255, 252, 242, 0.98);
}

.hero-card p,
.hero-card .hero-text,
.hero-card .hero-closing,
.scene-content p,
.climate-copy-panel p:not(.eyebrow),
.dewpoint-panel p,
.climate-explanation p,
.cinematic-panel .section-copy p,
.module-card p,
.brand-card p,
.tool-card p {
  color: rgba(255, 252, 242, 0.78);
}

.hero-card .hero-sensory,
.hero-card .hero-closing,
.hero-card .hero-kicker,
.scene-content .eyebrow,
.climate-copy-panel .eyebrow,
.climate-explanation .eyebrow,
.cinematic-panel .section-copy .eyebrow {
  color: rgba(226, 198, 132, 0.94);
}

.hero-card .button.ghost,
.tag-list span,
.tool-chip,
.map-labels span,
.scene-detail > summary,
.dimension-detail > summary,
.dewpoint-calculator summary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 252, 242, 0.92);
  backdrop-filter: blur(8px);
}

.hero-card:hover,
.scene-content:hover,
.climate-copy-panel:hover,
.dewpoint-panel:hover,
.climate-explanation:hover,
.cinematic-panel .section-copy:hover {
  background:
    linear-gradient(135deg, rgba(18, 42, 35, 0.38) 0%, rgba(18, 42, 35, 0.24) 44%, rgba(18, 42, 35, 0.13) 100%);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-kicker {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
p,
blockquote {
  margin-top: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2 {
  color: var(--deep);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: clamp(24px, 3vw, 34px);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
  text-wrap: balance;
}

.hero-title {
  max-width: 980px;
  margin-bottom: clamp(20px, 2.6vw, 30px);
  font-size: clamp(38px, 4.2vw, 52px);
  line-height: 1.13;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.mobile-break {
  display: none;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.14;
  text-wrap: balance;
}

h3 {
  color: var(--deep);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.24;
}

h4,
h5 {
  color: var(--deep);
  font-weight: 600;
}

p {
  color: #3f3a34;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.9;
  text-wrap: pretty;
}

.hero-subtitle {
  color: var(--green);
  font-family: var(--font-sans);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.5;
}

.hero-text,
.lead {
  max-width: 760px;
  color: #4e473f;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.82;
}

.hero-text {
  display: grid;
  max-width: 740px;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: clamp(15.5px, 1.08vw, 18px);
  line-height: 1.82;
}

.hero-text p {
  margin: 0;
  max-width: 780px;
  font-size: inherit;
  line-height: inherit;
}

.hero-sensory {
  color: var(--deep);
  font-family: var(--font-sans);
  font-weight: 600;
}

.hero-sensory span,
.hero-renew span {
  display: inline;
}

.hero-closing {
  margin: clamp(20px, 2.8vw, 34px) 0 0;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 600;
  line-height: 1.46;
}

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

.hero-dots {
  position: absolute;
  left: clamp(48px, 8vw, 112px);
  bottom: clamp(26px, 4vw, 48px);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition:
    width 260ms ease,
    background 260ms ease,
    border-color 260ms ease;
}

.hero-dot.is-active {
  width: 30px;
  background: rgba(248, 245, 239, 0.74);
  border-color: rgba(248, 245, 239, 0.86);
}

.hero-media,
.section-image,
.climate-map {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin: 0;
  border: 1px solid rgba(18, 53, 47, 0.12);
  border-radius: 8px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.hero-media img,
.section-image img,
.climate-map img {
  filter: saturate(0.98) contrast(1.01) brightness(1);
  transition:
    transform 1400ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 1400ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.hero-media img {
  filter: saturate(0.96) contrast(1.02) brightness(1);
}

.hero-media:hover img,
.section-image:hover img,
.climate-map:hover img {
  filter: saturate(1.04) contrast(1.04) brightness(1.025);
  transform: scale(1.035);
}

.hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(248, 245, 239, 0.36);
  border-radius: 999px;
  background: rgba(18, 53, 47, 0.6);
  color: var(--ivory);
  font-family: var(--font-en);
  font-size: 12px;
}

.two-column,
.climate-intro,
.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
}

.quiet-system {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1360px, calc(100% - 40px));
  min-height: clamp(560px, 48vw, 680px);
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) clamp(38px, 6vw, 82px);
  border: 1px solid rgba(18, 53, 47, 0.12);
  border-radius: 8px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.quiet-system::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 242, 234, 0.94) 0%, rgba(246, 242, 234, 0.82) 34%, rgba(246, 242, 234, 0.28) 58%, rgba(246, 242, 234, 0.02) 100%),
    linear-gradient(0deg, rgba(18, 53, 47, 0.18), transparent 40%);
  content: "";
  pointer-events: none;
}

.quiet-system .section-copy {
  position: relative;
  z-index: 3;
  width: min(520px, 42%);
  max-width: 520px;
  padding: 0;
}

.quiet-title {
  max-width: 540px;
  font-size: clamp(38px, 3.15vw, 56px);
  line-height: 1.14;
  text-wrap: initial;
}

.quiet-title span {
  display: block;
  white-space: nowrap;
}

.quiet-system .section-copy p:not(.eyebrow) {
  max-width: 470px;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.9;
}

.quiet-system .section-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--sand);
  transform: none;
}

.quiet-system .section-image::after {
  position: absolute;
  inset: 0;
  background: rgba(18, 53, 47, 0.04);
  content: "";
  pointer-events: none;
}

.quiet-system .section-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.quiet-system blockquote {
  max-width: 470px;
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.52;
}

.quiet-senses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 470px;
  margin: 28px 0 0;
}

.quiet-senses span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(184, 155, 94, 0.34);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(248, 245, 239, 0.66);
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 550;
}

.section-copy {
  max-width: 820px;
}

.section-copy blockquote,
.wide-quote,
.dewpoint-panel blockquote,
.card-quote {
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 1px solid var(--gold);
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.5;
}

.section-heading {
  max-width: 1040px;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.two-column h2,
.split-band h2 {
  font-size: clamp(32px, 3.6vw, 52px);
}

.dimension-grid,
.climate-card-grid,
.system-grid,
.delivery-grid,
.fit-grid,
.process-list {
  display: grid;
  gap: 18px;
}

.dimension-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.dimension-card,
.climate-card,
.fit-card,
.delivery-card,
.process-card,
.tool-card,
.brand-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 245, 239, 0.72);
  box-shadow: 0 16px 42px rgba(23, 23, 23, 0.045);
}

.dimension-card {
  display: grid;
  gap: clamp(22px, 2.8vw, 30px);
  min-height: 0;
  overflow: hidden;
  padding: clamp(28px, 3vw, 40px);
  background: rgba(248, 245, 239, 0.88);
  box-shadow: 0 20px 52px rgba(23, 23, 23, 0.06);
}

.dimension-media {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.dimension-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(0.98);
  transition:
    transform 1400ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 1400ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.dimension-card:hover .dimension-media img {
  filter: saturate(1) contrast(1.02) brightness(1.04);
  transform: scale(1.035);
}

.dimension-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dimension-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(18, 53, 47, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(184, 155, 94, 0.18), transparent 48%),
    rgba(248, 245, 239, 0.92);
  color: var(--deep);
}

.dimension-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dimension-card h3 {
  margin-bottom: 14px;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

.dimension-card .eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
}

.dimension-card blockquote {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.5;
}

.dimension-detail {
  display: grid;
  gap: 14px;
}

.dimension-detail > summary {
  width: fit-content;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(18, 53, 47, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--deep);
  background: rgba(248, 245, 239, 0.9);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.dimension-detail > summary::-webkit-details-marker {
  display: none;
}

.dimension-detail > summary:hover {
  border-color: rgba(184, 155, 94, 0.9);
  background: rgba(18, 53, 47, 0.62);
  transform: translateY(-1px);
}

.dimension-detail p {
  max-width: 540px;
  margin: 0;
  border-left: 1px solid rgba(184, 155, 94, 0.72);
  padding-left: 16px;
  color: rgba(248, 245, 239, 0.88);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
}

.climate {
  width: min(1320px, calc(100% - 40px));
}

.climate .section-heading {
  max-width: 860px;
  margin-bottom: clamp(28px, 4vw, 50px);
}

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

.climate-copy {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 245, 239, 0.64);
}

.climate-map {
  min-height: clamp(560px, 48vw, 720px);
}

.climate-map::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 53, 47, 0.42), rgba(18, 53, 47, 0.08) 48%, rgba(246, 242, 234, 0.08)),
    linear-gradient(0deg, rgba(18, 53, 47, 0.35), transparent 42%);
  content: "";
  pointer-events: none;
}

.climate-map-copy {
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  bottom: clamp(32px, 5vw, 72px);
  z-index: 2;
  max-width: 460px;
  margin: 0;
  color: var(--ivory);
}

.climate-map-copy .eyebrow {
  color: rgba(248, 245, 239, 0.72);
}

.climate-map-copy h3 {
  margin-bottom: 14px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.14;
}

.climate-map-copy p:not(.eyebrow) {
  max-width: 380px;
  margin: 0;
  color: rgba(248, 245, 239, 0.86);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.72;
}

.map-labels {
  display: none;
  position: absolute;
  z-index: 2;
  inset: auto 22px 22px 22px;
  flex-wrap: wrap;
  gap: 8px;
}

.map-labels span,
.tag-list span,
.tool-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(184, 155, 94, 0.32);
  border-radius: 999px;
  background: rgba(248, 245, 239, 0.74);
  color: var(--deep);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.map-labels span {
  min-height: 28px;
  padding: 0 10px;
}

.climate-hotspots {
  position: absolute;
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(32px, 5vw, 72px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px;
  pointer-events: none;
}

.climate-hotspot {
  position: static;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(184, 155, 94, 0.5);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(248, 245, 239, 0.78);
  box-shadow: 0 12px 32px rgba(23, 23, 23, 0.08);
  color: var(--deep);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 650;
  pointer-events: auto;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.climate-hotspot::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.climate-hotspot:hover,
.climate-hotspot.is-active {
  border-color: var(--deep);
  background: var(--deep);
  color: var(--ivory);
  transform: translateY(-2px);
}

.climate-detail-panel {
  display: none;
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  left: clamp(24px, 4vw, 56px);
  z-index: 4;
  width: min(430px, calc(100% - 48px));
  min-height: 0;
  align-items: center;
  border: 1px solid rgba(248, 245, 239, 0.24);
  border-radius: 8px;
  padding: 22px 24px;
  background: rgba(11, 38, 33, 0.68);
  box-shadow: 0 22px 70px rgba(10, 36, 31, 0.22);
  backdrop-filter: blur(16px);
}

.climate-detail-panel > p {
  margin: 0;
  color: rgba(248, 245, 239, 0.78);
  font-family: var(--font-sans);
  font-size: 14px;
}

.climate-detail-panel.is-open {
  display: grid;
  align-items: start;
  gap: 10px;
  opacity: 1;
  transform: none;
}

.climate-detail-panel h3 {
  margin: 0 0 6px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.35;
}

.climate-detail-panel strong {
  display: block;
  margin-bottom: 0;
  color: rgba(226, 198, 132, 0.92);
  font-size: 14px;
}

.climate-detail-panel.is-open > p:not(.eyebrow) {
  max-width: 380px;
  color: rgba(248, 245, 239, 0.8);
  font-size: 15px;
  line-height: 1.72;
}

.climate-detail-panel .card-quote {
  max-width: 380px;
  margin-top: 8px;
  color: var(--ivory);
  border-left-color: rgba(184, 155, 94, 0.82);
  font-family: var(--font-sans);
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 650;
  line-height: 1.62;
}

.climate-detail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(248, 245, 239, 0.24);
  border-radius: 50%;
  background: rgba(248, 245, 239, 0.1);
  color: var(--ivory);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.climate-card-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  margin-top: 34px;
}

.climate-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: clamp(24px, 2.6vw, 34px);
}

.climate-card:nth-child(1),
.climate-card:nth-child(4) {
  grid-column: span 5;
}

.climate-card:nth-child(2),
.climate-card:nth-child(3) {
  grid-column: span 7;
}

.climate-card h3 {
  margin-bottom: 24px;
  font-family: var(--font-sans);
  font-size: clamp(19px, 1.35vw, 23px);
  font-weight: 650;
  line-height: 1.45;
}

.climate-card p {
  max-width: 620px;
  color: #5a534a;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.85;
}

.climate-card strong {
  display: block;
  margin: 0 0 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
}

.climate-card .card-quote {
  align-self: end;
  margin-top: 28px;
  padding-left: 16px;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 520;
  line-height: 1.62;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.tag-list span {
  min-height: 28px;
  padding: 0 10px;
  background: rgba(238, 231, 218, 0.58);
}

.dewpoint-drawer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

.dewpoint-drawer > summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(184, 155, 94, 0.42);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(248, 245, 239, 0.7);
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 38px rgba(18, 53, 47, 0.06);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.dewpoint-drawer > summary::-webkit-details-marker {
  display: none;
}

.dewpoint-drawer > summary::before {
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.dewpoint-drawer > summary:hover {
  border-color: var(--gold);
  background: rgba(184, 155, 94, 0.14);
  transform: translateY(-1px);
}

.dewpoint-drawer[open] > summary {
  margin-bottom: 16px;
  background: rgba(18, 53, 47, 0.08);
}

.dewpoint-panel {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: clamp(24px, 4vw, 54px);
  margin-top: 0;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 245, 239, 0.96), rgba(238, 231, 218, 0.72)),
    var(--ivory);
  box-shadow: 0 30px 90px rgba(18, 53, 47, 0.08);
}

.dewpoint-drawer[open] .dewpoint-panel {
  width: min(100%, 1120px);
}

.dewpoint-panel h3 {
  font-size: clamp(26px, 2.2vw, 36px);
}

.dewpoint-panel p:not(.eyebrow) {
  max-width: 600px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
}

.weather-tool {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(18, 53, 47, 0.1);
  border-radius: 8px;
  background: rgba(246, 242, 234, 0.74);
}

.weather-status,
.dew-result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.weather-status span,
.dew-result span,
.dew-result small {
  color: var(--gray);
  font-size: 13px;
}

.weather-status strong,
.dew-result strong {
  color: var(--deep);
  font-family: var(--font-en);
  font-size: 28px;
}

.tool-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tool-inputs label,
.access-card label {
  display: grid;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
}

.tool-inputs input,
.access-card input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(248, 245, 239, 0.86);
  color: var(--ink);
}

.access-card textarea,
.access-card input[type="file"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 245, 239, 0.86);
  color: var(--ink);
}

.access-card textarea {
  min-height: 128px;
  padding: 12px;
  resize: vertical;
}

.access-card input[type="file"] {
  min-height: 44px;
  padding: 10px 12px;
}

.dewpoint-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.dew-step {
  min-height: 112px;
  padding: 13px 12px;
  border: 1px solid rgba(18, 53, 47, 0.1);
  border-radius: 8px;
  background: var(--ivory);
}

.dew-step.is-active {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(184, 155, 94, 0.24);
}

.dew-step b {
  display: block;
  color: var(--deep);
  font-size: 12px;
  line-height: 1.45;
}

.dew-step span {
  display: block;
  margin-top: 7px;
  color: #5f574e;
  font-size: 11.5px;
  line-height: 1.62;
}

.system-grid {
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 68px);
}

.system-scene-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: clamp(520px, 52vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(248, 245, 239, 0.14);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: 0 30px 90px rgba(18, 53, 47, 0.16);
}

.system-scene-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 82%, rgba(10, 36, 31, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(10, 36, 31, 0.14) 100%);
  content: "";
  pointer-events: none;
}

.system-scene-card::before {
  z-index: -1;
}

.system-scene-card:nth-child(even) .scene-media {
  order: 0;
}

.scene-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  margin: 0;
}

.scene-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 52vw, 680px);
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02) brightness(1);
  transform: scale(1.01);
  transition:
    transform 1500ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 1500ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.system-scene-card:hover .scene-media img {
  filter: saturate(1.08) contrast(1.04) brightness(1.035);
  transform: scale(1.04);
}

.mep-metric-group {
  position: absolute;
  top: clamp(18px, 2.8vw, 34px);
  right: clamp(18px, 2.8vw, 34px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(138px, 1fr));
  gap: 10px;
  width: min(360px, 38%);
  pointer-events: none;
}

.mep-metric-badge {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(248, 245, 239, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(248, 245, 239, 0.18), rgba(248, 245, 239, 0.08)),
    rgba(18, 53, 47, 0.18);
  box-shadow: 0 16px 42px rgba(8, 28, 24, 0.12);
  backdrop-filter: blur(10px) saturate(1.08);
  color: var(--ivory);
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(248, 245, 239, 0.22);
  border-radius: 999px;
  background: rgba(18, 53, 47, 0.16);
}

.metric-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.metric-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.metric-label {
  overflow: hidden;
  color: rgba(248, 245, 239, 0.68);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-value {
  overflow: hidden;
  color: rgba(248, 245, 239, 0.94);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scene-content {
  display: grid;
  align-content: center;
  width: min(620px, 100%);
  gap: clamp(14px, 1.8vw, 22px);
  margin: clamp(24px, 3.8vw, 56px);
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(248, 245, 239, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(12, 45, 38, 0.78), rgba(12, 45, 38, 0.54)),
    rgba(18, 53, 47, 0.58);
  box-shadow: 0 28px 70px rgba(8, 28, 24, 0.24);
  backdrop-filter: blur(18px) saturate(1.08);
  color: var(--ivory);
}

.scene-content h3 {
  margin-bottom: 0;
  color: var(--ivory);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.18;
}

.scene-feeling {
  max-width: 520px;
  color: rgba(248, 245, 239, 0.84);
  font-family: var(--font-sans);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.78;
}

.scene-content .eyebrow {
  color: rgba(226, 198, 132, 0.9);
}

.scene-content .card-quote {
  color: var(--ivory);
  border-left-color: rgba(184, 155, 94, 0.78);
  font-family: var(--font-sans);
  font-weight: 650;
}

.scene-detail {
  display: grid;
  gap: 18px;
  margin-top: 4px;
}

.scene-detail > summary {
  width: fit-content;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(248, 245, 239, 0.38);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--ivory);
  background: rgba(18, 53, 47, 0.42);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.scene-detail > summary::-webkit-details-marker {
  display: none;
}

.scene-detail > summary:hover {
  background: rgba(248, 245, 239, 0.1);
  border-color: rgba(248, 245, 239, 0.56);
  transform: translateY(-1px);
}

.scene-detail[open] > summary {
  margin-bottom: 14px;
  background: rgba(248, 245, 239, 0.1);
}

.scene-detail-body {
  display: grid;
  gap: 18px;
  padding-top: 4px;
}

.scene-detail-body > p {
  margin: 0;
  color: rgba(248, 245, 239, 0.82);
  font-size: 15px;
  line-height: 1.85;
}

.module-grid,
.brand-grid,
.tool-grid {
  display: grid;
  gap: 12px;
}

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

.module-card,
.brand-card,
.tool-card {
  padding: 18px;
}

.system-scene-card .module-card,
.system-scene-card .brand-card,
.system-scene-card .tool-card {
  border-color: rgba(248, 245, 239, 0.2);
  background: rgba(18, 53, 47, 0.38);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.module-card h4,
.brand-card h4,
.tool-card h4 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.35;
  white-space: normal;
}

.system-scene-card .module-card h4,
.system-scene-card .brand-card h4,
.system-scene-card .tool-card h4 {
  color: var(--ivory);
}

.module-card p,
.brand-card p,
.tool-card p {
  font-size: 14px;
  line-height: 1.72;
}

.system-scene-card .module-card p,
.system-scene-card .brand-card p,
.system-scene-card .tool-card p,
.system-scene-card .brand-card summary {
  color: rgba(248, 245, 239, 0.78);
}

.system-scene-card .tag-list span {
  border-color: rgba(248, 245, 239, 0.34);
  color: var(--ivory);
  background: rgba(18, 53, 47, 0.4);
  backdrop-filter: blur(10px);
}

.system-scene-card .brand-card summary {
  margin-top: 12px;
  color: rgba(226, 198, 132, 0.92);
  font-family: var(--font-sans);
  font-weight: 700;
}

.brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-card details {
  margin-top: 12px;
}

.brand-card summary {
  display: block;
  padding: 0;
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  list-style: none;
}

.brand-card summary::-webkit-details-marker {
  display: none;
}

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

.tool-card {
  background: rgba(238, 231, 218, 0.46);
}

.fit {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4.5vw, 68px);
  align-items: center;
}

.fit .section-copy {
  max-width: 620px;
}

.fit h2 {
  max-width: 620px;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.16;
}

.fit .section-copy p:not(.eyebrow) {
  max-width: 560px;
}

.fit blockquote {
  max-width: 620px;
  font-size: clamp(23px, 1.9vw, 32px);
}

.fit-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 42vw, 620px);
  margin: 0;
  border: 1px solid rgba(18, 53, 47, 0.12);
  border-radius: 8px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.fit-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.01) brightness(1);
  transform: scale(1.01);
  transition:
    transform 1400ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 1400ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.fit-media:hover img {
  filter: saturate(1.04) contrast(1.04) brightness(1.025);
  transform: scale(1.035);
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.visual-story.media-first {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.visual-story-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 42vw, 640px);
  margin: 0;
  border: 1px solid rgba(18, 53, 47, 0.12);
  border-radius: 8px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.visual-story-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.01) brightness(1);
  transform: scale(1.01);
  transition:
    transform 1400ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 1400ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.visual-story-media:hover img {
  filter: saturate(1.04) contrast(1.04) brightness(1.025);
  transform: scale(1.035);
}

.visual-story .section-copy {
  max-width: 640px;
}

.visual-story .section-copy p:not(.eyebrow) {
  max-width: 580px;
}

.visual-story blockquote {
  max-width: 620px;
  font-size: clamp(22px, 1.8vw, 31px);
}

.cinematic-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
  align-items: end;
  min-height: clamp(620px, 58vw, 840px);
  overflow: hidden;
  border: 1px solid rgba(248, 245, 239, 0.14);
  border-radius: 8px;
  padding: clamp(44px, 6vw, 92px);
  background: var(--deep);
  box-shadow: 0 30px 90px rgba(18, 53, 47, 0.16);
}

.cinematic-panel.media-first {
  grid-template-columns: minmax(0, 1fr) minmax(0, 680px);
}

.cinematic-panel::before,
.cinematic-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.cinematic-panel::before {
  z-index: -1;
  background:
    radial-gradient(circle at 25% 72%, rgba(10, 36, 31, 0.18), transparent 38%),
    linear-gradient(180deg, transparent 0%, rgba(10, 36, 31, 0.12) 100%);
}

.cinematic-panel.media-first::before {
  background:
    radial-gradient(circle at 76% 72%, rgba(10, 36, 31, 0.18), transparent 38%),
    linear-gradient(180deg, transparent 0%, rgba(10, 36, 31, 0.12) 100%);
}

.cinematic-panel::after {
  z-index: -1;
  background:
    radial-gradient(circle at 22% 18%, rgba(184, 155, 94, 0.08), transparent 34%);
  mix-blend-mode: soft-light;
}

.cinematic-panel .section-image,
.cinematic-panel .fit-media,
.cinematic-panel .visual-story-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

.cinematic-panel .section-image img,
.cinematic-panel .fit-media img,
.cinematic-panel .visual-story-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02) brightness(1);
  transform: scale(1.01);
  transition:
    transform 1500ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 1500ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.cinematic-panel:hover .section-image img,
.cinematic-panel:hover .fit-media img,
.cinematic-panel:hover .visual-story-media img {
  filter: saturate(1.08) contrast(1.04) brightness(1.035);
  transform: scale(1.04);
}

.cinematic-panel .section-copy {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 680px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(248, 245, 239, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(12, 45, 38, 0.78), rgba(12, 45, 38, 0.52)),
    rgba(18, 53, 47, 0.56);
  box-shadow: 0 28px 70px rgba(8, 28, 24, 0.22);
  backdrop-filter: blur(18px) saturate(1.08);
  color: rgba(248, 245, 239, 0.9);
}

.cinematic-panel .section-copy::before {
  top: -28px;
  left: 0;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 155, 94, 0.86), transparent);
}

.cinematic-panel.media-first .section-copy {
  grid-column: 2;
}

.cinematic-panel .eyebrow {
  color: rgba(226, 198, 132, 0.86);
}

.cinematic-panel h2,
.cinematic-panel h3,
.cinematic-panel blockquote {
  color: var(--ivory);
}

.cinematic-panel .section-copy p:not(.eyebrow),
.cinematic-panel .quiet-lead,
.cinematic-panel .lead {
  max-width: 620px;
  color: rgba(248, 245, 239, 0.84);
  font-family: var(--font-sans);
}

.cinematic-panel blockquote {
  border-left-color: rgba(184, 155, 94, 0.78);
  font-family: var(--font-sans);
  font-weight: 650;
}

.cinematic-panel .quiet-senses span,
.cinematic-panel .tag-list span,
.cinematic-panel .button.ghost,
.cinematic-panel .access-detail summary,
.cinematic-detail summary {
  border-color: rgba(248, 245, 239, 0.38);
  background: rgba(18, 53, 47, 0.42);
  color: var(--ivory);
  backdrop-filter: blur(12px);
}

.cinematic-panel .button.primary {
  border-color: rgba(248, 245, 239, 0.24);
  background: rgba(248, 245, 239, 0.9);
  color: var(--deep);
}

.cinematic-panel .fit-grid,
.cinematic-panel .delivery-grid,
.cinematic-panel .process-list {
  position: relative;
  z-index: 2;
  align-self: end;
  display: flex;
  max-width: min(760px, 100%);
  flex-wrap: wrap;
  gap: 10px;
}

.cinematic-panel .fit-card,
.cinematic-panel .delivery-card,
.cinematic-panel .process-card,
.cinematic-panel .access-card {
  border-color: rgba(248, 245, 239, 0.22);
  background: rgba(18, 53, 47, 0.42);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.cinematic-panel .fit-card,
.cinematic-panel .delivery-card,
.cinematic-panel .process-card {
  width: auto;
  min-width: 0;
  border-radius: 999px;
}

.cinematic-panel .fit-card[open],
.cinematic-panel .delivery-card[open],
.cinematic-panel .process-card[open] {
  flex-basis: min(520px, 100%);
  border-radius: 8px;
}

.cinematic-panel .fit-card summary,
.cinematic-panel .delivery-card summary,
.cinematic-panel .process-card summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.cinematic-panel .fit-card h3,
.cinematic-panel .process-card h3 {
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.cinematic-panel .fit-card span,
.cinematic-panel .process-card span {
  font-size: 12px;
  line-height: 1;
}

.cinematic-panel .delivery-card summary {
  color: var(--ivory);
  font-size: 14px;
  line-height: 1;
}

.cinematic-panel .fit-card summary::after,
.cinematic-panel .delivery-card summary::after,
.cinematic-panel .process-card summary::after {
  display: none;
}

.cinematic-panel .fit-card span,
.cinematic-panel .process-card span,
.cinematic-panel .delivery-card summary {
  color: rgba(226, 198, 132, 0.9);
}

.cinematic-panel .fit-card p,
.cinematic-panel .delivery-card p,
.cinematic-panel .process-card p,
.cinematic-panel .access-card p,
.cinematic-detail p {
  color: rgba(248, 245, 239, 0.82);
}

.cinematic-panel .fit-card summary:hover,
.cinematic-panel .delivery-card summary:hover,
.cinematic-panel .process-card summary:hover {
  background: rgba(248, 245, 239, 0.08);
}

.cinematic-panel .fit-card summary::after,
.cinematic-panel .delivery-card summary::after,
.cinematic-panel .process-card summary::after {
  border-color: rgba(248, 245, 239, 0.34);
  color: var(--ivory);
}

.cinematic-detail {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.cinematic-detail summary {
  width: fit-content;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(248, 245, 239, 0.38);
  border-radius: 999px;
  padding: 11px 17px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
}

.cinematic-detail summary::-webkit-details-marker {
  display: none;
}

.cinematic-detail p {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.82;
}

.cinematic-panel .access-card label {
  color: rgba(248, 245, 239, 0.78);
}

.cinematic-panel .access-card input {
  border-color: rgba(248, 245, 239, 0.24);
  background: rgba(248, 245, 239, 0.9);
}

.quiet-system.cinematic-panel::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 36, 31, 0.88) 0%, rgba(10, 36, 31, 0.56) 38%, rgba(10, 36, 31, 0.16) 72%, rgba(10, 36, 31, 0.34) 100%),
    linear-gradient(0deg, rgba(8, 28, 24, 0.68), transparent 48%);
}

.quiet-system.cinematic-panel .section-image::after {
  display: none;
}

.constraints {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.constraints h2 {
  font-size: clamp(36px, 3vw, 50px);
  max-width: 760px;
  white-space: normal;
}

.fit-grid {
  grid-column: 1 / -1;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fit-card span,
.process-card span {
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
}

.fit-card,
.delivery-card,
.process-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.fit-card summary,
.delivery-card summary,
.process-card summary {
  display: grid;
  gap: 10px;
  align-content: center;
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 2.1vw, 28px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.fit-card summary {
  min-height: 118px;
}

.fit-card summary::-webkit-details-marker,
.delivery-card summary::-webkit-details-marker,
.process-card summary::-webkit-details-marker {
  display: none;
}

.fit-card summary:hover,
.delivery-card summary:hover,
.process-card summary:hover {
  background: rgba(184, 155, 94, 0.1);
}

.fit-card summary::after,
.delivery-card summary::after,
.process-card summary::after {
  justify-self: start;
  border: 1px solid rgba(184, 155, 94, 0.38);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--deep);
  content: "查看判断";
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
}

.fit-card[open] summary::after,
.delivery-card[open] summary::after,
.process-card[open] summary::after {
  content: "收起";
}

.fit-card h3,
.process-card h3 {
  margin: 0;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.2;
  white-space: normal;
}

.fit-card p,
.delivery-card p,
.process-card p {
  max-width: 96%;
  margin: 0;
  padding: 0 clamp(20px, 2.1vw, 28px) clamp(22px, 2.1vw, 28px);
  color: #5a534a;
  font-size: 15px;
  line-height: 1.82;
}

.delivery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(20px, 3vw, 34px);
}

.delivery-card summary {
  min-height: 80px;
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.delivery-card summary::after,
.process-card summary::after {
  content: "查看";
}

.process-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.visual-story .process-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(20px, 3vw, 34px);
}

.process-card summary {
  min-height: 112px;
}

.process-card h3 {
  font-size: clamp(19px, 1.5vw, 24px);
}

.access-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 245, 239, 0.78);
  box-shadow: var(--shadow);
}

.access-card--contact {
  max-width: 100%;
}

.access-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.access-card small {
  color: var(--gray);
  font-size: 12px;
  line-height: 1.6;
}

.access-card-head {
  display: grid;
  gap: 8px;
}

.access-card-head strong {
  color: var(--deep);
  font-size: 18px;
  line-height: 1.45;
}

.access-card-head p {
  color: rgba(23, 23, 23, 0.7);
}

.access-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.access-card-span {
  grid-column: 1 / -1;
}

.access-card-actions {
  display: grid;
  gap: 12px;
  align-items: start;
}


.access-submit-state {
  color: rgba(23, 23, 23, 0.72);
}

.access-submit-state.is-error {
  color: #9a3f2b;
}

.access-submit-state.is-success {
  color: #1b5c4d;
}

.access-card .button[disabled] {
  opacity: 0.64;
  cursor: wait;
}

.access-detail summary {
  width: fit-content;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(184, 155, 94, 0.42);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
}

.access-detail summary::-webkit-details-marker {
  display: none;
}

.access-detail p {
  margin-top: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr);
  gap: clamp(34px, 4vw, 56px);
  align-items: start;
  padding: clamp(56px, 7vw, 76px) clamp(28px, 5vw, 72px);
  background: var(--deep);
  color: var(--ivory);
}

.site-footer strong {
  display: block;
  margin-bottom: 0;
  font-family: var(--font-en);
  font-size: 18px;
}

.footer-brand-lockup {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo-symbol {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand-lockup span {
  display: grid;
  gap: 4px;
}

.footer-brand-lockup strong {
  margin: 0;
  line-height: 1;
}

.footer-brand-lockup small {
  color: rgba(248, 245, 239, 0.62);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.site-footer .footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.site-footer .footer-title {
  margin: 0 0 6px;
  color: rgba(248, 245, 239, 0.5);
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-closing {
  max-width: 20em;
  margin: 0;
  color: rgba(248, 245, 239, 0.82);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.site-footer a {
  display: block;
  margin: 0;
  color: rgba(248, 245, 239, 0.76);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.85;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: rgba(248, 245, 239, 0.96);
  transform: translateX(2px);
}

@media (min-width: 981px) {
  .site-footer {
    grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.8fr) minmax(120px, 0.8fr) !important;
    gap: clamp(34px, 4vw, 56px) !important;
  }

  .site-footer > .footer-brand,
  .site-footer > .footer-nav,
  .site-footer > .footer-contact {
    grid-column: auto !important;
    width: auto !important;
  }

  .site-footer > .footer-brand {
    max-width: 440px;
  }

  .site-footer > .footer-nav,
  .site-footer > .footer-contact {
    justify-self: start;
  }
}

.route-page {
  min-height: 100vh;
}

.route-page main {
  display: block;
}

.route-hero {
  width: min(1420px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 4vw, 54px) 0 clamp(72px, 8vw, 110px);
}

.route-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(26px, 3vw, 38px);
}

.route-topbar .brand-mark {
  color: var(--deep);
}

.route-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(18, 53, 47, 0.14);
  border-radius: 999px;
  background: rgba(248, 245, 239, 0.86);
  color: var(--deep);
  font-size: 14px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.route-back:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(255, 252, 242, 0.98);
}

.route-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}

.route-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  min-height: clamp(420px, 52vw, 760px);
  box-shadow: 0 30px 90px rgba(18, 53, 47, 0.12);
}

.route-media::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(18, 53, 47, 0.28), transparent);
  content: "";
  pointer-events: none;
}

.route-media img {
  transform: scale(1.01);
}

.route-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(18, 53, 47, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 155, 94, 0.1), transparent 36%),
    linear-gradient(135deg, rgba(248, 245, 239, 0.98), rgba(238, 231, 218, 0.7));
  box-shadow: 0 26px 80px rgba(18, 53, 47, 0.08);
}

.route-copy h1 {
  margin: 0;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 500;
  line-height: 1.08;
}

.route-copy .hero-subtitle {
  color: #514941;
}

.route-lead {
  margin: 0;
  color: #514941;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.85;
}

.route-quote {
  margin: 8px 0 2px;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.5;
}

.route-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.route-meta-card {
  padding: 16px 18px;
  border: 1px solid rgba(18, 53, 47, 0.1);
  border-radius: 18px;
  background: rgba(255, 252, 242, 0.76);
}

.route-meta-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(184, 155, 94, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.route-meta-card strong {
  display: block;
  color: var(--deep);
  font-size: 18px;
  line-height: 1.35;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.route-actions .button,
.route-actions .route-back {
  min-height: 46px;
}

.air-system-actions {
  align-items: flex-start;
  margin-top: 18px;
}

.air-system-actions-note {
  display: block;
  max-width: 42rem;
  color: rgba(31, 72, 67, 0.66);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
}

.route-inline-form {
  margin-top: 8px;
}

.route-inline-form .access-card {
  gap: 14px;
  margin-top: 0;
}

.route-inline-form .access-card p {
  padding: 0;
}

.five-constant-page {
  background:
    radial-gradient(circle at top left, rgba(196, 170, 108, 0.12), transparent 24%),
    linear-gradient(180deg, #fcf8f1 0%, #f6f1e7 22%, #f4efe8 100%);
}

.five-section {
  padding: 0 24px 28px;
}

.five-section-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(18, 53, 47, 0.09);
  border-radius: 30px;
  background: rgba(255, 252, 246, 0.76);
  box-shadow: 0 24px 64px rgba(18, 53, 47, 0.06);
  backdrop-filter: blur(14px);
}

.five-section.accent .five-section-shell {
  background:
    radial-gradient(circle at 0% 0%, rgba(184, 155, 94, 0.1), transparent 30%),
    rgba(255, 251, 244, 0.92);
}

.five-section.deep .five-section-shell {
  background:
    linear-gradient(135deg, rgba(21, 51, 49, 0.96), rgba(24, 67, 62, 0.94)),
    rgba(21, 51, 49, 0.96);
  border-color: rgba(184, 155, 94, 0.18);
  box-shadow: 0 34px 86px rgba(18, 53, 47, 0.16);
}

.five-section.deep .five-section-head h2,
.five-section.deep .five-section-head p,
.five-section.deep .five-card h3,
.five-section.deep .five-card p,
.five-section.deep .five-card-tag,
.five-section.deep .five-split-callout strong,
.five-section.deep .five-split-callout span {
  color: rgba(248, 245, 239, 0.95);
}

.five-section.deep .five-card {
  border-color: rgba(196, 170, 108, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.five-section.final {
  padding-bottom: clamp(64px, 8vw, 100px);
}

.five-stage {
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
}

.five-stage-copy {
  gap: 20px;
}

.five-stage-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.five-intro-shell {
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(245, 239, 229, 0.88)),
    rgba(255, 252, 246, 0.88);
}

.five-proof-shell {
  background:
    linear-gradient(135deg, rgba(19, 45, 42, 0.98), rgba(25, 59, 55, 0.95)),
    rgba(19, 45, 42, 0.98);
  border-color: rgba(184, 155, 94, 0.16);
}

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

.five-proof-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(196, 170, 108, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.five-proof-card span {
  color: rgba(233, 223, 202, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.five-proof-card strong {
  color: rgba(249, 246, 240, 0.96);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.36;
}

.five-proof-card p {
  margin: 0;
  color: rgba(233, 223, 202, 0.84);
  font-size: 14px;
  line-height: 1.9;
}

.five-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.five-editorial-grid.narrow {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
}

.five-editorial-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(18px, 2vw, 28px) 0;
}

.five-editorial-copy h2 {
  margin: 0;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 500;
  line-height: 1.1;
}

.five-editorial-copy p {
  margin: 0;
  color: #514941;
  font-size: 16px;
  line-height: 1.95;
}

.five-editorial-stack {
  display: grid;
  gap: 14px;
}

.five-editorial-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(18, 53, 47, 0.09);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(184, 155, 94, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 52px rgba(18, 53, 47, 0.08);
}

.five-editorial-card span {
  color: rgba(138, 111, 55, 0.96);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.five-editorial-card strong {
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.42;
}

.five-section-head {
  max-width: 860px;
  margin-bottom: 26px;
}

.five-section-head h2 {
  margin: 0;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 500;
  line-height: 1.14;
}

.five-section-head p {
  margin: 14px 0 0;
  color: #514941;
  font-size: 16px;
  line-height: 1.9;
}

.five-band-grid,
.five-grid {
  display: grid;
  gap: 16px;
}

.five-band-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.five-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.five-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.five-grid.five-outcomes {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.five-band-card,
.five-card,
.five-step {
  border: 1px solid rgba(18, 53, 47, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  padding: 22px 22px 24px;
}

.five-band-card strong,
.five-card h3,
.five-step h3 {
  color: var(--deep);
  font-family: var(--font-serif);
}

.five-band-card strong {
  display: block;
  font-size: 22px;
  line-height: 1.35;
}

.five-band-card p,
.five-card p,
.five-step p {
  margin: 10px 0 0;
  color: #5f564d;
  font-size: 15px;
  line-height: 1.85;
}

.five-card h3,
.five-step h3 {
  margin: 10px 0 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.28;
}

.five-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(184, 155, 94, 0.12);
  color: rgba(138, 111, 55, 0.96);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.five-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 3px solid rgba(184, 155, 94, 0.7);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 251, 244, 0.8);
}

.five-note strong {
  color: var(--deep);
  font-size: 15px;
  letter-spacing: 0.03em;
}

.five-note p {
  margin: 0;
  color: #514941;
  line-height: 1.85;
}

.five-card.climate {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 241, 231, 0.82));
}

.five-split-callout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.five-split-callout > div {
  padding: 24px;
  border: 1px solid rgba(196, 170, 108, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.five-split-callout span,
.five-split-callout strong {
  display: block;
}

.five-split-callout span {
  margin-bottom: 10px;
  color: rgba(231, 219, 194, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.five-split-callout strong {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.35;
}

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

.five-step {
  position: relative;
  padding-top: 62px;
}

.five-step span {
  position: absolute;
  top: 20px;
  left: 22px;
  color: rgba(184, 155, 94, 0.95);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
}

.five-final-actions {
  margin-top: 22px;
}

.five-feature-visual,
.five-scene-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 47, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(18, 53, 47, 0.08);
}

.five-feature-visual {
  margin-top: 8px;
}

.five-feature-visual.hero-band {
  border-radius: 32px;
  background: rgba(255, 253, 248, 0.8);
}

.five-feature-visual.secondary {
  margin-top: 22px;
}

.five-feature-visual img,
.five-scene-card img {
  display: block;
  width: 100%;
  height: auto;
}

.five-feature-visual figcaption,
.five-scene-card figcaption {
  padding: 16px 18px 18px;
  color: #544c43;
  font-size: 14px;
  line-height: 1.8;
}

.five-feature-visual.hero-band figcaption {
  padding: 20px 22px 24px;
  font-size: 15px;
}

.five-image-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px dashed rgba(18, 53, 47, 0.18);
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.72);
}

.five-image-note strong {
  color: var(--deep);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.five-image-note p {
  margin: 0;
  color: #61584e;
  font-size: 14px;
  line-height: 1.82;
}

.five-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.five-visual-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.five-scene-card.compact figcaption {
  min-height: 72px;
}

.five-black-page {
  background:
    radial-gradient(circle at top left, rgba(176, 142, 79, 0.22), transparent 22%),
    radial-gradient(circle at 100% 28%, rgba(118, 98, 63, 0.16), transparent 28%),
    linear-gradient(180deg, #0a0a0c 0%, #111115 24%, #0c0c0f 100%);
  color: rgba(242, 235, 223, 0.94);
}

.five-black-main {
  display: block;
}

.five-black-hero,
.five-black-section {
  padding: 0 24px 26px;
}

.five-black-topbar,
.five-black-shell,
.five-black-hero-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.five-black-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 22px;
}

.five-black-page .brand-mark,
.five-black-page .brand-lockup strong,
.five-black-page .brand-lockup small {
  color: rgba(246, 241, 233, 0.94);
}

.five-black-back {
  border-color: rgba(211, 191, 150, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(246, 241, 233, 0.9);
}

.five-black-back:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(211, 191, 150, 0.34);
}

.five-black-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: stretch;
}

.five-black-hero-copy,
.five-black-hero-panel,
.five-black-shell {
  border: 1px solid rgba(211, 191, 150, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(176, 142, 79, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 18, 0.9);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.five-black-hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(34px, 4vw, 52px);
  min-height: 640px;
  background:
    radial-gradient(circle at 18% 12%, rgba(192, 160, 94, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024)),
    rgba(18, 18, 22, 0.94);
}

.five-black-kicker {
  margin: 0;
  color: rgba(203, 181, 139, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.five-black-hero-copy h1,
.five-black-head h2,
.five-black-closing h2 {
  margin: 0;
  color: rgba(250, 246, 239, 0.99);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.18);
}

.five-black-hero-copy h1 {
  font-size: clamp(48px, 5.6vw, 92px);
  line-height: 0.98;
  max-width: 10ch;
  color: #f5efe6;
  -webkit-text-fill-color: #f5efe6;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.24),
    0 0 1px rgba(255, 248, 238, 0.12);
}

.five-black-lead,
.five-black-head p,
.five-black-body,
.five-black-closing p,
.five-black-card p,
.five-black-choice p,
.five-black-hero-panel p,
.five-black-note,
.five-standard-card strong {
  color: rgba(227, 218, 205, 0.92);
  font-size: 16px;
  line-height: 1.95;
}

.five-black-formula {
  display: grid;
  gap: 8px;
  margin-top: 6px;
  padding: 20px 22px;
  border: 1px solid rgba(211, 191, 150, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.five-black-formula span {
  color: rgba(203, 181, 139, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.five-black-formula strong {
  color: rgba(246, 241, 233, 0.98);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.4;
}

.five-black-formula.compact strong {
  font-size: clamp(18px, 1.5vw, 24px);
}

.five-black-formula.large {
  margin-top: 20px;
  padding: 24px 28px;
}

.five-black-formula.large.accent {
  border-color: rgba(203, 181, 139, 0.2);
  background:
    radial-gradient(circle at left top, rgba(173, 140, 78, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.035);
}

.five-black-hero-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.024)),
    rgba(16, 16, 20, 0.94);
}

.five-black-panel-head {
  display: grid;
  gap: 8px;
}

.five-black-panel-head span,
.five-black-bullets li::marker {
  color: rgba(203, 181, 139, 0.84);
}

.five-black-panel-head strong {
  color: rgba(249, 244, 236, 0.99);
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.18;
}

.five-black-bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(236, 228, 216, 0.92);
  line-height: 1.9;
}

.five-black-shell {
  padding: clamp(28px, 4vw, 48px);
}

.five-black-section:nth-of-type(odd) .five-black-shell {
  background:
    radial-gradient(circle at top left, rgba(192, 160, 94, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(16, 16, 20, 0.92);
}

.five-black-section:nth-of-type(even) .five-black-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.016)),
    rgba(13, 13, 17, 0.92);
}

.five-black-head {
  max-width: 920px;
  margin-bottom: 26px;
}

.five-black-head h2,
.five-black-closing h2 {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
  color: #f4ede3;
  -webkit-text-fill-color: #f4ede3;
}

.five-black-reading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: start;
}

.five-black-reading-copy {
  display: grid;
  gap: 14px;
}

.five-black-reading-steps {
  display: grid;
  gap: 12px;
}

.five-black-reading-steps > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(211, 191, 150, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.five-black-reading-steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(211, 191, 150, 0.16);
  color: rgba(203, 181, 139, 0.88);
  font-family: var(--font-serif);
  font-size: 18px;
}

.five-black-reading-steps strong {
  color: rgba(246, 241, 233, 0.96);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.five-black-compare,
.five-black-five-grid,
.five-black-diagram-grid,
.five-black-dew-grid,
.five-black-standards,
.five-climate-grid,
.five-doas-grid,
.five-choice-grid,
.five-black-matrix {
  display: grid;
  gap: 16px;
}

.five-black-compare,
.five-black-standards,
.five-doas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.five-boundary-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.five-boundary-column,
.five-boundary-result {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(211, 191, 150, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.015);
}

.five-boundary-column strong,
.five-boundary-result strong {
  color: rgba(246, 241, 233, 0.96);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.five-boundary-column p,
.five-boundary-result p {
  margin: 0;
  color: rgba(214, 205, 191, 0.76);
  line-height: 1.8;
}

.five-boundary-result {
  background:
    radial-gradient(circle at top right, rgba(173, 140, 78, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.five-black-five-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.five-black-diagram-grid,
.five-black-dew-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.five-climate-grid,
.five-choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.five-climate-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.five-climate-band-item {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(211, 191, 150, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.016)),
    rgba(255, 255, 255, 0.015);
}

.five-climate-band-item strong,
.five-doas-column strong {
  color: rgba(246, 241, 233, 0.96);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.five-climate-band-item p {
  margin: 0;
  color: rgba(214, 205, 191, 0.76);
  line-height: 1.8;
}

.five-basis-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.five-basis-ribbon > div {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border-left: 2px solid rgba(203, 181, 139, 0.44);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.022);
}

.five-basis-ribbon strong {
  color: rgba(246, 241, 233, 0.96);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.five-target-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.five-target-chip {
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(211, 191, 150, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(173, 140, 78, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.02);
}

.five-target-chip strong {
  color: rgba(246, 241, 233, 0.96);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
}

.five-black-card,
.five-black-choice,
.five-standard-card,
.five-black-diagram-card {
  border: 1px solid rgba(211, 191, 150, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(176, 142, 79, 0.06), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.022)),
    rgba(15, 15, 19, 0.93);
  padding: 22px 22px 24px;
}

.five-black-card--soft {
  background:
    radial-gradient(circle at top right, rgba(173, 140, 78, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.02);
}

.five-black-card span,
.five-black-choice span,
.five-standard-card span,
.five-black-diagram-head span {
  color: rgba(203, 181, 139, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.five-black-card h3,
.five-black-choice strong,
.five-standard-card strong,
.five-black-diagram-head strong {
  margin: 10px 0 0;
  color: rgba(246, 241, 233, 0.98);
  font-family: var(--font-serif);
  font-weight: 500;
}

.five-black-card h3,
.five-black-choice strong,
.five-standard-card strong {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.3;
  color: rgba(249, 244, 236, 0.99);
}

.five-black-diagram-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.five-black-diagram-head strong {
  font-size: 30px;
  line-height: 1.2;
  color: rgba(249, 244, 236, 0.99);
}

.five-comfort-wheel {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(211, 191, 150, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at center, rgba(173, 140, 78, 0.2), transparent 28%),
    rgba(255, 255, 255, 0.03);
}

.five-comfort-core,
.five-comfort-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(211, 191, 150, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 241, 232, 0.97);
  padding: 12px;
}

.five-comfort-core {
  inset: 50% auto auto 50%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 26px;
}

.five-comfort-node {
  width: 126px;
  min-height: 76px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
}

.five-comfort-node.node-a { top: 28px; left: 50%; transform: translateX(-50%); }
.five-comfort-node.node-b { top: 96px; right: 26px; }
.five-comfort-node.node-c { bottom: 86px; right: 24px; }
.five-comfort-node.node-d { bottom: 24px; left: 50%; transform: translateX(-50%); }
.five-comfort-node.node-e { bottom: 86px; left: 24px; }
.five-comfort-node.node-f { top: 96px; left: 26px; }

.five-black-stackmap {
  display: grid;
  gap: 12px;
}

.five-black-stackmap div {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border-left: 2px solid rgba(203, 181, 139, 0.48);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.038);
}

.five-black-stackmap strong {
  color: rgba(249, 244, 236, 0.99);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.five-dew-chart {
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(211, 191, 150, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.024)),
    rgba(255, 255, 255, 0.02);
}

.five-dew-axis {
  position: absolute;
  inset: auto 32px 38px 32px;
  height: 1px;
  background: rgba(211, 191, 150, 0.2);
}

.five-dew-line {
  position: absolute;
  left: 52px;
  right: 56px;
  top: 58px;
  bottom: 54px;
  background: linear-gradient(135deg, transparent 52%, rgba(203, 181, 139, 0.68) 53%, rgba(203, 181, 139, 0.68) 56%, transparent 57%);
}

.five-dew-label {
  position: absolute;
  color: rgba(230, 221, 208, 0.86);
  font-size: 13px;
  line-height: 1.6;
}

.five-dew-label.label-1 { left: 32px; top: 34px; }
.five-dew-label.label-2 { left: 44%; top: 116px; }
.five-dew-label.label-3 { right: 30px; bottom: 62px; max-width: 140px; text-align: right; }

.five-black-split-bars {
  display: grid;
  gap: 14px;
}

.five-black-split-bars > div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(211, 191, 150, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.five-black-split-bars strong {
  color: rgba(246, 241, 233, 0.96);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}

.five-black-split-bars em {
  color: rgba(214, 205, 191, 0.76);
  font-style: normal;
  line-height: 1.8;
}

.five-flow-chart {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 12px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 4px;
}

.five-flow-step {
  min-width: 228px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(211, 191, 150, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.five-flow-step span {
  color: rgba(203, 181, 139, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.five-flow-step strong {
  color: rgba(246, 241, 233, 0.98);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}

.five-flow-step p {
  margin: 0;
  color: rgba(214, 205, 191, 0.78);
  line-height: 1.85;
}

.five-flow-arrow {
  width: 42px;
  height: 1px;
  background: rgba(203, 181, 139, 0.34);
}

.five-doas-architecture {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.five-doas-column {
  min-width: 220px;
  display: grid;
  gap: 10px;
  padding: 20px 20px 22px;
  border: 1px solid rgba(211, 191, 150, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(173, 140, 78, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.024);
}

.five-doas-arrow {
  width: 42px;
  height: 1px;
  background: rgba(203, 181, 139, 0.34);
}

.five-black-choice {
  display: grid;
  gap: 10px;
}

.five-black-matrix {
  gap: 0;
  border: 1px solid rgba(211, 191, 150, 0.16);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012)),
    rgba(11, 11, 14, 0.95);
}

.five-black-matrix-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.66fr) minmax(0, 1fr) minmax(0, 1fr);
}

.five-black-matrix-row:not(:last-child) {
  border-bottom: 1px solid rgba(211, 191, 150, 0.08);
}

.five-black-matrix-row > div {
  padding: 18px 18px 20px;
  color: rgba(223, 214, 201, 0.84);
  line-height: 1.85;
}

.five-black-matrix-row > div:not(:last-child) {
  border-right: 1px solid rgba(211, 191, 150, 0.08);
}

.five-black-matrix-head {
  background: rgba(255, 255, 255, 0.03);
}

.five-black-matrix-head > div,
.five-black-matrix-row > div:first-child {
  color: rgba(246, 241, 233, 0.96);
}

.five-black-matrix-head > div {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.five-black-matrix-row > div:first-child {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.five-black-section--accent .five-black-shell {
  background:
    radial-gradient(circle at 0% 0%, rgba(173, 140, 78, 0.16), transparent 28%),
    rgba(11, 11, 14, 0.92);
}

.five-black-section--closing .five-black-shell {
  background:
    linear-gradient(135deg, rgba(17, 17, 20, 0.95), rgba(10, 10, 12, 0.92)),
    rgba(10, 10, 12, 0.92);
}

.five-black-closing {
  max-width: 980px;
}

.five-black-actions {
  margin-top: 24px;
}

.five-black-actions .button.primary {
  background: linear-gradient(135deg, #d0b279, #a6844a);
  color: #120f0b;
}

.five-black-actions .button.ghost {
  border-color: rgba(211, 191, 150, 0.18);
  color: rgba(246, 241, 233, 0.92);
  background: rgba(255, 255, 255, 0.025);
}

.five-black-actions .button.ghost:hover {
  border-color: rgba(211, 191, 150, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.five-journal-page {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 186, 145, 0.28), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(171, 181, 193, 0.18), transparent 28%),
    linear-gradient(180deg, #f5efe7 0%, #ece3d8 30%, #f7f1ea 100%);
  color: #261f19;
}

.five-journal-main {
  width: min(1580px, calc(100% - 72px));
  margin: 0 auto;
  padding: 28px 0 112px;
  position: relative;
}

.five-journal-main::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(89, 70, 47, 0.035) 0, rgba(89, 70, 47, 0.035) 1px, transparent 1px, transparent calc(50% - 24px), rgba(89, 70, 47, 0.035) calc(50% - 24px), rgba(89, 70, 47, 0.035) calc(50% - 23px), transparent calc(50% - 23px)),
    linear-gradient(180deg, transparent 0%, rgba(110, 86, 58, 0.03) 100%);
  pointer-events: none;
  opacity: 0.46;
}

.five-journal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.five-journal-topbar .brand-mark,
.five-journal-topbar .brand-lockup strong,
.five-journal-topbar .brand-lockup small {
  color: rgba(43, 35, 27, 0.94);
}

.five-journal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(151, 122, 88, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.7);
  color: rgba(48, 39, 31, 0.9);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(116, 92, 65, 0.08);
}

.five-journal-hero,
.five-journal-spread {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(48px, 5vw, 84px);
  align-items: start;
  padding: 72px 0;
  border-top: 1px solid rgba(127, 100, 70, 0.12);
}

.five-journal-spread:nth-of-type(even) .five-journal-copy {
  padding-top: 28px;
}

.five-journal-spread:nth-of-type(odd) .five-journal-figure {
  transform: none;
}

.five-journal-hero {
  min-height: calc(100vh - 120px);
  border-top: none;
  padding-top: 42px;
}

.five-journal-spread.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.five-journal-spread.reverse .five-journal-copy {
  order: 2;
}

.five-journal-spread.reverse .five-journal-figure {
  order: 1;
}

.five-journal-copy {
  display: grid;
  gap: 24px;
  align-content: start;
  max-width: 600px;
  position: relative;
  z-index: 1;
  padding-right: 28px;
}

.five-journal-kicker {
  margin: 0;
  color: rgba(145, 107, 61, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
}

.five-journal-hero h1,
.five-journal-spread h2,
.five-journal-closing h2 {
  margin: 0;
  color: #211913;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.five-journal-hero h1 {
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.14;
  max-width: 7em;
  letter-spacing: -0.04em;
}

.five-journal-spread h2,
.five-journal-closing h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  max-width: 15ch;
}

.five-journal-lead,
.five-journal-body,
.five-journal-closing p,
.figure-footnote,
.ledger-row p,
.climate-columns p,
.route-flow p {
  margin: 0;
  color: rgba(74, 60, 47, 0.84);
  font-size: 16px;
  line-height: 1.95;
}

.five-journal-lead {
  font-size: 16px;
  color: rgba(43, 34, 26, 0.94);
  line-height: 1.88;
  max-width: 25em;
}

.five-journal-body {
  max-width: 24em;
}

.five-journal-intro-note,
.five-journal-sidefact {
  display: grid;
  gap: 8px;
  max-width: 24em;
  padding-top: 16px;
  border-top: 1px solid rgba(147, 117, 82, 0.16);
}

.five-journal-intro-note p,
.five-journal-sidefact strong {
  margin: 0;
  color: rgba(62, 50, 38, 0.88);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.48;
}

.five-journal-figure {
  position: relative;
  min-height: 620px;
  padding: 24px 0 0 48px;
  border: none;
  border-left: 1px solid rgba(156, 124, 87, 0.3);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
  box-shadow: none;
  overflow: hidden;
}

.five-journal-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(161, 128, 91, 0.09), transparent 22%),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 48px,
      rgba(124, 98, 69, 0.09) 48px,
      rgba(124, 98, 69, 0.09) 49px
    );
  pointer-events: none;
}

.figure-head,
.figure-hero-equation,
.figure-hero-rail,
.figure-hero-line,
.five-journal-band,
.dew-compare,
.basis-list div,
.climate-columns div,
.route-flow div {
  position: relative;
  z-index: 1;
}

.figure-head {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.figure-head strong,
.figure-hero-equation strong,
.dew-compare strong,
.basis-list strong,
.climate-columns strong,
.route-flow strong {
  color: #251d17;
  font-family: var(--font-serif);
  font-weight: 500;
}

.figure-head strong {
  font-size: clamp(22px, 1.85vw, 32px);
  line-height: 1.28;
  max-width: 19ch;
}

.five-journal-ledger .figure-head {
  margin-bottom: 28px;
}

.five-journal-hero-figure {
  display: grid;
  align-content: stretch;
  min-height: 600px;
  margin-top: 0;
}

.five-journal-hero-figure::after {
  content: "";
  position: absolute;
  inset: 14% 0 10% 14%;
  width: auto;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(210, 181, 137, 0.36), rgba(255, 255, 255, 0.16) 42%, rgba(168, 180, 198, 0.22)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 72px,
      rgba(255, 255, 255, 0.34) 72px,
      rgba(255, 255, 255, 0.34) 73px
    );
  border-top: 1px solid rgba(186, 155, 109, 0.24);
  border-bottom: 1px solid rgba(186, 155, 109, 0.24);
  box-shadow: none;
}

.figure-hero-mark {
  position: absolute;
  top: 10px;
  right: 0;
  color: rgba(176, 138, 85, 0.2);
  font-family: var(--font-serif);
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
}

.hero-editorial-shell {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 0;
}

.hero-editorial-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22)),
    linear-gradient(135deg, rgba(208, 180, 138, 0.24), rgba(255, 255, 255, 0.04) 48%, rgba(178, 190, 207, 0.12));
  border-top: 1px solid rgba(174, 140, 91, 0.2);
  border-bottom: 1px solid rgba(174, 140, 91, 0.2);
  pointer-events: none;
}

.hero-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 24px;
  min-height: 100%;
  padding: 26px 28px 24px 28px;
}

.hero-editorial-top {
  display: grid;
  gap: 22px;
}

.hero-editorial-middle {
  display: grid;
  gap: 18px;
}

.hero-editorial-bottom {
  display: grid;
  align-items: end;
  padding-top: 12px;
}

.hero-editorial-caption {
  margin: 0;
  max-width: 30ch;
  color: rgba(75, 59, 42, 0.86);
  font-size: 14px;
  line-height: 1.8;
}

.hero-editorial-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-editorial-columns div {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(174, 140, 91, 0.22);
}

.hero-editorial-columns strong {
  color: #241c15;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.36;
}

.hero-editorial-columns p {
  margin: 0;
  color: rgba(81, 65, 48, 0.82);
  font-size: 13px;
  line-height: 1.72;
}

.figure-hero-line {
  max-width: 30ch;
  margin: 0;
  color: rgba(87, 67, 46, 0.92);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(174, 140, 91, 0.16);
}

.figure-hero-equation {
  display: grid;
  gap: 12px;
  max-width: 620px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(174, 140, 91, 0.3);
  background: transparent;
  backdrop-filter: none;
}

.figure-hero-equation strong {
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.5;
  max-width: 20ch;
}

.figure-hero-rail {
  display: grid;
  gap: 14px;
  padding-left: 24px;
  border-left: 1px solid rgba(174, 140, 91, 0.46);
  max-width: 420px;
  padding-top: 18px;
  padding-bottom: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 82%);
}

.figure-hero-rail strong {
  color: rgba(42, 33, 25, 0.94);
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.12vw, 19px);
  font-weight: 500;
  line-height: 1.5;
}

.five-journal-band {
  margin: 18px 0 42px;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(140, 110, 76, 0.14);
  border-bottom: 1px solid rgba(140, 110, 76, 0.14);
  background: transparent;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}

.five-journal-band-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.five-journal-band-grid div {
  display: grid;
  gap: 10px;
  min-height: 104px;
  padding-right: 18px;
  border-right: 1px solid rgba(146, 116, 81, 0.12);
}

.five-journal-band-grid div:last-child {
  border-right: none;
}

.five-journal-band-grid strong {
  color: #241c15;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 500;
  line-height: 1.36;
}

.five-journal-ledger {
  display: grid;
  align-content: start;
}

.ledger-table {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  padding: 0;
}

.ledger-row {
  display: grid;
  grid-template-columns: 1.05fr 0.82fr 1.45fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(146, 116, 81, 0.12);
  align-items: start;
}

.ledger-row:not(.ledger-head) {
  background: transparent;
}

.ledger-head {
  padding-top: 0;
  color: rgba(144, 109, 67, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ledger-row strong,
.ledger-row em {
  color: #231c15;
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}

.ledger-row.result strong,
.ledger-row.result em {
  color: #9c7444;
}

.comfort-wheel {
  position: relative;
  min-height: 500px;
  margin-top: 16px;
}

.comfort-wheel::before,
.comfort-wheel::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.comfort-wheel::before {
  width: 356px;
  height: 356px;
  border: 1px solid rgba(177, 141, 92, 0.18);
}

.comfort-wheel::after {
  width: 222px;
  height: 222px;
  border: 1px solid rgba(177, 141, 92, 0.14);
}

.comfort-core,
.comfort-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  color: #261f19;
}

.comfort-core {
  inset: 50% auto auto 50%;
  width: 142px;
  height: 142px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(177, 141, 92, 0.16);
  background: radial-gradient(circle, rgba(214, 182, 132, 0.36), rgba(255, 255, 255, 0.58));
  font-family: var(--font-serif);
  font-size: 24px;
}

.comfort-node {
  width: 130px;
  min-height: 80px;
  padding: 12px;
  border-left: 1px solid rgba(177, 141, 92, 0.24);
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  line-height: 1.45;
}

.comfort-node.node-a { top: 16px; left: 50%; transform: translateX(-50%); }
.comfort-node.node-b { top: 102px; right: 10px; }
.comfort-node.node-c { bottom: 104px; right: 18px; }
.comfort-node.node-d { bottom: 16px; left: 50%; transform: translateX(-50%); }
.comfort-node.node-e { bottom: 104px; left: 18px; }
.comfort-node.node-f { top: 102px; left: 10px; }

.dew-stage {
  position: relative;
  z-index: 1;
  min-height: 320px;
  margin-top: 16px;
}

.dew-axis {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  height: 1px;
  background: rgba(165, 128, 84, 0.24);
}

.dew-curve {
  position: absolute;
  inset: 34px 42px 56px 42px;
  background:
    linear-gradient(132deg, transparent 49%, rgba(170, 131, 79, 0.76) 50%, rgba(170, 131, 79, 0.76) 52%, transparent 53%);
}

.dew-tag {
  position: absolute;
  color: rgba(93, 72, 52, 0.88);
  font-size: 12px;
  line-height: 1.6;
}

.dew-tag.tag-a { left: 0; top: 12px; }
.dew-tag.tag-b { left: 42%; top: 122px; }
.dew-tag.tag-c { right: 0; bottom: 58px; max-width: 160px; text-align: right; }

.dew-compare {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(150, 118, 81, 0.12);
  background: transparent;
}

.dew-compare strong {
  font-size: 21px;
  line-height: 1.4;
}

.basis-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.basis-list div {
  display: grid;
  gap: 8px;
  padding: 0 0 18px 22px;
  border-left: 1px solid rgba(167, 132, 86, 0.28);
  border-bottom: 1px solid rgba(145, 113, 78, 0.12);
}

.basis-list strong {
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.42;
}

.climate-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.climate-columns div {
  display: grid;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid rgba(167, 132, 86, 0.24);
  background: transparent;
  padding-right: 12px;
}

.climate-columns strong {
  font-size: 20px;
  line-height: 1.34;
}

.route-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.route-flow div {
  display: grid;
  gap: 10px;
  min-width: 220px;
  padding: 18px 0;
}

.route-flow strong {
  font-size: 20px;
  line-height: 1.34;
}

.route-line {
  width: 54px;
  height: 1px;
  background: rgba(167, 132, 86, 0.3);
}

.five-journal-closing {
  max-width: 1060px;
  margin-top: 54px;
  padding-top: 54px;
  border-top: 1px solid rgba(146, 116, 82, 0.12);
  background: transparent;
}

.five-journal-actions {
  margin-top: 24px;
}

.five-journal-actions .button.primary {
  background: linear-gradient(135deg, #d3b57d, #a07b46);
  color: #120f0b;
}

.five-journal-actions .button.ghost {
  border-color: rgba(146, 116, 82, 0.18);
  color: rgba(47, 38, 30, 0.92);
  background: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1180px) {
  .five-journal-main {
    width: min(100%, calc(100% - 40px));
  }

  .five-journal-hero,
  .five-journal-spread,
  .five-journal-spread.reverse {
    grid-template-columns: 1fr;
  }

  .five-journal-spread.reverse .five-journal-copy,
  .five-journal-spread.reverse .five-journal-figure {
    order: initial;
  }

  .five-journal-band-grid,
  .climate-columns {
    grid-template-columns: 1fr;
  }

  .five-journal-band-grid div {
    min-height: 0;
    padding-right: 0;
    padding-bottom: 14px;
    border-right: none;
    border-bottom: 1px solid rgba(192, 168, 130, 0.1);
  }

  .five-journal-copy {
    padding-right: 0;
  }

  .five-journal-figure {
    min-height: 520px;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(156, 124, 87, 0.2);
    padding-top: 24px;
  }
}

@media (max-width: 820px) {
  .five-journal-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .five-journal-main {
    width: min(100%, calc(100% - 24px));
    padding-top: 18px;
  }

  .five-journal-hero {
    min-height: auto;
  }

  .five-journal-hero h1 {
    max-width: none;
    font-size: 38px;
  }

  .five-journal-spread h2,
  .five-journal-closing h2 {
    font-size: 28px;
  }

  .five-journal-figure {
    min-height: 0;
    border-radius: 26px;
    padding: 22px 18px;
  }

  .five-journal-copy {
    gap: 18px;
  }

  .five-journal-lead,
  .five-journal-body,
  .five-journal-closing p {
    font-size: 15px;
    line-height: 1.84;
  }

  .ledger-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .route-flow {
    grid-template-columns: 1fr;
  }

  .route-line {
    width: 1px;
    height: 24px;
    margin: 0 auto;
  }

  .comfort-wheel {
    min-height: 560px;
  }

  .comfort-wheel::before {
    width: 292px;
    height: 292px;
  }

  .comfort-wheel::after {
    width: 190px;
    height: 190px;
  }

  .comfort-node {
    width: 110px;
    min-height: 70px;
    font-size: 13px;
  }

  .comfort-node.node-a { top: 22px; }
  .comfort-node.node-b { top: 108px; right: 0; }
  .comfort-node.node-c { bottom: 112px; right: 0; }
  .comfort-node.node-d { bottom: 22px; }
  .comfort-node.node-e { bottom: 112px; left: 0; }
  .comfort-node.node-f { top: 108px; left: 0; }
}

@media (max-width: 720px) {
  .access-card-grid {
    grid-template-columns: 1fr;
  }
}

.five-atlas-page {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  color: #221c16;
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Noto Sans CJK SC",
    "Microsoft YaHei",
    sans-serif;
}

.five-atlas-main {
  width: min(1080px, calc(100% - 88px));
  margin: 0 auto;
  padding: 32px 0 144px;
}

.five-atlas-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 64px;
}

.five-atlas-topbar .brand-mark,
.five-atlas-topbar .brand-lockup strong,
.five-atlas-topbar .brand-lockup small {
  color: rgba(42, 34, 26, 0.94);
}

.five-atlas-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(145, 115, 81, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(46, 37, 29, 0.92);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(110, 85, 59, 0.08);
}

.five-atlas-kicker {
  margin: 0;
  color: rgba(134, 101, 62, 0.92);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.five-atlas-hero,
.five-atlas-section,
.five-atlas-band,
.five-atlas-closing {
  max-width: 760px;
}

.five-atlas-hero {
  display: grid;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 18px;
}

.five-atlas-hero h1,
.five-atlas-section-head h2,
.five-atlas-closing h2 {
  margin: 0;
  color: #201811;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: nowrap;
}

.five-atlas-hero h1 {
  max-width: none;
  font-size: 42px;
  line-height: 1.22;
}

.five-atlas-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding-top: 4px;
}

.five-atlas-section-head h2,
.five-atlas-closing h2 {
  max-width: none;
  font-size: 30px;
  line-height: 1.34;
}

.five-atlas-lead,
.five-atlas-prose p,
.five-atlas-closing p,
.five-atlas-caption,
.five-atlas-ledger-row p,
.five-atlas-climate-list p,
.five-atlas-route-flow p {
  margin: 0;
  color: rgba(73, 59, 45, 0.86);
  font-size: 15px;
  line-height: 2;
}

.five-atlas-lead {
  max-width: 38em;
  color: rgba(42, 34, 26, 0.94);
}

.five-atlas-hero-note {
  display: grid;
  gap: 8px;
  max-width: 36em;
  padding-top: 14px;
  border-top: 1px solid rgba(147, 117, 82, 0.16);
}

.five-atlas-hero-note p,
.five-atlas-route-note strong {
  margin: 0;
  color: rgba(58, 46, 35, 0.92);
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.five-atlas-contents {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 44px 0 64px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(148, 118, 82, 0.16);
}

.five-atlas-contents div {
  display: grid;
  gap: 8px;
  padding-right: 16px;
  border-right: 1px solid rgba(148, 118, 82, 0.12);
}

.five-atlas-contents div:last-child {
  border-right: none;
}

.five-atlas-contents span {
  color: rgba(142, 108, 67, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.five-atlas-contents strong {
  color: #231c15;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.42;
}

.five-atlas-section {
  margin-top: 104px;
}

.five-atlas-prose {
  display: grid;
  gap: 24px;
  max-width: 42em;
}

.five-atlas-prose p:first-child {
  max-width: 40em;
  font-size: 16px;
}

.five-atlas-prose p:last-child {
  max-width: 31em;
  margin-left: 64px;
}

.five-atlas-inline-logic {
  display: grid;
  gap: 10px;
  max-width: 36em;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(146, 116, 82, 0.18);
}

.five-atlas-inline-logic strong {
  color: #251d17;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.52;
}

.five-atlas-panel {
  position: relative;
  margin-top: 42px;
  padding: 40px 42px 44px;
  border: 1px solid rgba(145, 116, 82, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
  box-shadow: none;
}

.five-atlas-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 47px,
      rgba(136, 107, 76, 0.035) 47px,
      rgba(136, 107, 76, 0.035) 48px
    );
  pointer-events: none;
}

.five-atlas-panel-head,
.five-atlas-formula,
.five-atlas-route-grid,
.five-atlas-ledger,
.five-atlas-wheel-wrap,
.five-atlas-dew,
.five-atlas-basis,
.five-atlas-climate-list,
.five-atlas-route-flow,
.five-atlas-route-note {
  position: relative;
  z-index: 1;
}

.five-atlas-panel-head {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.five-atlas-panel-head strong,
.five-atlas-formula strong,
.five-atlas-ledger-row strong,
.five-atlas-ledger-row em,
.five-atlas-band-list strong,
.five-atlas-basis strong,
.five-atlas-climate-list strong,
.five-atlas-route-flow strong,
.five-atlas-route-note strong,
.five-atlas-wheel-core,
.five-atlas-dew-compare strong {
  color: #251d17;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-weight: 500;
}

.five-atlas-panel-head strong {
  max-width: 18ch;
  font-size: 28px;
  line-height: 1.4;
}

.five-atlas-panel-hero .five-atlas-panel-head strong {
  max-width: 20ch;
}

.five-atlas-formula {
  display: grid;
  gap: 10px;
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(173, 139, 90, 0.24);
}

.five-atlas-formula strong {
  max-width: 18ch;
  font-size: 24px;
  line-height: 1.52;
}

.five-atlas-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.five-atlas-route-grid div,
.five-atlas-band-list div,
.five-atlas-basis div,
.five-atlas-climate-list div,
.five-atlas-route-flow div {
  display: grid;
  gap: 8px;
}

.five-atlas-route-grid div {
  padding-top: 18px;
  border-top: 1px solid rgba(173, 139, 90, 0.18);
}

.five-atlas-route-grid strong {
  color: #251d17;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.46;
}

.five-atlas-route-grid p {
  margin: 0;
  color: rgba(78, 62, 46, 0.84);
  font-size: 13px;
  line-height: 1.74;
}

.five-atlas-ledger {
  display: grid;
}

.five-atlas-ledger-head,
.five-atlas-ledger-row {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1.45fr;
  gap: 24px;
  align-items: start;
}

.five-atlas-ledger-head {
  padding-bottom: 14px;
  color: rgba(143, 107, 63, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.five-atlas-ledger-row {
  padding: 24px 0;
  border-top: 1px solid rgba(147, 117, 82, 0.14);
}

.five-atlas-ledger-row strong,
.five-atlas-ledger-row em {
  font-size: 18px;
  line-height: 1.46;
  font-style: normal;
}

.five-atlas-ledger-row.accent strong,
.five-atlas-ledger-row.accent em {
  color: #9e7342;
}

.five-atlas-band {
  margin-top: 78px;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(145, 115, 81, 0.16);
  border-bottom: 1px solid rgba(145, 115, 81, 0.16);
}

.five-atlas-band-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.five-atlas-band-list div {
  min-height: 92px;
  padding-right: 18px;
  border-right: 1px solid rgba(145, 115, 81, 0.12);
}

.five-atlas-band-list div:last-child {
  border-right: none;
}

.five-atlas-band-list strong {
  font-size: 18px;
  line-height: 1.4;
}

.five-atlas-wheel-wrap {
  display: grid;
  gap: 20px;
}

.five-atlas-wheel {
  position: relative;
  min-height: 430px;
}

.five-atlas-wheel::before,
.five-atlas-wheel::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.five-atlas-wheel::before {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(171, 136, 88, 0.18);
}

.five-atlas-wheel::after {
  width: 212px;
  height: 212px;
  border: 1px solid rgba(171, 136, 88, 0.14);
}

.five-atlas-wheel-core,
.five-atlas-wheel-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  color: #261f19;
}

.five-atlas-wheel-core {
  inset: 50% auto auto 50%;
  width: 136px;
  height: 136px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(171, 136, 88, 0.16);
  background: radial-gradient(circle, rgba(212, 181, 130, 0.34), rgba(255, 255, 255, 0.56));
  font-size: 24px;
}

.five-atlas-wheel-node {
  width: 124px;
  min-height: 78px;
  padding: 12px;
  border-left: 1px solid rgba(171, 136, 88, 0.24);
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  line-height: 1.45;
}

.five-atlas-wheel-node.node-a { top: 12px; left: 50%; transform: translateX(-50%); }
.five-atlas-wheel-node.node-b { top: 98px; right: 12px; }
.five-atlas-wheel-node.node-c { bottom: 98px; right: 18px; }
.five-atlas-wheel-node.node-d { bottom: 12px; left: 50%; transform: translateX(-50%); }
.five-atlas-wheel-node.node-e { bottom: 98px; left: 18px; }
.five-atlas-wheel-node.node-f { top: 98px; left: 12px; }

.five-atlas-caption {
  max-width: 34em;
}

.five-atlas-dew {
  display: grid;
  gap: 20px;
}

.five-atlas-dew-stage {
  position: relative;
  min-height: 300px;
}

.five-atlas-dew-axis {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  height: 1px;
  background: rgba(166, 129, 84, 0.24);
}

.five-atlas-dew-curve {
  position: absolute;
  inset: 34px 44px 56px 44px;
  background: linear-gradient(132deg, transparent 49%, rgba(171, 132, 79, 0.76) 50%, rgba(171, 132, 79, 0.76) 52%, transparent 53%);
}

.five-atlas-dew-tag {
  position: absolute;
  color: rgba(94, 72, 52, 0.88);
  font-size: 12px;
  line-height: 1.6;
}

.five-atlas-dew-tag.tag-a { left: 0; top: 12px; }
.five-atlas-dew-tag.tag-b { left: 42%; top: 122px; }
.five-atlas-dew-tag.tag-c { right: 0; bottom: 58px; max-width: 160px; text-align: right; }

.five-atlas-dew-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(147, 117, 82, 0.16);
}

.five-atlas-dew-compare strong {
  font-size: 20px;
  line-height: 1.42;
}

.five-atlas-basis,
.five-atlas-climate-list,
.five-atlas-route-flow {
  display: grid;
  gap: 20px;
}

.five-atlas-basis div,
.five-atlas-climate-list div,
.five-atlas-route-flow div {
  padding: 0 0 18px 20px;
  border-left: 1px solid rgba(167, 132, 86, 0.28);
  border-bottom: 1px solid rgba(145, 113, 78, 0.12);
}

.five-atlas-basis strong,
.five-atlas-climate-list strong,
.five-atlas-route-flow strong {
  font-size: 18px;
  line-height: 1.42;
}

.five-atlas-route-note {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(147, 117, 82, 0.16);
}

.five-atlas-closing {
  margin-top: 96px;
}

.five-atlas-actions {
  margin-top: 24px;
}

.five-atlas-actions .button.primary {
  background: linear-gradient(135deg, #d3b57d, #a07b46);
  color: #120f0b;
}

.five-atlas-actions .button.ghost {
  border-color: rgba(146, 116, 82, 0.18);
  color: rgba(47, 38, 30, 0.92);
  background: rgba(255, 255, 255, 0.48);
}

@media (max-width: 900px) {
  .five-atlas-main {
    width: min(100%, calc(100% - 24px));
  }

  .five-atlas-topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 42px;
  }

  .five-atlas-hero h1 {
    max-width: none;
    font-size: 40px;
  }

  .five-atlas-section-head h2,
  .five-atlas-closing h2 {
    max-width: none;
    font-size: 30px;
  }

  .five-atlas-panel {
    padding: 24px 18px 28px;
  }

  .five-atlas-contents,
  .five-atlas-route-grid,
  .five-atlas-band-list,
  .five-atlas-dew-compare {
    grid-template-columns: 1fr;
  }

  .five-atlas-contents div,
  .five-atlas-band-list div {
    min-height: 0;
    padding-right: 0;
    padding-bottom: 14px;
    border-right: none;
    border-bottom: 1px solid rgba(145, 115, 81, 0.12);
  }

  .five-atlas-ledger-head,
  .five-atlas-ledger-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .five-atlas-wheel {
    min-height: 560px;
  }

  .five-atlas-wheel::before {
    width: 290px;
    height: 290px;
  }

  .five-atlas-wheel::after {
    width: 188px;
    height: 188px;
  }

  .five-atlas-wheel-node {
    width: 108px;
    min-height: 70px;
  }

  .five-atlas-wheel-node.node-a { top: 18px; }
  .five-atlas-wheel-node.node-b { top: 108px; right: 0; }
  .five-atlas-wheel-node.node-c { bottom: 108px; right: 0; }
  .five-atlas-wheel-node.node-d { bottom: 18px; }
  .five-atlas-wheel-node.node-e { bottom: 108px; left: 0; }
  .five-atlas-wheel-node.node-f { top: 108px; left: 0; }

  .five-atlas-lead,
  .five-atlas-prose p,
  .five-atlas-closing p,
  .five-atlas-caption,
  .five-atlas-ledger-row p,
  .five-atlas-climate-list p,
  .five-atlas-route-flow p {
    font-size: 15px;
    line-height: 1.84;
  }

  .five-atlas-hero-note p,
  .five-atlas-route-note strong {
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .route-stage {
    grid-template-columns: 1fr;
  }

  .route-copy {
    order: 1;
  }

  .route-media {
    order: 2;
    min-height: clamp(320px, 70vw, 520px);
  }

  .five-band-grid,
  .five-grid.three,
  .five-grid.two,
  .five-grid.five-outcomes,
  .five-steps,
  .five-split-callout,
  .five-stage-meta,
  .five-proof-grid,
  .five-editorial-grid,
  .five-editorial-grid.narrow,
  .five-visual-grid,
  .five-visual-grid.three-up,
  .five-black-hero-grid,
  .five-black-reading-grid,
  .five-black-compare,
  .five-black-five-grid,
  .five-boundary-map,
  .five-black-diagram-grid,
  .five-black-dew-grid,
  .five-basis-ribbon,
  .five-target-strip,
  .five-black-standards,
  .five-climate-band,
  .five-climate-grid,
  .five-choice-grid,
  .five-doas-grid {
    grid-template-columns: 1fr;
  }

  .five-flow-chart {
    grid-template-columns: 1fr;
  }

  .five-flow-arrow {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }

  .five-doas-architecture {
    grid-template-columns: 1fr;
  }

  .five-doas-arrow {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }

  .five-black-matrix-row {
    grid-template-columns: 1fr;
  }

  .five-black-matrix-row > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(211, 191, 150, 0.08);
  }
}

@media (max-width: 640px) {
  .route-hero {
    width: min(100%, calc(100% - 28px));
    padding-top: 20px;
  }

  .route-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-copy {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .route-media {
    border-radius: 24px;
  }

  .route-meta {
    grid-template-columns: 1fr;
  }

  .five-section {
    padding-inline: 14px;
    padding-bottom: 18px;
  }

  .five-section-shell {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .five-card h3,
  .five-step h3 {
    font-size: 22px;
  }

  .five-editorial-copy h2 {
    font-size: 34px;
  }

  .five-black-hero,
  .five-black-section {
    padding-inline: 14px;
    padding-bottom: 18px;
  }

  .five-black-topbar {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 22px;
  }

  .five-black-hero-copy,
  .five-black-hero-panel,
  .five-black-shell {
    border-radius: 24px;
  }

  .five-black-hero-copy {
    min-height: auto;
    padding: 24px 20px;
  }

  .five-black-hero-copy h1 {
    font-size: 42px;
    max-width: none;
  }

  .five-black-head h2,
  .five-black-closing h2 {
    font-size: 32px;
  }

  .five-comfort-wheel {
    min-height: 560px;
  }

  .five-comfort-node {
    width: 108px;
    min-height: 70px;
    font-size: 13px;
  }

  .five-comfort-node.node-a { top: 20px; }
  .five-comfort-node.node-b { top: 102px; right: 14px; }
  .five-comfort-node.node-c { bottom: 112px; right: 14px; }
  .five-comfort-node.node-d { bottom: 20px; }
  .five-comfort-node.node-e { bottom: 112px; left: 14px; }
  .five-comfort-node.node-f { top: 102px; left: 14px; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-card,
.scene-content,
.climate-copy-panel,
.dewpoint-panel,
.climate-explanation,
.cinematic-panel .section-copy,
.module-card,
.brand-card,
.tool-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(18, 42, 35, 0.32) 0%, rgba(18, 42, 35, 0.2) 42%, rgba(18, 42, 35, 0.1) 100%);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(112%);
}

.hero-card {
  background:
    linear-gradient(135deg, rgba(18, 42, 35, 0.28) 0%, rgba(18, 42, 35, 0.17) 44%, rgba(18, 42, 35, 0.08) 100%);
  backdrop-filter: blur(10px) saturate(110%);
}

.hero-card h1,
.hero-card h2,
.hero-card h3,
.scene-content h3,
.climate-copy-panel h3,
.dewpoint-panel h3,
.climate-explanation h3,
.cinematic-panel .section-copy h2,
.module-card h4,
.brand-card h4,
.tool-card h4 {
  color: rgba(255, 252, 242, 0.98);
}

.hero-card p,
.hero-card .hero-text,
.hero-card .hero-closing,
.scene-content p,
.climate-copy-panel p:not(.eyebrow),
.dewpoint-panel p,
.climate-explanation p,
.cinematic-panel .section-copy p,
.module-card p,
.brand-card p,
.brand-card summary,
.tool-card p {
  color: rgba(255, 252, 242, 0.78);
}

.hero-card .eyebrow,
.scene-content .eyebrow,
.climate-copy-panel .eyebrow,
.climate-explanation .eyebrow,
.cinematic-panel .section-copy .eyebrow,
.module-card .eyebrow,
.brand-card .eyebrow,
.tool-card .eyebrow {
  color: rgba(226, 198, 132, 0.94);
}

.hero-card .button.ghost,
.hero-card .tag-list span,
.scene-content .tag-list span,
.module-card .tag-list span,
.brand-card .tag-list span,
.tool-card .tag-list span,
.scene-detail > summary,
.dimension-detail > summary,
.dewpoint-calculator summary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 252, 242, 0.92);
  backdrop-filter: blur(8px);
}

@keyframes airDrift {
  from {
    opacity: 0.44;
    transform: translateX(-8%);
  }

  to {
    opacity: 0.78;
    transform: translateX(8%);
  }
}

.climate-stage {
  position: relative;
  isolation: isolate;
  min-height: clamp(680px, 58vw, 820px);
  overflow: hidden;
  border: 1px solid rgba(18, 53, 47, 0.12);
  border-radius: 8px;
  background: rgba(248, 245, 239, 0.58);
  box-shadow: 0 28px 90px rgba(18, 53, 47, 0.12);
}

.climate-stage .climate-map {
  position: absolute;
  inset: 0;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.climate-stage .climate-map::after {
  background:
    radial-gradient(circle at 61% 56%, rgba(184, 155, 94, 0.12), transparent 18%),
    linear-gradient(90deg, rgba(248, 245, 239, 0.22), transparent 34%, rgba(248, 245, 239, 0.3));
}

.climate-stage .climate-map img {
  filter: saturate(1.02) contrast(1.02) brightness(1.02);
  transform: scale(1.015);
}

.climate-copy-panel,
.dewpoint-panel,
.climate-explanation,
.climate-mode-tabs,
.geo-labels,
.climate-flow-layer {
  position: absolute;
  z-index: 3;
}

.climate-copy-panel {
  top: clamp(34px, 4.2vw, 62px);
  left: clamp(28px, 4.8vw, 68px);
  width: min(420px, 35vw);
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid rgba(248, 245, 239, 0.28);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(248, 245, 239, 0.74), rgba(248, 245, 239, 0.42));
  backdrop-filter: blur(14px) saturate(1.08);
  box-shadow: 0 24px 70px rgba(18, 53, 47, 0.1);
}

.climate-copy-panel h3 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.7vw, 42px);
  font-weight: 500;
  line-height: 1.18;
}

.climate-copy-panel p:not(.eyebrow) {
  margin: 0;
  color: #504941;
  font-size: 15px;
  line-height: 1.86;
}

.dewpoint-panel {
  right: clamp(34px, 4.6vw, 70px);
  top: clamp(38px, 5vw, 72px);
  width: min(360px, 30vw);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(18, 53, 47, 0.68), rgba(18, 53, 47, 0.42));
  box-shadow: 0 24px 70px rgba(18, 53, 47, 0.18);
  color: var(--ivory);
  backdrop-filter: blur(16px) saturate(1.08);
}

.dewpoint-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.dewpoint-head span,
.dewpoint-current span,
.dewpoint-current em,
.dewpoint-panel p,
.dewpoint-calculator summary {
  color: rgba(248, 245, 239, 0.74);
  font-family: var(--font-sans);
  font-style: normal;
}

.dewpoint-head span,
.dewpoint-current span {
  font-size: 12px;
  font-weight: 650;
}

.dewpoint-head strong {
  color: rgba(248, 245, 239, 0.9);
  font-size: 14px;
}

.dewpoint-current {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: end;
  margin-bottom: 12px;
}

.dewpoint-current strong {
  color: var(--ivory);
  font-family: var(--font-en);
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 0.95;
  text-align: right;
}

.dewpoint-current em {
  grid-column: 1 / -1;
  justify-self: end;
  color: rgba(226, 198, 132, 0.96);
  font-size: 14px;
  font-weight: 700;
}

.dewpoint-panel p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.7;
}

.dewpoint-calculator {
  border-top: 1px solid rgba(248, 245, 239, 0.16);
  padding-top: 12px;
}

.dewpoint-calculator summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.dewpoint-calculator summary::-webkit-details-marker {
  display: none;
}

.dewpoint-panel .tool-inputs {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.dewpoint-panel label {
  color: rgba(248, 245, 239, 0.72);
  font-size: 11px;
}

.dewpoint-panel input {
  min-height: 40px;
  margin-top: 6px;
  border-color: rgba(248, 245, 239, 0.22);
  background: rgba(248, 245, 239, 0.12);
  color: var(--ivory);
}

.climate-mode-tabs {
  right: clamp(34px, 4.6vw, 70px);
  top: 50%;
  display: grid;
  gap: 10px;
  transform: translateY(-4%);
}

.climate-hotspot {
  min-height: 40px;
  justify-content: flex-start;
  border-color: rgba(18, 53, 47, 0.16);
  background: rgba(248, 245, 239, 0.54);
  backdrop-filter: blur(12px);
}

.climate-hotspot:hover,
.climate-hotspot.is-active {
  background: rgba(18, 53, 47, 0.78);
  color: var(--ivory);
}

.climate-explanation {
  right: clamp(34px, 4.6vw, 70px);
  bottom: clamp(34px, 4.2vw, 62px);
  width: min(520px, 40vw);
  padding: 20px 22px;
  border: 1px solid rgba(248, 245, 239, 0.28);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(248, 245, 239, 0.78), rgba(248, 245, 239, 0.46));
  box-shadow: 0 24px 70px rgba(18, 53, 47, 0.1);
  backdrop-filter: blur(16px) saturate(1.06);
}

.climate-explanation h3 {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 750;
}

.climate-explanation p {
  margin: 0;
  color: #4f473f;
  font-size: 14.5px;
  line-height: 1.82;
}

.climate-explanation .card-quote {
  margin: 14px 0 0;
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.58;
}

.geo-labels {
  inset: 0;
  pointer-events: none;
}

.geo-label,
.changsha-pulse,
.dew-risk,
.mep-mini-icons i {
  position: absolute;
  border: 1px solid rgba(184, 155, 94, 0.35);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(248, 245, 239, 0.58);
  color: var(--deep);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.geo-north { left: 42%; top: 10%; }
.geo-west { left: 16%; top: 46%; }
.geo-east { right: 20%; top: 38%; }
.geo-south { left: 38%; bottom: 12%; }
.geo-xiang { left: 50%; top: 46%; }

.changsha-pulse {
  left: 52.2%;
  top: 55%;
  background: rgba(184, 155, 94, 0.94);
  color: var(--ivory);
  transform: translate(-50%, -50%);
}

.changsha-pulse::after {
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(184, 155, 94, 0.44);
  border-radius: inherit;
  animation: pulseRing 2.8s ease-in-out infinite;
  content: "";
}

.climate-flow-layer {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.flow-line,
.water-vapor,
.heat-island,
.humid-dome,
.comfort-arc {
  position: absolute;
  opacity: 0;
  transition: opacity 500ms ease;
}

.flow-line {
  width: 38%;
  height: 120px;
  border-top: 3px solid rgba(38, 232, 186, 0.72);
  border-radius: 55% 45% 0 0;
  box-shadow: 0 0 18px rgba(38, 232, 186, 0.12);
  filter: blur(0.05px);
  animation: flowDrift 7s ease-in-out infinite alternate;
}

.flow-north.flow-a { left: 36%; top: 18%; transform: rotate(98deg); }
.flow-north.flow-b { left: 42%; top: 13%; transform: rotate(108deg); animation-delay: 1s; }
.flow-north.flow-c { left: 48%; top: 17%; transform: rotate(92deg); animation-delay: 1.8s; }
.flow-winter.flow-a { left: 41%; top: 15%; border-color: rgba(114, 210, 255, 0.66); transform: rotate(100deg); }
.flow-winter.flow-b { left: 50%; top: 12%; border-color: rgba(114, 210, 255, 0.58); transform: rotate(88deg); animation-delay: 1.3s; }

.water-vapor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(56, 246, 198, 0.78);
  box-shadow:
    0 0 14px rgba(56, 246, 198, 0.22),
    24px 18px 0 rgba(56, 246, 198, 0.44),
    24px 18px 14px rgba(56, 246, 198, 0.12),
    54px -10px 0 rgba(113, 224, 255, 0.34),
    86px 28px 0 rgba(56, 246, 198, 0.36);
  animation: vaporRise 5.4s ease-in-out infinite;
}

.vapor-a { left: 47%; top: 20%; }
.vapor-b { left: 53%; top: 35%; animation-delay: 1.2s; }
.vapor-c { left: 43%; top: 60%; animation-delay: 2s; }

.heat-island {
  left: 50%;
  top: 49%;
  width: 20%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 155, 94, 0.34), rgba(184, 155, 94, 0.06) 58%, transparent 72%);
  transform: translate(-50%, -50%);
}

.humid-dome {
  left: 42%;
  top: 38%;
  width: 30%;
  aspect-ratio: 1.25;
  border: 1.6px solid rgba(72, 228, 193, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 228, 193, 0.24), rgba(72, 228, 193, 0.08) 60%, transparent 75%);
  box-shadow: 0 0 30px rgba(72, 228, 193, 0.08);
}

.dew-risk {
  opacity: 0;
  background: rgba(248, 245, 239, 0.72);
}

.risk-wall { left: 48%; top: 43%; }
.risk-floor { left: 57%; top: 54%; }
.risk-basement { left: 45%; top: 66%; }

.comfort-arc {
  left: 36%;
  top: 35%;
  width: 34%;
  height: 34%;
  border: 4px solid rgba(255, 189, 69, 0.82);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(255, 189, 69, 0.14);
  transform: rotate(22deg);
}

.mep-mini-icons {
  position: absolute;
  left: 43%;
  top: 50%;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 500ms ease;
}

.climate-stage[data-climate-mode="summerHotHumid"] .flow-north,
.climate-stage[data-climate-mode="summerHotHumid"] .water-vapor,
.climate-stage[data-climate-mode="summerHotHumid"] .heat-island,
.climate-stage[data-climate-mode="summerHotHumid"] .humid-dome,
.climate-stage[data-climate-mode="winterColdHumid"] .flow-winter,
.climate-stage[data-climate-mode="winterColdHumid"] .water-vapor,
.climate-stage[data-climate-mode="winterColdHumid"] .humid-dome,
.climate-stage[data-climate-mode="springDamp"] .water-vapor,
.climate-stage[data-climate-mode="springDamp"] .dew-risk,
.climate-stage[data-climate-mode="springDamp"] .humid-dome,
.climate-stage[data-climate-mode="shortComfortSeason"] .comfort-arc,
.climate-stage[data-climate-mode="shortComfortSeason"] .mep-mini-icons {
  opacity: 1;
}

.climate-stage[data-climate-mode="winterColdHumid"] .humid-dome {
  background: radial-gradient(circle, rgba(114, 210, 255, 0.28), rgba(114, 210, 255, 0.08) 62%, transparent 76%);
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.4; transform: scale(0.86); }
  50% { opacity: 0.04; transform: scale(1.32); }
}

@keyframes flowDrift {
  from { opacity: 0.68; translate: 0 -8px; }
  to { opacity: 1; translate: 0 8px; }
}

@keyframes vaporRise {
  0%, 100% { opacity: 0.2; transform: translateY(18px); }
  50% { opacity: 0.78; transform: translateY(-16px); }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-action {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .two-column,
  .climate-intro,
  .fit,
  .visual-story,
  .visual-story.media-first,
  .split-band,
  .dewpoint-panel {
    grid-template-columns: 1fr;
  }

  .climate-map {
    min-height: 560px;
  }

  .climate-map-copy {
    left: 24px;
    right: 24px;
    bottom: 28px;
    max-width: none;
  }

  .climate-map-copy h3 {
    max-width: 560px;
  }

  .climate-hotspots {
    inset: 20px 20px auto 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .climate-detail-panel {
    top: auto;
    bottom: 24px;
    left: 24px;
    right: 24px;
    width: auto;
    padding: 20px;
  }

  .quiet-system {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
  }

  .quiet-system .section-copy {
    width: 100%;
    max-width: 720px;
    padding-top: 0;
  }

  .quiet-system .section-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    transform: none;
  }

  .quiet-title span {
    white-space: normal;
  }

  .constraints h2 {
    white-space: normal;
  }

  .dimension-grid,
  .fit-grid,
  .delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fit-media {
    min-height: 420px;
  }

  .visual-story-media {
    min-height: 420px;
  }

  .cinematic-panel {
    min-height: 620px;
    align-items: end;
  }

  .cinematic-panel.media-first .section-copy {
    grid-column: auto;
  }

  .cinematic-panel .section-image,
  .cinematic-panel .fit-media,
  .cinematic-panel .visual-story-media,
  .quiet-system.cinematic-panel .section-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100% !important;
    aspect-ratio: auto;
  }

  .climate-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .climate-card:nth-child(n) {
    grid-column: auto;
  }

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

  .system-scene-card,
  .system-scene-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 620px;
  }

  .system-scene-card:nth-child(even) .scene-media {
    order: 0;
  }

  .scene-media img {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .module-grid,
  .brand-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .module-card h4,
  .brand-card h4,
  .tool-card h4 {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding-inline: 18px;
  }

  .brand-mark {
    gap: 9px;
  }

  .brand-logo-symbol {
    width: 27px;
    height: 27px;
  }

  .brand-lockup strong {
    font-size: 16px;
  }

  .brand-lockup small {
    max-width: 178px;
    overflow: hidden;
    font-size: 7px;
    text-overflow: ellipsis;
  }

  .section-shell {
    width: min(100% - 28px, var(--max));
    padding: 64px 0;
  }

  .hero {
    min-height: 74vh;
    padding: 86px 18px 48px;
  }

  .hero-slide {
    padding: 86px 18px 48px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding: 28px 26px;
  }

  .hero-copy::before {
    inset: -26px -46px -34px -24px;
    background: radial-gradient(ellipse at 38% 54%, rgba(248, 245, 239, 0.84) 0%, rgba(248, 245, 239, 0.58) 45%, rgba(248, 245, 239, 0.22) 66%, rgba(248, 245, 239, 0) 88%);
  }

  h1 {
    font-size: clamp(31px, 9vw, 39px);
    line-height: 1.16;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-title span {
    white-space: normal;
  }

  .mobile-break {
    display: block;
  }

  .hero-title,
  .hero-text,
  .hero-closing {
    overflow-wrap: normal;
  }

  .hero-sensory span,
  .hero-renew span {
    display: block;
  }

  .hero-subtitle {
    font-size: 19px;
    line-height: 1.5;
  }

  .hero-text,
  .lead {
    font-size: 15px;
    line-height: 1.78;
  }

  .hero-text {
    max-width: 100%;
    gap: 8px;
  }

  .hero-closing {
    font-size: 21px;
    line-height: 1.42;
  }

  .hero::before {
    background:
      radial-gradient(circle at 50% 78%, rgba(246, 242, 234, 0.24), transparent 44%),
      linear-gradient(0deg, rgba(18, 53, 47, 0.08), transparent 45%);
  }

  .hero-media,
  .section-image,
  .climate-map,
  .fit-media,
  .visual-story-media {
    min-height: 320px;
  }

  .fit-media img,
  .visual-story-media img {
    aspect-ratio: 4 / 3;
  }

  .cinematic-panel {
    min-height: 620px;
    padding: 34px 22px;
  }

  .cinematic-panel::before,
  .cinematic-panel.media-first::before,
  .quiet-system.cinematic-panel::before {
    background:
      radial-gradient(circle at 50% 78%, rgba(10, 36, 31, 0.2), transparent 46%),
      linear-gradient(180deg, transparent 0%, rgba(10, 36, 31, 0.14) 100%);
  }

  .cinematic-panel .section-image,
  .cinematic-panel .fit-media,
  .cinematic-panel .visual-story-media,
  .quiet-system.cinematic-panel .section-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100% !important;
    aspect-ratio: auto;
  }

  .cinematic-panel .section-image img,
  .cinematic-panel .fit-media img,
  .cinematic-panel .visual-story-media img {
    aspect-ratio: auto;
  }

  .quiet-system .section-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .quiet-title {
    font-size: 34px;
    line-height: 1.22;
  }

  .dimension-grid,
  .climate-card-grid,
  .system-grid,
  .module-grid,
  .brand-grid,
  .tool-grid,
  .fit-grid,
  .delivery-grid,
  .process-list,
  .dewpoint-bar,
  .tool-inputs {
    grid-template-columns: 1fr;
  }

  .dimension-card {
    min-height: 520px;
  }

  .dimension-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .dimension-icon svg {
    width: 29px;
    height: 29px;
  }

  .dimension-content {
    padding: 26px;
  }

  .dimension-card blockquote {
    font-size: 20px;
  }

  .dimension-card h3,
  .climate-card h3,
  .system-card h3,
  .scene-content h3,
  .fit-card h3,
  .process-card h3 {
    white-space: normal;
  }

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

  .map-labels {
    display: none;
  }

  .climate-hotspot {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .climate-detail-panel {
    bottom: 18px;
    left: 18px;
    right: 18px;
    padding: 18px;
  }

  .climate-detail-panel.is-open > p:not(.eyebrow),
  .climate-detail-panel .card-quote {
    max-width: none;
  }

  .system-scene-card {
    min-height: 560px;
  }

  .system-scene-card::after {
    background:
      radial-gradient(circle at 22% 82%, rgba(10, 36, 31, 0.18), transparent 38%),
      linear-gradient(180deg, transparent 0%, rgba(10, 36, 31, 0.12) 100%);
  }

  .scene-media img {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .mep-metric-group {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    width: auto;
    max-width: none;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
  }

  .mep-metric-badge {
    grid-template-columns: 24px max-content;
    flex: 0 0 auto;
    min-height: 48px;
    padding: 8px 10px;
    border-radius: 14px;
    scroll-snap-align: start;
  }

  .metric-icon {
    width: 24px;
    height: 24px;
  }

  .metric-icon svg {
    width: 15px;
    height: 15px;
  }

  .metric-label {
    font-size: 10px;
  }

  .metric-value {
    font-size: 13px;
  }

  .scene-content {
    width: auto;
    margin: 20px 20px 94px;
    padding: 28px;
  }

  .scene-content h3 {
    font-size: 32px;
  }

  .hero-media figcaption {
    display: none;
  }

  .hero-dots {
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
  }

  .climate {
    width: min(100% - 28px, var(--max));
  }

  .climate-stage {
    min-height: 760px;
    overflow: hidden;
  }

  .climate-copy-panel {
    top: 18px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 18px;
    border-radius: 20px;
  }

  .climate-copy-panel h3 {
    font-size: 25px;
  }

  .climate-copy-panel p:not(.eyebrow) {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .dewpoint-panel {
    top: auto;
    right: 16px;
    bottom: 126px;
    left: 16px;
    width: auto;
    padding: 16px;
    border-radius: 20px;
  }

  .dewpoint-current strong {
    font-size: 38px;
  }

  .dewpoint-calculator:not([open]) .tool-inputs {
    display: none;
  }

  .dewpoint-panel .tool-inputs {
    grid-template-columns: 1fr 1fr;
  }

  .climate-mode-tabs {
    right: 16px;
    bottom: 18px;
    left: 16px;
    top: auto;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    transform: none;
  }

  .climate-hotspot {
    flex: 0 0 auto;
    min-height: 38px;
    font-size: 12.5px;
  }

  .climate-explanation {
    top: 182px;
    right: 16px;
    left: 16px;
    bottom: auto;
    width: auto;
    padding: 16px;
    border-radius: 20px;
  }

  .climate-explanation h3 {
    font-size: 19px;
  }

  .climate-explanation p {
    font-size: 13.5px;
    line-height: 1.72;
  }

  .climate-explanation .card-quote {
    font-size: 14px;
  }

  .geo-label {
    display: none;
  }

  .changsha-pulse {
    left: 53%;
    top: 55%;
    font-size: 11px;
  }

  .flow-line {
    width: 64%;
  }

  .humid-dome {
    left: 34%;
    top: 39%;
    width: 46%;
  }

  .heat-island {
    width: 34%;
  }

  .mep-mini-icons {
    left: 50%;
    top: 51%;
    flex-wrap: wrap;
    justify-content: center;
    width: 220px;
  }
}

/* FINAL OVERRIDE 2026-06-12: reduce dense copy and restore spacing for delivery/water sections. */
.water-demand-block {
  margin-block: clamp(70px, 9vw, 130px) !important;
}

.water-demand-block .section-kicker h3 {
  max-width: 760px !important;
  font-size: clamp(32px, 3.2vw, 54px) !important;
  line-height: 1.16 !important;
}

.water-demand-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 1.8vw, 28px) !important;
  margin-top: clamp(34px, 4vw, 58px) !important;
}

.water-demand-card {
  min-height: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(18, 53, 47, 0.13) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(255, 252, 242, 0.78), rgba(238, 231, 218, 0.44)) !important;
  box-shadow: 0 20px 54px rgba(18, 53, 47, 0.06) !important;
  overflow: hidden !important;
}

.water-demand-card summary {
  display: flex !important;
  min-height: 112px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 28px 30px !important;
  cursor: pointer !important;
  list-style: none !important;
}

.water-demand-card summary::-webkit-details-marker {
  display: none !important;
}

.water-demand-card h4 {
  margin: 0 !important;
  color: var(--deep) !important;
  font-size: clamp(21px, 1.55vw, 30px) !important;
  line-height: 1.18 !important;
  text-wrap: balance !important;
}

.water-demand-card summary span {
  flex: 0 0 auto !important;
  border: 1px solid rgba(18, 53, 47, 0.14) !important;
  border-radius: 999px !important;
  padding: 8px 13px !important;
  color: var(--deep) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  background: rgba(248, 245, 239, 0.64) !important;
}

.water-demand-card p {
  margin: 0 !important;
  padding: 0 30px 30px !important;
  color: rgba(23, 23, 23, 0.68) !important;
  font-size: 15px !important;
  line-height: 1.78 !important;
}

.water-demand-card:not([open]) p {
  display: none !important;
}

.water-accordion {
  display: grid !important;
  gap: clamp(20px, 2vw, 32px) !important;
  margin-top: clamp(46px, 6vw, 86px) !important;
}

.delivery.visual-story,
.process.visual-story,
.project-access.visual-story {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
  gap: clamp(56px, 7vw, 120px) !important;
  align-items: center !important;
  max-width: min(1680px, calc(100% - 96px)) !important;
  min-height: auto !important;
  margin: clamp(88px, 10vw, 160px) auto !important;
  padding: clamp(72px, 8vw, 118px) clamp(54px, 6vw, 92px) !important;
  overflow: visible !important;
  border: 1px solid rgba(18, 53, 47, 0.08) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 18% 14%, rgba(184, 155, 94, 0.09), transparent 34%),
    linear-gradient(135deg, rgba(248, 245, 239, 0.98), rgba(238, 231, 218, 0.58)) !important;
  box-shadow: 0 28px 90px rgba(18, 53, 47, 0.07) !important;
  color: var(--ink) !important;
}

.delivery.visual-story + .process.visual-story,
.process.visual-story + .project-access.visual-story {
  margin-top: clamp(96px, 11vw, 180px) !important;
}

.delivery.visual-story::before,
.process.visual-story::before,
.project-access.visual-story::before,
.delivery.visual-story::after,
.process.visual-story::after,
.project-access.visual-story::after {
  display: none !important;
}

.delivery.visual-story .visual-story-media,
.process.visual-story .visual-story-media,
.project-access.visual-story .visual-story-media {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 70px rgba(18, 53, 47, 0.13) !important;
  background: rgba(18, 53, 47, 0.05) !important;
}

.delivery.visual-story .visual-story-media img,
.process.visual-story .visual-story-media img,
.project-access.visual-story .visual-story-media img {
  display: block !important;
  width: 100% !important;
  height: clamp(430px, 46vw, 680px) !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: inherit !important;
  filter: saturate(1.08) contrast(1.035) brightness(1.04) !important;
  transform: scale(1.006) !important;
}

.scene-caption {
  margin: 0;
  padding: 16px 18px 0;
  color: rgba(23, 23, 23, 0.62);
  font-family: var(--font-serif);
  font-size: clamp(14px, 0.94vw, 16px);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.delivery.visual-story:hover .visual-story-media img,
.process.visual-story:hover .visual-story-media img,
.project-access.visual-story:hover .visual-story-media img {
  transform: scale(1.026) !important;
  filter: saturate(1.14) contrast(1.045) brightness(1.06) !important;
}

.delivery.visual-story .section-copy,
.process.visual-story .section-copy,
.project-access.visual-story .section-copy {
  position: relative !important;
  z-index: 2 !important;
  grid-column: auto !important;
  align-self: center !important;
  width: min(500px, 100%) !important;
  max-width: 500px !important;
  padding: 0 !important;
  color: var(--ink) !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.section-bridge {
  max-width: 420px;
  margin: 0;
  align-self: end;
  color: rgba(23, 23, 23, 0.56);
  font-family: var(--font-serif);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.85;
}

.delivery.visual-story .section-copy h2,
.process.visual-story .section-copy h2,
.project-access.visual-story .section-copy h2 {
  max-width: 480px !important;
  margin-bottom: 18px !important;
  color: var(--deep) !important;
  font-size: clamp(34px, 3vw, 56px) !important;
  line-height: 1.14 !important;
  text-shadow: none !important;
}

.delivery.visual-story .eyebrow,
.process.visual-story .eyebrow,
.project-access.visual-story .eyebrow {
  color: rgba(184, 155, 94, 0.94) !important;
  text-shadow: none !important;
}

.delivery.visual-story .section-copy p:not(.eyebrow),
.process.visual-story .section-copy p:not(.eyebrow),
.project-access.visual-story .section-copy p:not(.eyebrow) {
  max-width: 440px !important;
  color: rgba(23, 23, 23, 0.7) !important;
  font-size: clamp(14px, 0.92vw, 16px) !important;
  line-height: 1.8 !important;
  text-shadow: none !important;
}

.delivery.visual-story .section-bridge,
.process.visual-story .section-bridge {
  justify-self: start;
}

.delivery.visual-story blockquote,
.process.visual-story blockquote,
.project-access.visual-story blockquote {
  max-width: 450px !important;
  margin-top: 20px !important;
  border-left-color: rgba(184, 155, 94, 0.72) !important;
  color: var(--deep) !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(18px, 1.35vw, 25px) !important;
  font-weight: 760 !important;
  line-height: 1.5 !important;
  text-shadow: none !important;
}

.delivery.visual-story .delivery-grid,
.process.visual-story .process-list,
.project-access.visual-story .access-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  max-width: 520px !important;
  gap: 12px !important;
  margin-top: clamp(24px, 2.6vw, 38px) !important;
  justify-self: start !important;
}

.delivery.visual-story .delivery-card,
.process.visual-story .process-card {
  width: auto !important;
  min-width: 0 !important;
  border: 1px solid rgba(18, 53, 47, 0.14) !important;
  border-radius: 999px !important;
  background: rgba(255, 252, 242, 0.62) !important;
  color: var(--deep) !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(108%) !important;
}

.delivery.visual-story .delivery-card[open],
.process.visual-story .process-card[open] {
  flex-basis: min(500px, 100%) !important;
  border-radius: 16px !important;
  background: rgba(255, 252, 242, 0.82) !important;
}

.delivery.visual-story .delivery-card summary,
.process.visual-story .process-card summary {
  min-height: 42px !important;
  padding: 0 16px !important;
}

.delivery.visual-story .delivery-card summary,
.process.visual-story .process-card summary,
.process.visual-story .process-card h3,
.process.visual-story .process-card span {
  color: var(--deep) !important;
}

.delivery.visual-story .delivery-card p,
.process.visual-story .process-card p {
  color: rgba(23, 23, 23, 0.68) !important;
}

.project-access.visual-story .access-card {
  max-width: 410px !important;
  margin-top: 20px !important;
}

@media (min-width: 981px) {
  .process.visual-story.media-first,
  .project-access.visual-story.media-first {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) !important;
  }

  .process.visual-story.media-first .visual-story-media,
  .project-access.visual-story.media-first .visual-story-media {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .process.visual-story.media-first .section-copy,
  .project-access.visual-story.media-first .section-copy {
    grid-column: 2 !important;
  }

  .constraints.media-first .section-bridge {
    grid-column: 2;
    margin-top: -4px;
  }
}

@media (max-width: 1180px) {
  .water-demand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .delivery.visual-story,
  .process.visual-story,
  .project-access.visual-story {
    grid-template-columns: 1fr !important;
    max-width: min(760px, calc(100% - 36px)) !important;
    gap: 30px !important;
    margin-block: 56px !important;
    padding: 34px 22px 48px !important;
  }

  .delivery.visual-story .visual-story-media img,
  .process.visual-story .visual-story-media img,
  .project-access.visual-story .visual-story-media img {
    height: clamp(340px, 68vw, 520px) !important;
  }
}

@media (max-width: 680px) {
  .water-demand-grid {
    grid-template-columns: 1fr !important;
  }

  .water-demand-card summary {
    min-height: 88px !important;
    padding: 22px !important;
  }
}

/* 2026-06-17 final coherence pass: image-led storytelling, breathable Chinese typography, left-aligned rhythm. */
body :where(.home-closing, .dimension-closing, .climate-closing, .experience-translation, .section-heading, .image-entry-copy, .fit .section-copy, .constraints .section-copy, .delivery .section-copy, .process .section-copy, .project-access .section-copy) {
  text-align: left !important;
}

body .home-closing,
body .dimension-closing,
body .climate-closing,
body .experience-translation {
  width: min(1080px, calc(100% - 64px)) !important;
  margin-inline: auto !important;
}

body .home-closing p,
body .dimension-closing p,
body .climate-closing h3,
body .experience-translation h3,
body .section-heading h2,
body .image-entry-copy :is(h1, h2),
body .fit .section-copy h2,
body .constraints .section-copy h2,
body .delivery .section-copy h2,
body .process .section-copy h2,
body .project-access .section-copy h2 {
  max-width: 18em !important;
  text-wrap: pretty !important;
}

body .home-closing p,
body .dimension-closing p {
  margin-inline: 0 !important;
}

body .home-closing p {
  max-width: 16em !important;
  font-size: clamp(28px, 2.85vw, 42px) !important;
  line-height: 1.42 !important;
}

body .home-closing span {
  max-width: 32em !important;
}

body .dimension-closing p {
  max-width: 21em !important;
  font-size: clamp(24px, 2.7vw, 38px) !important;
  line-height: 1.5 !important;
}

body .section-heading {
  align-items: start !important;
}

body .section-heading .lead,
body .image-entry-copy p,
body .fit .section-copy p:not(.eyebrow),
body .constraints .section-copy p:not(.eyebrow),
body .delivery .section-copy p:not(.eyebrow),
body .process .section-copy p:not(.eyebrow),
body .project-access .section-copy p:not(.eyebrow),
body .experience-translation p {
  max-width: 34em !important;
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.85 !important;
}

body .image-entry-panel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  width: min(1680px, calc(100% - 72px)) !important;
  min-height: clamp(620px, 58vw, 820px) !important;
  margin: clamp(88px, 10vw, 160px) auto !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .image-entry-panel + .image-entry-panel {
  margin-top: clamp(64px, 7vw, 120px) !important;
}

body .image-entry-media,
body .image-entry-media img {
  grid-area: 1 / 1 !important;
  width: 100% !important;
  height: 100% !important;
}

body .image-entry-media {
  margin: 0 !important;
  border-radius: inherit !important;
  overflow: hidden !important;
}

body .image-entry-media img {
  display: block !important;
  min-height: clamp(620px, 58vw, 820px) !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(1.06) contrast(1.04) brightness(1.02) !important;
}

body .image-entry-panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(10, 31, 28, 0.54) 0%, rgba(10, 31, 28, 0.34) 24%, rgba(10, 31, 28, 0.08) 54%, rgba(10, 31, 28, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 28, 24, 0.12), rgba(8, 28, 24, 0.04)) !important;
  pointer-events: none !important;
}

body .image-entry-copy {
  position: relative !important;
  z-index: 2 !important;
  grid-area: 1 / 1 !important;
  align-self: center !important;
  width: min(560px, 44%) !important;
  margin-left: clamp(34px, 5vw, 84px) !important;
  padding: 0 !important;
  color: rgba(255, 252, 242, 0.94) !important;
  background: none !important;
  box-shadow: none !important;
}

body .image-entry-copy :is(h1, h2) {
  margin: 16px 0 18px !important;
  color: #fffdf7 !important;
  font-size: clamp(34px, 3.2vw, 56px) !important;
  line-height: 1.16 !important;
}

body .image-entry-copy p:not(.eyebrow) {
  color: rgba(255, 252, 242, 0.82) !important;
}

body .image-entry-copy blockquote {
  max-width: 28em !important;
  margin-top: 24px !important;
  border-left: 2px solid rgba(184, 155, 94, 0.72) !important;
  color: #fffdf7 !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.62 !important;
}

body .water-logic-panel::before {
  background:
    linear-gradient(90deg, rgba(10, 31, 28, 0.76) 0%, rgba(10, 31, 28, 0.56) 28%, rgba(10, 31, 28, 0.14) 54%, rgba(10, 31, 28, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 28, 24, 0.20), rgba(8, 28, 24, 0.08)) !important;
}

body .water-logic-panel .image-entry-copy {
  width: min(520px, 40%) !important;
  max-width: 520px !important;
}

body .water-logic-panel .image-entry-copy h2 {
  max-width: 9.5em !important;
}

body .water-logic-panel .image-entry-copy p:not(.eyebrow),
body .water-logic-panel .image-entry-copy blockquote {
  max-width: 26em !important;
}

body .water-supply .water-supply-hero {
  margin-bottom: clamp(44px, 5vw, 72px) !important;
}

body .water-supply .water-supply-copy {
  text-align: left !important;
}

body .water-supply .water-flow-overlay,
body .water-supply .water-flow-legend {
  display: none !important;
}

body .water-supply .water-demand-block {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) !important;
  gap: clamp(26px, 3vw, 42px) !important;
  align-items: start !important;
}

body .water-supply .water-demand-media {
  min-height: clamp(360px, 36vw, 520px) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}

body .water-supply .water-demand-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(1.06) contrast(1.04) brightness(1.02) !important;
}

body .water-supply .mini-heading {
  align-self: center !important;
  padding-right: clamp(8px, 1vw, 14px) !important;
  text-align: left !important;
}

body .water-supply .mini-heading h3 {
  max-width: 14em !important;
  font-size: clamp(30px, 2.75vw, 46px) !important;
  line-height: 1.18 !important;
  text-wrap: pretty !important;
}

body .water-supply .mini-heading blockquote {
  max-width: 26em !important;
}

body .water-supply .water-demand-grid {
  grid-column: 1 / -1 !important;
  margin-top: 0 !important;
}

body .water-supply .water-demand-card summary {
  align-items: flex-start !important;
}

body .water-supply .water-demand-card h4,
body .fit-card h3 {
  white-space: nowrap !important;
  text-wrap: nowrap !important;
}

body .fit-grid {
  gap: clamp(16px, 1.8vw, 26px) !important;
}

body .fit-card {
  border-radius: 20px !important;
  background: linear-gradient(145deg, rgba(255, 252, 242, 0.86), rgba(238, 231, 218, 0.56)) !important;
}

body .fit-card summary {
  min-height: 104px !important;
  align-items: start !important;
}

body .fit-card span {
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
}

body .fit-card h3 {
  font-size: clamp(20px, 1.45vw, 26px) !important;
  line-height: 1.2 !important;
}

body .delivery-prelude + .delivery-prelude,
body .systems + .delivery-prelude,
body .water-supply + .image-entry-panel,
body .image-entry-panel + .systems {
  margin-top: clamp(86px, 10vw, 150px) !important;
}

body .delivery.visual-story .delivery-grid,
body .process.visual-story .process-list {
  gap: 14px !important;
}

body .delivery.visual-story .delivery-card summary,
body .process.visual-story .process-card summary {
  justify-items: start !important;
  text-align: left !important;
}

body .project-access.visual-story .access-card,
body .project-access.visual-story .access-card label,
body .project-access.visual-story .access-card p {
  text-align: left !important;
}

@media (max-width: 1180px) {
  body .image-entry-panel {
    width: min(100% - 40px, 1120px) !important;
  }

  body .image-entry-copy {
    width: min(560px, calc(100% - 72px)) !important;
    margin-inline: 36px !important;
  }

  body .water-supply .water-demand-block {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  body .home-closing,
  body .dimension-closing,
  body .climate-closing,
  body .experience-translation {
    width: min(100% - 28px, 760px) !important;
  }

  body .image-entry-panel {
    width: min(100% - 24px, 760px) !important;
    min-height: 560px !important;
    margin-block: 48px !important;
  }

  body .image-entry-media img {
    min-height: 560px !important;
  }

  body .image-entry-panel::before {
    background:
      linear-gradient(180deg, rgba(10, 31, 28, 0.22) 0%, rgba(10, 31, 28, 0.66) 54%, rgba(10, 31, 28, 0.86) 100%) !important;
  }

  body .image-entry-copy {
    align-self: end !important;
    width: calc(100% - 40px) !important;
    margin: 0 20px 24px !important;
  }

  body .image-entry-copy :is(h1, h2) {
    font-size: clamp(28px, 8.2vw, 40px) !important;
  }

  body .water-logic-panel::before {
    background:
      linear-gradient(180deg, rgba(10, 31, 28, 0.16) 0%, rgba(10, 31, 28, 0.58) 56%, rgba(10, 31, 28, 0.88) 100%) !important;
  }

  body .water-supply .water-demand-card h4,
  body .fit-card h3 {
    white-space: normal !important;
    text-wrap: pretty !important;
  }
}

/* 2026-06-17 water hero readability fix: keep copy off the dense pipe area. */
body .water-supply .water-supply-hero {
  grid-template-columns: minmax(320px, 30%) minmax(0, 1fr) !important;
  align-items: stretch !important;
}

body .water-supply .water-supply-hero::before {
  background:
    linear-gradient(90deg, rgba(9, 30, 26, 0.74) 0%, rgba(9, 30, 26, 0.62) 24%, rgba(9, 30, 26, 0.18) 46%, rgba(9, 30, 26, 0.02) 60%, rgba(9, 30, 26, 0) 100%),
    radial-gradient(circle at 18% 48%, rgba(255, 252, 242, 0.08), rgba(255, 252, 242, 0) 34%) !important;
}

body .water-supply .water-supply-copy {
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  width: min(440px, calc(100% - 48px)) !important;
  max-width: 440px !important;
  margin: 28px 0 28px clamp(28px, 3.4vw, 52px) !important;
  padding: clamp(24px, 2.8vw, 36px) clamp(20px, 2vw, 28px) !important;
  border: 1px solid rgba(255, 252, 242, 0.18) !important;
  border-radius: 24px !important;
  background: linear-gradient(145deg, rgba(10, 30, 26, 0.78), rgba(10, 30, 26, 0.44)) !important;
  box-shadow: 0 20px 56px rgba(6, 21, 18, 0.24) !important;
  backdrop-filter: blur(10px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(108%) !important;
}

body .water-supply .water-supply-copy h2 {
  max-width: 8.2em !important;
  margin-block: 12px 18px !important;
  font-size: clamp(30px, 2.6vw, 44px) !important;
  line-height: 1.16 !important;
  text-wrap: pretty !important;
}

body .water-supply .water-supply-copy .lead {
  max-width: 26em !important;
  color: rgba(255, 252, 242, 0.82) !important;
  font-size: clamp(14px, 0.92vw, 16px) !important;
  line-height: 1.82 !important;
}

body .water-supply .water-supply-copy blockquote {
  max-width: 24em !important;
  margin-top: 18px !important;
  color: rgba(255, 252, 242, 0.94) !important;
  font-size: clamp(18px, 1.18vw, 22px) !important;
  line-height: 1.6 !important;
}

body .water-supply .water-supply-copy .cinematic-detail {
  margin-top: 18px !important;
}

body .water-supply .water-supply-copy .cinematic-detail summary {
  width: fit-content !important;
}

@media (max-width: 1080px) {
  body .water-supply .water-supply-hero {
    grid-template-columns: 1fr !important;
  }

  body .water-supply .water-supply-copy {
    align-self: end !important;
    width: min(520px, calc(100% - 40px)) !important;
    max-width: 520px !important;
    margin: 0 20px 24px !important;
  }

  body .water-supply .water-supply-hero::before {
    background:
      linear-gradient(180deg, rgba(9, 30, 26, 0.06) 0%, rgba(9, 30, 26, 0.34) 44%, rgba(9, 30, 26, 0.82) 100%) !important;
  }
}

/* FINAL LAUNCH OVERRIDE 2026-06-12: keep water/delivery rhythm stable */
.water-supply-hero,
.delivery.visual-story,
.process.visual-story,
.project-access.visual-story {
  max-width: min(1680px, calc(100% - 112px)) !important;
}

.water-supply-media img {
  height: clamp(520px, 46vw, 720px) !important;
  object-fit: cover !important;
  object-position: center !important;
}

.water-demand-block {
  max-width: min(1480px, calc(100% - 112px)) !important;
  margin: clamp(92px, 9vw, 150px) auto clamp(112px, 10vw, 170px) !important;
  padding: 0 !important;
}

.water-demand-block .mini-heading {
  max-width: 940px !important;
  margin-bottom: clamp(34px, 4vw, 58px) !important;
}

.water-demand-block .mini-heading h3 {
  max-width: 880px !important;
  font-size: clamp(38px, 4.6vw, 76px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.water-demand-block .mini-heading blockquote {
  max-width: 860px !important;
  margin-top: clamp(22px, 3vw, 36px) !important;
  font-size: clamp(22px, 2vw, 34px) !important;
  line-height: 1.45 !important;
}

.water-demand-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border-top: 1px solid rgba(18, 53, 47, 0.13) !important;
  border-bottom: 1px solid rgba(18, 53, 47, 0.13) !important;
}

.water-demand-card,
.water-demand-card:last-child {
  border: 0 !important;
  border-right: 1px solid rgba(18, 53, 47, 0.11) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.water-demand-card:last-child {
  border-right: 0 !important;
}

.water-demand-card summary {
  min-height: 112px !important;
  padding: 24px 28px !important;
  gap: 16px !important;
  background: transparent !important;
}

.water-demand-card h4 {
  max-width: 10em !important;
  font-size: clamp(20px, 1.45vw, 28px) !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
}

.water-demand-card summary span {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.water-demand-card p {
  padding: 0 28px 28px !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
}

.water-accordion {
  margin-top: clamp(72px, 8vw, 128px) !important;
}

.delivery.visual-story,
.process.visual-story,
.project-access.visual-story {
  margin-top: clamp(120px, 12vw, 210px) !important;
  margin-bottom: clamp(120px, 12vw, 210px) !important;
}

.delivery.visual-story + .process.visual-story,
.process.visual-story + .project-access.visual-story {
  margin-top: clamp(140px, 13vw, 230px) !important;
}

.delivery.visual-story .visual-story-media img,
.process.visual-story .visual-story-media img,
.project-access.visual-story .visual-story-media img {
  height: clamp(460px, 44vw, 700px) !important;
}

@media (max-width: 1280px) {
  .water-supply-hero,
  .delivery.visual-story,
  .process.visual-story,
  .project-access.visual-story {
    max-width: min(1120px, calc(100% - 72px)) !important;
  }

  .water-demand-block {
    max-width: min(1120px, calc(100% - 72px)) !important;
  }

  .water-demand-block .mini-heading h3 {
    font-size: clamp(34px, 4.8vw, 56px) !important;
  }

  .water-demand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .water-demand-card:nth-child(2n) {
    border-right: 0 !important;
  }
}

@media (max-width: 980px) {
  .water-supply-hero {
    max-width: min(760px, calc(100% - 44px)) !important;
  }

  .water-supply-media img {
    height: clamp(360px, 78vw, 560px) !important;
  }

  .water-demand-block {
    max-width: min(760px, calc(100% - 44px)) !important;
    margin: 72px auto 104px !important;
  }

  .water-demand-block .mini-heading h3 {
    font-size: clamp(30px, 6vw, 44px) !important;
    line-height: 1.12 !important;
  }

  .water-demand-block .mini-heading blockquote {
    font-size: clamp(17px, 3.2vw, 22px) !important;
    line-height: 1.55 !important;
  }

  .water-demand-grid {
    grid-template-columns: 1fr !important;
    border-top-color: rgba(18, 53, 47, 0.12) !important;
    border-bottom-color: rgba(18, 53, 47, 0.12) !important;
  }

  .water-demand-card,
  .water-demand-card:last-child,
  .water-demand-card:nth-child(2n) {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(18, 53, 47, 0.1) !important;
  }

  .water-demand-card:last-child {
    border-bottom: 0 !important;
  }

  .water-demand-card summary {
    min-height: 62px !important;
    padding: 16px 0 !important;
  }

  .water-demand-card h4 {
    max-width: none !important;
    font-size: clamp(20px, 4vw, 25px) !important;
    line-height: 1.2 !important;
  }

  .water-demand-card summary span {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    color: rgba(184, 155, 94, 0.95) !important;
    font-size: 12px !important;
  }

  .water-demand-card p {
    padding: 0 0 18px !important;
    font-size: 14px !important;
    line-height: 1.72 !important;
  }

  .delivery.visual-story,
  .process.visual-story,
  .project-access.visual-story {
    max-width: min(760px, calc(100% - 44px)) !important;
    margin-block: 96px !important;
  }
}

@media (max-width: 680px) {
  .water-supply-hero,
  .delivery.visual-story,
  .process.visual-story,
  .project-access.visual-story,
  .water-demand-block {
    max-width: calc(100% - 36px) !important;
  }

  .water-demand-block {
    margin-block: 58px 88px !important;
  }

  .water-demand-block .mini-heading h3 {
    font-size: clamp(27px, 7.2vw, 36px) !important;
  }

  .water-demand-card summary {
    min-height: 56px !important;
    padding: 14px 0 !important;
  }

  .water-demand-card h4 {
    font-size: 21px !important;
  }

  .delivery.visual-story .visual-story-media img,
  .process.visual-story .visual-story-media img,
  .project-access.visual-story .visual-story-media img {
    height: clamp(320px, 78vw, 460px) !important;
  }
}

/* Launch polish: image rhythm, demand rows, and Mac Chrome scale guard */
.water-supply-hero,
.delivery.visual-story,
.process.visual-story,
.project-access.visual-story {
  max-width: min(1680px, calc(100% - 112px)) !important;
}

.water-supply-media,
.visual-story-media,
.scenario-card,
.system-card {
  isolation: isolate;
}

.water-supply-media img {
  height: clamp(520px, 46vw, 720px) !important;
  object-fit: cover !important;
  object-position: center !important;
}

.water-demand-block {
  max-width: min(1480px, calc(100% - 112px)) !important;
  margin: clamp(92px, 9vw, 150px) auto clamp(112px, 10vw, 170px) !important;
  padding: 0 !important;
}

.water-demand-block .mini-heading {
  max-width: 940px !important;
  margin-bottom: clamp(34px, 4vw, 58px) !important;
}

.water-demand-block .mini-heading h3 {
  max-width: 880px !important;
  font-size: clamp(38px, 4.6vw, 76px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.water-demand-block .mini-heading blockquote {
  max-width: 860px !important;
  margin-top: clamp(22px, 3vw, 36px) !important;
  font-size: clamp(22px, 2vw, 34px) !important;
  line-height: 1.45 !important;
}

.water-demand-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border-top: 1px solid rgba(18, 53, 47, 0.13) !important;
  border-bottom: 1px solid rgba(18, 53, 47, 0.13) !important;
}

.water-demand-card,
.water-demand-card:last-child {
  border: 0 !important;
  border-right: 1px solid rgba(18, 53, 47, 0.11) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.water-demand-card:last-child {
  border-right: 0 !important;
}

.water-demand-card summary {
  min-height: 112px !important;
  padding: 24px 28px !important;
  gap: 16px !important;
  background: transparent !important;
}

.water-demand-card h4 {
  max-width: 10em !important;
  font-size: clamp(20px, 1.45vw, 28px) !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
}

.water-demand-card summary span {
  flex: 0 0 auto !important;
  min-width: 0 !important;
  padding: 8px 14px !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.water-demand-card p {
  padding: 0 28px 28px !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
}

.water-accordion {
  margin-top: clamp(72px, 8vw, 128px) !important;
}

.delivery.visual-story,
.process.visual-story,
.project-access.visual-story {
  margin-top: clamp(120px, 12vw, 210px) !important;
  margin-bottom: clamp(120px, 12vw, 210px) !important;
}

.delivery.visual-story + .process.visual-story,
.process.visual-story + .project-access.visual-story {
  margin-top: clamp(140px, 13vw, 230px) !important;
}

.delivery.visual-story .visual-story-media img,
.process.visual-story .visual-story-media img,
.project-access.visual-story .visual-story-media img {
  height: clamp(460px, 44vw, 700px) !important;
}

@media (max-width: 1280px) {
  .water-supply-hero,
  .delivery.visual-story,
  .process.visual-story,
  .project-access.visual-story {
    max-width: min(1120px, calc(100% - 72px)) !important;
  }

  .water-demand-block {
    max-width: min(1120px, calc(100% - 72px)) !important;
  }

  .water-demand-block .mini-heading h3 {
    font-size: clamp(34px, 4.8vw, 56px) !important;
  }

  .water-demand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .water-demand-card:nth-child(2n) {
    border-right: 0 !important;
  }
}

@media (max-width: 980px) {
  .water-supply-hero {
    max-width: min(760px, calc(100% - 44px)) !important;
  }

  .water-supply-media img {
    height: clamp(360px, 78vw, 560px) !important;
  }

  .water-demand-block {
    max-width: min(760px, calc(100% - 44px)) !important;
    margin: 72px auto 104px !important;
  }

  .water-demand-block .mini-heading h3 {
    font-size: clamp(30px, 6vw, 44px) !important;
    line-height: 1.12 !important;
  }

  .water-demand-block .mini-heading blockquote {
    font-size: clamp(17px, 3.2vw, 22px) !important;
    line-height: 1.55 !important;
  }

  .water-demand-grid {
    grid-template-columns: 1fr !important;
    border-top-color: rgba(18, 53, 47, 0.12) !important;
    border-bottom-color: rgba(18, 53, 47, 0.12) !important;
  }

  .water-demand-card,
  .water-demand-card:last-child,
  .water-demand-card:nth-child(2n) {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(18, 53, 47, 0.1) !important;
  }

  .water-demand-card:last-child {
    border-bottom: 0 !important;
  }

  .water-demand-card summary {
    min-height: 62px !important;
    padding: 16px 0 !important;
  }

  .water-demand-card h4 {
    max-width: none !important;
    font-size: clamp(20px, 4vw, 25px) !important;
    line-height: 1.2 !important;
  }

  .water-demand-card summary span {
    border: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    color: rgba(184, 155, 94, 0.95) !important;
    font-size: 12px !important;
  }

  .water-demand-card p {
    padding: 0 0 18px !important;
    font-size: 14px !important;
    line-height: 1.72 !important;
  }

  .delivery.visual-story,
  .process.visual-story,
  .project-access.visual-story {
    max-width: min(760px, calc(100% - 44px)) !important;
    margin-block: 96px !important;
  }
}

@media (max-width: 680px) {
  .water-supply-hero,
  .delivery.visual-story,
  .process.visual-story,
  .project-access.visual-story,
  .water-demand-block {
    max-width: calc(100% - 36px) !important;
  }

  .water-demand-block {
    margin-block: 58px 88px !important;
  }

  .water-demand-block .mini-heading h3 {
    font-size: clamp(27px, 7.2vw, 36px) !important;
  }

  .water-demand-card summary {
    min-height: 56px !important;
    padding: 14px 0 !important;
  }

  .water-demand-card h4 {
    font-size: 21px !important;
  }

  .delivery.visual-story .visual-story-media img,
  .process.visual-story .visual-story-media img,
  .project-access.visual-story .visual-story-media img {
    height: clamp(320px, 78vw, 460px) !important;
  }
}

/* TRUE FINAL OVERRIDE 2: make demand-first read like a quiet editorial index, not app cards. */
.water-demand-block {
  max-width: min(1280px, calc(100% - 56px)) !important;
  margin: clamp(78px, 9vw, 140px) auto !important;
}

.water-demand-block .mini-heading {
  max-width: 760px !important;
}

.water-demand-block .mini-heading .eyebrow {
  margin-bottom: 16px !important;
  font-size: 13px !important;
}

.water-demand-block .mini-heading h3 {
  max-width: 760px !important;
  font-size: clamp(30px, 3vw, 52px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

.water-demand-block .mini-heading blockquote {
  max-width: 720px !important;
  margin-top: 24px !important;
  padding-left: 18px !important;
  color: var(--deep) !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(18px, 1.55vw, 27px) !important;
  font-weight: 650 !important;
  line-height: 1.5 !important;
}

.water-demand-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: clamp(42px, 5vw, 72px) !important;
  border-top: 1px solid rgba(18, 53, 47, 0.12) !important;
  border-bottom: 1px solid rgba(18, 53, 47, 0.12) !important;
}

.water-demand-card {
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-right: 1px solid rgba(18, 53, 47, 0.10) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.water-demand-card:last-child {
  border-right: 0 !important;
}

.water-demand-card summary {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  min-height: 112px !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 22px clamp(18px, 2vw, 30px) !important;
  cursor: pointer !important;
  list-style: none !important;
}

.water-demand-card summary::-webkit-details-marker {
  display: none !important;
}

.water-demand-card h4 {
  margin: 0 !important;
  color: var(--deep) !important;
  font-size: clamp(20px, 1.5vw, 28px) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-wrap: balance !important;
}

.water-demand-card summary span {
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(184, 155, 94, 0.92) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.water-demand-card summary span::after {
  content: " +" !important;
}

.water-demand-card[open] summary span::after {
  content: " -" !important;
}

.water-demand-card p {
  margin: 0 !important;
  padding: 0 clamp(18px, 2vw, 30px) 28px !important;
  color: rgba(23, 23, 23, 0.68) !important;
  font-size: clamp(14px, 0.92vw, 16px) !important;
  line-height: 1.78 !important;
}

.water-demand-card:not([open]) p {
  display: none !important;
}

@media (max-width: 1180px) {
  .water-demand-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .water-demand-card,
  .water-demand-card:last-child {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(18, 53, 47, 0.10) !important;
  }

  .water-demand-card:last-child {
    border-bottom: 0 !important;
  }

  .water-demand-card summary {
    min-height: 78px !important;
    padding: 18px 4px !important;
  }

  .water-demand-card h4 {
    font-size: clamp(22px, 5vw, 30px) !important;
  }

  .water-demand-card p {
    padding: 0 4px 22px !important;
    max-width: 640px !important;
  }
}

@media (max-width: 680px) {
  .water-demand-block {
    max-width: calc(100% - 48px) !important;
    margin-block: 64px !important;
  }

  .water-demand-block .mini-heading h3 {
    font-size: clamp(28px, 8vw, 38px) !important;
  }

  .water-demand-block .mini-heading blockquote {
    font-size: 18px !important;
  }

  .water-demand-card summary {
    min-height: 68px !important;
    padding: 16px 0 !important;
  }

  .water-demand-card h4 {
    font-size: 23px !important;
  }
}

/* Final delivery/process spacing pass: keep these sections airy instead of stacked image slabs. */
.delivery.visual-story,
.process.visual-story,
.project-access.visual-story {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
  gap: clamp(42px, 6vw, 96px) !important;
  align-items: center !important;
  min-height: auto !important;
  margin-block: clamp(42px, 6vw, 92px) !important;
  padding-block: clamp(78px, 8vw, 128px) !important;
  overflow: visible !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 155, 94, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(248, 245, 239, 0.96), rgba(238, 231, 218, 0.62)) !important;
  color: var(--ink) !important;
}

.delivery.visual-story::before,
.process.visual-story::before,
.project-access.visual-story::before,
.delivery.visual-story::after,
.process.visual-story::after,
.project-access.visual-story::after {
  display: none !important;
}

.delivery.visual-story .visual-story-media,
.process.visual-story .visual-story-media,
.project-access.visual-story .visual-story-media {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  grid-column: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 28px 80px rgba(18, 53, 47, 0.13) !important;
  background: rgba(18, 53, 47, 0.06) !important;
}

.delivery.visual-story .visual-story-media img,
.process.visual-story .visual-story-media img,
.project-access.visual-story .visual-story-media img {
  display: block !important;
  width: 100% !important;
  height: clamp(430px, 48vw, 690px) !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: inherit !important;
  filter: saturate(1.08) contrast(1.035) brightness(1.035) !important;
  transform: scale(1.006) !important;
}

.delivery.visual-story:hover .visual-story-media img,
.process.visual-story:hover .visual-story-media img,
.project-access.visual-story:hover .visual-story-media img {
  transform: scale(1.025) !important;
  filter: saturate(1.14) contrast(1.045) brightness(1.055) !important;
}

.delivery.visual-story .section-copy,
.process.visual-story .section-copy,
.project-access.visual-story .section-copy {
  position: relative !important;
  z-index: 2 !important;
  grid-column: auto !important;
  align-self: center !important;
  width: min(520px, 100%) !important;
  max-width: 520px !important;
  color: var(--ink) !important;
}

.delivery.visual-story .section-copy h2,
.process.visual-story .section-copy h2,
.project-access.visual-story .section-copy h2 {
  max-width: 500px !important;
  color: var(--deep) !important;
  font-size: clamp(34px, 3.1vw, 58px) !important;
  line-height: 1.14 !important;
  text-shadow: none !important;
}

.delivery.visual-story .eyebrow,
.process.visual-story .eyebrow,
.project-access.visual-story .eyebrow {
  color: rgba(184, 155, 94, 0.94) !important;
}

.delivery.visual-story .section-copy p:not(.eyebrow),
.process.visual-story .section-copy p:not(.eyebrow),
.project-access.visual-story .section-copy p:not(.eyebrow) {
  max-width: 470px !important;
  color: rgba(23, 23, 23, 0.72) !important;
  font-size: clamp(14px, 0.92vw, 16px) !important;
  line-height: 1.8 !important;
  text-shadow: none !important;
}

.delivery.visual-story blockquote,
.process.visual-story blockquote,
.project-access.visual-story blockquote {
  max-width: 470px !important;
  border-left-color: rgba(184, 155, 94, 0.72) !important;
  color: var(--deep) !important;
  font-size: clamp(19px, 1.45vw, 28px) !important;
  line-height: 1.52 !important;
  text-shadow: none !important;
}

.delivery.visual-story .delivery-grid,
.process.visual-story .process-list,
.project-access.visual-story .access-actions {
  max-width: 520px !important;
  margin-top: clamp(22px, 2.4vw, 34px) !important;
  gap: 12px !important;
  justify-self: start !important;
}

.delivery.visual-story .delivery-card,
.process.visual-story .process-card {
  border-color: rgba(18, 53, 47, 0.14) !important;
  background: rgba(248, 245, 239, 0.52) !important;
  color: var(--deep) !important;
  backdrop-filter: blur(8px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(108%) !important;
}

.delivery.visual-story .delivery-card[open],
.process.visual-story .process-card[open] {
  flex-basis: min(520px, 100%) !important;
  background: rgba(255, 252, 242, 0.72) !important;
}

.delivery.visual-story .delivery-card summary,
.process.visual-story .process-card summary,
.process.visual-story .process-card h3 {
  color: var(--deep) !important;
}

.delivery.visual-story .delivery-card p,
.process.visual-story .process-card p {
  color: rgba(23, 23, 23, 0.7) !important;
}

.project-access.visual-story .access-card {
  max-width: 420px !important;
  margin-top: 20px !important;
}

@media (min-width: 981px) {
  .process.visual-story.media-first,
  .project-access.visual-story.media-first {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) !important;
  }

  .process.visual-story.media-first .section-copy,
  .project-access.visual-story.media-first .section-copy {
    grid-column: 2 !important;
  }

  .process.visual-story.media-first .visual-story-media,
  .project-access.visual-story.media-first .visual-story-media {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
}

@media (max-width: 980px) {
  .delivery.visual-story,
  .process.visual-story,
  .project-access.visual-story {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    margin-block: 34px !important;
    padding-block: 58px !important;
  }

  .delivery.visual-story .section-copy,
  .process.visual-story .section-copy,
  .project-access.visual-story .section-copy {
    width: min(620px, 100%) !important;
    max-width: 620px !important;
  }

  .delivery.visual-story .visual-story-media img,
  .process.visual-story .visual-story-media img,
  .project-access.visual-story .visual-story-media img {
    height: clamp(340px, 68vw, 520px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Final visual pass: image-first, no app-like text panels */
.hero-card,
.scene-content,
.dimension-content,
.climate-copy-panel,
.climate-explanation {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-card:hover,
.scene-content:hover,
.climate-copy-panel:hover,
.climate-explanation:hover {
  background: transparent !important;
  box-shadow: none !important;
}

.hero-slide {
  overflow: hidden;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 24% 48%, rgba(248, 245, 239, 0.9) 0%, rgba(248, 245, 239, 0.66) 28%, rgba(248, 245, 239, 0.24) 48%, rgba(248, 245, 239, 0) 68%),
    linear-gradient(90deg, rgba(246, 242, 234, 0.5) 0%, rgba(246, 242, 234, 0.14) 38%, rgba(246, 242, 234, 0) 62%);
  content: "";
  pointer-events: none;
}

.hero::before,
.hero-copy::before {
  display: none !important;
}

.hero-copy {
  z-index: 2;
  width: min(54vw, 680px);
  padding: 0;
  color: var(--deep);
}

.hero-card h1,
.hero-card h2,
.hero-card h3,
.hero-card p,
.hero-card .hero-text,
.hero-card .hero-closing,
.hero-card .hero-kicker {
  color: var(--deep) !important;
}

.hero-title {
  max-width: 680px;
  font-size: clamp(56px, 7vw, 112px);
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
}

.hero-text p {
  margin: 0 0 10px;
}

.hero-actions .button.ghost,
.hero-actions .button.primary {
  box-shadow: 0 12px 32px rgba(18, 53, 47, 0.08);
}

.dimension-card,
.system-scene-card {
  border-radius: 8px;
  background: var(--deep);
}

.dimension-card::after,
.system-scene-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background:
    radial-gradient(ellipse at 18% 82%, rgba(18, 53, 47, 0.66) 0%, rgba(18, 53, 47, 0.3) 36%, rgba(18, 53, 47, 0) 70%),
    linear-gradient(0deg, rgba(18, 53, 47, 0.52), rgba(18, 53, 47, 0.2) 45%, rgba(18, 53, 47, 0));
  content: "";
  pointer-events: none;
}

.dimension-card::before,
.system-scene-card::before {
  opacity: 0.18;
}

.dimension-content {
  min-height: auto;
  align-self: end;
  justify-content: end;
  max-width: 560px;
  padding: clamp(22px, 3vw, 42px);
}

.dimension-icon {
  width: auto;
  height: auto;
  place-items: start;
  margin-bottom: 14px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  color: rgba(248, 245, 239, 0.88);
}

.dimension-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.7;
}

.dimension-card .eyebrow,
.scene-content .eyebrow {
  margin-bottom: 8px;
  color: rgba(248, 245, 239, 0.74) !important;
  font-size: 12px;
}

.dimension-card h3,
.scene-content h3 {
  margin: 0 0 10px;
  color: rgba(255, 252, 242, 0.98) !important;
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.08;
}

.dimension-card blockquote,
.scene-content .card-quote {
  max-width: 520px;
  margin: 0 0 14px;
  border: 0;
  padding: 0;
  color: rgba(255, 252, 242, 0.92) !important;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 600;
  line-height: 1.55;
}

.dimension-detail > summary,
.scene-detail > summary {
  display: inline-flex;
  width: fit-content;
  border: 0 !important;
  border-radius: 0;
  padding: 0;
  background: transparent !important;
  color: rgba(255, 252, 242, 0.88) !important;
  box-shadow: none;
  backdrop-filter: none !important;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.dimension-detail > summary::after,
.scene-detail > summary::after {
  content: " →";
}

.dimension-detail > summary:hover,
.scene-detail > summary:hover {
  color: var(--ivory) !important;
  transform: none;
}

.dimension-detail p {
  max-width: 520px;
  margin-top: 12px;
  border-left: 0;
  padding: 0;
  color: rgba(255, 252, 242, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.system-scene-card {
  min-height: clamp(640px, 54vw, 860px);
  overflow: hidden;
}

.scene-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(520px, 44%);
  gap: 10px;
  margin: auto auto clamp(28px, 4vw, 58px) clamp(26px, 4vw, 62px);
  padding: 0;
  color: var(--ivory);
}

.system-scene-card:nth-child(even) .scene-content {
  margin-right: clamp(26px, 4vw, 62px);
  margin-left: auto;
}

.scene-feeling {
  max-width: 480px;
  color: rgba(255, 252, 242, 0.84) !important;
  font-size: clamp(15px, 1vw, 17px);
}

.scene-content .tag-list {
  display: none;
}

.scene-detail-body {
  max-height: min(48vh, 420px);
  overflow: auto;
  margin-top: 12px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(248, 245, 239, 0.9);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(18, 53, 47, 0.16);
}

.scene-detail-body > p,
.scene-detail-body .module-card p,
.scene-detail-body .brand-card p,
.scene-detail-body .tool-card p {
  color: #514b44 !important;
}

.scene-detail-body .module-card,
.scene-detail-body .brand-card,
.scene-detail-body .tool-card {
  border-color: rgba(18, 53, 47, 0.12);
  background: rgba(246, 242, 234, 0.72);
  box-shadow: none;
  backdrop-filter: none;
}

.mep-metric-group {
  z-index: 3;
}

.mep-metric-badge {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(18, 35, 30, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(9px) saturate(108%);
}

.climate-stage {
  min-height: clamp(680px, 58vw, 860px);
  border-radius: 12px;
  background: #10221d;
}

.climate-stage .climate-map img {
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
  transform: scale(1.01);
}

.climate-stage .climate-map::after {
  background:
    radial-gradient(circle at 50% 54%, rgba(184, 155, 94, 0.13), transparent 16%),
    linear-gradient(90deg, rgba(8, 24, 20, 0.08), transparent 26%, rgba(8, 24, 20, 0.2) 82%);
}

.climate-copy-panel {
  display: none;
}

.dewpoint-panel {
  width: min(330px, 28vw);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(12, 28, 24, 0.26) !important;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px) saturate(112%);
}

.dewpoint-current strong {
  font-size: clamp(34px, 3vw, 48px);
}

.climate-mode-tabs {
  right: clamp(32px, 4.2vw, 64px);
  top: 45%;
}

.climate-hotspot {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(248, 245, 239, 0.2);
  color: rgba(255, 252, 242, 0.9);
  backdrop-filter: blur(10px);
}

.climate-hotspot:hover,
.climate-hotspot.is-active {
  border-color: rgba(184, 155, 94, 0.55);
  background: rgba(248, 245, 239, 0.34);
  color: var(--ivory);
}

.climate-explanation {
  right: clamp(32px, 4.2vw, 64px);
  bottom: clamp(30px, 4vw, 56px);
  width: min(460px, 36vw);
  padding: 0;
  color: var(--ivory);
}

.climate-explanation h3,
.climate-explanation p,
.climate-explanation .card-quote {
  color: rgba(255, 252, 242, 0.9) !important;
}

.climate-explanation p {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.72;
}

.climate-explanation .card-quote {
  border-left-color: rgba(184, 155, 94, 0.7);
  font-size: 15px;
}

.geo-label,
.changsha-pulse,
.dew-risk,
.mep-mini-icons i {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(248, 245, 239, 0.22);
  color: rgba(255, 252, 242, 0.92);
  backdrop-filter: blur(8px);
}

.changsha-pulse {
  background: rgba(184, 155, 94, 0.86);
}

.flow-north.flow-a { left: 40%; top: 17%; transform: rotate(92deg); }
.flow-north.flow-b { left: 46%; top: 13%; transform: rotate(100deg); }
.flow-north.flow-c { left: 52%; top: 18%; transform: rotate(88deg); }
.flow-winter.flow-a { left: 43%; top: 13%; transform: rotate(95deg); }
.flow-winter.flow-b { left: 52%; top: 10%; transform: rotate(86deg); }

.module-card,
.brand-card,
.tool-card {
  background: rgba(248, 245, 239, 0.72) !important;
  color: var(--ink);
  backdrop-filter: none !important;
}

.module-card h4,
.brand-card h4,
.tool-card h4 {
  color: var(--deep) !important;
}

@media (max-width: 1120px) {
  .hero-copy {
    width: min(72vw, 680px);
  }

  .scene-content,
  .system-scene-card:nth-child(even) .scene-content {
    width: min(560px, calc(100% - 48px));
    margin: auto 24px 96px;
  }

  .climate-explanation {
    width: min(520px, calc(100% - 64px));
  }
}

@media (max-width: 760px) {
  .hero-slide::after {
    background:
      radial-gradient(ellipse at 42% 60%, rgba(248, 245, 239, 0.86) 0%, rgba(248, 245, 239, 0.58) 34%, rgba(248, 245, 239, 0.2) 58%, rgba(248, 245, 239, 0) 82%),
      linear-gradient(0deg, rgba(246, 242, 234, 0.34), transparent 54%);
  }

  .hero-copy {
    width: auto;
    max-width: 100%;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(38px, 13vw, 56px);
  }

  .dimension-card {
    min-height: 560px;
  }

  .dimension-content {
    padding: 24px;
  }

  .dimension-card h3,
  .scene-content h3 {
    font-size: 34px;
  }

  .system-scene-card,
  .system-scene-card:nth-child(even) {
    min-height: 620px;
  }

  .system-scene-card::after {
    height: 52%;
  }

  .scene-content,
  .system-scene-card:nth-child(even) .scene-content {
    width: auto;
    margin: auto 20px 88px;
  }

  .scene-feeling,
  .scene-content .card-quote {
    font-size: 15px;
  }

  .climate-stage {
    min-height: 780px;
  }

  .dewpoint-panel {
    top: auto;
    right: 16px;
    bottom: 112px;
    left: 16px;
    width: auto;
  }

  .climate-explanation {
    top: 20px;
    right: 18px;
    left: 18px;
    bottom: auto;
    width: auto;
  }

  .climate-mode-tabs {
    right: 16px;
    bottom: 18px;
    left: 16px;
    top: auto;
  }

  .geo-label {
    display: none;
  }
}

/* Water supply & drainage star business */
.desktop-nav {
  gap: clamp(18px, 2.2vw, 34px);
}

.water-supply {
  display: grid;
  gap: clamp(30px, 5vw, 72px);
}

.water-supply-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.water-supply-copy {
  max-width: 650px;
}

.water-supply-copy h2 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--deep);
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1.08;
}

.water-supply-copy > p:not(.eyebrow):not(.lead) {
  max-width: 620px;
  color: #4e4740;
  font-size: clamp(16px, 1.14vw, 19px);
  line-height: 1.9;
}

.water-supply-copy blockquote,
.mini-heading blockquote {
  margin: clamp(22px, 2.6vw, 34px) 0 0;
  border-left: 1px solid rgba(184, 155, 94, 0.82);
  padding-left: 22px;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.45;
}

.water-supply-media {
  position: relative;
  min-height: clamp(520px, 48vw, 760px);
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background: var(--deep);
  box-shadow: 0 30px 80px rgba(18, 53, 47, 0.12);
}

.water-supply-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background:
    radial-gradient(ellipse at 18% 82%, rgba(18, 53, 47, 0.48), rgba(18, 53, 47, 0.18) 42%, transparent 72%),
    linear-gradient(0deg, rgba(18, 53, 47, 0.34), transparent);
  content: "";
  pointer-events: none;
}

.water-supply-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 1400ms cubic-bezier(0.2, 0.72, 0.18, 1), filter 1400ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.water-supply-media:hover img {
  filter: saturate(1.1) contrast(1.04) brightness(1.03);
  transform: scale(1.025);
}

.water-supply-media figcaption {
  position: absolute;
  left: clamp(22px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 38px);
  z-index: 1;
  display: grid;
  max-width: 360px;
  gap: 8px;
  color: var(--ivory);
}

.water-supply-media figcaption span {
  color: rgba(255, 252, 242, 0.72);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.water-supply-media figcaption strong {
  color: rgba(255, 252, 242, 0.96);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.25;
}

.water-demand-block {
  display: grid;
  gap: 24px;
}

.mini-heading {
  display: grid;
  max-width: 880px;
  gap: 10px;
}

.mini-heading h3 {
  margin: 0;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.7vw, 62px);
  font-weight: 500;
  line-height: 1.12;
}

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

.water-demand-card,
.water-detail,
.water-brand-card {
  border: 1px solid rgba(18, 53, 47, 0.12);
  border-radius: 10px;
  background: rgba(248, 245, 239, 0.72);
  box-shadow: 0 18px 48px rgba(18, 53, 47, 0.05);
}

.water-demand-card {
  min-height: 230px;
  padding: clamp(22px, 2.2vw, 32px);
}

.water-demand-card h4 {
  margin: 0 0 18px;
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.water-demand-card p {
  margin: 0;
  color: #5a534b;
  font-size: 15px;
  line-height: 1.86;
}

.water-accordion {
  display: grid;
  gap: 14px;
}

.water-detail {
  overflow: hidden;
}

.water-detail > summary {
  display: grid;
  grid-template-columns: minmax(120px, 0.26fr) 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  cursor: pointer;
  list-style: none;
  padding: 22px clamp(22px, 3vw, 36px);
}

.water-detail > summary::-webkit-details-marker {
  display: none;
}

.water-detail > summary span {
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.water-detail > summary strong {
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.25;
}

.water-detail > summary::after {
  content: "展开";
  border: 1px solid rgba(18, 53, 47, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
}

.water-detail[open] > summary::after {
  content: "收起";
}

.water-detail-body {
  display: grid;
  gap: 20px;
  padding: 0 clamp(22px, 3vw, 36px) clamp(24px, 3vw, 38px);
}

.water-detail-body > p {
  max-width: 940px;
  margin: 0;
  color: #544d46;
  font-size: 16px;
  line-height: 1.86;
}

.water-split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.water-split-copy p {
  margin: 0;
  color: inherit;
  font-size: 16px;
  line-height: 1.86;
  max-width: 34ch;
}

.water-detail-body blockquote {
  max-width: 880px;
  margin: 0;
  border-left: 1px solid rgba(184, 155, 94, 0.78);
  padding-left: 18px;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1.45;
}

.water-support-media {
  position: relative;
  margin: 0;
  min-height: clamp(280px, 28vw, 420px);
  overflow: hidden;
  border-radius: 18px;
  background: #12352f;
  box-shadow: 0 24px 60px rgba(18, 53, 47, 0.12);
}

.water-support-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.06) contrast(1.03) brightness(1.03);
}

.water-point-list,
.water-brand-grid {
  display: grid;
  gap: 12px;
}

.water-point-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.climate-closing {
  display: grid;
  gap: 14px;
  width: min(100%, 980px);
  margin: 34px auto 0;
  padding: 0 clamp(8px, 1.8vw, 18px);
  color: var(--deep);
}

.climate-closing-eyebrow {
  margin: 0;
  color: rgba(18, 53, 47, 0.58);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.climate-closing h3 {
  margin: 0;
  max-width: 18ch;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.3;
  text-wrap: balance;
}

.climate-closing p {
  margin: 0;
  max-width: 62ch;
  color: rgba(18, 53, 47, 0.82);
  font-size: 16px;
  line-height: 1.9;
}

.water-point-list span {
  border: 1px solid rgba(18, 53, 47, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(246, 242, 234, 0.76);
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.water-brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.water-brand-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  box-shadow: none;
}

.water-brand-card h4 {
  margin: 0;
  color: var(--deep);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.25;
}

.water-brand-card p {
  margin: 0;
  color: #5a534b;
  font-size: 14px;
  line-height: 1.68;
}

.water-brand-card details {
  margin-top: 4px;
}

.water-brand-card summary {
  cursor: pointer;
  list-style: none;
  color: var(--deep);
  font-size: 13px;
  font-weight: 750;
}

.water-brand-card summary::after {
  content: " →";
}

@media (max-width: 1120px) {
  .water-supply-hero {
    grid-template-columns: 1fr;
  }

  .water-supply-copy {
    max-width: 760px;
  }

  .water-demand-grid,
  .water-brand-grid,
  .water-point-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .water-supply-hero {
    gap: 28px;
  }

  .water-supply-copy h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .water-supply-media {
    min-height: 440px;
  }

  .water-demand-grid,
  .water-brand-grid,
  .water-point-list {
    grid-template-columns: 1fr;
  }

  .water-split-copy {
    grid-template-columns: 1fr;
  }

  .climate-closing {
    margin-top: 26px;
    padding: 0;
  }

  .climate-closing h3,
  .climate-closing p {
    max-width: 100%;
  }

  .water-demand-card {
    min-height: 0;
  }

  .water-detail > summary {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
  }

  .water-detail > summary::after {
    width: fit-content;
  }
}

/* Final story-section cleanup: match image-led scene style, remove dark app panels */
.cinematic-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  min-height: clamp(680px, 60vw, 920px);
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cinematic-panel.media-first {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
}

.cinematic-panel::before {
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 72%, rgba(18, 53, 47, 0.62) 0%, rgba(18, 53, 47, 0.24) 34%, rgba(18, 53, 47, 0) 66%),
    linear-gradient(0deg, rgba(18, 53, 47, 0.34), transparent 42%);
}

.cinematic-panel.media-first::before {
  background:
    radial-gradient(ellipse at 72% 72%, rgba(18, 53, 47, 0.62) 0%, rgba(18, 53, 47, 0.24) 34%, rgba(18, 53, 47, 0) 66%),
    linear-gradient(0deg, rgba(18, 53, 47, 0.32), transparent 42%);
}

.quiet-system.cinematic-panel::before {
  background:
    radial-gradient(ellipse at 22% 62%, rgba(246, 242, 234, 0.74) 0%, rgba(246, 242, 234, 0.42) 28%, rgba(246, 242, 234, 0.08) 56%, rgba(246, 242, 234, 0) 76%),
    linear-gradient(90deg, rgba(246, 242, 234, 0.26), transparent 64%);
}

.cinematic-panel::after {
  display: none;
}

.cinematic-panel .section-image,
.cinematic-panel .fit-media,
.cinematic-panel .visual-story-media,
.quiet-system.cinematic-panel .section-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

.cinematic-panel .section-image img,
.cinematic-panel .fit-media img,
.cinematic-panel .visual-story-media img,
.quiet-system.cinematic-panel .section-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04) brightness(1.03);
  transform: scale(1.01);
  transition: transform 1500ms cubic-bezier(0.2, 0.72, 0.18, 1), filter 1500ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.cinematic-panel:hover .section-image img,
.cinematic-panel:hover .fit-media img,
.cinematic-panel:hover .visual-story-media img,
.quiet-system.cinematic-panel:hover .section-image img {
  filter: saturate(1.14) contrast(1.05) brightness(1.06);
  transform: scale(1.035);
}

.cinematic-panel .section-copy,
.fit .section-copy,
.visual-story .section-copy,
.quiet-system .section-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  align-self: end;
  width: min(560px, 100%);
  max-width: 560px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  color: var(--ivory);
}

.cinematic-panel.media-first .section-copy,
.process-story.media-first .section-copy,
.project-access.media-first .section-copy,
.constraints.media-first .section-copy {
  grid-column: 2;
}

.cinematic-panel .section-copy::before {
  display: none;
}

.cinematic-panel .eyebrow,
.cinematic-panel .section-copy .eyebrow {
  color: rgba(255, 252, 242, 0.74) !important;
  font-size: 12px;
}

.quiet-system.cinematic-panel .section-copy .eyebrow,
.quiet-system.cinematic-panel h2,
.quiet-system.cinematic-panel .quiet-lead,
.quiet-system.cinematic-panel blockquote,
.quiet-system.cinematic-panel .quiet-senses span {
  color: var(--deep) !important;
}

.cinematic-panel h2,
.cinematic-panel h3 {
  max-width: 620px;
  margin-bottom: 18px;
  color: rgba(255, 252, 242, 0.98) !important;
  font-size: clamp(38px, 4.7vw, 78px);
  line-height: 1.08;
}

.cinematic-panel .section-copy p:not(.eyebrow),
.cinematic-panel .quiet-lead,
.cinematic-panel .lead {
  max-width: 560px;
  color: rgba(255, 252, 242, 0.84) !important;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.78;
}

.cinematic-panel blockquote {
  max-width: 620px;
  margin: 24px 0 0;
  border-left: 1px solid rgba(184, 155, 94, 0.8);
  padding-left: 22px;
  color: rgba(255, 252, 242, 0.96) !important;
  font-family: var(--font-serif);
  font-size: clamp(23px, 2.4vw, 42px);
  font-weight: 500;
  line-height: 1.42;
}

.quiet-system.cinematic-panel blockquote {
  border-left-color: rgba(184, 155, 94, 0.82);
}

.cinematic-panel .quiet-senses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.cinematic-panel .quiet-senses span,
.cinematic-panel .button.ghost,
.cinematic-panel .access-detail summary,
.cinematic-detail summary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 252, 242, 0.94);
  backdrop-filter: blur(8px);
}

.quiet-system.cinematic-panel .quiet-senses span {
  border-color: rgba(18, 53, 47, 0.16);
  background: rgba(248, 245, 239, 0.44);
}

.cinematic-panel .button.primary {
  background: rgba(248, 245, 239, 0.92);
  color: var(--deep);
}

.cinematic-panel .fit-grid,
.cinematic-panel .delivery-grid,
.cinematic-panel .process-list {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  max-width: 820px;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.cinematic-panel.media-first .process-list,
.cinematic-panel.visual-story .delivery-grid {
  justify-self: end;
}

.cinematic-panel .fit-card,
.cinematic-panel .delivery-card,
.cinematic-panel .process-card {
  width: auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(18, 53, 47, 0.18);
  box-shadow: none;
  backdrop-filter: blur(9px);
}

.cinematic-panel .fit-card[open],
.cinematic-panel .delivery-card[open],
.cinematic-panel .process-card[open] {
  flex-basis: min(520px, 100%);
  border-radius: 14px;
  background: rgba(18, 53, 47, 0.24);
}

.cinematic-panel .fit-card summary,
.cinematic-panel .delivery-card summary,
.cinematic-panel .process-card summary {
  min-height: 42px;
  padding: 0 16px;
}

.cinematic-panel .fit-card h3,
.cinematic-panel .process-card h3,
.cinematic-panel .delivery-card summary {
  color: rgba(255, 252, 242, 0.92) !important;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 750;
}

.cinematic-panel .fit-card span,
.cinematic-panel .process-card span {
  color: rgba(226, 198, 132, 0.94) !important;
}

.cinematic-panel .fit-card p,
.cinematic-panel .delivery-card p,
.cinematic-panel .process-card p,
.cinematic-panel .access-card p,
.cinematic-detail p {
  color: rgba(255, 252, 242, 0.82) !important;
}

.cinematic-detail summary {
  width: fit-content;
  list-style: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 750;
}

.cinematic-detail summary::after {
  content: " →";
}

.cinematic-detail[open] p {
  max-width: 620px;
  margin-top: 12px;
}

.cinematic-panel .access-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(18, 53, 47, 0.16);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

@media (max-width: 1120px) {
  .cinematic-panel,
  .cinematic-panel.media-first {
    grid-template-columns: 1fr;
    min-height: 680px;
  }

  .cinematic-panel .section-copy,
  .cinematic-panel.media-first .section-copy,
  .process-story.media-first .section-copy,
  .project-access.media-first .section-copy,
  .constraints.media-first .section-copy {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .cinematic-panel {
    min-height: 620px;
    padding: 32px 22px;
  }

  .cinematic-panel::before,
  .cinematic-panel.media-first::before {
    background:
      radial-gradient(ellipse at 50% 76%, rgba(18, 53, 47, 0.56) 0%, rgba(18, 53, 47, 0.22) 42%, transparent 74%),
      linear-gradient(0deg, rgba(18, 53, 47, 0.34), transparent 50%);
  }

  .cinematic-panel h2,
  .cinematic-panel h3 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .cinematic-panel blockquote {
    font-size: clamp(21px, 6.4vw, 30px);
  }
}

/* Absolute final overlay rule: images lead, copy only rests on local light/shadow */
.hero-card,
.cinematic-panel .section-copy,
.fit .section-copy,
.visual-story .section-copy,
.quiet-system .section-copy,
.scene-content,
.dimension-content {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-card::before,
.hero-card::after,
.cinematic-panel .section-copy::before,
.cinematic-panel .section-copy::after,
.scene-content::before,
.scene-content::after,
.dimension-content::before,
.dimension-content::after {
  display: none !important;
  content: none !important;
}

.hero-slide::after {
  background:
    radial-gradient(ellipse at 22% 48%, rgba(248, 245, 239, 0.86) 0%, rgba(248, 245, 239, 0.58) 30%, rgba(248, 245, 239, 0.12) 56%, transparent 74%),
    linear-gradient(90deg, rgba(246, 242, 234, 0.52) 0%, rgba(246, 242, 234, 0.18) 34%, transparent 68%) !important;
}

.hero-copy {
  width: min(700px, 46vw);
  padding-left: clamp(30px, 4.6vw, 74px);
}

.hero-title {
  max-width: 720px;
  font-size: clamp(56px, 7.1vw, 116px);
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-text {
  max-width: 680px;
  gap: 10px;
}

.hero-text p {
  max-width: 680px;
}

.hero-text .sensory-line {
  margin-top: 6px;
  color: var(--deep);
  font-family: var(--font-sans);
  font-weight: 760;
  letter-spacing: 0;
}

.hero-closing {
  max-width: 560px;
  font-size: clamp(24px, 2.3vw, 42px);
  line-height: 1.42;
}

.cinematic-panel {
  isolation: isolate;
  background: var(--warm) !important;
}

.cinematic-panel::before {
  z-index: -1 !important;
  background:
    radial-gradient(ellipse at 21% 72%, rgba(9, 33, 28, 0.54) 0%, rgba(9, 33, 28, 0.24) 31%, rgba(9, 33, 28, 0.08) 50%, transparent 68%),
    linear-gradient(0deg, rgba(9, 33, 28, 0.30), transparent 43%) !important;
}

.cinematic-panel.media-first::before {
  background:
    radial-gradient(ellipse at 73% 72%, rgba(9, 33, 28, 0.54) 0%, rgba(9, 33, 28, 0.24) 31%, rgba(9, 33, 28, 0.08) 50%, transparent 68%),
    linear-gradient(0deg, rgba(9, 33, 28, 0.28), transparent 43%) !important;
}

.quiet-system.cinematic-panel::before {
  background:
    radial-gradient(ellipse at 20% 58%, rgba(246, 242, 234, 0.68) 0%, rgba(246, 242, 234, 0.38) 28%, rgba(246, 242, 234, 0.08) 55%, transparent 76%),
    linear-gradient(90deg, rgba(246, 242, 234, 0.22), transparent 66%) !important;
}

.cinematic-panel .section-copy {
  width: min(600px, 42vw) !important;
  max-width: 600px !important;
}

.cinematic-panel h2,
.cinematic-panel h3 {
  max-width: 620px;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.16);
}

.cinematic-panel .section-copy p:not(.eyebrow),
.cinematic-panel .quiet-lead,
.cinematic-panel .lead {
  max-width: 560px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.2);
}

.cinematic-panel blockquote {
  max-width: 640px;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.cinematic-panel .fit-grid,
.cinematic-panel .delivery-grid,
.cinematic-panel .process-list {
  max-width: 760px !important;
  margin-top: clamp(18px, 2vw, 28px);
}

.cinematic-panel .fit-card,
.cinematic-panel .delivery-card,
.cinematic-panel .process-card {
  background: rgba(255, 252, 242, 0.10) !important;
  border-color: rgba(255, 252, 242, 0.28) !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px) saturate(106%);
  -webkit-backdrop-filter: blur(5px) saturate(106%);
}

.cinematic-panel .fit-card[open],
.cinematic-panel .delivery-card[open],
.cinematic-panel .process-card[open] {
  background: rgba(9, 33, 28, 0.18) !important;
}

.cinematic-panel .access-card {
  max-width: 420px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.cinematic-panel .access-card label,
.cinematic-panel .access-card input {
  max-width: 360px;
}

@media (max-width: 980px) {
  .hero-copy,
  .cinematic-panel .section-copy {
    width: min(680px, 100%) !important;
  }

  .hero-title {
    font-size: clamp(42px, 11vw, 78px);
  }
}

@media (max-width: 760px) {
  .hero-slide::after {
    background:
      radial-gradient(ellipse at 42% 42%, rgba(248, 245, 239, 0.84) 0%, rgba(248, 245, 239, 0.48) 38%, rgba(248, 245, 239, 0.10) 66%, transparent 82%),
      linear-gradient(0deg, rgba(246, 242, 234, 0.36), transparent 62%) !important;
  }

  .hero-copy {
    padding: 0 22px 40px;
  }

  .hero-text .sensory-line {
    font-size: 15px;
  }

  .cinematic-panel {
    padding: 30px 20px !important;
  }

  .cinematic-panel .fit-grid,
  .cinematic-panel .delivery-grid,
  .cinematic-panel .process-list {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .cinematic-panel .fit-card,
  .cinematic-panel .delivery-card,
  .cinematic-panel .process-card {
    flex: 0 0 auto;
  }
}

.hero-media figcaption,
.dimension-detail > summary,
.scene-detail > summary,
.cinematic-panel .quiet-senses span,
.cinematic-panel .button.ghost,
.cinematic-panel .access-detail summary,
.cinematic-detail summary {
  background: rgba(255, 252, 242, 0.10) !important;
  border-color: rgba(255, 252, 242, 0.32) !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px) saturate(106%) !important;
  -webkit-backdrop-filter: blur(5px) saturate(106%) !important;
}

.dimension-detail > summary:hover,
.scene-detail > summary:hover,
.cinematic-detail summary:hover {
  background: rgba(255, 252, 242, 0.16) !important;
}

.system-scene-card .module-card,
.system-scene-card .brand-card,
.system-scene-card .tool-card,
.system-scene-card .tag-list span {
  background: rgba(255, 252, 242, 0.10) !important;
  border-color: rgba(255, 252, 242, 0.24) !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px) saturate(106%) !important;
  -webkit-backdrop-filter: blur(5px) saturate(106%) !important;
}

/* Climate section final layout: readable environment panel + soft humidity movement */
.climate-stage {
  min-height: clamp(720px, 56vw, 880px) !important;
  overflow: hidden;
}

.climate-stage::before,
.climate-stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.climate-stage::before {
  background:
    radial-gradient(ellipse at 46% 58%, rgba(232, 218, 176, 0.18) 0%, rgba(232, 218, 176, 0.08) 22%, transparent 48%),
    radial-gradient(ellipse at 36% 28%, rgba(214, 232, 214, 0.12) 0%, transparent 44%),
    linear-gradient(90deg, transparent 0%, transparent 60%, rgba(8, 24, 20, 0.34) 83%, rgba(8, 24, 20, 0.54) 100%);
}

.climate-stage::after {
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 23% 82%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 18%, transparent 34%),
    radial-gradient(ellipse at 55% 70%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 20%, transparent 42%),
    radial-gradient(ellipse at 60% 18%, rgba(255, 255, 255, 0.12) 0%, transparent 34%);
  filter: blur(10px);
  mix-blend-mode: screen;
  transform: translate3d(-1.5%, 1%, 0) scale(1.03);
  animation: climateMistBreathe 9s ease-in-out infinite alternate;
}

.climate-stage:hover::after {
  opacity: 0.68;
  animation-duration: 5.8s;
}

@keyframes climateMistBreathe {
  from {
    transform: translate3d(-2.2%, 1.4%, 0) scale(1.02);
  }
  to {
    transform: translate3d(2%, -1%, 0) scale(1.055);
  }
}

.climate-flow-layer {
  z-index: 2;
}

.water-vapor {
  filter: blur(1px);
  opacity: 0;
}

.climate-stage[data-climate-mode="summerHotHumid"] .water-vapor,
.climate-stage[data-climate-mode="springDamp"] .water-vapor {
  opacity: 0.58;
  animation: vaporRise 7.5s ease-in-out infinite alternate;
}

.climate-stage[data-climate-mode="summerHotHumid"] .humid-dome,
.climate-stage[data-climate-mode="springDamp"] .humid-dome {
  transform: translate(-50%, -50%);
  transform-origin: center;
  opacity: 0.46;
  filter: blur(12px);
  animation: humidPulse 6.4s ease-in-out infinite alternate;
}

@keyframes vaporRise {
  from {
    transform: translateY(10px) scale(0.96);
    opacity: 0.24;
  }
  to {
    transform: translateY(-22px) scale(1.08);
    opacity: 0.66;
  }
}

@keyframes humidPulse {
  from {
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* 2026-07-10 final climate flow lift: keep airflow / vapor overlays vivid above older rules */
.climate-stage .flow-line {
  border-top-color: rgba(38, 232, 186, 0.72) !important;
  border-top-width: 3px !important;
  box-shadow: 0 0 18px rgba(38, 232, 186, 0.12) !important;
  filter: blur(0.05px) !important;
}

.climate-stage .flow-winter.flow-a,
.climate-stage .flow-winter.flow-b {
  border-top-color: rgba(114, 210, 255, 0.66) !important;
}

.climate-stage .water-vapor {
  width: 12px !important;
  height: 12px !important;
  background: rgba(56, 246, 198, 0.78) !important;
  box-shadow:
    0 0 14px rgba(56, 246, 198, 0.22),
    24px 18px 0 rgba(56, 246, 198, 0.44),
    24px 18px 14px rgba(56, 246, 198, 0.12),
    54px -10px 0 rgba(113, 224, 255, 0.34),
    86px 28px 0 rgba(56, 246, 198, 0.36) !important;
  filter: blur(0.18px) !important;
}

.climate-stage[data-climate-mode="summerHotHumid"] .water-vapor,
.climate-stage[data-climate-mode="springDamp"] .water-vapor {
  opacity: 0.82 !important;
}

.climate-stage .humid-dome {
  border-color: rgba(72, 228, 193, 0.3) !important;
  background: radial-gradient(circle, rgba(72, 228, 193, 0.24), rgba(72, 228, 193, 0.08) 60%, transparent 75%) !important;
  box-shadow: 0 0 30px rgba(72, 228, 193, 0.08) !important;
}

.climate-stage[data-climate-mode="winterColdHumid"] .humid-dome {
  background: radial-gradient(circle, rgba(114, 210, 255, 0.28), rgba(114, 210, 255, 0.08) 62%, transparent 76%) !important;
}

.climate-stage .comfort-arc {
  border-width: 4px !important;
  border-top-color: rgba(255, 189, 69, 0.82) !important;
  border-left-color: rgba(255, 189, 69, 0.82) !important;
  box-shadow: 0 0 22px rgba(255, 189, 69, 0.14) !important;
}

.dewpoint-panel {
  right: clamp(30px, 4vw, 58px) !important;
  top: clamp(30px, 4vw, 58px) !important;
  width: clamp(390px, 27vw, 480px) !important;
  max-width: calc(100% - 60px);
  padding: clamp(18px, 1.5vw, 24px) !important;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: linear-gradient(145deg, rgba(10, 28, 24, 0.56), rgba(10, 28, 24, 0.28)) !important;
  backdrop-filter: blur(12px) saturate(112%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(112%) !important;
}

.dewpoint-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
}

.dewpoint-head span,
.dewpoint-head strong,
.dewpoint-current span,
.dewpoint-current em {
  white-space: nowrap;
}

.dewpoint-head span {
  max-width: none;
  letter-spacing: 0.02em;
}

.dewpoint-head strong {
  text-align: right;
  line-height: 1.45;
}

.dewpoint-current {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 8px 16px;
}

.dewpoint-current strong {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  font-size: clamp(44px, 4.2vw, 76px) !important;
  line-height: 0.9;
  text-align: right;
  letter-spacing: -0.03em;
}

.dewpoint-current em {
  grid-column: 1 / -1;
  justify-self: end;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dewpoint-panel p {
  max-width: 28em;
  color: rgba(255, 252, 242, 0.78) !important;
  font-size: 13px;
  line-height: 1.7;
}

.dewpoint-calculator {
  max-width: 100%;
}

.dewpoint-calculator[open] {
  margin-top: 10px;
}

.dewpoint-panel .tool-inputs {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.dewpoint-panel input {
  width: 100%;
  box-sizing: border-box;
}

.climate-mode-tabs {
  right: clamp(38px, 4.3vw, 70px) !important;
  top: clamp(310px, 25vw, 390px) !important;
  z-index: 5;
  width: clamp(150px, 12vw, 190px);
  transform: none !important;
}

.climate-hotspot {
  width: 100%;
  min-height: 42px;
  justify-content: center;
  padding: 0 16px;
  white-space: nowrap;
}

.climate-explanation {
  right: clamp(34px, 4.2vw, 64px) !important;
  bottom: clamp(28px, 3.6vw, 52px) !important;
  width: clamp(420px, 34vw, 600px) !important;
  max-width: calc(100% - 68px);
}

.climate-explanation h3 {
  max-width: 100%;
  font-size: clamp(24px, 2.05vw, 36px);
  line-height: 1.25;
}

.climate-explanation p {
  max-width: 42em;
  font-size: clamp(13.5px, 0.88vw, 15px);
}

@media (max-width: 1180px) {
  .dewpoint-panel {
    width: min(420px, calc(100% - 48px)) !important;
  }

  .climate-mode-tabs {
    top: auto !important;
    right: 24px !important;
    bottom: 196px;
    display: flex;
    width: auto;
    max-width: calc(100% - 48px);
    overflow-x: auto;
  }

  .climate-hotspot {
    flex: 0 0 auto;
    width: auto;
  }

  .climate-explanation {
    right: 24px !important;
    width: min(620px, calc(100% - 48px)) !important;
  }
}

@media (max-width: 760px) {
  .climate-stage {
    min-height: 780px !important;
  }

  .climate-stage:has(.dewpoint-calculator[open]) {
    min-height: 1060px !important;
  }

  .climate-copy-panel {
    display: none;
  }

  .climate-stage::before {
    background:
      radial-gradient(ellipse at 50% 52%, rgba(232, 218, 176, 0.14), transparent 48%),
      linear-gradient(0deg, rgba(8, 24, 20, 0.46), transparent 54%);
  }

  .dewpoint-panel {
    top: 18px !important;
    right: 18px !important;
    bottom: auto !important;
    left: 18px;
    width: auto !important;
    max-width: none;
  }

  .dewpoint-current strong {
    font-size: clamp(42px, 16vw, 64px) !important;
  }

  .climate-mode-tabs {
    top: auto !important;
    left: 18px;
    right: 18px !important;
    bottom: 186px;
    max-width: none;
  }

  .climate-explanation {
    top: auto !important;
    left: 18px;
    right: 18px !important;
    bottom: 18px !important;
    width: auto !important;
    max-width: none;
  }
}

/* Editorial restraint pass: keep image-led sections calm and reduce oversized copy */
.water-supply-hero {
  position: relative;
  display: grid !important;
  min-height: clamp(620px, 56vw, 860px);
  overflow: hidden;
  border-radius: 12px;
  background: var(--deep);
  box-shadow: 0 28px 86px rgba(18, 53, 47, 0.12);
}

.water-supply-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background:
    radial-gradient(ellipse at 18% 75%, rgba(9, 33, 28, 0.58) 0%, rgba(9, 33, 28, 0.26) 34%, transparent 66%),
    linear-gradient(0deg, rgba(9, 33, 28, 0.44), rgba(9, 33, 28, 0.12) 56%, transparent);
  content: "";
  pointer-events: none;
}

.water-supply-media {
  position: absolute !important;
  inset: 0;
  min-height: 100% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.water-supply-media::after,
.water-supply-media figcaption {
  display: none !important;
}

.water-supply-media img {
  min-height: 100% !important;
  filter: saturate(1.08) contrast(1.03) brightness(1.02);
}

.water-supply-hero:hover .water-supply-media img {
  filter: saturate(1.14) contrast(1.04) brightness(1.05);
  transform: scale(1.03);
}

.water-supply-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(560px, 46%);
  max-width: 560px !important;
  margin: auto auto clamp(34px, 5vw, 76px) clamp(30px, 5vw, 82px);
  color: var(--ivory);
}

.water-supply-copy .eyebrow {
  color: rgba(255, 252, 242, 0.72);
}

.water-supply-copy h2 {
  max-width: 560px !important;
  margin-bottom: 16px !important;
  color: rgba(255, 252, 242, 0.98) !important;
  font-size: clamp(34px, 3.4vw, 58px) !important;
  line-height: 1.08 !important;
  text-wrap: balance;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.22);
}

.water-supply-copy .lead {
  max-width: 520px;
  color: rgba(255, 252, 242, 0.86);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.76;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
}

.water-supply-copy > p:not(.eyebrow):not(.lead) {
  display: none;
}

.water-supply-copy blockquote {
  max-width: 520px;
  margin-top: 20px !important;
  color: rgba(255, 252, 242, 0.94) !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(18px, 1.45vw, 26px) !important;
  font-weight: 720;
  line-height: 1.5 !important;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.system-scene-card::after {
  height: 36% !important;
  background:
    radial-gradient(ellipse at 18% 82%, rgba(18, 53, 47, 0.52) 0%, rgba(18, 53, 47, 0.22) 34%, transparent 66%),
    linear-gradient(0deg, rgba(18, 53, 47, 0.42), rgba(18, 53, 47, 0.14) 48%, rgba(18, 53, 47, 0)) !important;
}

.scene-content {
  width: min(460px, 38%) !important;
  gap: 8px;
}

.scene-content h3 {
  max-width: 460px;
  font-size: clamp(30px, 2.55vw, 46px) !important;
  line-height: 1.1 !important;
  text-wrap: balance;
}

.scene-feeling {
  max-width: 440px;
  font-size: clamp(14px, 0.9vw, 16px) !important;
  line-height: 1.7;
}

.scene-content .card-quote {
  max-width: 460px;
  margin-top: 2px;
  font-size: clamp(15px, 1.05vw, 19px) !important;
  line-height: 1.55;
  text-wrap: balance;
}

.scene-detail > summary {
  margin-top: 4px;
  font-size: 12.5px !important;
}

.cinematic-panel .section-copy {
  width: min(500px, 38vw) !important;
  max-width: 500px !important;
}

.cinematic-panel h2,
.cinematic-panel h3 {
  max-width: 500px !important;
  margin-bottom: 14px !important;
  font-size: clamp(34px, 3.3vw, 58px) !important;
  line-height: 1.1 !important;
  text-wrap: balance;
}

.cinematic-panel .section-copy p:not(.eyebrow),
.cinematic-panel .quiet-lead,
.cinematic-panel .lead {
  max-width: 460px !important;
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.72 !important;
}

.cinematic-panel blockquote {
  max-width: 480px !important;
  margin-top: 18px !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(19px, 1.55vw, 28px) !important;
  font-weight: 720;
  line-height: 1.5 !important;
  text-wrap: balance;
}

.cinematic-panel .fit-grid,
.cinematic-panel .delivery-grid,
.cinematic-panel .process-list {
  max-width: 680px !important;
}

@media (max-width: 1120px) {
  .water-supply-copy,
  .scene-content,
  .system-scene-card:nth-child(even) .scene-content,
  .cinematic-panel .section-copy {
    width: min(560px, calc(100% - 48px)) !important;
    max-width: 560px !important;
  }
}

@media (max-width: 760px) {
  .water-supply-hero {
    min-height: 640px;
  }

  .water-supply-hero::after {
    height: 58%;
  }

  .water-supply-copy {
    width: auto !important;
    margin: auto 22px 34px;
  }

  .water-supply-copy h2 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }

  .water-supply-copy blockquote {
    font-size: clamp(17px, 4.6vw, 23px) !important;
  }

  .scene-content,
  .system-scene-card:nth-child(even) .scene-content,
  .cinematic-panel .section-copy {
    width: auto !important;
    margin-right: 22px !important;
    margin-left: 22px !important;
  }

  .scene-content h3,
  .cinematic-panel h2,
  .cinematic-panel h3 {
    font-size: clamp(31px, 9.5vw, 46px) !important;
  }
}

/* Last-word homepage carousel refinement: keep the first screen refined after legacy overrides */
.retired-section {
  display: none !important;
}

.hero {
  min-height: calc(100svh - 86px) !important;
  max-height: 980px;
}

.hero-slide::after {
  background:
    radial-gradient(ellipse at 23% 49%, rgba(248, 245, 239, 0.82) 0%, rgba(248, 245, 239, 0.50) 28%, rgba(248, 245, 239, 0.14) 52%, transparent 72%),
    linear-gradient(90deg, rgba(246, 242, 234, 0.44) 0%, rgba(246, 242, 234, 0.16) 32%, transparent 62%) !important;
}

.hero-copy {
  width: min(560px, 38vw) !important;
  max-width: 560px !important;
  padding-left: clamp(30px, 5.4vw, 86px) !important;
  padding-right: 0 !important;
  gap: clamp(12px, 1.5vw, 20px) !important;
}

.hero-kicker {
  font-size: clamp(11px, 0.72vw, 13px) !important;
  letter-spacing: 0.08em !important;
}

.hero-title {
  max-width: 560px !important;
  font-size: clamp(42px, 4.55vw, 78px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.hero-title span {
  display: inline;
}

.hero-text {
  max-width: 510px !important;
  font-size: clamp(14px, 0.98vw, 17px) !important;
  line-height: 1.82 !important;
  gap: 8px !important;
}

.hero-text p {
  max-width: 510px !important;
}

.hero-text .sensory-line {
  font-size: clamp(14px, 0.98vw, 16px) !important;
  line-height: 1.7 !important;
}

.hero-closing {
  max-width: 470px !important;
  font-size: clamp(18px, 1.45vw, 27px) !important;
  line-height: 1.5 !important;
  margin-top: 2px;
}

.hero-actions {
  margin-top: clamp(4px, 0.9vw, 12px) !important;
}

.hero-actions .button {
  min-height: 42px !important;
  padding: 11px 18px !important;
  font-size: 14px !important;
}

.hero-media img {
  filter: saturate(1.04) contrast(1.02) brightness(1.02) !important;
}

.hero-media figcaption {
  opacity: 0.62 !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
}

@media (min-width: 1280px) {
  .hero-copy {
    transform: translateY(-1.5vh);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: calc(100svh - 74px) !important;
  }

  .hero-slide::after {
    background:
      linear-gradient(0deg, rgba(246, 242, 234, 0.86) 0%, rgba(246, 242, 234, 0.55) 35%, rgba(246, 242, 234, 0.10) 70%, transparent 100%) !important;
  }

  .hero-copy {
    width: min(640px, 100%) !important;
    max-width: 640px !important;
    padding: 0 24px 44px !important;
    transform: none;
  }

  .hero-title {
    max-width: 620px !important;
    font-size: clamp(38px, 9vw, 64px) !important;
  }

  .hero-text,
  .hero-text p,
  .hero-closing {
    max-width: 580px !important;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding: 0 20px 34px !important;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 50px) !important;
    line-height: 1.12 !important;
  }

  .hero-text {
    font-size: 14px !important;
    line-height: 1.74 !important;
  }

  .hero-closing {
    font-size: 18px !important;
  }

  .hero-actions {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    bottom: 0;
    padding: 0 18px 28px !important;
  }

  .hero-title {
    font-size: clamp(34px, 11vw, 44px) !important;
    max-width: 320px !important;
  }

  .hero-text p:nth-child(n + 2) {
    display: none !important;
  }

  .hero-text,
  .hero-text p {
    max-width: 310px !important;
    font-size: 13px !important;
    line-height: 1.62 !important;
  }

  .hero-closing {
    max-width: 300px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .hero-actions .button {
    min-height: 38px !important;
    padding: 9px 14px !important;
    font-size: 13px !important;
  }
}

/* Final micro-adjustment after visual screenshot: keep hero copy off the subject */
.hero-title {
  font-size: clamp(34px, 3.15vw, 54px) !important;
  max-width: 440px !important;
  line-height: 1.12 !important;
  overflow-wrap: anywhere !important;
}

.hero-copy {
  width: min(450px, 31vw) !important;
  max-width: 450px !important;
  padding-left: clamp(28px, 4.4vw, 76px) !important;
}

.hero-text,
.hero-text p {
  max-width: 420px !important;
  font-size: clamp(13px, 0.86vw, 15px) !important;
}

.hero-closing {
  max-width: 380px !important;
  font-size: clamp(16px, 1.05vw, 21px) !important;
}

.hero-slide::after {
  background:
    radial-gradient(ellipse at 22% 50%, rgba(248, 245, 239, 0.72) 0%, rgba(248, 245, 239, 0.40) 27%, rgba(248, 245, 239, 0.08) 52%, transparent 70%),
    linear-gradient(90deg, rgba(246, 242, 234, 0.30) 0%, rgba(246, 242, 234, 0.08) 31%, transparent 59%) !important;
}

.hero-title span {
  display: block !important;
  white-space: normal !important;
}

/* Global final art direction pass: lighter typography, image-first story blocks */
.section-heading h2,
.systems .section-heading h2 {
  font-size: clamp(40px, 4.2vw, 68px) !important;
  line-height: 1.08 !important;
}

.section-heading .lead {
  max-width: 640px;
  font-size: clamp(16px, 1.1vw, 19px) !important;
  line-height: 1.75 !important;
}

.hero-title {
  font-size: clamp(36px, 3.7vw, 64px) !important;
  max-width: 500px !important;
}

.hero-copy {
  width: min(510px, 34vw) !important;
  max-width: 510px !important;
  padding-left: clamp(34px, 6vw, 100px) !important;
}

.hero-text {
  max-width: 460px !important;
}

.hero-text p {
  max-width: 460px !important;
}

.hero-closing {
  max-width: 420px !important;
  font-size: clamp(17px, 1.25vw, 23px) !important;
}

.hero-slide::after {
  background:
    radial-gradient(ellipse at 22% 50%, rgba(248, 245, 239, 0.74) 0%, rgba(248, 245, 239, 0.42) 28%, rgba(248, 245, 239, 0.10) 53%, transparent 72%),
    linear-gradient(90deg, rgba(246, 242, 234, 0.34) 0%, rgba(246, 242, 234, 0.10) 32%, transparent 61%) !important;
}

.water-supply-copy h2,
.cinematic-panel .section-copy h2,
.fit .section-copy h2,
.visual-story .section-copy h2,
.quiet-system .quiet-title,
.scene-content h3 {
  font-size: clamp(34px, 3.05vw, 56px) !important;
  line-height: 1.12 !important;
  text-wrap: balance;
}

.water-supply-copy,
.cinematic-panel .section-copy,
.fit .section-copy,
.visual-story .section-copy,
.quiet-system .section-copy,
.scene-content,
.system-scene-card:nth-child(even) .scene-content {
  width: min(520px, 38vw) !important;
  max-width: 520px !important;
}

.water-supply-copy p,
.water-supply-copy .lead,
.cinematic-panel .section-copy p:not(.eyebrow),
.fit .section-copy p:not(.eyebrow),
.visual-story .section-copy p:not(.eyebrow),
.quiet-system .section-copy p:not(.eyebrow),
.scene-content p {
  max-width: 480px !important;
  font-size: clamp(14px, 0.92vw, 16px) !important;
  line-height: 1.78 !important;
}

.water-supply-copy blockquote,
.cinematic-panel blockquote,
.fit .section-copy blockquote,
.visual-story .section-copy blockquote,
.scene-content .card-quote {
  max-width: 500px !important;
  font-size: clamp(18px, 1.45vw, 27px) !important;
  line-height: 1.5 !important;
  text-wrap: balance;
}

.water-supply-hero,
.cinematic-panel,
.visual-story,
.system-scene-card {
  overflow: hidden;
}

.water-supply-media img,
.section-image img,
.fit-media img,
.visual-story-media img,
.scene-media img,
.dimension-card img,
.hero-media img {
  transition: transform 900ms ease, filter 900ms ease;
}

.water-supply-hero:hover .water-supply-media img,
.cinematic-panel:hover .section-image img,
.fit:hover .fit-media img,
.visual-story:hover .visual-story-media img,
.system-scene-card:hover .scene-media img,
.dimension-card:hover img,
.hero-slide:hover .hero-media img {
  transform: scale(1.018);
  filter: saturate(1.08) contrast(1.035) brightness(1.035) !important;
}

.cinematic-detail,
.access-detail,
.water-detail {
  font-size: 14px;
}

.cinematic-detail summary,
.access-detail summary,
.water-detail summary {
  cursor: pointer;
}

.climate-stage {
  min-height: min(780px, calc(100svh - 110px)) !important;
}

.climate-copy-panel {
  left: clamp(28px, 4vw, 64px) !important;
  bottom: clamp(24px, 4vw, 54px) !important;
  max-width: min(460px, 32vw) !important;
}

.climate-copy-panel h3 {
  font-size: clamp(22px, 1.8vw, 32px) !important;
  line-height: 1.24 !important;
}

.climate-copy-panel p:not(.eyebrow) {
  font-size: clamp(13px, 0.9vw, 15px) !important;
  line-height: 1.7 !important;
}

.dewpoint-panel {
  display: block !important;
  grid-template-columns: none !important;
  width: min(430px, 31vw) !important;
  max-width: 430px !important;
  right: clamp(24px, 4vw, 64px) !important;
  top: clamp(28px, 5vw, 72px) !important;
  padding: 18px !important;
  overflow: hidden !important;
}

.dewpoint-head,
.dewpoint-current {
  display: grid !important;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: baseline;
}

.dewpoint-head strong {
  font-size: clamp(16px, 1.2vw, 22px) !important;
  white-space: nowrap;
}

.dewpoint-current strong {
  font-size: clamp(34px, 3vw, 54px) !important;
  white-space: nowrap;
}

.psychrometric-results {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 9px;
  margin: 14px 0 12px;
}

.psychrometric-metric {
  min-width: 0;
  padding: 11px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.psychrometric-metric span,
.psychrometric-metric em {
  display: block;
  color: rgba(255, 252, 242, 0.66);
  font-size: 10px;
  font-style: normal;
  line-height: 1.35;
  white-space: normal;
}

.psychrometric-metric strong {
  display: block;
  margin: 5px 0 3px;
  color: rgba(255, 252, 242, 0.98);
  font-family: var(--font-sans);
  font-size: clamp(19px, 1.65vw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.psychrometric-primary strong {
  font-size: clamp(23px, 2vw, 34px);
}

.psychrometric-primary em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dewpoint-panel p,
.dewpoint-panel label,
.dewpoint-panel summary {
  font-size: 13px !important;
  line-height: 1.58 !important;
}

.dewpoint-panel .tool-inputs {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.calculation-note {
  display: block;
  margin-top: 9px;
  color: rgba(255, 252, 242, 0.58);
  font-size: 10px;
  line-height: 1.55;
}

.climate-mode-tabs {
  right: clamp(28px, 4vw, 72px) !important;
  bottom: clamp(28px, 5vw, 70px) !important;
  gap: 10px !important;
}

.climate-mode-tabs button {
  min-width: 108px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
}

@media (max-width: 1100px) {
  .hero-copy,
  .water-supply-copy,
  .cinematic-panel .section-copy,
  .fit .section-copy,
  .visual-story .section-copy,
  .quiet-system .section-copy,
  .scene-content,
  .system-scene-card:nth-child(even) .scene-content {
    width: min(560px, calc(100% - 44px)) !important;
    max-width: 560px !important;
  }

  .dewpoint-panel {
    width: min(420px, calc(100% - 44px)) !important;
  }

  .dewpoint-panel .tool-inputs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .section-heading h2,
  .systems .section-heading h2 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }

  .hero-title,
  .water-supply-copy h2,
  .cinematic-panel .section-copy h2,
  .fit .section-copy h2,
  .visual-story .section-copy h2,
  .quiet-system .quiet-title,
  .scene-content h3 {
    font-size: clamp(30px, 9vw, 43px) !important;
  }

  .hero-copy {
    width: auto !important;
    max-width: none !important;
    padding: 0 20px 34px !important;
  }

  .climate-copy-panel,
  .dewpoint-panel {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    max-width: none !important;
    margin: 16px;
  }

  .climate-mode-tabs {
    position: relative !important;
    inset: auto !important;
    flex-direction: row !important;
    overflow-x: auto;
    margin: 12px 16px 0;
    padding-bottom: 4px;
  }

  .psychrometric-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .psychrometric-metric {
    padding: 9px 7px 8px;
  }

  .psychrometric-metric strong,
  .psychrometric-primary strong {
    font-size: clamp(18px, 5.6vw, 23px);
  }

  .psychrometric-metric span,
  .psychrometric-metric em {
    font-size: 9px;
  }

  .dewpoint-panel .tool-inputs {
    grid-template-columns: 1fr !important;
  }
}

/* TRUE FINAL OVERRIDE: water demand copy and delivery/process spacing. Keep this at the end. */
.water-demand-block {
  margin-block: clamp(76px, 9vw, 140px) !important;
}

.water-demand-block .section-kicker h3 {
  max-width: 760px !important;
  font-size: clamp(32px, 3.2vw, 54px) !important;
  line-height: 1.16 !important;
}

.water-demand-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(18px, 1.8vw, 30px) !important;
  margin-top: clamp(34px, 4vw, 60px) !important;
}

.water-demand-card {
  min-height: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(18, 53, 47, 0.13) !important;
  border-radius: 18px !important;
  background: linear-gradient(145deg, rgba(255, 252, 242, 0.78), rgba(238, 231, 218, 0.44)) !important;
  box-shadow: 0 20px 54px rgba(18, 53, 47, 0.06) !important;
  overflow: hidden !important;
}

.water-demand-card summary {
  display: flex !important;
  min-height: 112px !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 28px 30px !important;
  cursor: pointer !important;
  list-style: none !important;
}

.water-demand-card summary::-webkit-details-marker {
  display: none !important;
}

.water-demand-card h4 {
  margin: 0 !important;
  color: var(--deep) !important;
  font-size: clamp(21px, 1.55vw, 30px) !important;
  line-height: 1.18 !important;
  text-wrap: balance !important;
}

.water-demand-card summary span {
  flex: 0 0 auto !important;
  border: 1px solid rgba(18, 53, 47, 0.14) !important;
  border-radius: 999px !important;
  padding: 8px 13px !important;
  color: var(--deep) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  background: rgba(248, 245, 239, 0.64) !important;
}

.water-demand-card p {
  margin: 0 !important;
  padding: 0 30px 30px !important;
  color: rgba(23, 23, 23, 0.68) !important;
  font-size: 15px !important;
  line-height: 1.78 !important;
}

.water-demand-card:not([open]) p {
  display: none !important;
}

.water-accordion {
  display: grid !important;
  gap: clamp(20px, 2vw, 32px) !important;
  margin-top: clamp(46px, 6vw, 86px) !important;
}

.delivery.visual-story,
.process.visual-story,
.project-access.visual-story {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
  gap: clamp(56px, 7vw, 120px) !important;
  align-items: center !important;
  max-width: min(1680px, calc(100% - 96px)) !important;
  min-height: auto !important;
  margin: clamp(92px, 10vw, 170px) auto !important;
  padding: clamp(72px, 8vw, 118px) clamp(54px, 6vw, 92px) !important;
  overflow: visible !important;
  border: 1px solid rgba(18, 53, 47, 0.08) !important;
  border-radius: 26px !important;
  background: radial-gradient(circle at 18% 14%, rgba(184, 155, 94, 0.09), transparent 34%), linear-gradient(135deg, rgba(248, 245, 239, 0.98), rgba(238, 231, 218, 0.58)) !important;
  box-shadow: 0 28px 90px rgba(18, 53, 47, 0.07) !important;
  color: var(--ink) !important;
}

.delivery.visual-story + .process.visual-story,
.process.visual-story + .project-access.visual-story {
  margin-top: clamp(110px, 12vw, 190px) !important;
}

.delivery.visual-story::before,
.process.visual-story::before,
.project-access.visual-story::before,
.delivery.visual-story::after,
.process.visual-story::after,
.project-access.visual-story::after {
  display: none !important;
}

.delivery.visual-story .visual-story-media,
.process.visual-story .visual-story-media,
.project-access.visual-story .visual-story-media {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 70px rgba(18, 53, 47, 0.13) !important;
  background: rgba(18, 53, 47, 0.05) !important;
}

.delivery.visual-story .visual-story-media img,
.process.visual-story .visual-story-media img,
.project-access.visual-story .visual-story-media img {
  display: block !important;
  width: 100% !important;
  height: clamp(430px, 46vw, 680px) !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: inherit !important;
  filter: saturate(1.08) contrast(1.035) brightness(1.04) !important;
  transform: scale(1.006) !important;
}

.delivery.visual-story:hover .visual-story-media img,
.process.visual-story:hover .visual-story-media img,
.project-access.visual-story:hover .visual-story-media img {
  transform: scale(1.026) !important;
  filter: saturate(1.14) contrast(1.045) brightness(1.06) !important;
}

.delivery.visual-story .section-copy,
.process.visual-story .section-copy,
.project-access.visual-story .section-copy {
  position: relative !important;
  z-index: 2 !important;
  grid-column: auto !important;
  align-self: center !important;
  width: min(500px, 100%) !important;
  max-width: 500px !important;
  padding: 0 !important;
  color: var(--ink) !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.delivery.visual-story .section-copy h2,
.process.visual-story .section-copy h2,
.project-access.visual-story .section-copy h2 {
  max-width: 480px !important;
  margin-bottom: 18px !important;
  color: var(--deep) !important;
  font-size: clamp(34px, 3vw, 56px) !important;
  line-height: 1.14 !important;
  text-shadow: none !important;
}

.delivery.visual-story .eyebrow,
.process.visual-story .eyebrow,
.project-access.visual-story .eyebrow {
  color: rgba(184, 155, 94, 0.94) !important;
  text-shadow: none !important;
}

.delivery.visual-story .section-copy p:not(.eyebrow),
.process.visual-story .section-copy p:not(.eyebrow),
.project-access.visual-story .section-copy p:not(.eyebrow) {
  max-width: 440px !important;
  color: rgba(23, 23, 23, 0.7) !important;
  font-size: clamp(14px, 0.92vw, 16px) !important;
  line-height: 1.8 !important;
  text-shadow: none !important;
}

.delivery.visual-story blockquote,
.process.visual-story blockquote,
.project-access.visual-story blockquote {
  max-width: 450px !important;
  margin-top: 20px !important;
  border-left-color: rgba(184, 155, 94, 0.72) !important;
  color: var(--deep) !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(18px, 1.35vw, 25px) !important;
  font-weight: 760 !important;
  line-height: 1.5 !important;
  text-shadow: none !important;
}

.delivery.visual-story .delivery-grid,
.process.visual-story .process-list,
.project-access.visual-story .access-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  max-width: 520px !important;
  gap: 12px !important;
  margin-top: clamp(24px, 2.6vw, 38px) !important;
  justify-self: start !important;
}

.delivery.visual-story .delivery-card,
.process.visual-story .process-card {
  width: auto !important;
  min-width: 0 !important;
  border: 1px solid rgba(18, 53, 47, 0.14) !important;
  border-radius: 999px !important;
  background: rgba(255, 252, 242, 0.62) !important;
  color: var(--deep) !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(108%) !important;
}

.delivery.visual-story .delivery-card[open],
.process.visual-story .process-card[open] {
  flex-basis: min(500px, 100%) !important;
  border-radius: 16px !important;
  background: rgba(255, 252, 242, 0.82) !important;
}

.delivery.visual-story .delivery-card summary,
.process.visual-story .process-card summary {
  min-height: 42px !important;
  padding: 0 16px !important;
}

.delivery.visual-story .delivery-card summary,
.process.visual-story .process-card summary,
.process.visual-story .process-card h3,
.process.visual-story .process-card span {
  color: var(--deep) !important;
}

.delivery.visual-story .delivery-card p,
.process.visual-story .process-card p {
  color: rgba(23, 23, 23, 0.68) !important;
}

.project-access.visual-story .access-card {
  max-width: 410px !important;
  margin-top: 20px !important;
}

@media (min-width: 981px) {
  .process.visual-story.media-first,
  .project-access.visual-story.media-first {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) !important;
  }

  .process.visual-story.media-first .visual-story-media,
  .project-access.visual-story.media-first .visual-story-media {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .process.visual-story.media-first .section-copy,
  .project-access.visual-story.media-first .section-copy {
    grid-column: 2 !important;
  }
}

@media (max-width: 1180px) {
  .water-demand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .delivery.visual-story,
  .process.visual-story,
  .project-access.visual-story {
    grid-template-columns: 1fr !important;
    max-width: min(760px, calc(100% - 36px)) !important;
    gap: 30px !important;
    margin-block: 56px !important;
    padding: 34px 22px 48px !important;
  }

  .delivery.visual-story .visual-story-media img,
  .process.visual-story .visual-story-media img,
  .project-access.visual-story .visual-story-media img {
    height: clamp(340px, 68vw, 520px) !important;
  }
}

@media (max-width: 680px) {
  .water-demand-grid {
    grid-template-columns: 1fr !important;
  }

  .water-demand-card summary {
    min-height: 88px !important;
    padding: 22px !important;
  }
}

/* Design & delivery card contrast fix on beige surfaces */
body .delivery.visual-story .delivery-card,
body .process.visual-story .process-card {
  border: 1px solid rgba(18, 53, 47, 0.16) !important;
  background: rgba(255, 250, 243, 0.94) !important;
  box-shadow: 0 10px 26px rgba(18, 53, 47, 0.06) !important;
  backdrop-filter: blur(6px) saturate(104%) !important;
  -webkit-backdrop-filter: blur(6px) saturate(104%) !important;
}

body .delivery.visual-story .delivery-card[open],
body .process.visual-story .process-card[open] {
  background: rgba(255, 248, 238, 0.98) !important;
}

body .delivery.visual-story .delivery-card summary,
body .process.visual-story .process-card summary,
body .process.visual-story .process-card h3,
body .process.visual-story .process-card span {
  color: #163d35 !important;
  text-shadow: none !important;
}

body .process.visual-story .process-card span {
  color: rgba(22, 61, 53, 0.88) !important;
}

body .delivery.visual-story .delivery-card p,
body .process.visual-story .process-card p {
  color: rgba(22, 35, 31, 0.74) !important;
}

@media (min-width: 981px) {
  .site-footer {
    display: grid !important;
    grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.78fr) minmax(140px, 0.78fr) !important;
    gap: clamp(34px, 4vw, 56px) !important;
    align-items: start !important;
  }

  .site-footer > .footer-col {
    grid-column: auto !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .site-footer > .footer-brand {
    max-width: 440px !important;
  }

  .site-footer > .footer-nav,
  .site-footer > .footer-contact {
    justify-self: start !important;
  }
}

/* DOAS five-constant editorial rebuild */
.five-atlas-page {
  background: #fff;
  color: #1f1a16;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.five-atlas-main {
  width: min(1180px, calc(100% - 128px));
  padding: 34px 0 180px;
}

.five-atlas-topbar {
  margin-bottom: 92px;
}

.five-atlas-back {
  min-height: 48px;
  padding: 0 24px;
  border-color: rgba(165, 134, 97, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 44px rgba(121, 92, 59, 0.08);
}

.five-atlas-kicker {
  color: rgba(137, 101, 61, 0.92);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.five-atlas-hero,
.five-atlas-section,
.five-atlas-band,
.five-atlas-closing {
  max-width: none;
}

.five-atlas-hero {
  gap: 26px;
  padding: 34px 0 8px;
}

.five-atlas-hero-visual,
.five-atlas-wide-visual {
  margin: 0;
}

.five-atlas-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 34px;
  background: #f3eee7;
}

.five-atlas-hero-visual img,
.five-atlas-wide-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.five-atlas-hero-visual img {
  object-position: center center;
}

.five-atlas-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 76px minmax(0, 560px);
  align-content: end;
  gap: 22px;
  padding: 0 52px 52px;
  pointer-events: none;
}

.five-atlas-hero-copy {
  display: grid;
  gap: 16px;
}

.five-atlas-hero-titleblock {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.five-atlas-hero-index {
  display: block;
  padding-top: 6px;
  color: #17120e;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.five-atlas-hero h1,
.five-atlas-stage-head h2,
.five-atlas-section-head h2,
.five-atlas-closing h2 {
  color: #201915;
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Noto Sans CJK SC",
    "Microsoft YaHei",
    sans-serif;
  font-weight: 600;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.five-atlas-hero h1 {
  max-width: 12ch;
  font-size: 64px;
  line-height: 1.05;
  color: #17120e;
  text-shadow: none;
}

.five-atlas-hero-copy p {
  margin: 0;
  color: #1f1812;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.five-atlas-hero-copy strong {
  max-width: 26em;
  color: #1d1712;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.five-atlas-lead,
.five-atlas-prose p,
.five-atlas-closing p,
.five-atlas-caption,
.five-atlas-matrix-row p,
.five-atlas-climate-list p,
.five-atlas-route-flow p,
.five-atlas-stage-grid p,
.five-atlas-reference-note {
  color: rgba(76, 61, 47, 0.9);
  font-size: 16px;
  line-height: 1.95;
}

.five-atlas-lead {
  max-width: 40em;
  font-size: 18px;
  line-height: 1.92;
}

.five-atlas-reading-note {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  max-width: 880px;
  padding-top: 18px;
  border-top: 1px solid rgba(152, 119, 82, 0.18);
}

.five-atlas-reading-note span {
  color: rgba(136, 103, 65, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.five-atlas-reading-note strong {
  color: rgba(44, 35, 27, 0.92);
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.76;
}

.five-atlas-contents {
  gap: 0;
  margin: 58px 0 110px;
  padding-top: 18px;
  border-top: 1px solid rgba(150, 117, 81, 0.16);
}

.five-atlas-contents div {
  gap: 10px;
  min-height: 106px;
  padding: 2px 24px 0 0;
  border-right-color: rgba(150, 117, 81, 0.12);
}

.five-atlas-contents span {
  font-size: 11px;
  letter-spacing: 0.16em;
}

.five-atlas-contents strong {
  max-width: 8ch;
  color: #26201a;
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Noto Sans CJK SC",
    "Microsoft YaHei",
    sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.34;
}

.five-atlas-stage,
.five-atlas-matrix,
.five-atlas-panel {
  position: relative;
  margin-top: 0;
  padding: 36px 0 0;
  border-top: 1px solid rgba(153, 120, 84, 0.18);
}

.five-atlas-stage {
  display: grid;
  gap: 30px;
  margin-bottom: 104px;
}

.five-atlas-wide-visual {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(153, 120, 84, 0.12);
  background: #f7f3ed;
}

.five-atlas-wide-visual img {
  aspect-ratio: 16 / 6.9;
  object-position: center top;
}

.five-atlas-stage-head,
.five-atlas-matrix .five-atlas-stage-head,
.five-atlas-panel .five-atlas-stage-head {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-bottom: 0;
}

.five-atlas-stage-head h2 {
  max-width: 18ch;
  font-size: 34px;
  line-height: 1.24;
}

.five-atlas-formula-block {
  display: grid;
  gap: 10px;
  max-width: 840px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(153, 120, 84, 0.16);
}

.five-atlas-formula-block span,
.five-atlas-band-list span,
.five-atlas-basis span,
.five-atlas-climate-list span,
.five-atlas-route-flow span,
.five-atlas-stage-grid span,
.five-atlas-pullline span,
.five-atlas-reference-note {
  color: rgba(140, 105, 66, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.five-atlas-formula-block strong {
  color: #231c17;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.58;
}

.five-atlas-stage-grid {
  display: grid;
  gap: 0;
}

.five-atlas-stage-grid article {
  display: grid;
  grid-template-columns: 150px 168px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(153, 120, 84, 0.12);
}

.five-atlas-stage-grid article:last-child {
  border-bottom: none;
}

.five-atlas-stage-grid strong,
.five-atlas-matrix-row strong,
.five-atlas-matrix-row em,
.five-atlas-band-list strong,
.five-atlas-basis strong,
.five-atlas-climate-list strong,
.five-atlas-route-flow strong,
.five-atlas-route-note strong,
.five-atlas-dew-compare strong,
.five-atlas-wheel-core {
  color: #231d17;
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Noto Sans CJK SC",
    "Microsoft YaHei",
    sans-serif;
  font-weight: 600;
}

.five-atlas-stage-grid strong {
  font-size: 23px;
  line-height: 1.34;
}

.five-atlas-stage-grid p {
  max-width: 34em;
}

.five-atlas-section {
  display: grid;
  gap: 26px;
  margin-top: 120px;
}

.five-atlas-section-head {
  gap: 12px;
  margin-bottom: 0;
  max-width: 930px;
}

.five-atlas-section-head h2,
.five-atlas-closing h2 {
  max-width: 18ch;
  font-size: 34px;
  line-height: 1.28;
}

.five-atlas-prose {
  gap: 18px;
  max-width: 940px;
}

.five-atlas-prose p:first-child {
  max-width: 41em;
  font-size: 17px;
}

.five-atlas-prose p:last-child {
  max-width: 33em;
  margin-left: 138px;
}

.five-atlas-pullline {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(153, 120, 84, 0.14);
}

.five-atlas-pullline strong {
  color: #231c17;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.58;
}

.five-atlas-matrix {
  display: grid;
  gap: 34px;
  margin-top: 116px;
}

.five-atlas-matrix-table {
  display: grid;
  gap: 0;
}

.five-atlas-matrix-head,
.five-atlas-matrix-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.9fr;
  gap: 28px;
  align-items: start;
}

.five-atlas-matrix-head {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(153, 120, 84, 0.16);
}

.five-atlas-matrix-head span {
  color: rgba(140, 105, 66, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.five-atlas-matrix-row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(153, 120, 84, 0.12);
}

.five-atlas-matrix-row strong,
.five-atlas-matrix-row em {
  font-size: 20px;
  line-height: 1.45;
  font-style: normal;
}

.five-atlas-matrix-row.accent strong,
.five-atlas-matrix-row.accent em {
  color: #a1733f;
}

.five-atlas-band {
  margin-top: 94px;
  padding: 26px 0 34px;
}

.five-atlas-band-list {
  gap: 0;
  margin-top: 24px;
}

.five-atlas-band-list div {
  min-height: 98px;
  gap: 10px;
  padding-right: 18px;
}

.five-atlas-band-list strong {
  max-width: 8ch;
  font-size: 20px;
  line-height: 1.36;
}

.five-atlas-panel {
  padding-top: 34px;
  border-top-color: rgba(153, 120, 84, 0.16);
  background: none;
}

.five-atlas-panel::before {
  display: none;
}

.five-atlas-wheel-wrap,
.five-atlas-dew,
.five-atlas-basis,
.five-atlas-climate-list,
.five-atlas-route-flow,
.five-atlas-route-note {
  position: relative;
  z-index: 1;
}

.five-atlas-wheel-wrap {
  gap: 18px;
}

.five-atlas-wheel {
  min-height: 460px;
}

.five-atlas-wheel::before {
  width: 352px;
  height: 352px;
}

.five-atlas-wheel::after {
  width: 212px;
  height: 212px;
}

.five-atlas-wheel-core {
  width: 148px;
  height: 148px;
  border-color: rgba(172, 137, 91, 0.22);
  background: radial-gradient(circle, rgba(215, 186, 137, 0.28), rgba(255, 255, 255, 0.92));
  font-size: 24px;
}

.five-atlas-wheel-node {
  width: 134px;
  min-height: 84px;
  padding: 12px 14px;
  border-left: 1px solid rgba(171, 136, 88, 0.2);
  background: rgba(255, 255, 255, 0.84);
  color: rgba(58, 45, 34, 0.92);
  font-size: 12px;
  line-height: 1.58;
}

.five-atlas-caption {
  max-width: 40em;
}

.five-atlas-dew {
  gap: 24px;
}

.five-atlas-dew-stage {
  min-height: 316px;
}

.five-atlas-dew-axis {
  bottom: 44px;
}

.five-atlas-dew-curve {
  inset: 34px 54px 62px 54px;
}

.five-atlas-dew-compare {
  gap: 32px;
  padding-top: 20px;
}

.five-atlas-dew-compare strong {
  font-size: 22px;
  line-height: 1.46;
}

.five-atlas-basis,
.five-atlas-climate-list,
.five-atlas-route-flow {
  gap: 0;
}

.five-atlas-basis div,
.five-atlas-climate-list div,
.five-atlas-route-flow div {
  gap: 10px;
  padding: 18px 0 20px 22px;
}

.five-atlas-basis strong,
.five-atlas-climate-list strong,
.five-atlas-route-flow strong {
  max-width: 28em;
  font-size: 20px;
  line-height: 1.48;
}

.five-atlas-reference-note {
  margin: 20px 0 0;
  line-height: 1.8;
  text-transform: none;
}

.five-atlas-route-note {
  gap: 10px;
  margin-top: 26px;
}

.five-atlas-route-note strong {
  font-size: 22px;
  line-height: 1.54;
}

.five-atlas-closing {
  margin-top: 132px;
  padding-top: 36px;
  border-top: 1px solid rgba(153, 120, 84, 0.16);
}

.five-atlas-closing p {
  max-width: 40em;
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .five-atlas-main {
    width: min(100%, calc(100% - 48px));
  }

  .five-atlas-hero h1 {
    font-size: 44px;
  }

  .five-atlas-hero-visual {
    min-height: 520px;
  }

  .five-atlas-hero-overlay {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 28px 32px;
  }

  .five-atlas-stage-head h2,
  .five-atlas-section-head h2,
  .five-atlas-closing h2 {
    font-size: 30px;
  }

  .five-atlas-stage-grid article,
  .five-atlas-matrix-head,
  .five-atlas-matrix-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .five-atlas-prose p:last-child {
    margin-left: 0;
  }
}

/* DOAS five-constant booklet rebuild */
.doas-book-page {
  background: #fff;
  color: #182126;
}

.doas-book-main {
  width: min(1400px, calc(100% - 112px));
  padding: 34px 0 168px;
}

.doas-book-topbar {
  margin-bottom: 46px;
}

.doas-book-kicker,
.doas-book-hero-plate span,
.doas-book-hero-plate em,
.doas-book-old-home-lead span,
.doas-book-missing-line span,
.doas-book-ruleband span,
.doas-book-route-note span,
.doas-book-statement span,
.doas-book-system-strip span,
.doas-book-origin-points span,
.doas-book-origin-equation span,
.doas-book-source-cover span,
.doas-book-source-mark span,
.doas-book-pressure-strip span,
.doas-book-health-comfort span,
.doas-book-problem-rule span,
.doas-book-outcome-list span,
.doas-book-gap-matrix span,
.doas-book-annotation-grid span,
.doas-book-dew-scale span,
.doas-book-basis-list span,
.doas-book-metric-line span,
.doas-book-season-strip span,
.doas-book-route-flowwide span,
.doas-book-visual-band-copy span,
.doas-book-climate-band-copy span {
  color: #0e5f5a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doas-book-kicker {
  margin: 0;
}

.doas-book-hero {
  display: grid;
  gap: 34px;
}

.doas-book-prologue {
  max-width: 1160px;
  padding: 30px 0 4px;
}

.doas-book-prologue-copy {
  display: grid;
  gap: 20px;
}

.doas-book-prologue h1 {
  margin: 0;
  color: #182126;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.doas-book-prologue-lines {
  display: grid;
  gap: 5px;
  max-width: 980px;
  padding-top: 10px;
}

.doas-book-prologue-lines p {
  margin: 0;
  color: #182126;
  font-size: 20px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.doas-book-prologue-rule {
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-prologue-rule span {
  color: #0e5f5a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doas-book-prologue-rule strong {
  color: #182126;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.58;
}

.doas-book-hero-visual {
  position: relative;
  margin: 0;
  height: min(66vh, 690px);
  min-height: 580px;
  overflow: hidden;
  border-radius: 24px;
  background: #182126;
  box-shadow: 0 32px 88px rgba(15, 31, 40, 0.14);
}

.doas-book-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 16, 0) 44%, rgba(8, 13, 16, 0.56) 100%),
    linear-gradient(90deg, rgba(8, 13, 16, 0.36) 0%, rgba(8, 13, 16, 0.08) 36%, rgba(8, 13, 16, 0) 62%);
  pointer-events: none;
}

.doas-book-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.03);
}

.doas-book-hero-plate {
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 44px;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin: 0;
  color: #fff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.doas-book-hero-plate span,
.doas-book-hero-plate em {
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
}

.doas-book-hero-plate strong {
  color: #fff;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 78px;
  font-weight: 400;
  line-height: 1.05;
}

.doas-book-hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.doas-book-hero-keywords span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.doas-book-hero-keywords svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.doas-book-hero-copy {
  display: grid;
  gap: 22px;
  max-width: 1040px;
  padding-bottom: 18px;
}

.doas-book-hero-copy h1,
.doas-book-section-head h2,
.doas-book-closing h2,
.doas-book-visual-band-copy strong,
.doas-book-climate-band-copy strong {
  margin: 0;
  color: #182126;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-weight: 400;
  letter-spacing: 0;
}

.doas-book-hero-copy h1 {
  max-width: 9em;
  font-size: 58px;
  line-height: 1.16;
  text-wrap: balance;
}

.doas-book-hero-tags {
  max-width: 40em;
  margin: 0;
  color: #27323a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.doas-book-hero-summary,
.doas-book-intro > p,
.doas-book-prose p,
.doas-book-system-strip p,
.doas-book-outcome-list p,
.doas-book-dew-scale p,
.doas-book-season-strip p,
.doas-book-route-flowwide p,
.doas-book-route-note p,
.doas-book-closing p,
.doas-book-visual-band-copy p,
.doas-book-climate-band-copy p {
  margin: 0;
  color: rgba(39, 50, 58, 0.82);
  font-size: 16px;
  line-height: 1.92;
}

.doas-book-hero-summary {
  max-width: 46em;
}

.doas-book-constant-icons {
  display: grid;
  gap: 0;
  width: min(100%, 980px);
  margin-top: 18px;
  padding-top: 34px;
  border-top: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-constant-icons figure {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(14, 95, 90, 0.1);
}

.doas-book-constant-icons img {
  display: block;
  width: 168px;
  height: 168px;
  object-fit: contain;
}

.doas-book-constant-icons figcaption {
  display: grid;
  gap: 8px;
}

.doas-book-constant-icons em {
  color: #0e5f5a;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doas-book-constant-icons strong {
  color: #182126;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.doas-book-constant-icons span {
  color: rgba(39, 50, 58, 0.72);
  max-width: 34em;
  font-size: 16px;
  line-height: 1.82;
}

.doas-book-intro {
  display: grid;
  gap: 30px;
  max-width: 1040px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(14, 95, 90, 0.18);
}

.doas-book-intro > p {
  max-width: 56em;
  font-size: 17px;
}

.doas-book-missing-line,
.doas-book-ruleband,
.doas-book-route-note,
.doas-book-statement {
  display: grid;
  gap: 12px;
  max-width: 980px;
  padding-top: 22px;
  border-top: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-missing-line strong,
.doas-book-ruleband strong,
.doas-book-route-note strong,
.doas-book-statement strong {
  color: #182126;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.62;
  text-wrap: balance;
}

.doas-book-section {
  display: grid;
  gap: 38px;
  max-width: 1160px;
  margin-top: 124px;
  padding-top: 34px;
  border-top: 1px solid rgba(14, 95, 90, 0.14);
}

.doas-book-section-head {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.doas-book-section-head.narrow {
  max-width: 820px;
}

.doas-book-section-head h2,
.doas-book-closing h2 {
  max-width: 19em;
  font-size: 38px;
  line-height: 1.34;
  text-wrap: balance;
}

.doas-book-origin {
  max-width: 1240px;
}

.doas-book-origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 82px;
  align-items: start;
}

.doas-book-origin-copy {
  display: grid;
  gap: 34px;
  max-width: 760px;
}

.doas-book-origin-lead,
.doas-book-source-note {
  margin: 0;
  color: rgba(39, 50, 58, 0.84);
  font-size: 17px;
  line-height: 2.05;
}

.doas-book-origin-lead {
  max-width: 42em;
  color: #182126;
  font-size: 19px;
  line-height: 1.95;
}

.doas-book-origin-points {
  display: grid;
  gap: 0;
}

.doas-book-origin-points article {
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr);
  gap: 8px 30px;
  padding: 25px 0 27px;
  border-top: 1px solid rgba(14, 95, 90, 0.14);
}

.doas-book-origin-points article:last-child {
  border-bottom: 1px solid rgba(14, 95, 90, 0.14);
}

.doas-book-origin-points span {
  padding-top: 7px;
}

.doas-book-origin-points strong {
  color: #182126;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.55;
}

.doas-book-origin-points p {
  grid-column: 2;
  max-width: 32em;
  margin: 0;
  color: rgba(39, 50, 58, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

.doas-book-origin-equation {
  display: grid;
  gap: 14px;
  max-width: 680px;
  padding: 28px 0 4px;
  border-top: 2px solid #182126;
}

.doas-book-origin-equation strong {
  color: #182126;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.58;
}

.doas-book-source-shelf {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  padding-top: 8px;
}

.doas-book-source-cover {
  display: grid;
  gap: 14px;
  margin: 0;
}

.doas-book-source-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border: 1px solid rgba(24, 33, 38, 0.13);
  background: #f4f7f6;
}

.doas-book-source-cover figcaption,
.doas-book-source-mark {
  display: grid;
  gap: 8px;
}

.doas-book-source-cover strong,
.doas-book-source-mark strong {
  color: #182126;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.doas-book-source-mark {
  min-height: 148px;
  align-content: start;
  padding: 20px 0 0;
  border-top: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-source-mark > img {
  display: block;
  width: 126px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
}

.doas-book-source-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.doas-book-source-icons img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.doas-book-source-mark.text-only {
  min-height: auto;
  padding-bottom: 4px;
}

.doas-book-source-mark.cn {
  grid-column: 1 / -1;
  min-height: auto;
  padding-top: 22px;
  border-top-color: rgba(24, 33, 38, 0.34);
}

.doas-book-source-note {
  max-width: 64em;
  margin-top: -4px;
  color: rgba(39, 50, 58, 0.56);
  font-size: 13px;
  line-height: 1.8;
}

.doas-book-system-strip,
.doas-book-pressure-strip,
.doas-book-health-comfort,
.doas-book-gap-matrix,
.doas-book-outcome-list,
.doas-book-annotation-grid,
.doas-book-dew-scale,
.doas-book-basis-list,
.doas-book-metric-line,
.doas-book-season-strip,
.doas-book-route-flowwide {
  display: grid;
  gap: 28px;
}

.doas-book-system-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doas-book-pressure-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(14, 95, 90, 0.16);
  border-bottom: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-health-comfort {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 4px;
  border-top: 2px solid #182126;
}

.doas-book-problem-hero,
.doas-book-system-hero,
.doas-book-outcome-hero,
.doas-book-comfort-hero,
.doas-book-dewpoint-hero,
.doas-book-climate-hero,
.doas-book-route-hero {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(24, 33, 38, 0.08);
  background: #f4f1eb;
}

.doas-book-problem-hero img,
.doas-book-system-hero img,
.doas-book-outcome-hero img,
.doas-book-comfort-hero img,
.doas-book-dewpoint-hero img,
.doas-book-climate-hero img,
.doas-book-route-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.doas-book-gap-matrix {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  border-top: 2px solid #182126;
  border-bottom: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-outcome-list,
.doas-book-route-flowwide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.doas-book-annotation-grid,
.doas-book-dew-scale,
.doas-book-basis-list,
.doas-book-metric-line {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.doas-book-season-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doas-book-system-strip article,
.doas-book-pressure-strip article,
.doas-book-health-comfort div,
.doas-book-gap-matrix div,
.doas-book-outcome-list div,
.doas-book-annotation-grid article,
.doas-book-dew-scale div,
.doas-book-basis-list article,
.doas-book-metric-line div,
.doas-book-season-strip article,
.doas-book-route-flowwide article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 20px 0 0;
  border-top: 1px solid rgba(14, 95, 90, 0.16);
  background: none;
  box-shadow: none;
}

.doas-book-problem-lead {
  max-width: 900px;
}

.doas-book-problem-lead p {
  margin: 0;
  color: #182126;
  font-size: 19px;
  line-height: 2.02;
}

.doas-book-pressure-strip article {
  padding: 26px 24px 28px 0;
  border-top: 0;
}

.doas-book-pressure-strip article + article {
  padding-left: 24px;
  border-left: 1px solid rgba(14, 95, 90, 0.13);
}

.doas-book-health-comfort div {
  padding: 30px 36px 4px 0;
  border-top: 0;
}

.doas-book-health-comfort div + div {
  padding-left: 36px;
  border-left: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-health-comfort figure {
  margin: 10px 0 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(24, 33, 38, 0.08);
  background: #f7f7f4;
}

.doas-book-health-comfort img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.doas-book-gap-matrix div {
  padding: 24px 24px 26px 0;
  border-top: 0;
}

.doas-book-gap-matrix div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(14, 95, 90, 0.14);
}

.doas-book-system-strip strong,
.doas-book-pressure-strip strong,
.doas-book-health-comfort strong,
.doas-book-gap-matrix strong,
.doas-book-outcome-list strong,
.doas-book-annotation-grid strong,
.doas-book-dew-scale strong,
.doas-book-basis-list strong,
.doas-book-metric-line strong,
.doas-book-season-strip strong,
.doas-book-route-flowwide strong {
  color: #182126;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.55;
}

.doas-book-health-comfort strong {
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.44;
}

.doas-book-pressure-strip p,
.doas-book-health-comfort p {
  margin: 0;
  color: rgba(39, 50, 58, 0.7);
  font-size: 15px;
  line-height: 1.88;
}

.doas-book-gap-matrix strong {
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.42;
}

.doas-book-gap-matrix p {
  margin: 0;
  color: rgba(39, 50, 58, 0.68);
  font-size: 14px;
  line-height: 1.82;
}

.doas-book-problem-rule {
  display: grid;
  gap: 12px;
  max-width: 980px;
  padding-top: 24px;
  border-top: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-problem-rule strong {
  color: #182126;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.62;
}

.doas-book-old-home-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
  max-width: 1120px;
  padding: 36px 0 42px;
  border-top: 2px solid #182126;
  border-bottom: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-old-home-lead {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 16px;
}

.doas-book-old-home-lead strong {
  color: #182126;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.48;
}

.doas-book-old-home-lines {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.doas-book-old-home-lines p {
  margin: 0;
  color: rgba(39, 50, 58, 0.86);
  font-size: 18px;
  line-height: 2.02;
}

.doas-book-old-home-lines p:first-child {
  color: #182126;
  font-size: 20px;
  line-height: 1.92;
}

.doas-book-annotation-grid article,
.doas-book-basis-list article,
.doas-book-metric-line div {
  color: rgba(39, 50, 58, 0.88);
  font-size: 17px;
  line-height: 1.75;
}

.doas-book-prose {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.doas-book-prose p {
  max-width: 54em;
}

.doas-book-prose p:last-child {
  max-width: 46em;
  margin-left: 108px;
}

.doas-book-prose.compact p,
.doas-book-prose.compact p:last-child {
  max-width: 56em;
  margin-left: 0;
}

.doas-book-visual-band,
.doas-book-climate-band {
  display: grid;
  max-width: 1160px;
  margin-top: 116px;
  padding: 40px 0 0;
  border-top: 2px solid #182126;
}

.doas-book-climate-band {
  margin-top: 104px;
}

.doas-book-visual-band-copy,
.doas-book-climate-band-copy {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.doas-book-visual-band-copy strong,
.doas-book-climate-band-copy strong {
  font-size: 36px;
  line-height: 1.4;
}

.doas-book-comfort-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
  min-height: 430px;
  padding: 58px 54px;
  border-top: 1px solid rgba(14, 95, 90, 0.18);
  border-bottom: 1px solid rgba(14, 95, 90, 0.18);
  background:
    radial-gradient(circle at center, rgba(14, 95, 90, 0.08), rgba(255, 255, 255, 0) 40%),
    linear-gradient(90deg, rgba(241, 247, 246, 0.82), rgba(255, 255, 255, 0.9) 52%, rgba(248, 246, 243, 0.72));
  overflow: hidden;
}

.doas-book-comfort-board::before,
.doas-book-comfort-board::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.doas-book-comfort-board::before {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(14, 95, 90, 0.18);
}

.doas-book-comfort-board::after {
  width: 590px;
  height: 590px;
  border: 1px dashed rgba(14, 95, 90, 0.16);
}

.doas-book-comfort-core,
.doas-book-comfort-node {
  position: relative;
  z-index: 1;
}

.doas-book-comfort-core {
  display: grid;
  gap: 8px;
  grid-column: 2;
  grid-row: 2;
  width: 206px;
  height: 206px;
  place-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(14, 95, 90, 0.2);
  box-shadow: 0 22px 52px rgba(14, 95, 90, 0.08);
  text-align: center;
}

.doas-book-comfort-core span {
  color: #0e5f5a;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.doas-book-comfort-core strong {
  color: #182126;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.08;
}

.doas-book-comfort-node {
  width: 205px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(14, 95, 90, 0.18);
  background: rgba(255, 255, 255, 0.88);
  color: #182126;
  font-size: 15px;
  font-weight: 650;
  text-align: center;
}

.doas-book-dew-scale div:nth-child(1) {
  border-top-color: rgba(14, 95, 90, 0.55);
}

.doas-book-dew-scale div:nth-child(2) {
  border-top-color: rgba(162, 111, 50, 0.52);
}

.doas-book-dew-scale div:nth-child(3) {
  border-top-color: rgba(117, 48, 57, 0.5);
}

.doas-book-dew-scale {
  gap: 0;
  border-top: 1px solid rgba(14, 95, 90, 0.16);
  border-bottom: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-dew-scale div {
  padding: 28px 28px 30px;
  border-top-width: 4px;
}

.doas-book-dew-scale div + div {
  border-left: 1px solid rgba(14, 95, 90, 0.12);
}

.doas-book-dew-scale span {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.doas-book-dew-scale strong {
  font-size: 21px;
}

.doas-book-metric-line {
  gap: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(14, 95, 90, 0.16);
}

.doas-book-metric-line div {
  padding: 22px 26px 6px 0;
  border-top: 0;
}

.doas-book-metric-line div + div {
  padding-left: 26px;
  border-left: 1px solid rgba(14, 95, 90, 0.14);
}

.doas-book-metric-line strong {
  font-size: 18px;
  font-weight: 500;
}

.doas-book-ruleband {
  max-width: 920px;
}

.doas-book-route-flowwide article {
  position: relative;
}

.doas-book-closing {
  display: grid;
  gap: 24px;
  max-width: 1160px;
  margin-top: 136px;
  padding-top: 42px;
  border-top: 2px solid #182126;
}

.doas-book-closing-hero {
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(24, 33, 38, 0.08);
  background: #f4f1eb;
}

.doas-book-closing-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.doas-book-closing p {
  max-width: 56em;
}

.doas-book-closing-resident {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 18px 0 8px;
  padding: 34px 42px 38px;
  border-left: 3px solid #0e5f5a;
  background:
    linear-gradient(90deg, rgba(14, 95, 90, 0.075), rgba(255, 255, 255, 0) 74%),
    #fbfbf8;
}

.doas-book-closing-resident span {
  color: #0e5f5a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doas-book-closing-resident strong {
  color: #182126;
  font-family:
    "Songti SC",
    "STSong",
    "Source Han Serif SC",
    "Noto Serif CJK SC",
    serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.48;
}

.doas-book-closing-resident p {
  max-width: 49em;
  margin: 0;
  color: rgba(39, 50, 58, 0.76);
  font-size: 17px;
  line-height: 1.95;
}

@media (max-width: 1100px) {
  .doas-book-main {
    width: min(100%, calc(100% - 48px));
  }

  .doas-book-hero-visual {
    min-height: 480px;
  }

  .doas-book-hero-copy {
    grid-template-columns: 1fr;
  }

  .doas-book-prologue h1 {
    font-size: 44px;
  }

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

  .doas-book-hero-plate {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .doas-book-hero-plate strong {
    font-size: 42px;
  }

  .doas-book-origin-grid,
  .doas-book-origin-points article {
    grid-template-columns: 1fr;
  }

  .doas-book-origin-points p {
    grid-column: auto;
  }

  .doas-book-source-shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doas-book-section-head h2,
  .doas-book-closing h2 {
    font-size: 31px;
  }

  .doas-book-system-strip,
  .doas-book-constant-icons,
  .doas-book-old-home-story,
  .doas-book-pressure-strip,
  .doas-book-health-comfort,
  .doas-book-gap-matrix,
  .doas-book-outcome-list,
  .doas-book-annotation-grid,
  .doas-book-dew-scale,
  .doas-book-basis-list,
  .doas-book-metric-line,
  .doas-book-season-strip,
  .doas-book-route-flowwide {
    grid-template-columns: 1fr;
  }

  .doas-book-dew-scale div + div,
  .doas-book-pressure-strip article + article,
  .doas-book-health-comfort div + div,
  .doas-book-gap-matrix div + div,
  .doas-book-metric-line div + div {
    padding-left: 0;
    border-left: 0;
  }

  .doas-book-prose p:last-child {
    margin-left: 0;
  }

  .doas-book-comfort-board {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .doas-book-comfort-core {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .doas-book-source-shelf {
    grid-template-columns: 1fr;
  }
}

/* Five-constant editorial rebuild — 2026-07-18 */
.fc-page { background: #fbfbf8; color: #182126; }
.fc-main { width: min(1320px, calc(100% - 96px)); margin: 0 auto; padding: 34px 0 140px; }
.fc-topbar { margin-bottom: 26px; }
.fc-nav {
  position: sticky; top: 0; z-index: 20; display: flex; gap: 26px; align-items: center;
  min-height: 54px; margin-bottom: 34px; border-top: 1px solid rgba(14,95,90,.13);
  border-bottom: 1px solid rgba(14,95,90,.13); background: rgba(251,251,248,.94);
  backdrop-filter: blur(14px);
}
.fc-nav a { color: rgba(24,33,38,.68); font-size: 13px; font-weight: 650; text-decoration: none; }
.fc-nav a:hover { color: #0e5f5a; }
.fc-nav a.is-current,
.fc-nav a[aria-current="location"] { color:#0e5f5a; box-shadow:inset 0 -2px #0e5f5a; }
.fc-kicker { margin: 0; color: #0e5f5a; font-size: 11px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.fc-hero { display: grid; grid-template-columns: minmax(340px,.72fr) minmax(0,1.28fr); gap: 64px; align-items: center; min-height: calc(100vh - 160px); }
.fc-hero-copy { display: grid; gap: 24px; padding: 36px 0; }
.fc-hero h1,.fc-section h2,.fc-proof h2,.fc-consult h2 {
  margin: 0; color: #182126; font-family: "Songti SC","STSong","Source Han Serif SC","Noto Serif CJK SC",serif;
  font-weight: 400; letter-spacing: 0; text-wrap: balance;
}
.fc-hero h1 { font-size: clamp(52px,5vw,76px); line-height: 1.08; }
.fc-hero-lead { max-width: 18em; margin: 0; color: #182126; font-size: 24px; line-height: 1.6; }
.fc-hero-body,.fc-section-head>p:last-child,.fc-compare p,.fc-science-grid p,.fc-consult>p {
  max-width: 48em; margin: 0; color: rgba(39,50,58,.76); font-size: 16px; line-height: 1.92;
}
.fc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.fc-hero-visual { position: relative; min-height: 620px; margin: 0; overflow: hidden; border-radius: 24px; background: #ddd5c8; box-shadow: 0 30px 80px rgba(24,33,38,.14); }
.fc-hero-visual::after { content:""; position:absolute; inset:45% 0 0; background:linear-gradient(180deg,transparent,rgba(10,14,16,.65)); pointer-events:none; }
.fc-hero-visual img { display:block; width:100%; height:100%; min-height:620px; object-fit:cover; object-position:center; }
.fc-hero-visual figcaption { position:absolute; z-index:2; left:38px; right:38px; bottom:34px; display:grid; gap:8px; color:#fff; }
.fc-hero-visual figcaption strong { font:400 44px/1.15 "Songti SC","STSong",serif; }
.fc-hero-visual figcaption span { font-size:14px; font-weight:700; letter-spacing:.1em; }
.fc-section { display:grid; gap:38px; margin-top:128px; padding-top:36px; border-top:1px solid rgba(14,95,90,.16); scroll-margin-top:80px; }
.fc-section-head { display:grid; gap:17px; max-width:920px; }
.fc-section h2,.fc-proof h2,.fc-consult h2 { max-width:20em; font-size:clamp(34px,3.2vw,46px); line-height:1.35; }
.fc-wide-image { margin:0; overflow:hidden; border-radius:22px; border:1px solid rgba(24,33,38,.08); background:#f1eee8; }
.fc-wide-image img { display:block; width:100%; aspect-ratio:16/8.7; object-fit:cover; }
.fc-diagram img { object-fit:contain; background:#fff; }
.fc-four,.fc-delivery { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); border-top:2px solid #182126; }
.fc-four article,.fc-delivery article,.fc-flow li {
  display:grid; align-content:start; gap:10px; padding:26px 24px 28px 0; border-bottom:1px solid rgba(14,95,90,.14);
}
.fc-four article+article,.fc-delivery article+article,.fc-flow li+li { padding-left:24px; border-left:1px solid rgba(14,95,90,.13); }
.fc-four span,.fc-delivery span,.fc-flow span { color:#0e5f5a; font-size:11px; font-weight:750; letter-spacing:.14em; }
.fc-four strong,.fc-delivery strong,.fc-flow strong { color:#182126; font-size:20px; line-height:1.45; }
.fc-four p,.fc-delivery p,.fc-flow p,.fc-outcomes p { margin:0; color:rgba(39,50,58,.7); font-size:14px; line-height:1.82; }
.fc-compare { display:grid; grid-template-columns:minmax(280px,.65fr) minmax(0,1.35fr); gap:58px; align-items:center; padding:36px 0; border-top:1px solid rgba(14,95,90,.14); border-bottom:1px solid rgba(14,95,90,.14); }
.fc-compare>div { display:grid; gap:17px; }
.fc-compare h3,.fc-science-grid h3 { margin:0; color:#182126; font:400 30px/1.45 "Songti SC","STSong",serif; }
.fc-compare figure { margin:0; overflow:hidden; border-radius:18px; }
.fc-compare img { display:block; width:100%; }
.fc-outcomes { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0 34px; max-width:1100px; border-top:2px solid #182126; }
.fc-outcomes article { display:grid; grid-template-columns:86px minmax(0,1fr); gap:20px; align-items:center; min-height:174px; padding:22px 0; border-bottom:1px solid rgba(14,95,90,.13); }
.fc-outcomes article:nth-child(5) { grid-column:1/-1; max-width:calc(50% - 17px); }
.fc-outcomes img { display:block; width:80px; height:80px; object-fit:contain; }
.fc-outcomes article>div { display:grid; gap:7px; }
.fc-outcomes strong { font-size:25px; }
.fc-outcomes small { color:#0e5f5a; font-size:12px; font-weight:650; line-height:1.6; }
.fc-note { max-width:70em; margin:0; color:rgba(39,50,58,.58); font-size:13px; line-height:1.8; }
.fc-value-section {
  display:grid; gap:42px; margin-top:128px; padding:70px 54px;
  border-radius:28px; scroll-margin-top:80px;
  background:linear-gradient(145deg,#eefbfa 0%,#f5f9ff 38%,#fff8ef 72%,#f9f1ec 100%);
  box-shadow:inset 0 0 0 1px rgba(14,95,90,.08);
}
.fc-value-head { display:grid; gap:17px; max-width:920px; }
.fc-value-head h2 { margin:0; max-width:18em; color:#182126; font:400 clamp(34px,3.2vw,46px)/1.35 "Songti SC","STSong",serif; text-wrap:balance; }
.fc-value-head>p:last-child { max-width:48em; margin:0; color:rgba(39,50,58,.76); font-size:16px; line-height:1.92; }
.fc-value-spectrum { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.fc-value-spectrum article {
  display:grid; align-content:start; gap:10px; min-height:220px; padding:24px;
  border-radius:18px; color:#15302e; box-shadow:0 16px 34px rgba(24,33,38,.06);
}
.fc-value-spectrum span { font-size:11px; font-weight:800; letter-spacing:.15em; opacity:.62; }
.fc-value-spectrum strong { font-size:22px; line-height:1.35; }
.fc-value-spectrum p { margin:0; font-size:13px; line-height:1.78; opacity:.76; }
.fc-value-spectrum .tone-cyan { background:#c8f3ef; }
.fc-value-spectrum .tone-blue { background:#cfe6fb; }
.fc-value-spectrum .tone-mint { background:#d8f1df; }
.fc-value-spectrum .tone-green { background:#bfe1cb; }
.fc-value-spectrum .tone-indigo { background:#d8dcf4; }
.fc-value-spectrum .tone-amber { background:#f7dfac; }
.fc-value-spectrum .tone-coral { background:#f6d2c7; }
.fc-value-spectrum .tone-gold { background:#ecd6a0; }
.fc-value-feature {
  display:grid; grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr); gap:44px; align-items:center;
  padding:28px; border-radius:24px; background:rgba(255,255,255,.78); box-shadow:0 22px 54px rgba(24,33,38,.08);
}
.fc-value-feature-air { grid-template-columns:minmax(320px,.65fr) minmax(0,1.35fr); background:rgba(224,248,243,.78); }
.fc-value-feature figure { margin:0; overflow:hidden; border-radius:18px; }
.fc-value-feature img { display:block; width:100%; aspect-ratio:16/9; object-fit:cover; }
.fc-value-feature>div { display:grid; gap:16px; padding:12px 8px; }
.fc-value-feature h3 { margin:0; color:#182126; font:400 31px/1.45 "Songti SC","STSong",serif; }
.fc-value-feature p { margin:0; color:rgba(39,50,58,.73); font-size:14px; line-height:1.88; }
.fc-value-feature ul { display:grid; gap:8px; margin:0; padding-left:18px; color:#0e5f5a; font-size:13px; line-height:1.65; }
.fc-air-data { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.fc-air-data span { display:grid; gap:4px; padding:13px 15px; border-radius:12px; background:rgba(255,255,255,.76); }
.fc-air-data strong { color:#0e5f5a; font-size:14px; }
.fc-air-data small { color:rgba(39,50,58,.62); font-size:11px; }
.fc-value-source { margin:0; padding-top:20px; border-top:1px solid rgba(14,95,90,.14); color:rgba(39,50,58,.58); font-size:12px; line-height:1.8; }
.fc-flow { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); margin:0; padding:0; list-style:none; border-top:2px solid #182126; }
.fc-science-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:34px; }
.fc-science-grid article { display:grid; gap:15px; }
.fc-science-grid figure { margin:0; overflow:hidden; border-radius:20px; border:1px solid rgba(24,33,38,.08); background:#fff; }
.fc-science-grid img { display:block; width:100%; aspect-ratio:16/10; object-fit:contain; }
.fc-authority { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border-top:2px solid #182126; }
.fc-authority div { display:grid; gap:10px; padding:24px 24px 26px 0; }
.fc-authority div+div { padding-left:24px; border-left:1px solid rgba(14,95,90,.13); }
.fc-authority span { color:#0e5f5a; font-size:11px; font-weight:750; letter-spacing:.1em; }
.fc-authority strong { color:#182126; font-size:16px; line-height:1.6; }
.fc-delivery { grid-template-columns:repeat(3,minmax(0,1fr)); }
.fc-case-visual { position:relative; }
.fc-case-visual figcaption {
  position:absolute; right:18px; bottom:16px; max-width:34em; padding:9px 12px;
  background:rgba(16,47,44,.88); color:rgba(255,255,255,.86); font-size:11px; line-height:1.55;
}
.fc-case-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border-top:2px solid #182126; }
.fc-case-grid article { display:grid; align-content:start; gap:18px; padding:28px 28px 30px 0; border-bottom:1px solid rgba(14,95,90,.14); }
.fc-case-grid article+article { padding-left:28px; border-left:1px solid rgba(14,95,90,.13); }
.fc-case-meta { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.fc-case-meta span { color:#0e5f5a; font-size:11px; font-weight:750; letter-spacing:.14em; }
.fc-case-meta em { color:rgba(39,50,58,.56); font-size:12px; font-style:normal; }
.fc-case-grid h3 { margin:0; color:#182126; font:400 25px/1.5 "Songti SC","STSong",serif; }
.fc-case-grid dl { display:grid; gap:0; margin:0; }
.fc-case-grid dl div { display:grid; grid-template-columns:72px minmax(0,1fr); gap:13px; padding:11px 0; border-top:1px solid rgba(14,95,90,.11); }
.fc-case-grid dt { color:#0e5f5a; font-size:12px; font-weight:700; }
.fc-case-grid dd { margin:0; color:rgba(39,50,58,.72); font-size:13px; line-height:1.7; }
.fc-case-disclosure {
  display:grid; grid-template-columns:150px minmax(260px,.75fr) minmax(0,1.25fr); gap:28px;
  align-items:start; padding:28px 0; border-top:1px solid rgba(14,95,90,.16); border-bottom:1px solid rgba(14,95,90,.16);
}
.fc-case-disclosure span { color:#0e5f5a; font-size:11px; font-weight:750; letter-spacing:.14em; }
.fc-case-disclosure strong { color:#182126; font:400 23px/1.55 "Songti SC","STSong",serif; }
.fc-case-disclosure p { margin:0; color:rgba(39,50,58,.68); font-size:14px; line-height:1.85; }
.fc-proof { display:grid; grid-template-columns:minmax(280px,.8fr) minmax(0,1.2fr); gap:54px 80px; margin-top:128px; padding:44px 0; border-top:2px solid #182126; border-bottom:1px solid rgba(14,95,90,.16); }
.fc-proof>div:first-child { display:grid; gap:16px; align-content:start; }
.fc-proof-list { display:grid; gap:0; }
.fc-proof-list p { margin:0; padding:15px 0; border-bottom:1px solid rgba(14,95,90,.13); color:#182126; font-size:17px; }
.fc-proof>.fc-note { grid-column:2; }
.fc-consult { display:grid; gap:20px; width:min(1040px,100%); margin:128px auto 0; padding:54px; scroll-margin-top:80px; background:#102f2c; color:#fff; }
.fc-consult .fc-kicker { color:#bad8d3; }
.fc-consult h2 { color:#fff; }
.fc-consult>p { color:rgba(255,255,255,.74); }
.fc-consult-gain { display:grid; gap:8px; padding:22px 0; border-top:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18); }
.fc-consult-gain span { color:#bad8d3; font-size:11px; font-weight:750; letter-spacing:.14em; }
.fc-consult-gain strong { font-size:17px; line-height:1.7; }
.fc-page .fc-consult .button.primary,
html body.fc-page .fc-consult .button.primary:visited { background:#fff; color:#102f2c; }
.fc-page .fc-consult .button.primary:hover { background:#e8f0ed; color:#102f2c; }
.fc-consult .button.ghost { border-color:rgba(255,255,255,.5); color:#fff; }

@media (max-width: 980px) {
  .fc-main { width:min(100%,calc(100% - 48px)); }
  .fc-hero { grid-template-columns:1fr; gap:26px; min-height:auto; }
  .fc-hero-copy { max-width:760px; }
  .fc-hero-visual,.fc-hero-visual img { min-height:520px; }
  .fc-four,.fc-flow { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .fc-delivery { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .fc-value-section { padding:48px 34px; }
  .fc-value-spectrum { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .fc-value-feature,.fc-value-feature-air { grid-template-columns:1fr; }
  .fc-case-grid { grid-template-columns:1fr; }
  .fc-case-grid article+article { padding-left:0; border-left:0; }
  .fc-case-disclosure { grid-template-columns:1fr; }
  .fc-compare,.fc-proof { grid-template-columns:1fr; }
  .fc-proof>.fc-note { grid-column:auto; }
}
@media (max-width: 680px) {
  .fc-main { width:min(100%,calc(100% - 32px)); padding-top:20px; }
  .fc-topbar { margin-bottom:14px; }
  .fc-nav { gap:19px; margin-inline:-16px; padding-inline:16px; overflow-x:auto; white-space:nowrap; }
  .fc-hero h1 { font-size:44px; }
  .fc-hero-lead { font-size:20px; }
  .fc-hero-visual,.fc-hero-visual img { min-height:430px; }
  .fc-hero-visual figcaption { left:22px; right:22px; bottom:22px; }
  .fc-hero-visual figcaption strong { font-size:34px; }
  .fc-section,.fc-proof,.fc-consult { margin-top:82px; }
  .fc-value-section { gap:28px; margin:82px -8px 0; padding:38px 20px; border-radius:22px; }
  .fc-section h2,.fc-proof h2,.fc-consult h2 { font-size:31px; }
  .fc-four,.fc-flow,.fc-delivery,.fc-science-grid,.fc-authority { grid-template-columns:1fr; }
  .fc-value-spectrum { grid-template-columns:1fr; }
  .fc-value-spectrum article { min-height:auto; }
  .fc-value-feature { gap:20px; padding:16px; }
  .fc-value-feature-air>div { order:2; }
  .fc-value-feature-air>figure { order:1; }
  .fc-value-feature h3 { font-size:27px; }
  .fc-four article+article,.fc-delivery article+article,.fc-flow li+li,.fc-authority div+div { padding-left:0; border-left:0; }
  .fc-outcomes article { grid-template-columns:78px minmax(0,1fr); gap:18px; }
  .fc-outcomes { grid-template-columns:1fr; }
  .fc-outcomes article:nth-child(5) { grid-column:auto; max-width:none; }
  .fc-outcomes img { width:72px; height:72px; }
  .fc-wide-image img { aspect-ratio:4/3; }
  .fc-case-visual img { aspect-ratio:16/10; object-fit:cover; }
  .fc-case-visual figcaption { position:static; background:#102f2c; }
  .fc-diagram { overflow-x:auto; }
  .fc-diagram img { width:840px; max-width:none; aspect-ratio:16/9; }
  .fc-consult { padding:34px 24px; }
  .fc-actions { display:grid; }
  .fc-actions .button { width:100%; text-align:center; }
}
