: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;
}

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

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

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

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

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

  .route-copy {
    order: 1;
  }

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

@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;
  }
}

.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: 2px solid rgba(92, 127, 121, 0.42);
  border-radius: 55% 45% 0 0;
  filter: blur(0.2px);
  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(88, 123, 128, 0.42); transform: rotate(100deg); }
.flow-winter.flow-b { left: 50%; top: 12%; border-color: rgba(88, 123, 128, 0.36); transform: rotate(88deg); animation-delay: 1.3s; }

.water-vapor {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(92, 127, 121, 0.42);
  box-shadow:
    24px 18px 0 rgba(92, 127, 121, 0.24),
    54px -10px 0 rgba(92, 127, 121, 0.18),
    86px 28px 0 rgba(92, 127, 121, 0.2);
  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: 1px solid rgba(92, 127, 121, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 127, 121, 0.16), rgba(92, 127, 121, 0.04) 60%, transparent 75%);
}

.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: 3px solid rgba(184, 155, 94, 0.46);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  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(88, 123, 128, 0.2), rgba(88, 123, 128, 0.05) 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.55; translate: 0 -8px; }
  to { opacity: 0.9; 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);
  }
}

.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;
  }
}
