:root {
  --cel-indigo: #1f2080;
  --cel-midnight: #080d24;
  --cel-gold: #c9a96a;
  --cel-ink: #14182a;
  --cel-mist: #f4f3ef;
  --cel-line: rgba(31, 32, 128, 0.14);
  --cel-white: #fff;
  --cel-radius: 2px;
  --cel-shadow: 0 18px 55px rgba(8, 13, 36, 0.12);
  --cel-visual-focus-desktop: center;
  --cel-visual-focus-mobile: var(--cel-visual-focus-desktop);
}

/* Phase 2 shared visual storytelling system */
.cel-visual-hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 68vw, 760px);
  overflow: hidden;
  color: var(--cel-white);
  background: var(--cel-midnight);
  isolation: isolate;
}

.cel-visual-hero > picture,
.cel-visual-hero > picture > img,
.cel-visual-hero > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cel-visual-hero > picture > img,
.cel-visual-hero > img {
  object-fit: cover;
  object-position: var(--cel-visual-focus-desktop);
}

.cel-visual-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 9, 27, 0.9) 0%, rgba(5, 9, 27, 0.54) 48%, rgba(5, 9, 27, 0.12) 82%),
    linear-gradient(0deg, rgba(5, 9, 27, 0.38), transparent 48%);
}

.cel-visual-hero__copy {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding: clamp(150px, 20vw, 250px) 0 clamp(64px, 8vw, 104px);
}

.cel-visual-hero__copy h1 {
  max-width: 850px;
  margin: 8px 0 22px;
  color: inherit;
  font-size: clamp(50px, 6vw, 84px);
}

.cel-visual-hero__copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.cel-visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.cel-visual-split--reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.cel-visual-split__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #dfe3e0;
}

.cel-visual-split__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--cel-visual-focus-desktop);
}

.cel-visual-split__copy {
  align-self: center;
  padding: clamp(48px, 7vw, 96px);
}

.cel-evidence-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 12px;
}

.cel-evidence-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #dfe3e0;
}

.cel-evidence-gallery figure:first-child {
  grid-row: 1 / 3;
}

.cel-evidence-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cel-evidence-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(8, 13, 36, 0.78);
  font-size: 11px;
}

.cel-scene-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cel-scene-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  background: var(--cel-midnight);
}

.cel-scene-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.cel-scene-card__copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 72px 26px 26px;
  background: linear-gradient(transparent, rgba(5, 9, 27, 0.9));
}

.cel-visual-disclosure {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  max-width: min(420px, calc(100% - 32px));
  margin: 0;
  padding: 8px 11px;
  color: #fff;
  background: rgba(8, 13, 36, 0.82);
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .cel-visual-hero {
    min-height: 600px;
  }

  .cel-visual-hero > picture > img,
  .cel-visual-hero > img,
  .cel-visual-split__media img {
    object-position: var(--cel-visual-focus-mobile);
  }

  .cel-visual-hero::after {
    background: linear-gradient(0deg, rgba(5, 9, 27, 0.92) 0%, rgba(5, 9, 27, 0.5) 58%, rgba(5, 9, 27, 0.12) 100%);
  }

  .cel-visual-hero__copy {
    width: min(100% - 36px, 1240px);
    padding-bottom: 76px;
  }

  .cel-visual-hero__copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .cel-visual-split,
  .cel-visual-split--reverse {
    grid-template-columns: 1fr;
  }

  .cel-visual-split__media {
    min-height: 360px;
  }

  .cel-visual-split__copy {
    padding: 48px 24px;
  }

  .cel-evidence-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 180px;
  }

  .cel-evidence-gallery figure:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .cel-scene-cards {
    grid-template-columns: 1fr;
  }

  .cel-scene-card {
    min-height: 460px;
  }
}

.site-header,
.site-footer,
.main-navigation {
  display: none !important;
}

.site.grid-container,
.site-content,
.content-area,
.site-main,
.inside-article,
.entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cel-global-header {
  position: relative;
  z-index: 999;
  color: #fff;
  background: var(--cel-midnight);
}

.home .cel-global-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(5, 9, 27, 0.78), transparent);
}

.cel-global-header__inner {
  display: flex;
  align-items: center;
  width: min(100% - 48px, 1240px);
  min-height: 82px;
  margin: 0 auto;
}

.cel-global-logo {
  margin-right: auto;
  color: #fff !important;
  font: 28px/1 "DM Serif Display", Georgia, serif;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.cel-mobile-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cel-site-nav,
.cel-site-nav * {
  box-sizing: border-box;
}

.cel-site-nav {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.cel-nav-list,
.cel-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cel-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
}

.cel-nav-list > li {
  position: relative;
}

.cel-nav-list a,
.cel-nav-list button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.cel-nav-group > button::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.cel-nav-list a:focus-visible,
.cel-nav-list button:focus-visible {
  outline: 2px solid var(--cel-gold);
  outline-offset: 4px;
}

.cel-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1000;
  display: none;
  min-width: 230px;
  padding: 10px;
  background: rgba(8, 13, 36, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--cel-shadow);
  transform: translateX(-50%);
}

.cel-collection-grid > p,
.cel-settings-grid > p {
  display: none !important;
}

@media (min-width: 801px) {
  .cel-settings-grid > .cel-setting:first-of-type {
    grid-column: 1;
    grid-row: 1;
  }

  .cel-settings-grid > .cel-setting:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }
}

.cel-setting[data-audience="diy"] > img {
  object-position: center 68%;
}

.cel-submenu a {
  display: flex;
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  color: #fff;
  white-space: nowrap;
}

.cel-submenu a:hover,
.cel-submenu a:focus-visible {
  color: var(--cel-gold);
  background: rgba(255, 255, 255, 0.06);
}

.cel-nav-group:hover > .cel-submenu,
.cel-nav-group:focus-within > .cel-submenu,
.cel-nav-group > button[aria-expanded="true"] + .cel-submenu {
  display: block;
}

.cel-nav-list .cel-nav-cta {
  min-height: 42px;
  padding: 0 18px;
  color: var(--cel-midnight);
  background: var(--cel-gold);
}

@media (max-width: 800px) {
  .cel-global-header__inner {
    position: relative;
    min-height: 72px;
  }

  .cel-mobile-toggle {
    display: inline-flex;
    align-items: center;
  }

  .cel-site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 10px 24px 22px;
    color: #fff;
    background: rgba(8, 13, 36, 0.99);
  }

  .cel-site-nav.is-open {
    display: block;
  }

  .cel-nav-list {
    display: block;
  }

  .cel-nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .cel-nav-list > li > a,
  .cel-nav-group > button {
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
  }

  .cel-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .cel-nav-group:hover > .cel-submenu {
    display: none;
  }

  .cel-nav-group > button[aria-expanded="true"] + .cel-submenu {
    display: block;
  }

  .cel-nav-list .cel-nav-cta {
    justify-content: center;
    margin: 12px 0;
  }
}

.cel-standard,
.cel-standard * {
  box-sizing: border-box;
}

/* Phase 1 homepage decision system */
.cel-home-v2,
.cel-home-v2 * {
  box-sizing: border-box;
}

.cel-home-v2 {
  overflow: hidden;
  color: var(--cel-ink);
  background: #fff;
  font: 15px/1.65 Inter, ui-sans-serif, system-ui, sans-serif;
}

.cel-home-v2 h1,
.cel-home-v2 h2,
.cel-home-v2 h3,
.cel-home-v2 p {
  margin-top: 0;
}

.cel-home-v2 h1,
.cel-home-v2 h2,
.cel-home-v2 h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
}

.cel-home-v2 a {
  color: inherit;
}

.cel-home-v2 img {
  display: block;
  width: 100%;
}

.cel-home-hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  background: var(--cel-midnight);
}

.cel-home-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.cel-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 10, 30, 0.88) 0%, rgba(4, 10, 30, 0.44) 48%, rgba(4, 10, 30, 0.04) 78%);
}

.cel-home-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1240px);
  margin: 0 auto;
  padding-top: 220px;
}

.cel-home-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(58px, 6.5vw, 92px);
}

.cel-home-hero p {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.cel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: var(--cel-midnight) !important;
  background: var(--cel-gold);
  font-weight: 700;
  text-decoration: none;
}

.cel-button--outline {
  color: #fff !important;
  background: transparent;
  border: 1px solid var(--cel-gold);
}

.cel-trust-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #fff;
  background: var(--cel-midnight);
}

.cel-trust-rail > div {
  min-height: 116px;
  padding: 26px clamp(18px, 2.5vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.cel-trust-rail strong,
.cel-trust-rail span {
  display: block;
}

.cel-trust-rail strong {
  color: var(--cel-gold);
  font: 22px/1.15 "DM Serif Display", Georgia, serif;
}

.cel-trust-rail span {
  margin-top: 9px;
  color: #cbd1df;
  font-size: 12px;
}

.cel-home-section {
  padding: 112px max(24px, calc((100vw - 1240px) / 2));
}

.cel-home-section:nth-of-type(even) {
  background: #f3f5f6;
}

.cel-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.cel-section-head span,
.cel-material-intro > span,
.cel-featured-project article > span {
  color: #876821;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cel-section-head h2,
.cel-material-intro h2,
.cel-featured-project h2,
.cel-segmented-cta h2 {
  margin: 9px 0 0;
  color: var(--cel-indigo);
  font-size: clamp(42px, 4.5vw, 68px);
}

.cel-section-head > p {
  max-width: 470px;
  margin-bottom: 4px;
  color: #5d6575;
}

.cel-section-head > a,
.cel-home-section article > a,
.cel-material-intro > a {
  color: var(--cel-indigo);
  font-weight: 800;
  text-underline-offset: 5px;
}

.cel-route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #ccd1d8;
  border-bottom: 1px solid #ccd1d8;
}

.cel-route-grid a {
  min-height: 190px;
  padding: 32px 26px;
  border-right: 1px solid #ccd1d8;
  text-decoration: none;
}

.cel-route-grid a:last-child {
  border-right: 0;
}

.cel-route-grid b,
.cel-route-grid span {
  display: block;
}

.cel-route-grid b {
  color: var(--cel-indigo);
  font: 30px/1.08 "DM Serif Display", Georgia, serif;
}

.cel-route-grid span {
  margin-top: 18px;
  color: #646c7a;
}

.cel-format-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ccd1d8;
}

.cel-format-rail article {
  padding: 28px;
  border-right: 1px solid #ccd1d8;
}

.cel-format-rail article:last-child {
  border-right: 0;
}

.cel-format-rail img {
  height: 240px;
  object-fit: cover;
}

.cel-format-rail h3 {
  margin: 24px 0 10px;
  color: var(--cel-indigo);
  font-size: 38px;
}

.cel-format-rail p {
  min-height: 72px;
  color: #626a79;
}

.cel-commercial-note {
  margin: 34px 0 0;
  padding: 24px 28px;
  color: #fff;
  background: var(--cel-midnight);
}

.cel-material-compare {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  color: #fff;
  background: var(--cel-midnight) !important;
}

.cel-material-intro h2 {
  color: #fff;
}

.cel-material-intro p {
  max-width: 470px;
  color: #c8cfde;
}

.cel-material-intro > a {
  color: var(--cel-gold);
}

.cel-shell-options {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: #fff;
}

.cel-shell-options article {
  padding: 36px 30px;
  color: var(--cel-ink);
}

.cel-shell-options article + article {
  border-left: 1px solid #ccd1d8;
}

.cel-shell-options h3 {
  color: var(--cel-indigo);
  font-size: 34px;
}

.cel-shell-options__solar {
  background: #d9dde0;
}

.cel-shell-options dl {
  margin: 25px 0;
}

.cel-shell-options dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #aeb5bd;
}

.cel-shell-options dd {
  margin: 0;
  font-weight: 800;
}

.cel-featured-project {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.cel-project-media img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.cel-featured-project article {
  padding: 76px 54px;
  background: #f1f2f3;
}

.cel-featured-project h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.cel-featured-project dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid #cbd0d6;
}

.cel-featured-project dt {
  color: #6b7280;
}

.cel-featured-project dd {
  margin: 0;
  font-weight: 700;
}

.cel-climate {
  color: #fff;
  background: var(--cel-midnight) !important;
}

.cel-climate .cel-section-head h2 {
  color: #fff;
}

.cel-climate .cel-section-head p {
  color: #c8cfde;
}

.cel-climate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cel-climate-grid article {
  min-height: 190px;
  padding: 34px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cel-climate-grid article:last-child {
  border-right: 0;
}

.cel-climate-grid h3 {
  color: var(--cel-gold);
  font-size: 30px;
}

.cel-climate-grid p {
  color: #c8cfde;
}

.cel-accessory-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  color: var(--cel-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.cel-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cel-scope-grid > div {
  min-height: 220px;
  padding: 30px 25px;
  border-top: 1px solid #ccd1d8;
  border-right: 1px solid #ccd1d8;
  border-bottom: 1px solid #ccd1d8;
}

.cel-scope-grid > div:last-child {
  border-right: 0;
}

.cel-scope-grid h3 {
  color: var(--cel-indigo);
  font-size: 28px;
}

.cel-process-rail,
.cel-order-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  list-style: none;
  border-top: 1px solid #ccd1d8;
  border-bottom: 1px solid #ccd1d8;
}

.cel-process-rail li,
.cel-order-steps li {
  min-height: 170px;
  padding: 28px 22px;
  border-right: 1px solid #ccd1d8;
}

.cel-process-rail li:last-child,
.cel-order-steps li:last-child {
  border-right: 0;
}

.cel-process-rail b,
.cel-process-rail span {
  display: block;
}

.cel-process-rail b {
  color: var(--cel-indigo);
  font: 25px/1.1 "DM Serif Display", Georgia, serif;
}

.cel-process-rail span {
  margin-top: 13px;
  color: #656d7c;
}

.cel-order-process {
  color: #fff;
  background: var(--cel-midnight) !important;
}

.cel-order-process .cel-section-head h2 {
  color: #fff;
}

.cel-order-steps {
  border-color: rgba(255, 255, 255, 0.2);
}

.cel-order-steps li {
  border-color: rgba(255, 255, 255, 0.2);
}

.cel-order-steps > li > b {
  color: var(--cel-gold);
}

.cel-order-steps h3 {
  margin: 22px 0 10px;
  font-size: 27px;
}

.cel-order-steps p {
  color: #c8cfde;
}

.cel-critical-faq details {
  padding: 22px 0;
  border-top: 1px solid #cbd0d6;
}

.cel-critical-faq details:last-child {
  border-bottom: 1px solid #cbd0d6;
}

.cel-critical-faq summary {
  color: var(--cel-indigo);
  cursor: pointer;
  font: 26px/1.2 "DM Serif Display", Georgia, serif;
}

.cel-critical-faq details p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #5d6575;
}

.cel-segmented-cta {
  padding: 100px max(24px, calc((100vw - 1240px) / 2));
  color: #fff;
  background: var(--cel-midnight);
}

.cel-segmented-cta h2 {
  max-width: 760px;
  color: #fff;
}

.cel-segmented-cta > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cel-segmented-cta a {
  min-height: 170px;
  padding: 30px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.cel-segmented-cta a:last-child {
  border-right: 0;
}

.cel-segmented-cta b,
.cel-segmented-cta span {
  display: block;
}

.cel-segmented-cta b {
  color: var(--cel-gold);
  font: 29px/1.1 "DM Serif Display", Georgia, serif;
}

.cel-segmented-cta span {
  margin-top: 16px;
  color: #c8cfde;
}

@media (max-width: 800px) {
  .cel-home-hero {
    min-height: 650px;
  }

  .cel-home-hero__copy {
    width: min(100% - 40px, 1240px);
    padding-top: 180px;
  }

  .cel-home-hero h1 {
    font-size: clamp(52px, 14vw, 70px);
  }

  .cel-home-hero::after {
    background: linear-gradient(0deg, rgba(4, 10, 30, 0.9), rgba(4, 10, 30, 0.16));
  }

  .cel-trust-rail,
  .cel-route-grid,
  .cel-format-rail,
  .cel-climate-grid,
  .cel-scope-grid,
  .cel-process-rail,
  .cel-order-steps,
  .cel-segmented-cta > div {
    grid-template-columns: 1fr;
  }

  .cel-trust-rail > div,
  .cel-route-grid a,
  .cel-format-rail article,
  .cel-climate-grid article,
  .cel-scope-grid > div,
  .cel-process-rail li,
  .cel-order-steps li,
  .cel-segmented-cta a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(120, 128, 142, 0.35);
  }

  .cel-home-section {
    padding: 76px 22px;
  }

  .cel-section-head,
  .cel-material-compare,
  .cel-featured-project {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cel-section-head {
    margin-bottom: 34px;
  }

  .cel-shell-options {
    grid-template-columns: 1fr;
  }

  .cel-shell-options article + article {
    border-top: 1px solid #ccd1d8;
    border-left: 0;
  }

  .cel-featured-project {
    padding: 0;
  }

  .cel-project-media img {
    min-height: 360px;
  }

  .cel-featured-project article {
    padding: 62px 22px;
  }

  .cel-accessory-rail {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    text-align: left;
  }

  .cel-segmented-cta {
    padding: 76px 22px;
  }
}

.cel-standard {
  overflow: hidden;
  color: var(--cel-ink);
  background: var(--cel-white);
  font: 16px/1.72 Inter, ui-sans-serif, system-ui, sans-serif;
}

.cel-standard h1,
.cel-standard h2,
.cel-standard h3,
.cel-standard p,
.cel-standard ul,
.cel-standard ol {
  margin-top: 0;
}

.cel-standard h1,
.cel-standard h2,
.cel-standard h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
}

.cel-standard h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  color: var(--cel-white);
  font-size: clamp(48px, 7vw, 88px);
}

.cel-standard h2 {
  color: var(--cel-indigo);
  font-size: clamp(32px, 4vw, 54px);
}

.cel-standard h3 {
  color: var(--cel-indigo);
  font-size: 25px;
}

.cel-page-hero,
.cel-section {
  padding: clamp(70px, 9vw, 126px) max(24px, calc((100vw - 1160px) / 2));
}

.cel-page-hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #d8dbea;
  background: radial-gradient(circle at 82% 18%, #31369a, transparent 38%), var(--cel-midnight);
}

.cel-page-hero > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(17px, 2vw, 21px);
}

.cel-kicker {
  margin-bottom: 18px;
  color: var(--cel-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cel-split,
.cel-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 96px);
}

.cel-band {
  background: var(--cel-mist);
}

.cel-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.cel-card-grid article {
  padding: 30px;
  background: var(--cel-white);
  border: 1px solid var(--cel-line);
}

.cel-checklist {
  padding: 0;
  list-style: none;
}

.cel-checklist li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--cel-line);
}

.cel-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cel-indigo);
  font-weight: 700;
}

.cel-table-wrap {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid var(--cel-line);
}

.cel-standard table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

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

.cel-standard th {
  color: var(--cel-white);
  background: var(--cel-midnight);
}

.cel-boundary {
  padding: 22px 24px;
  color: #40465c;
  background: #f7f3e8;
  border-left: 3px solid var(--cel-gold);
}

.cel-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--cel-line);
}

.cel-process article {
  padding: 34px;
  background: var(--cel-white);
}

.cel-process span {
  color: var(--cel-gold);
  font-weight: 700;
}

.cel-faq-list {
  max-width: 980px;
  margin: 0 auto;
}

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

.cel-faq-list summary {
  cursor: pointer;
  padding: 24px 38px 24px 0;
  color: var(--cel-indigo);
  font: 26px/1.2 "DM Serif Display", Georgia, serif;
}

.cel-faq-list details p {
  max-width: 760px;
  padding-bottom: 24px;
}

.cel-form-panel {
  padding: clamp(26px, 4vw, 48px);
  background: var(--cel-mist);
}

.cel-contact-grid > aside {
  padding: clamp(26px, 4vw, 48px);
  color: #d8dbea;
  background: var(--cel-midnight);
}

.cel-contact-grid > aside h2 {
  color: var(--cel-white);
}

.cel-contact-grid > aside .cel-checklist li {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.cel-contact-grid > aside .cel-checklist li::before {
  color: var(--cel-gold);
}

.cel-next-steps {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cel-next-steps h3 {
  color: var(--cel-white);
}

.cel-next-steps ol {
  padding: 0;
  list-style: none;
}

.cel-next-steps li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cel-next-steps span {
  color: #b9bfd2;
  font-size: 14px;
}

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

.cel-form-grid label {
  min-width: 0;
}

.cel-form-panel input,
.cel-form-panel select,
.cel-form-panel textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #cfd2dd;
  border-radius: 0;
}

.cel-form-panel textarea {
  min-height: 112px;
  max-height: 160px;
  resize: vertical;
}

.cel-form-panel input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.cel-form-panel input[type="submit"] {
  width: 100%;
  min-height: 48px;
  color: var(--cel-midnight);
  background: var(--cel-gold);
  border: 0;
  font-weight: 700;
}

.cel-form-note {
  color: #5d6376;
  font-size: 14px;
}

.cel-route-picker {
  margin: 22px 0 28px;
  padding: 0;
  border: 0;
}

.cel-route-picker legend {
  margin-bottom: 12px;
  color: var(--cel-indigo);
  font-weight: 700;
}

.cel-route-picker .wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cel-route-picker .wpcf7-list-item {
  margin: 0;
}

.cel-route-picker .wpcf7-list-item label {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 9px;
  padding: 12px;
  color: var(--cel-indigo);
  background: var(--cel-white);
  border: 1px solid #cfd2dd;
  font-weight: 700;
  text-transform: capitalize;
}

.cel-route-fields {
  margin: 0 0 26px;
  padding: 24px;
  background: var(--cel-white);
  border: 1px solid var(--cel-line);
}

.cel-route-fields[hidden] {
  display: none !important;
}

.cel-route-fields h3 {
  margin-top: 0;
}

.cel-route-fields > p {
  margin-top: -12px;
  color: #666c7e;
}

.cel-form-confirmation {
  padding: clamp(26px, 5vw, 52px);
  background: var(--cel-white);
  border-top: 4px solid var(--cel-gold);
}

.cel-form-confirmation dl {
  margin: 28px 0 0;
}

.cel-form-confirmation dt {
  margin-top: 18px;
  color: #73788b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cel-form-confirmation dd {
  margin: 5px 0 0;
  color: var(--cel-indigo);
}

.cel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--cel-midnight) !important;
  background: var(--cel-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.cel-cta {
  color: #d8dbea;
  background: var(--cel-midnight);
}

.cel-cta h2 {
  color: var(--cel-white);
}

/* Phase 1 product and accessory decision pages */
.cel-product-intro {
  max-width: 820px;
}

.cel-product-family {
  padding: clamp(54px, 7vw, 90px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--cel-line);
}

.cel-product-family > header,
.cel-compare > header,
.cel-accessory-family > header {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.cel-product-family > header span,
.cel-compare > header span,
.cel-accessory-family > header span,
.cel-solar-option > div > span {
  color: var(--cel-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cel-product-records,
.cel-accessory-records {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.cel-product-record,
.cel-accessory-record {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  background: var(--cel-white);
  border: 1px solid var(--cel-line);
}

.cel-product-record > div:first-child span {
  color: #73788b;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cel-product-record h3,
.cel-accessory-record h3 {
  margin: 8px 0 24px;
}

.cel-product-record dl {
  margin: 0;
}

.cel-product-record dl div {
  display: grid;
  grid-template-columns: minmax(90px, 0.8fr) minmax(0, 1.4fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--cel-line);
}

.cel-product-record dt,
.cel-product-record dd {
  margin: 0;
}

.cel-product-record dt {
  color: #74798b;
  font-size: 13px;
}

.cel-product-record dd {
  color: var(--cel-indigo);
  font-weight: 600;
}

.cel-price-path {
  margin: 24px 0 12px;
  color: var(--cel-gold);
  font-weight: 700;
}

.cel-product-record > a {
  color: var(--cel-indigo);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.cel-compare {
  background: var(--cel-mist);
}

.cel-table-scroll {
  max-width: 1180px;
  margin: 0 auto 24px;
  overflow-x: auto;
  border: 1px solid var(--cel-line);
}

.cel-table-scroll table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--cel-white);
}

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

.cel-table-scroll thead th {
  color: var(--cel-white);
  background: var(--cel-midnight);
}

.cel-compare > .cel-boundary {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.cel-product-cta,
.cel-cooling-boundary {
  color: #d8dbea;
  background: var(--cel-midnight);
}

.cel-product-cta h2,
.cel-cooling-boundary h2 {
  color: var(--cel-white);
}

.cel-solar-option {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(30px, 6vw, 80px);
  background: #edf0ed;
}

.cel-solar-option dl {
  margin: 0;
  border-top: 1px solid #cbd0ca;
}

.cel-solar-option dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid #cbd0ca;
}

.cel-solar-option dt,
.cel-solar-option dd {
  margin: 0;
}

.cel-solar-option dd {
  color: var(--cel-indigo);
  font-size: 20px;
  font-weight: 700;
}

.cel-solar-option .cel-boundary {
  grid-column: 1 / -1;
  margin: 0;
}

.cel-accessory-family:nth-of-type(even) {
  background: var(--cel-mist);
}

.cel-accessory-record p {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid var(--cel-line);
}

.cel-accessory-record b {
  display: block;
  margin-bottom: 4px;
  color: #73788b;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Phase 1 solution decision pages */
.cel-solution-page > .cel-section {
  position: relative;
}

.cel-solution-page > .cel-section > span {
  display: block;
  margin-bottom: 12px;
  color: var(--cel-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cel-solution-page > .cel-section > h2,
.cel-solution-page > .cel-section > p,
.cel-solution-page > .cel-section > a,
.cel-solution-page > .cel-section > ul {
  max-width: 900px;
}

.cel-solution-goal {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  column-gap: clamp(36px, 8vw, 130px);
}

.cel-solution-goal > span {
  grid-column: 1;
}

.cel-solution-goal > h2 {
  grid-column: 1;
  max-width: 12ch !important;
}

.cel-solution-goal > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 650px !important;
  font-size: clamp(18px, 2vw, 24px);
}

.cel-solution-models,
.cel-solution-layout,
.cel-solution-options,
.cel-solution-boundaries {
  background: var(--cel-mist);
}

.cel-solution-layout,
.cel-solution-boundaries {
  background: var(--cel-white);
}

.cel-decision-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--cel-line);
  border: 1px solid var(--cel-line);
  list-style: none;
}

.cel-decision-list li {
  position: relative;
  min-height: 94px;
  padding: 26px 28px 24px 54px;
  color: var(--cel-indigo);
  background: var(--cel-white);
  font-weight: 600;
}

.cel-decision-list li::before {
  content: "—";
  position: absolute;
  top: 25px;
  left: 27px;
  color: var(--cel-gold);
}

.cel-solution-page section > a:not(.cel-button) {
  display: inline-block;
  margin-top: 22px;
  color: var(--cel-indigo);
  font-weight: 700;
  text-underline-offset: 5px;
}

.cel-solution-climate,
.cel-solution-evidence {
  color: #d8dbea;
  background: var(--cel-midnight);
}

.cel-solution-climate h2,
.cel-solution-evidence h2 {
  color: var(--cel-white);
}

.cel-solution-climate p,
.cel-solution-evidence p {
  font-size: clamp(18px, 2vw, 23px);
}

.cel-solution-evidence > a:not(.cel-button) {
  color: var(--cel-gold);
}

.cel-solution-cta {
  text-align: center;
}

.cel-solution-cta > h2,
.cel-solution-cta > a {
  margin-right: auto;
  margin-left: auto;
}

/* Phase 1 real-project evidence index */
.cel-projects-intro {
  max-width: 980px;
}

.cel-projects-intro > span,
.cel-project-evidence-note > span {
  color: var(--cel-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cel-project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--cel-mist);
}

.cel-project-card {
  min-width: 0;
  margin: 0;
  background: var(--cel-white);
}

.cel-project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cel-project-card figcaption {
  padding: 22px 24px;
}

.cel-project-card figcaption span {
  color: var(--cel-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cel-project-card figcaption p {
  margin: 6px 0 0;
}

.cel-project-evidence-note,
.cel-project-cta {
  color: #d8dbea;
  background: var(--cel-midnight);
}

.cel-project-evidence-note h2,
.cel-project-cta h2 {
  color: var(--cel-white);
}

@media (max-width: 800px) {
  .cel-page-hero {
    min-height: 460px;
    padding-top: 120px;
  }

  .cel-split,
  .cel-contact-grid,
  .cel-card-grid,
  .cel-process,
  .cel-form-grid {
    grid-template-columns: 1fr;
  }

  .cel-card-grid article,
  .cel-process article {
    padding: 24px;
  }

  .cel-faq-list summary {
    font-size: 22px;
  }

  .cel-next-steps li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .cel-product-records,
  .cel-accessory-records,
  .cel-solar-option {
    grid-template-columns: 1fr;
  }

  .cel-product-record dl div {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .cel-solar-option .cel-boundary {
    grid-column: auto;
  }

  .cel-solution-goal {
    display: block;
  }

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

  .cel-decision-list li {
    min-height: 0;
    padding: 22px 22px 22px 46px;
  }

  .cel-decision-list li::before {
    top: 21px;
    left: 22px;
  }

  .cel-project-gallery {
    grid-template-columns: 1fr;
  }

  .cel-route-picker .wpcf7-form-control {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 801px) and (max-width: 1080px) {
  .cel-product-records,
  .cel-accessory-records {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Global footer (contact surface) ───────────────────────────── */
.cel-global-footer{background:var(--cel-midnight);color:#fff;padding:64px 24px 48px;margin-top:0}
.cel-global-footer__inner{max-width:1180px;margin:0 auto;display:grid;gap:40px;
  grid-template-columns:1.4fr 1fr 1.2fr;align-items:start}
.cel-global-footer p{margin:0 0 8px;font-size:.9rem;line-height:1.6;color:rgba(255,255,255,.74)}
.cel-footer-logo{font-family:"DM Serif Display",Georgia,serif;font-size:1.35rem;letter-spacing:.14em;
  display:block;margin-bottom:14px;color:#fff}
.cel-footer-label{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--cel-gold);margin-bottom:12px}
.cel-global-footer a{color:#fff;text-decoration:none;border-bottom:1px solid rgba(201,169,106,.5)}
.cel-global-footer a:hover{border-bottom-color:var(--cel-gold)}
.cel-footer-cta{display:inline-block;margin-top:10px;padding:11px 22px;background:var(--cel-gold);
  color:var(--cel-midnight);font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;
  border-bottom:0;font-weight:600}
.cel-footer-cta:hover{background:#d8bb7e;border-bottom:0}
@media (max-width:900px){.cel-global-footer__inner{grid-template-columns:1fr;gap:32px}
  .cel-global-footer{padding:48px 20px 40px}}

/* ── Price block on product cards ─────────────────────────────── */
.cel-price-path strong{display:block;font-size:1.05rem;color:var(--cel-indigo);letter-spacing:.01em}
.cel-price-path span{display:block;margin-top:3px;font-size:.74rem;letter-spacing:.05em;
  text-transform:uppercase;color:#73788b}
.cel-compare td strong{color:var(--cel-indigo);font-weight:600;white-space:nowrap}

/* ── Model carried over from /domes/ ──────────────────────────── */
.cel-model-note{background:rgba(31,32,128,.05);border-left:2px solid var(--cel-gold);
  padding:10px 14px;margin:14px 0 0}
.cel-model-note strong{color:var(--cel-indigo)}

/* ── Home: quotable definition paragraph ──────────────────────── */
.cel-home-define > p{max-width:64ch;margin:26px 0 0;color:#3a4152;font-size:1.05rem;line-height:1.78}

/* ── Featured project / home garden: CTA link (wpautop wraps it in <p>) ── */
.cel-featured-project article > p > a{color:var(--cel-indigo);font-weight:800;text-underline-offset:5px}

/* ── Installation guide: reuse the numbered steps on a light background ── */
.cel-install-guide .cel-order-steps{grid-template-columns:repeat(4,1fr);margin:34px 0 0}
.cel-install-guide .cel-order-steps li{min-height:0;padding:26px 24px;
  border-right:1px solid #ccd1d8;border-bottom:1px solid #ccd1d8}
.cel-install-guide .cel-order-steps li:nth-child(4n){border-right:0}
.cel-install-guide .cel-order-steps li:nth-last-child(-n+4){border-bottom:0}
.cel-install-guide .cel-order-steps > li > b{color:#876821;font-weight:800;font-size:12px;letter-spacing:.16em}
.cel-install-guide .cel-order-steps h3{margin:12px 0 9px;font-size:22px;color:var(--cel-indigo)}
.cel-install-guide .cel-order-steps p{margin:0;color:#4a5163;font-size:.93rem;line-height:1.66}
.cel-install-guide .cel-card-grid{margin-top:38px}
@media (max-width:1080px){
  .cel-install-guide .cel-order-steps{grid-template-columns:repeat(2,1fr)}
  .cel-install-guide .cel-order-steps li:nth-child(4n){border-right:1px solid #ccd1d8}
  .cel-install-guide .cel-order-steps li:nth-child(2n){border-right:0}
  .cel-install-guide .cel-order-steps li:nth-last-child(-n+4){border-bottom:1px solid #ccd1d8}
  .cel-install-guide .cel-order-steps li:nth-last-child(-n+2){border-bottom:0}
}
@media (max-width:700px){
  .cel-install-guide .cel-order-steps{grid-template-columns:1fr}
  .cel-install-guide .cel-order-steps li,
  .cel-install-guide .cel-order-steps li:nth-child(2n),
  .cel-install-guide .cel-order-steps li:nth-child(4n){border-right:0;border-bottom:1px solid #ccd1d8}
  .cel-install-guide .cel-order-steps li:last-child{border-bottom:0}
}

/* ── Home: quotable paragraph beside the heading (site's standard rhythm) ── */
.cel-home-define{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(280px,0.85fr);
  gap:60px;align-items:end}
.cel-home-define .cel-section-head{display:block;margin:0}
.cel-home-define > p{max-width:none;margin:0}
@media (max-width:900px){
  .cel-home-define{display:block}
  .cel-home-define > p{margin-top:26px}
}

/* ── New pages: keep the quotable lede at a readable measure ──── */
.cel-garden-lede > p,
.cel-vs-lede > p{max-width:78ch}
.cel-garden-material > p{max-width:78ch}
.cel-vs-honest > p{max-width:78ch}

/* ── FAQ list: align with the site grid instead of collapsing to 700px ──
   .cel-section pads by 100vw, so an extra max-width on the section shrank
   the content twice. Let the section use the standard measure and cap the
   answer text instead. */
.cel-faq-list{max-width:none;margin:0}
.cel-faq-list details:first-of-type{border-top:1px solid var(--cel-line)}
.cel-faq-list details p{max-width:820px}

/* ── FAQ markers: replace the UA triangle (it breaks the wrap indent) ── */
.cel-faq-list summary,
.cel-critical-faq summary{display:block;position:relative;list-style:none;padding-right:64px}
.cel-faq-list summary::-webkit-details-marker,
.cel-critical-faq summary::-webkit-details-marker{display:none}
.cel-faq-list summary::after,
.cel-critical-faq summary::after{content:"+";position:absolute;right:10px;top:50%;
  transform:translateY(-50%);color:var(--cel-gold);font:400 30px/1 "Inter",system-ui,sans-serif}
.cel-faq-list details[open] summary::after,
.cel-critical-faq details[open] summary::after{content:"\2212"}
.cel-faq-list summary:hover::after,
.cel-critical-faq summary:hover::after{color:var(--cel-indigo)}

@media (max-width:768px){
  .cel-faq-list summary,
  .cel-critical-faq summary{padding-right:44px}
  .cel-faq-list summary::after,
  .cel-critical-faq summary::after{right:4px;font-size:26px}
}

/* ── Product / accessory families: join the site measure ──────────
   These sections had their own gutter (clamp(20px,5vw,72px)) and a 1180px
   inner max-width, while every .cel-section uses 1160px inside
   max(24px, calc((100vw - 1160px)/2)). Result: the model cards sat 10px left
   of the hero copy, the compare table and the CTA on the same page. */
.cel-product-family,
.cel-accessory-family{
  padding-left:max(24px, calc((100vw - 1160px) / 2));
  padding-right:max(24px, calc((100vw - 1160px) / 2));
}
.cel-product-family > header,
.cel-accessory-family > header,
.cel-product-records,
.cel-accessory-records{max-width:1160px}

/* ── Brand mark in the header (VIS emblem + wordmark) ─────────── */
.cel-global-logo{display:inline-flex;align-items:center;gap:13px}
.cel-global-logo img{height:31px;width:auto;display:block;flex:none}
.cel-global-logo span{display:block;line-height:1}
@media (max-width:900px){
  .cel-global-logo{gap:10px}
  .cel-global-logo img{height:26px}
}

/* ── Footer: full stacked lockup + brand line ─────────────────── */
.cel-footer-lockup{width:158px;height:auto;display:block;margin:0 0 12px}
.cel-footer-slogan{font:400 1.02rem/1.2 "DM Serif Display",Georgia,serif;
  color:var(--cel-gold);margin:0 0 16px;letter-spacing:.02em}
@media (max-width:900px){.cel-footer-lockup{width:136px}}

/* ── Price signposts in the nav ───────────────────────────────── */
.cel-submenu a[href="/domes/#compare"]:last-of-type{color:var(--cel-gold)}

/* ── 修：上一版用 :last-of-type 导致两项都变金色（每个 li 只有一个 a） ── */
.cel-submenu a[href="/domes/#compare"]:last-of-type{color:#fff}
.cel-submenu a.cel-nav-price{color:var(--cel-gold);font-weight:700}
.cel-submenu a.cel-nav-price:hover{color:#e4cd95}

/* ── Model cards: one scale figure per size ───────────────────────
   来自报价表的 3D 效果图：同一片木平台、同一组家具，只有穹顶变大，
   所以卡片之间可以直接目测尺寸差。椭圆两款用实拍（表格里的椭圆渲染带中文标注）。*/
.cel-model-figure{display:block;width:calc(100% + 2px);margin:-1px -1px 18px;
  aspect-ratio:16/9;object-fit:cover;background:var(--cel-mist)}
@media (max-width:700px){.cel-model-figure{margin-bottom:14px}}
/* Celenest 品牌字体 · 自托管 · latin + latin-ext
   DM Serif Display = 标题；Inter 可变 300-800 = 正文（VIS 指定）
   font-display:swap —— 字体没到之前先用回退字体显示，不留白 */
@font-face{font-family:'DM Serif Display';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/dm-serif-display-latin-ext.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF}
@font-face{font-family:'DM Serif Display';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/dm-serif-display-latin.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Inter';font-style:normal;font-weight:300 800;font-display:swap;src:url(fonts/inter-latin-ext.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF}
@font-face{font-family:'Inter';font-style:normal;font-weight:300 800;font-display:swap;src:url(fonts/inter-latin.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}

/* VIS 指定 Inter 作正文；此前站上只有导航引用它，正文一直是系统默认字体 */
body{font-family:Inter,ui-sans-serif,system-ui,-apple-system,'Segoe UI',sans-serif}

/* ── 单卡系列（Oval / Extended）跨两列 ────────────────────────────
   这两个系列各只有一款，在三列网格里只占 1/3 宽，渲染图小到看不出"加长"。
   跨两列后图宽翻倍，长度差才读得出来。*/
.cel-product-records .cel-product-record:only-child{grid-column:span 2}
@media (max-width:1080px){
  .cel-product-records .cel-product-record:only-child{grid-column:span 2}
}
@media (max-width:700px){
  .cel-product-records .cel-product-record:only-child{grid-column:auto}
}

/* ── 页脚合规链接 ─────────────────────────────────────────────── */
.cel-footer-legal{margin-top:14px;font-size:.82rem}
.cel-footer-legal a{border-bottom-color:rgba(255,255,255,.28)}

/* ── 法务/政策页：单栏读长文 ───────────────────────────────────── */
.cel-standard--legal .cel-section > h2{margin-bottom:14px}
.cel-standard--legal .cel-section > p,
.cel-standard--legal .cel-section > ul{max-width:78ch}
