﻿/*
Theme Name: Chanscen
Theme URI: https://chanscen.com/
Author: Chanscen
Description: Lightweight custom theme for Chanscen's international website.
Version: 1.2.44
Requires at least: 6.7
Requires PHP: 8.1
Text Domain: chanscen
*/

:root {
  --primary: #86B13B;
  --secondary: #008369;
  --accent: #008369;
  --green: #008369;
  --green-dark: #006B57;
  --green-deep: #063B31;
  --lime: #86B13B;
  --mint: #5CBA87;
  --blue: #2169CF;
  --ink: #333333;
  --text: #333333;
  --muted: #68736F;
  --line: #DCE4DF;
  --soft: #F0F5E6;
  --paper: #F0F5E6;
  --white: #FFFFFF;
  --page-frame-max: 1280px;
  --page-frame-gutter: 48px;
  --shell: min(var(--page-frame-max), calc(100vw - var(--page-frame-gutter)));
  --home-frame: var(--shell);
  --content-narrow: 900px;
  --content-readable: 830px;
  --module-padding-y: clamp(44px, 5vw, 64px);
  --module-padding-x: clamp(24px, 3.2vw, 48px);
  --module-gap: clamp(44px, 6vw, 92px);
  --module-card-gap: 20px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --home-radius: 22px;
  --shadow: 0 14px 38px rgba(22, 50, 42, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 720;
  letter-spacing: 0;
}
h1 { font-size: 72px; }
h2 { font-size: 46px; }
h3 { font-size: 22px; }
p { margin: 0 0 20px; }
.site-shell, .home-frame { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 999; background: var(--white); padding: 10px 14px; }
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

/* Desktop pointer glow */
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 131, 105, .28);
  border-radius: 999px;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(.86);
  transition: opacity .18s ease, width .18s ease, height .18s ease, border-color .18s ease, background-color .18s ease;
  box-shadow:
    0 0 0 8px rgba(134, 177, 59, .07),
    0 10px 28px rgba(0, 131, 105, .18);
  mix-blend-mode: multiply;
}
.cursor-glow::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: inherit;
  background: rgba(0, 131, 105, .45);
  box-shadow: 0 0 18px rgba(92, 186, 135, .36);
}
.cursor-glow.is-visible { opacity: 1; }
.cursor-glow.is-active {
  width: 54px;
  height: 54px;
  border-color: rgba(0, 131, 105, .45);
  background: rgba(240, 245, 230, .45);
  box-shadow:
    0 0 0 12px rgba(134, 177, 59, .1),
    0 14px 36px rgba(0, 131, 105, .24);
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* Global header */
.utility-bar { background: var(--green); color: var(--white); font-size: 13px; }
.utility-inner {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.utility-inner p { margin: 0; text-align: center; font-weight: 600; }
.utility-social { display: flex; align-items: center; gap: 18px; }
.utility-social a, .utility-contact { color: var(--white); display: inline-flex; align-items: center; gap: 7px; }
.utility-social a:hover, .utility-contact:hover { color: var(--soft); }
.utility-social .dashicons { width: 22px; height: 22px; font-size: 22px; }
.utility-contact { justify-self: end; font-weight: 650; }
.utility-contact .dashicons { width: 18px; height: 18px; font-size: 18px; }
.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
body.admin-bar .site-header { top: 32px; }
.header-inner { height: 100px; display: flex; align-items: center; gap: 42px; }
.site-brand { width: 232px; flex: 0 0 auto; }
.site-brand img { max-height: 62px; width: auto; }
.primary-nav { margin-left: auto; }
.primary-nav ul { list-style: none; display: flex; align-items: center; gap: 38px; margin: 0; padding: 0; }
.primary-nav a { color: var(--ink); font-size: 15px; font-weight: 680; padding: 13px 0; display: block; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--green); }
.primary-nav .menu-item:last-child a {
  background: var(--green);
  color: var(--white);
  padding: 13px 21px;
  border-radius: var(--radius-sm);
}
.primary-nav .menu-item:last-child a:hover { background: var(--green-dark); }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 4px; width: 44px; height: 44px; padding: 9px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Shared controls */
.eyebrow { text-transform: uppercase; font-size: 12px; font-weight: 780; letter-spacing: 1.4px; color: var(--green); margin-bottom: 14px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button, .wp-element-button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}
.button:hover, .wp-element-button:hover, input[type="submit"]:hover { background: var(--green-dark); border-color: var(--green-dark); }
.button-outline { background: transparent; color: var(--green) !important; }
.button-light { background: var(--white); border-color: var(--white); color: var(--green) !important; }
.text-link { font-weight: 700; color: var(--green); }

/* Home: old-site visual language rebuilt as native blocks */
.page-home,
.page-about,
.page-contact,
.page-solutions {
  overflow: hidden;
  background: var(--white);
}
.page-home > *,
.page-about > *,
.page-contact > *,
.page-solutions > * {
  position: relative;
  z-index: 1;
}
.page-about .content-section:not(.soft),
.page-contact .content-section:not(.soft),
.page-solutions .solution-detail {
  background: transparent;
}
.page-about .content-section.soft,
.page-contact .content-section.soft,
.home-section.home-section-soft,
.solution-detail:nth-child(even) {
  background: transparent;
}
.page-home .home-section-inner,
.page-about .content-section > .site-shell,
.page-contact .content-section > .site-shell,
.page-solutions .solution-detail > .site-shell,
.page-about .content-section > .wp-block-group.site-shell,
.page-contact .content-section > .wp-block-group.site-shell,
.page-solutions .solution-detail > .wp-block-group.site-shell {
  position: relative;
  z-index: 0;
  isolation: isolate;
}
.page-home .home-section-inner::before,
.page-about .content-section > .site-shell::before,
.page-contact .content-section > .site-shell::before,
.page-solutions .solution-detail > .site-shell::before,
.page-about .content-section > .wp-block-group.site-shell::before,
.page-contact .content-section > .wp-block-group.site-shell::before,
.page-solutions .solution-detail > .wp-block-group.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 8%, rgba(134, 177, 59, .08), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(92, 186, 135, .07), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(246,249,241,.78) 100%);
  border: 1px solid rgba(220, 228, 223, .72);
}
.page-home .home-hero-section .home-section-inner::before,
.page-about .dark-band .site-shell::before,
.page-contact .contact-page-content > .site-shell::before,
.page-solutions .solutions-page-hero .site-shell::before,
.page-solutions .anchor-nav .site-shell::before {
  display: none;
}
.home-hero-section { padding: 0 24px; }
.home-hero-card {
  width: 100%;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  min-height: 470px;
  position: relative;
  overflow: hidden;
  border-radius: var(--home-radius);
  color: var(--white);
  isolation: isolate;
}
.home-hero-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8, 52, 43, .78) 0%, rgba(8, 52, 43, .54) 46%, rgba(8, 52, 43, .28) 100%); }
.home-hero-media { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; max-width: none !important; margin: 0 !important; }
.home-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: chanscenHeroFade 20s infinite;
}
.home-hero-slider img:nth-child(1) { animation-delay: 0s; }
.home-hero-slider img:nth-child(2) { animation-delay: 5s; }
.home-hero-slider img:nth-child(3) { animation-delay: 10s; }
.home-hero-slider img:nth-child(4) { animation-delay: 15s; }
@keyframes chanscenHeroFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  25% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}
.home-hero-copy {
  position: relative;
  z-index: 2;
  width: min(750px, calc(100% - 72px));
  max-width: none !important;
  margin: 0 !important;
  padding: 72px 0 64px 82px;
}
.home-hero-card .eyebrow { color: var(--primary); }
.home-hero-card h1 { color: var(--white); font-size: 52px; max-width: 660px; }
.home-hero-card .home-hero-lead { font-size: 19px; color: rgba(255, 255, 255, .9); max-width: 600px; }
.home-hero-actions { gap: 14px; margin-top: 30px; }
.home-hero-actions .wp-block-button__link { min-height: 52px; padding: 13px 27px; border-radius: 999px; background: var(--white); color: var(--ink) !important; border: 1px solid var(--white); }
.home-hero-actions .is-style-outline .wp-block-button__link { background: transparent; color: var(--white) !important; }
.home-hero-actions .wp-block-button__link:hover { background: var(--green); border-color: var(--green); color: var(--white) !important; }
.home-section { padding: 64px 24px; }
.home-section.home-section-soft {
  background: transparent;
}
.home-section-inner { width: 100%; max-width: 1280px !important; }
.home-section:not(.home-hero-section) .home-section-inner {
  padding: var(--module-padding-y) var(--module-padding-x);
}
.home-intro-section .home-section-inner {
  padding: var(--module-padding-y) var(--module-padding-x);
}
.home-intro-columns {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  align-items: center !important;
  gap: var(--module-gap);
}
.home-intro-columns > .wp-block-column:first-child { flex-basis: 56% !important; }
.home-intro-columns > .wp-block-column:last-child { flex-basis: 44% !important; }
.home-intro-title h2 { max-width: 720px; font-size: 42px; text-transform: none; }
.home-intro-copy { max-width: 640px; margin-left: auto; }
.home-intro-copy h3 { font-size: 24px; }
.home-intro-copy p { color: var(--muted); }
.home-image-row { display: grid !important; width: 100%; max-width: none !important; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--module-card-gap); margin-top: 42px; }
.home-image-row > *, .home-product-grid > *, .home-value-grid > *, .home-process-grid > *, .home-section-heading > * { width: auto; max-width: none !important; margin-block-start: 0 !important; }
.home-image-row > * { margin-inline: 0 !important; }
.home-solution-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(15, 47, 39, .06);
}
.home-solution-card .wp-block-image { position: relative; margin: 0; overflow: hidden; background: var(--green-deep); }
.home-solution-card .wp-block-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 59, 49, .04), rgba(6, 59, 49, .22)),
    linear-gradient(135deg, rgba(0, 131, 105, .2), rgba(134, 177, 59, .12));
  mix-blend-mode: multiply;
}
.home-solution-card img { width: 100%; height: 185px; object-fit: cover; transition: transform .25s ease; }
.home-solution-card-label { display: flex; align-items: center; min-height: 82px; padding: 18px 18px; background: var(--white); }
.home-solution-card-label h3 { margin: 0; color: var(--ink); font-size: 16px; line-height: 1.25; }
.home-solution-card-link { color: var(--ink); }
.home-solution-card-link:hover { color: var(--green); }
.chanscen-site .home-solution-card-link::after { content: ""; position: absolute; inset: 0; }
.home-solution-card:hover img { transform: scale(1.025); }
.home-section-heading {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  align-items: end;
  gap: var(--module-gap);
  margin-bottom: 34px;
}
.home-section-heading > * { margin-left: 0 !important; margin-right: 0 !important; }
.home-section-heading h2 { max-width: 720px; }
.home-section-heading > p { color: var(--muted); }
.home-product-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--module-card-gap); }
.home-product-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: 0 14px 28px rgba(15, 47, 39, .06); }
.home-product-card > .wp-block-image { margin: 0; }
.home-product-card > .wp-block-image img { width: 100%; height: 270px; object-fit: cover; }
.home-card-copy { padding: 26px; }
.home-card-copy h3 { margin-bottom: 12px; }
.home-card-copy p { color: var(--muted); font-size: 15px; }
.home-card-copy p:last-child { margin-bottom: 0; }
.home-proof-columns { align-items: center !important; gap: 76px; }
.home-proof-image { margin: 0; overflow: hidden; border-radius: var(--radius-lg); }
.home-proof-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.home-proof-copy h2 { max-width: 650px; }
.home-capability-heading {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  align-items: end;
  gap: 28px var(--module-gap);
}
.home-capability-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -6px; }
.home-capability-heading h2 { max-width: 780px; margin: 0; }
.home-capability-heading > p:last-child { color: var(--muted); margin: 0; }
.home-capability-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--module-card-gap); margin-top: 42px; counter-reset: home-capability; }
.home-capability-grid > * { width: auto; max-width: none !important; margin-block-start: 0 !important; }
.home-capability-item { position: relative; min-height: 210px; padding: 30px; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: var(--radius); background: var(--white); }
.home-capability-item::before { counter-increment: home-capability; content: "0" counter(home-capability); display: block; margin-bottom: 34px; color: var(--green); font-size: 13px; font-weight: 800; }
.home-capability-item h3 { margin-bottom: 10px; font-size: 21px; }
.home-capability-item p { margin: 0; color: var(--muted); font-size: 15px; }
.home-value-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; margin-top: 32px; }
.home-value-item { padding: 22px 0; border-top: 1px solid var(--line); }
.home-value-item h3 { font-size: 19px; margin-bottom: 8px; }
.home-value-item p { color: var(--muted); font-size: 14px; margin: 0; }
.home-manufacturing-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(134, 177, 59, .16), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(92, 186, 135, .12), transparent 32%),
    linear-gradient(135deg, #063B31 0%, #075042 48%, #042E26 100%);
  color: var(--white);
  padding: 86px 24px;
}
.brand-dark-section,
.page-about .dark-band,
.page-solutions .solutions-scope-section,
.page-contact .content-section.soft {
  background:
    radial-gradient(circle at 10% 12%, rgba(134, 177, 59, .16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(92, 186, 135, .12), transparent 32%),
    linear-gradient(135deg, #063B31 0%, #075042 48%, #042E26 100%);
  color: var(--white);
}
.page-about .dark-band,
.page-solutions .solutions-scope-section,
.page-contact .content-section.soft {
  padding-left: 24px;
  padding-right: 24px;
}
.brand-dark-section > .site-shell,
.page-about .dark-band > .site-shell,
.page-solutions .solutions-scope-section > .site-shell,
.page-contact .content-section.soft > .site-shell {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: var(--module-padding-y) var(--module-padding-x);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 12%, rgba(134, 177, 59, .14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}
.brand-dark-section > .site-shell::before,
.page-about .dark-band > .site-shell::before,
.page-solutions .solutions-scope-section > .site-shell::before,
.page-contact .content-section.soft > .site-shell::before {
  display: none;
}
.brand-dark-section h2,
.brand-dark-section h3,
.page-about .dark-band h2,
.page-about .dark-band h3,
.page-solutions .solutions-scope-section h2,
.page-solutions .solutions-scope-section h3,
.page-contact .content-section.soft h2,
.page-contact .content-section.soft h3 {
  color: var(--white);
}
.brand-dark-section p,
.page-about .dark-band p,
.page-solutions .solutions-scope-section p,
.page-contact .content-section.soft p {
  color: rgba(255, 255, 255, .82);
}
.brand-dark-section .eyebrow,
.page-about .dark-band .eyebrow,
.page-solutions .solutions-scope-section .eyebrow,
.page-contact .content-section.soft .eyebrow {
  color: var(--primary);
}
.home-manufacturing-section .home-section-inner {
  padding: clamp(44px, 5vw, 72px) clamp(42px, 6vw, 92px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 12%, rgba(134, 177, 59, .14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}
.home-manufacturing-section .home-section-inner::before { display: none; }
.home-manufacturing-section h2,
.home-manufacturing-section h3 { color: var(--white); }
.home-manufacturing-section .eyebrow { color: var(--primary); }
.home-manufacturing-section p { color: rgba(255, 255, 255, .82); }
.home-manufacturing-columns {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  align-items: center !important;
  gap: var(--module-gap);
}
.home-manufacturing-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .22);
}
.home-manufacturing-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.home-process-grid { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--module-card-gap); counter-reset: home-process; }
.home-process-item { position: relative; padding: 30px; border-top: 3px solid var(--green); border-radius: var(--radius); background: var(--paper); min-height: 230px; }
.home-process-item::before { counter-increment: home-process; content: "0" counter(home-process); display: block; margin-bottom: 38px; color: var(--green); font-size: 13px; font-weight: 800; }
.home-process-item h3 { margin-bottom: 12px; }
.home-process-item p { color: var(--muted); font-size: 15px; }
.home-inline-cta { margin-top: 48px; padding: 40px; background: var(--soft); border-left: 5px solid var(--green); border-radius: var(--radius); }
.home-inline-cta .wp-block-columns { align-items: center !important; margin-bottom: 0; }

/* Shared page structures */
.hero { min-height: 650px; display: grid; align-items: end; position: relative; color: var(--white); background: var(--green-deep) center / cover no-repeat; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(14, 37, 30, .64); }
.hero-content { position: relative; z-index: 2; padding: 105px 0 88px; max-width: 760px; }
.hero h1 { color: var(--white); max-width: 760px; }
.hero p:not(.eyebrow) { font-size: 20px; max-width: 670px; color: rgba(255, 255, 255, .88); }
.hero .eyebrow, .dark-band .eyebrow, .footer-cta .eyebrow { color: var(--primary); }
.hero .button-outline { border-color: var(--white); color: var(--white) !important; }
.content-section { padding: 64px 24px; }
.content-section.soft { background: var(--soft); }
.section-head {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: var(--module-gap);
  align-items: end;
  margin-bottom: 42px;
}
.section-head p { color: var(--muted); }
.solution-grid, .product-grid, .value-grid, .process-grid, .posts-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.solution-card, .product-card, .value-card, .process-card, .post-card { border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); overflow: hidden; }
.solution-card, .value-card, .process-card { padding: 30px; }
.solution-card { min-height: 260px; display: flex; flex-direction: column; }
.solution-card .card-number { font-size: 12px; font-weight: 800; color: var(--green); margin-bottom: auto; }
.solution-card h3 { margin-top: 36px; }
.solution-card p, .product-card-body p { color: var(--muted); font-size: 15px; }
.product-card img { width: 100%; height: 260px; object-fit: cover; }
.product-card-body { padding: 24px; }
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: var(--module-gap);
  align-items: center;
}
.split-layout img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.check-list { list-style: none; padding: 0; margin: 28px 0; }
.check-list li { position: relative; padding: 8px 0 8px 28px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 10px; height: 10px; background: var(--lime); }
.dark-band { background: var(--green-deep); color: var(--white); padding: 64px 24px; }
.dark-band > .site-shell {
  width: var(--shell);
  max-width: var(--page-frame-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.dark-band h2, .dark-band h3 { color: var(--white); }
.dark-band p { color: rgba(255, 255, 255, .78); }
.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, .18); margin-top: 44px; }
.metric { padding: 28px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); }
.metric strong { display: block; font-size: 23px; color: var(--white); }
.metric span { font-size: 13px; color: rgba(255, 255, 255, .68); }
.process-grid { counter-reset: process; }
.process-card { position: relative; }
.process-card::before { counter-increment: process; content: "0" counter(process); font-weight: 800; color: var(--green); font-size: 13px; }
.process-card h3 { margin-top: 30px; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 48px; background: var(--soft); border-left: 5px solid var(--green); }

/* Inner pages and block-editor layouts */
.page-hero {
  width: var(--shell) !important;
  max-width: var(--page-frame-max) !important;
  min-height: 340px;
  margin: 0 auto !important;
  padding: clamp(78px, 7vw, 116px) 0 clamp(62px, 6vw, 92px);
  background: var(--soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
}
.page-hero.compact { min-height: 300px; padding: clamp(62px, 6vw, 86px) 0; }
.page-hero .site-shell {
  width: min(var(--content-narrow), calc(100% - var(--page-frame-gutter)));
  max-width: var(--content-narrow);
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 { max-width: 900px; }
.page-hero p { max-width: 760px; color: var(--muted); }
.page-hero:not(.has-image) { text-align: center; }
.page-hero:not(.has-image) h1,
.page-hero:not(.has-image) p {
  margin-left: auto;
  margin-right: auto;
}
.page-hero.has-image { width: 100% !important; max-width: none !important; min-height: 560px; display: flex; align-items: flex-end; background: center / cover no-repeat; color: var(--white); position: relative; overflow: hidden; }
.page-hero.has-image::after { content: ""; position: absolute; inset: 0; background: rgba(20, 44, 37, .68); }
.page-hero.has-image .site-shell { position: relative; z-index: 2; width: var(--shell); max-width: var(--page-frame-max); }
.page-hero.has-image h1, .page-hero.has-image p { color: var(--white); }
.anchor-nav { position: sticky; top: 100px; z-index: 20; background: transparent; border-bottom: 0; }
body.admin-bar .anchor-nav { top: 132px; }
.anchor-nav .site-shell {
  width: min(780px, calc(100vw - var(--page-frame-gutter)));
  display: flex;
  justify-content: center;
  gap: 16px;
  overflow-x: auto;
  margin-top: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.anchor-nav a {
  min-width: 172px;
  padding: 16px 26px;
  border: 1px solid var(--secondary);
  border-radius: 999px;
  white-space: nowrap;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
  font-weight: 700;
}
.anchor-nav a:hover,
.anchor-nav a:first-child {
  background: var(--secondary);
  color: var(--white);
}
.solutions-anchor-links { margin-top: 0; margin-bottom: 0; scrollbar-width: thin; }
.solutions-page-hero { padding: 0; overflow: hidden; min-height: 340px !important; }
.solutions-page-hero .wp-block-cover__inner-container {
  width: var(--shell);
  max-width: var(--page-frame-max);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(62px, 5vw, 82px) 0 clamp(46px, 4.5vw, 62px);
}
.solutions-page-hero .site-shell { width: 100%; max-width: 850px; margin-left: auto; margin-right: auto; text-align: center; }
.solutions-page-hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1.08;
}
.solutions-page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}
.solutions-page-hero h1, .solutions-page-hero p { color: var(--white); }
.solutions-page-hero .eyebrow { color: var(--primary); }
.solution-detail { padding: 64px 24px; border-bottom: 1px solid var(--line); scroll-margin-top: 170px; }
.solution-detail:nth-child(even) { background: var(--soft); }
.solution-detail-grid {
  display: grid !important;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: var(--module-gap);
  align-items: center;
}
.solution-detail img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.solutions-image-note { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--module-card-gap); }
.scope-card { padding: 28px; border-top: 4px solid var(--green); border-radius: var(--radius); background: var(--white); }
.scope-card ul { padding-left: 20px; }
.solutions-scope-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.solutions-scope-section .section-head {
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  align-items: start;
}
.solutions-scope-section .section-head > p {
  max-width: 620px;
  padding: 28px;
  border-left: 5px solid var(--secondary);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}
.solutions-scope-note {
  margin: 26px 0 0;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
}
.page-solutions .solutions-scope-section .scope-card,
.page-contact .content-section.soft .contact-map-card,
.page-contact .content-section.soft .faq-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: var(--white);
}
.page-solutions .solutions-scope-section .scope-card li,
.page-contact .content-section.soft .faq-card p {
  color: rgba(255, 255, 255, .78);
}
.page-contact .content-section.soft .contact-map-embed {
  border-color: rgba(255, 255, 255, .18);
}
.solutions-scope-note p:last-child { margin-bottom: 0; }

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--module-card-gap);
  margin-top: 42px;
}
.about-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--mint));
  border-radius: 999px;
}
.about-timeline-item {
  position: relative;
  padding: 78px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 12px 30px rgba(22, 50, 42, .07);
}
.about-timeline-item::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 23px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--white);
  border: 5px solid var(--secondary);
  box-shadow: 0 0 0 8px rgba(0, 131, 105, .08);
}
.about-timeline-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.about-timeline-item h3 { font-size: 21px; }
.about-timeline-item p { color: var(--muted); font-size: 15px; margin-bottom: 0; }

.contact-map-card,
.contact-faq-grid .faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-map-card {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: stretch;
}
.contact-map-copy { padding: 34px; }
.contact-map-embed {
  min-height: 330px;
  background:
    linear-gradient(120deg, rgba(0, 131, 105, .78), rgba(51, 51, 51, .58)),
    url("images/greenhouse-interior.jpg") center / cover;
}
.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  display: block;
}
.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--module-card-gap);
  margin-top: 36px;
}
.contact-faq-grid .faq-card { padding: 28px; }
.contact-faq-grid .faq-card h3 { font-size: 20px; margin-bottom: 10px; }
.contact-faq-grid .faq-card p { color: var(--muted); margin-bottom: 0; }
.solutions-process-section .cta-panel { margin-top: 44px; }
.legal-content, .article-body { max-width: var(--content-readable); padding: 70px 0; }
.legal-content h2, .article-body h2 { font-size: 28px; margin-top: 42px; }
.legal-content h3, .article-body h3 { margin-top: 30px; }
.page-entry > .alignfull { width: 100%; max-width: none; margin-left: 0; margin-right: 0; }
.page-entry.is-layout-constrained > .content-section,
.page-entry.is-layout-constrained > section.content-section,
.page-entry.is-layout-constrained > .solution-detail,
.page-entry.is-layout-constrained > section.solution-detail,
.page-entry.is-layout-constrained > .dark-band,
.page-entry.is-layout-constrained > section.dark-band {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.page-entry > .alignfull:not(.page-hero):not(.solutions-page-hero):not(.anchor-nav) > .site-shell,
.page-entry > .alignfull:not(.page-hero):not(.solutions-page-hero):not(.anchor-nav) > .wp-block-group.site-shell,
.page-entry .site-shell {
  width: var(--shell);
  max-width: var(--page-frame-max) !important;
  margin-left: auto;
  margin-right: auto;
}
.page-about .content-section > .site-shell,
.page-contact .content-section > .site-shell,
.page-solutions .solution-detail > .site-shell,
.page-about .content-section > .wp-block-group.site-shell,
.page-contact .content-section > .wp-block-group.site-shell,
.page-solutions .solution-detail > .wp-block-group.site-shell {
  padding: var(--module-padding-y) var(--module-padding-x);
}
.page-about .content-section > .site-shell.split-layout,
.page-contact .content-section > .site-shell.contact-grid,
.page-solutions .solution-detail > .site-shell.solution-detail-grid {
  padding: var(--module-padding-y) var(--module-padding-x);
}
.page-entry .wp-block-columns.site-shell,
.page-entry .wp-block-group.site-shell.section-head,
.page-entry .wp-block-group.site-shell.solution-detail-grid,
.page-entry .wp-block-group.site-shell.contact-grid {
  max-width: var(--page-frame-max) !important;
}
.page-entry .site-shell.split-layout,
.page-entry .site-shell.solution-detail-grid,
.page-entry .site-shell.contact-grid,
.page-entry .wp-block-columns.site-shell,
.page-entry .wp-block-group.site-shell.solution-detail-grid,
.page-entry .wp-block-group.site-shell.contact-grid {
  width: var(--shell) !important;
  max-width: var(--page-frame-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.page-about .split-layout {
  width: var(--shell);
  max-width: var(--page-frame-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.page-about .content-section > .site-shell,
.page-about .content-section > .wp-block-group.site-shell {
  width: var(--shell);
  max-width: var(--page-frame-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.is-style-chanscen-narrow { --wp--style--global--content-size: var(--content-readable); }
.is-style-chanscen-standard { --wp--style--global--content-size: var(--page-frame-max); }

/* Keep Gutenberg alignment choices consistent between the editor and frontend. */
.page-entry.is-layout-constrained > :where(
  :not(.alignleft):not(.alignright):not(.alignwide):not(.alignfull)
) {
  width: calc(100% - 40px);
  max-width: var(--wp--style--global--content-size, var(--content-readable));
  margin-left: auto;
  margin-right: auto;
}
.page-entry.is-layout-constrained > .alignwide {
  width: calc(100% - 40px);
  max-width: var(--wp--style--global--wide-size, var(--page-frame-max));
  margin-left: auto;
  margin-right: auto;
}
.page-entry.is-layout-constrained > .alignfull {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 600px) {
  .page-entry.is-layout-constrained > :where(
    :not(.alignleft):not(.alignright):not(.alignwide):not(.alignfull)
  ),
  .page-entry.is-layout-constrained > .alignwide {
    width: calc(100% - 32px);
  }
}
.chanscen-page-hero {
  width: var(--shell) !important;
  max-width: var(--page-frame-max) !important;
  min-height: 340px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg);
}
.chanscen-page-hero .wp-block-heading { max-width: 980px; margin-left: auto; margin-right: auto; }
.chanscen-page-hero h1.wp-block-heading { max-width: 900px; }
.page-privacy-policy .page-hero {
  width: var(--shell) !important;
  max-width: var(--page-frame-max) !important;
  margin-left: 50% !important;
  margin-right: 0 !important;
  transform: translateX(-50%);
  text-align: center;
}
.page-privacy-policy .page-hero .site-shell {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.page-privacy-policy .page-hero h1,
.page-privacy-policy .page-hero p {
  margin-left: auto;
  margin-right: auto;
}
.chanscen-legal-content > .wp-block-heading { font-size: 28px; margin-top: 42px; }
.chanscen-legal-content > .wp-block-heading:first-child { margin-top: 0; }
.chanscen-legal-content .wp-block-list { padding-left: 24px; }
.chanscen-contact-block { border-left: 5px solid var(--green); border-radius: var(--radius); }

/* Forms */
.contact-grid {
  display: grid !important;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: var(--module-gap);
  align-items: center;
}
.contact-panel { background: var(--soft); padding: 36px; border-radius: var(--radius); }
.contact-list { list-style: none; padding: 0; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-page-hero .wp-block-buttons { margin-top: 28px; }
.contact-page-hero .is-style-outline .wp-block-button__link { background: transparent; border-color: var(--green); color: var(--green) !important; }
.contact-page-hero .is-style-outline .wp-block-button__link:hover { background: var(--green); color: var(--white) !important; }
.contact-form-column > .wp-block-heading { margin-bottom: 12px; }
.contact-next-step .wp-block-buttons { margin-top: 30px; }
.chanscen-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.chanscen-form .field-full { grid-column: 1 / -1; }
.chanscen-form label { display: block; font-weight: 700; color: var(--ink); font-size: 14px; margin-bottom: 7px; }
.chanscen-form input, .chanscen-form select, .chanscen-form textarea { width: 100%; border: 1px solid #BDC8C2; border-radius: var(--radius-sm); padding: 13px 14px; background: var(--white); color: var(--ink); font: inherit; }
.chanscen-form textarea { min-height: 150px; resize: vertical; }
.chanscen-form input:focus, .chanscen-form select:focus, .chanscen-form textarea:focus { outline: 3px solid rgba(33, 105, 207, .18); border-color: var(--blue); }
.form-note { font-size: 13px; color: var(--muted); }
.form-status { grid-column: 1 / -1; padding: 12px 14px; border-left: 4px solid var(--green); border-radius: var(--radius-sm); background: var(--soft); }
.honeypot { position: absolute !important; left: -9999px !important; }
.error-page { padding: 120px 0; text-align: center; }
.error-code { font-size: 110px; line-height: 1; color: var(--green); font-weight: 800; }
.error-page .button-row { justify-content: center; }

/* 1.2.36: WordPress frontend layout locks.
   The live Gutenberg output adds layout classes that can override the static preview.
   Keep every page module on the approved Home module frame while preserving each module's internal grid. */
.page-entry.page-solutions > .wp-block-cover.alignfull.solutions-page-hero,
.page-entry.page-contact > .wp-block-group.alignfull.contact-page-hero,
.page-entry.page-contact > .page-hero.contact-page-hero,
.page-entry.page-about > .wp-block-group.alignfull.page-hero,
.page-entry.page-about > .page-hero {
  width: var(--shell) !important;
  max-width: var(--page-frame-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-entry.page-solutions > .wp-block-group.alignfull.anchor-nav {
  width: var(--shell) !important;
  max-width: var(--page-frame-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-entry.page-solutions > .wp-block-group.alignfull.solution-detail,
.page-entry.page-contact > .wp-block-group.alignfull.content-section,
.page-entry.page-about > .wp-block-group.alignfull.content-section,
.page-entry.page-about > .wp-block-group.alignfull.dark-band {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 24px;
  padding-right: 24px;
}

.page-entry.page-solutions .solution-detail > .wp-block-columns.site-shell.solution-detail-grid,
.page-entry.page-solutions .solution-detail > .site-shell.solution-detail-grid,
.page-entry.page-contact .content-section > .wp-block-columns.site-shell.contact-grid,
.page-entry.page-contact .content-section > .site-shell.contact-grid,
.page-entry.page-about .content-section > .wp-block-columns.site-shell.split-layout,
.page-entry.page-about .content-section > .site-shell.split-layout,
.page-entry.page-contact .content-section > .wp-block-group.site-shell,
.page-entry.page-solutions .solution-detail > .wp-block-group.site-shell,
.page-entry.page-about .content-section > .wp-block-group.site-shell,
.page-entry.page-about .dark-band > .wp-block-group.site-shell {
  width: var(--shell) !important;
  max-width: var(--page-frame-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-entry.page-solutions .wp-block-columns.solution-detail-grid,
.page-entry.page-contact .wp-block-columns.contact-grid,
.page-entry.page-about .wp-block-columns.split-layout {
  display: grid !important;
  align-items: center !important;
}

.page-entry.page-solutions .wp-block-columns.solution-detail-grid {
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr) !important;
}

.page-entry.page-contact .wp-block-columns.contact-grid {
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr) !important;
}

.page-entry.page-about .wp-block-columns.split-layout {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr) !important;
}

.page-entry.page-solutions .wp-block-columns.solution-detail-grid > .wp-block-column,
.page-entry.page-contact .wp-block-columns.contact-grid > .wp-block-column,
.page-entry.page-about .wp-block-columns.split-layout > .wp-block-column {
  max-width: none !important;
  flex-basis: auto !important;
  width: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Restore the Solutions scope block to the approved deep-green brand module.
   This section carries white text, so it must never receive the pale module overlay. */
.page-entry.page-solutions > .wp-block-group.alignfull.solution-detail.solutions-scope-section,
.page-solutions .solutions-scope-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(134, 177, 59, .16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(92, 186, 135, .12), transparent 32%),
    linear-gradient(135deg, #063B31 0%, #075042 48%, #042E26 100%) !important;
  color: var(--white) !important;
  padding-top: 86px !important;
  padding-bottom: 86px !important;
}

.page-solutions .solutions-scope-section > .site-shell,
.page-solutions .solutions-scope-section > .wp-block-group.site-shell {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: var(--module-padding-y) var(--module-padding-x) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: var(--radius-lg) !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(134, 177, 59, .14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22) !important;
}

.page-solutions .solutions-scope-section > .site-shell::before,
.page-solutions .solutions-scope-section > .wp-block-group.site-shell::before {
  display: none !important;
}

.page-solutions .solutions-scope-section h2,
.page-solutions .solutions-scope-section h3 {
  color: var(--white) !important;
}

.page-solutions .solutions-scope-section p,
.page-solutions .solutions-scope-section li {
  color: rgba(255, 255, 255, .82) !important;
}

.page-solutions .solutions-scope-section .eyebrow {
  color: var(--primary) !important;
}

.page-solutions .solutions-scope-section .scope-card,
.page-solutions .solutions-scope-section .solutions-scope-note,
.page-solutions .solutions-scope-section .section-head > p {
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .16) !important;
  color: var(--white) !important;
}

/* Contact page: use the approved swapped treatment.
   The inquiry form becomes a deep-green brand module; the next-step CTA becomes a pale content card. */
.page-entry.page-contact > .wp-block-group.alignfull.contact-page-content,
.page-contact .contact-page-content {
  background:
    radial-gradient(circle at 10% 12%, rgba(134, 177, 59, .16), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(92, 186, 135, .12), transparent 32%),
    linear-gradient(135deg, #063B31 0%, #075042 48%, #042E26 100%) !important;
  color: var(--white) !important;
  padding-top: 86px !important;
  padding-bottom: 86px !important;
}

.page-contact .contact-page-content > .contact-grid,
.page-contact .contact-page-content > .wp-block-columns.contact-grid {
  padding: var(--module-padding-y) var(--module-padding-x) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  border-radius: var(--radius-lg) !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(134, 177, 59, .14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22) !important;
}

.page-contact .contact-page-content > .contact-grid::before,
.page-contact .contact-page-content > .wp-block-columns.contact-grid::before {
  display: none !important;
}

.page-contact .contact-page-content h2,
.page-contact .contact-page-content h3,
.page-contact .contact-page-content label,
.page-contact .contact-page-content strong {
  color: var(--white) !important;
}

.page-contact .contact-page-content p,
.page-contact .contact-page-content li {
  color: rgba(255, 255, 255, .84) !important;
}

.page-contact .contact-page-content .eyebrow {
  color: var(--primary) !important;
}

.page-contact .contact-page-content .contact-panel {
  background: rgba(255, 255, 255, .10) !important;
  border: 1px solid rgba(255, 255, 255, .18);
}

.page-contact .contact-page-content .contact-list li {
  border-color: rgba(255, 255, 255, .18);
}

.page-contact .contact-page-content a {
  color: var(--soft);
}

.page-contact .contact-page-content input,
.page-contact .contact-page-content select,
.page-contact .contact-page-content textarea {
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
}

.page-entry.page-contact > .wp-block-group.alignfull.contact-next-step,
.page-contact .contact-next-step {
  background: transparent !important;
  color: var(--ink) !important;
}

.page-contact .contact-next-step > .site-shell,
.page-contact .contact-next-step > .wp-block-group.site-shell {
  background:
    radial-gradient(circle at 12% 8%, rgba(134, 177, 59, .08), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(92, 186, 135, .07), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(246, 249, 241, .78) 100%) !important;
  border: 1px solid rgba(220, 228, 223, .72) !important;
  box-shadow: none !important;
}

.page-contact .contact-next-step > .site-shell::before,
.page-contact .contact-next-step > .wp-block-group.site-shell::before {
  display: none !important;
}

.page-contact .contact-next-step h2,
.page-contact .contact-next-step h3 {
  color: var(--ink) !important;
}

.page-contact .contact-next-step p {
  color: var(--muted) !important;
}

.page-contact .contact-next-step .eyebrow {
  color: var(--secondary) !important;
}

/* Footer */
.footer-cta { background: var(--white); padding: 28px 0 0; }
.footer-cta-card { background: var(--green); color: var(--white); border-radius: var(--home-radius) var(--home-radius) 0 0; padding: 52px 64px; }
.footer-cta h2 { color: var(--white); font-size: 36px; margin: 0; }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.site-footer { background: var(--green-deep); color: rgba(255, 255, 255, .78); padding: 66px 0 22px; }
.site-footer h2 { color: var(--white); font-size: 16px; }
.site-footer a { color: var(--soft); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 70px; }
.footer-brand img { max-width: 200px; max-height: 58px; margin-bottom: 22px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 8px 0; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; }

@media (max-width: 1100px) {
  .primary-nav ul { gap: 24px; }
  .site-brand { width: 205px; }
  .home-hero-copy { padding-left: 72px; }
  .home-image-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .solutions-scope-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  h1 { font-size: 48px; }
  h2 { font-size: 38px; }
  .utility-inner { grid-template-columns: 1fr auto; }
  .utility-inner > p { display: none; }
  .header-inner { height: 78px; }
  .site-brand { width: 190px; }
  .menu-toggle { display: block; margin-left: auto; }
  .primary-nav { display: none; position: absolute; top: 78px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--line); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: block; padding: 16px 24px 24px; }
  .primary-nav a { padding: 13px 8px; }
  .primary-nav .menu-item:last-child a { text-align: center; margin-top: 8px; }
  .home-hero-card { min-height: 520px; }
  .home-hero-copy { width: min(720px, calc(100% - 48px)); padding: 76px 0 70px 48px; }
  .home-hero-card h1 { font-size: 48px; }
  .home-intro-columns, .home-proof-columns, .home-manufacturing-columns { gap: 40px; }
  .home-intro-title h2 { font-size: 40px; }
  .home-image-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-card:last-child { grid-column: 1 / -1; }
  .home-capability-heading { grid-template-columns: 1fr; gap: 16px; }
  .home-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-intro-section .home-section-inner { padding: 48px 42px 40px; }
  .home-intro-copy { max-width: none; margin-left: 0; }
  .home-section-heading, .section-head, .split-layout, .solution-detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .solution-grid, .product-grid, .value-grid, .process-grid, .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-grid { grid-template-columns: 1fr; }
  .solutions-scope-section .section-head { grid-template-columns: 1fr; }
  .about-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-timeline::before { display: none; }
  .contact-map-card { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .anchor-nav { top: 78px; }
  body.admin-bar .anchor-nav { top: 110px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 600px) {
  :root {
    --page-frame-gutter: 28px;
    --shell: min(var(--page-frame-max), calc(100vw - var(--page-frame-gutter)));
    --home-frame: var(--shell);
  }
  body { font-size: 16px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .utility-bar { min-height: 44px; }
  .utility-inner { min-height: 44px; }
  .utility-social { gap: 14px; }
  .utility-contact span:last-child { display: none; }
  .site-brand { width: 178px; }
  .home-hero-section { padding: 0 14px; }
  .home-hero-card { min-height: 610px; border-radius: 16px; }
  .home-hero-copy { width: calc(100% - 40px); padding: 42px 0 36px 20px; }
  .home-hero-card h1 { font-size: 34px; line-height: 1.08; }
  .home-hero-card .home-hero-lead { font-size: 16px; line-height: 1.55; }
  .home-hero-actions { display: grid !important; grid-template-columns: 1fr; gap: 10px; width: 100%; margin-top: 22px; }
  .home-hero-actions .wp-block-button__link { min-height: 46px; padding: 10px 18px; }
  .home-hero-actions .wp-block-button, .home-hero-actions .wp-block-button__link { width: 100%; }
  .home-section { padding: 64px 14px; }
  .home-intro-section .home-section-inner { padding: 38px 22px 30px; }
  .home-intro-columns, .home-proof-columns, .home-manufacturing-columns { display: grid !important; grid-template-columns: 1fr; gap: 28px; }
  .home-intro-title h2 { font-size: 34px; }
  .home-image-row { grid-template-columns: 1fr; gap: 16px; margin-top: 38px; }
  .home-solution-card img { height: 220px; }
  .home-solution-card-label { min-height: 64px; }
  .home-section-heading { display: grid !important; grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
  .home-product-grid, .home-process-grid, .home-value-grid, .home-capability-grid { grid-template-columns: 1fr; }
  .home-capability-grid { margin-top: 34px; }
  .home-capability-item { min-height: 0; padding: 26px 24px; }
  .home-capability-item::before { margin-bottom: 24px; }
  .home-product-card:last-child { grid-column: auto; }
  .home-product-card > .wp-block-image img { height: 230px; }
  .home-manufacturing-section { padding: 64px 14px; }
  .page-about .dark-band,
  .page-solutions .solutions-scope-section,
  .page-contact .content-section.soft {
    padding-left: 14px;
    padding-right: 14px;
  }
  .home-inline-cta { padding: 28px 24px; }
  .hero { min-height: 540px; }
  .hero-content { padding: 72px 0 52px; }
  .hero p:not(.eyebrow) { font-size: 17px; }
  .content-section, .solution-detail { padding: 64px 0; }
  .page-hero { min-height: 280px; }
  .page-hero .site-shell { width: min(var(--content-narrow), calc(100% - var(--page-frame-gutter))); }
  .solutions-page-hero .wp-block-cover__inner-container { width: var(--shell); padding: 58px 0 44px; }
  .solutions-page-hero { min-height: 340px !important; }
  .solution-detail { scroll-margin-top: 138px; }
  .anchor-nav .site-shell { gap: 18px; padding-left: 14px; padding-right: 14px; }
  .contact-panel { padding: 28px 24px; }
  .solution-grid, .product-grid, .value-grid, .process-grid, .posts-grid { grid-template-columns: 1fr; }
  .solutions-scope-grid, .about-timeline, .contact-faq-grid { grid-template-columns: 1fr; }
  .solutions-scope-section .section-head > p,
  .solutions-scope-note,
  .contact-map-copy,
  .contact-faq-grid .faq-card { padding: 24px; }
  .about-timeline-item { padding: 70px 22px 24px; }
  .product-card img { height: 220px; }
  .cta-panel { grid-template-columns: 1fr; padding: 30px; }
  .page-hero { padding: 72px 0 54px; }
  .metric-row { grid-template-columns: 1fr; }
  .chanscen-form { grid-template-columns: 1fr; }
  .chanscen-form .field-full { grid-column: auto; }
  .footer-cta { padding: 14px 14px 0; }
  .footer-cta-card { width: 100%; border-radius: 16px 16px 0 0; padding: 38px 28px; }
  .footer-cta-inner, .footer-bottom { display: block; }
  .footer-cta .button { margin-top: 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom div { margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .menu-toggle > span:not(.sr-only) { transition: none; }
  .cursor-glow { display: none; }
}

/* Home V3 approved content */
.home-v3 { --green: #008a70; --green-dark: #083d34; --leaf: #7cb342; --ink: #252a2d; --muted: #687773; --line: #dfe8e4; --soft: #f4f8f5; --white: #fff; --shadow: 0 14px 34px rgba(9, 40, 34, .10); color: var(--ink); }
.home-v3 * { box-sizing: border-box; }
.home-v3 a { color: inherit; text-decoration: none; }
.home-v3 img { display: block; max-width: 100%; object-fit: cover; }
.home-v3 .wrap { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.home-v3 .hero { position: relative; width: 100%; max-width: 1280px; min-height: 470px; margin: 0 auto; border-radius: 24px; overflow: hidden; box-shadow: none; }
.home-v3 .hero-slider { position: absolute; inset: 0; background: #123; }
.home-v3 .hero-slider::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,52,43,.78) 0%, rgba(8,52,43,.54) 46%, rgba(8,52,43,.28) 100%); z-index: 5; }
.home-v3 .hero-slider img { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; animation: chanscenHomeV3Fade 20s infinite; }
.home-v3 .hero-slider img:nth-child(2) { animation-delay: 5s; }
.home-v3 .hero-slider img:nth-child(3) { animation-delay: 10s; }
.home-v3 .hero-slider img:nth-child(4) { animation-delay: 15s; }
@keyframes chanscenHomeV3Fade { 0% { opacity: 0; } 8% { opacity: 1; } 25% { opacity: 1; } 33% { opacity: 0; } 100% { opacity: 0; } }
.home-v3 .hero-copy { position: relative; z-index: 10; width: min(750px, calc(100% - 72px)); padding: 72px 0 64px 82px; color: #fff; }
.home-v3 .eyebrow { margin: 0 0 18px; color: var(--green); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 800; }
.home-v3 .hero .eyebrow { color: #99c53d; }
.home-v3 h1, .home-v3 h2, .home-v3 h3, .home-v3 p { margin-top: 0; }
.home-v3 h1 { font-size: 52px; line-height: 1.08; margin-bottom: 24px; letter-spacing: 0; font-weight: 800; max-width: 660px; color: #fff; }
.home-v3 h2 { font-size: 36px; line-height: 1.18; margin-bottom: 18px; letter-spacing: 0; font-weight: 760; color: var(--ink); }
.home-v3 h3 { font-size: 20px; line-height: 1.28; margin-bottom: 12px; letter-spacing: 0; font-weight: 760; color: var(--ink); }
.home-v3 p, .home-v3 li { color: var(--muted); font-size: 16px; line-height: 1.66; }
.home-v3 .hero p { color: rgba(255,255,255,.9); font-size: 19px; max-width: 600px; }
.home-v3 .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.home-v3 .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 27px; border-radius: 999px; font-weight: 800; border: 1px solid rgba(255,255,255,.45); }
.home-v3 .btn.light { color: var(--ink); background: #fff; border-color: #fff; }
.home-v3 .btn.secondary { color: #fff; background: rgba(255,255,255,.08); }
.home-v3 .btn.primary { background: var(--green); color: #fff; }
.home-v3 .intro { margin-top: 56px; padding: 48px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(120deg, #fbfdf9, #f1faf5); display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.home-v3 .section { padding: 64px 0; }
.home-v3 .muted { background: var(--soft); }
.home-v3 .section-head { max-width: 850px; margin-bottom: 30px; }
.home-v3 .section-head.split { max-width: none; display: grid; grid-template-columns: 1fr .9fr; gap: 56px; align-items: end; }
.home-v3 .product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.home-v3 .product-grid article, .home-v3 .solution-grid article, .home-v3 .feature-list article, .home-v3 .case-grid article { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: 0 6px 18px rgba(8,61,52,.045); }
.home-v3 .product-grid img { width: 100%; height: 196px; object-position: center 45%; }
.home-v3 .product-grid h3, .home-v3 .product-grid p { padding-left: 22px; padding-right: 22px; }
.home-v3 .product-grid h3 { margin-top: 20px; min-height: 52px; }
.home-v3 .product-grid p { padding-bottom: 20px; font-size: 15px; line-height: 1.6; }
.home-v3 .solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.home-v3 .solution-grid article { position: relative; min-height: 292px; }
.home-v3 .solution-grid img { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-v3 .solution-grid article:nth-child(3) img { object-position: center 42%; }
.home-v3 .solution-grid article:nth-child(5) img { object-position: center 35%; }
.home-v3 .solution-grid article::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,61,51,.14), rgba(7,61,51,.88)); }
.home-v3 .solution-grid div { position: absolute; left: 24px; right: 24px; bottom: 18px; z-index: 2; }
.home-v3 .solution-grid h3, .home-v3 .solution-grid p { color: #fff; }
.home-v3 .solution-grid p { font-size: 15px; line-height: 1.55; margin-bottom: 0; }
.home-v3 .choose { display: grid; grid-template-columns: 1fr .82fr; gap: 48px; align-items: center; }
.home-v3 .choose img, .home-v3 .supply > img, .home-v3 .quote-section img { border-radius: 10px; height: 420px; width: 100%; box-shadow: var(--shadow); }
.home-v3 .supply > img { object-position: center 54%; }
.home-v3 .choose ol { padding-left: 22px; }
.home-v3 .choose li { margin-bottom: 10px; }
.home-v3 .feature-list { display: grid; gap: 16px; }
.home-v3 .feature-list article { display: grid; grid-template-columns: 260px 1fr; align-items: center; }
.home-v3 .feature-list img { width: 260px; height: 170px; object-position: center 45%; }
.home-v3 .feature-list article:nth-child(2) img { object-position: center 55%; }
.home-v3 .feature-list article:nth-child(3) img { object-position: center 35%; }
.home-v3 .feature-list div { padding: 22px 30px; }
.home-v3 .feature-list p { margin-bottom: 0; }
.home-v3 .supply { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.home-v3 .scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.home-v3 .scope-grid div { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.home-v3 .scope-grid strong { color: var(--green-dark); }
.home-v3 .scope-grid p { margin: 8px 0 0; font-size: 15px; line-height: 1.55; }
.home-v3 .manufacturing { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.home-v3 .capabilities { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.home-v3 .capabilities span, .home-v3 .quote-items span { border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; color: var(--green-dark); background: #fff; font-weight: 700; font-size: 14px; }
.home-v3 .manufacturing-images { display: grid; grid-template-columns: 1.08fr .92fr; gap: 16px; }
.home-v3 .manufacturing-images img { height: 430px; width: 100%; border-radius: 10px; box-shadow: var(--shadow); object-position: center 50%; }
.home-v3 .manufacturing-images img:first-child { object-position: center 46%; }
.home-v3 .manufacturing-images img:nth-child(2) { object-position: center 42%; }
.home-v3 .case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.home-v3 .case-grid img { height: 306px; width: 100%; }
.home-v3 .case-grid h3, .home-v3 .case-grid p { padding-left: 24px; padding-right: 24px; }
.home-v3 .case-grid h3 { margin-top: 24px; }
.home-v3 .case-grid p { padding-bottom: 24px; }
.home-v3 .quote-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.home-v3 .quote-section img { object-position: center 52%; }
.home-v3 .quote-items { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.home-v3 .faq details { border-top: 1px solid var(--line); padding: 22px 0; }
.home-v3 .faq details:last-child { border-bottom: 1px solid var(--line); }
.home-v3 .faq summary { cursor: pointer; font-size: 20px; font-weight: 800; color: var(--green-dark); }
.home-v3 .faq details p { max-width: 840px; margin: 12px 0 0; }
.footer-cta { padding: 86px 0 0; background: radial-gradient(circle at 22% 48%, rgba(78,132,71,.45), transparent 34%), linear-gradient(135deg, #0c4a31 0%, #073f34 50%, #04362d 100%); color: #fff; }
.footer-cta-card { padding: 58px 64px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: linear-gradient(120deg, rgba(255,255,255,.10), rgba(255,255,255,.035)); box-shadow: 0 24px 64px rgba(0,0,0,.18); }
.footer-cta-inner { display: grid; grid-template-columns: minmax(360px, 480px) 1fr; gap: 56px; align-items: center; }
.footer-cta-inner img { width: 100%; height: 360px; border-radius: 10px; box-shadow: 0 16px 34px rgba(0,0,0,.18); order: 2; object-fit: cover; object-position: center top; }
.footer-cta p { color: rgba(255,255,255,.82); }
.footer-cta .eyebrow { color: #99c53d; }
.footer-cta h2 { max-width: 740px; color: #fff; font-size: 40px; line-height: 1.18; }
.footer-cta .button { margin-top: 12px; border-color: #fff; }
.site-footer { background: linear-gradient(135deg, #073f34 0%, #04362d 100%); color: rgba(255,255,255,.78); padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr .8fr; gap: 44px; padding: 44px 0 38px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-brand img { max-width: 190px; max-height: 58px; margin-bottom: 18px; }
.site-footer h2 { color: #fff; font-size: 15px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.2px; }
.site-footer a { display: block; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.55; margin-bottom: 10px; }
.site-footer p { max-width: 390px; color: rgba(255,255,255,.74); font-size: 15px; }
.footer-bottom { margin-top: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.10); display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a { color: rgba(255,255,255,.72); }
@media (max-width: 980px) { .home-v3 .hero-copy { padding: 58px 26px; } .home-v3 .hero { min-height: 520px; } .home-v3 h1 { font-size: 40px; } .home-v3 h2 { font-size: 31px; } .home-v3 .intro, .home-v3 .section-head.split, .home-v3 .choose, .home-v3 .supply, .home-v3 .manufacturing, .home-v3 .quote-section, .footer-cta-inner, .footer-grid { grid-template-columns: 1fr; } .footer-cta-inner img { order: 0; } .footer-grid { gap: 22px; } .footer-bottom { flex-direction: column; } .home-v3 .product-grid, .home-v3 .solution-grid, .home-v3 .case-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .home-v3 .wrap { width: min(100% - 28px, 1286px); } .home-v3 .hero { min-height: 610px; border-radius: 16px; } .home-v3 .hero-copy { width: calc(100% - 40px); padding: 42px 0 36px 20px; } .home-v3 h1 { font-size: 34px; } .home-v3 .hero p { font-size: 16px; } .home-v3 .actions { display: grid; grid-template-columns: 1fr; } .home-v3 .btn { width: 100%; min-height: 46px; } .home-v3 .intro { padding: 34px 22px; gap: 24px; } .home-v3 .product-grid, .home-v3 .solution-grid, .home-v3 .case-grid, .home-v3 .scope-grid, .home-v3 .manufacturing-images { grid-template-columns: 1fr; } .home-v3 .feature-list article { grid-template-columns: 1fr; } .home-v3 .feature-list img { width: 100%; height: 210px; } .home-v3 .choose img, .home-v3 .supply > img, .home-v3 .quote-section img, .home-v3 .manufacturing-images img { height: 280px; } .footer-cta { padding: 64px 14px 0; } .footer-cta-card { padding: 34px 24px; } .footer-cta h2 { font-size: 31px; } .footer-cta-inner img { height: 280px; } .site-footer { padding-left: 14px; padding-right: 14px; } }

