:root {
  --ink: #241a0d;
  --muted: #6d6047;
  --honey: #f6c63d;
  --honey-dark: #d99b10;
  --sun: #fff3b8;
  --leaf: #2d6b3f;
  --leaf-dark: #174a2a;
  --cream: #fff9e9;
  --paper: #f8f1dc;
  --white: #ffffff;
  --line: rgba(86, 69, 31, 0.18);
  --shadow: 0 24px 70px rgba(36, 26, 13, 0.18);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  cursor: url("../images/bee-cursor.png") 16 16, auto;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a,
button,
[role="button"],
input[type="submit"],
input[type="button"],
select,
label[for] {
  cursor: url("../images/bee-cursor-closed.png") 16 16, pointer;
}
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -52px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 249, 233, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.1;
}
.brand-name {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: clamp(1.32rem, 2vw, 1.82rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-name-line,
.brand-name-sub {
  display: block;
}
.brand-name-line { color: #3f3b34; }
.brand-name-sub {
  color: var(--muted);
  font-size: 0.38em;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}
.brand-mark {
  position: relative;
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  display: block;
}
.brand-logo {
  position: absolute;
  inset: 0;
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 50%;
  transition: opacity 160ms ease, transform 160ms ease;
}
.brand-logo-closed {
  opacity: 0;
}
.brand:hover .brand-logo-closed,
.brand:focus-visible .brand-logo-closed {
  opacity: 1;
  transform: scale(1.02);
}
.brand:hover .brand-logo-open,
.brand:focus-visible .brand-logo-open {
  opacity: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] { color: var(--leaf-dark); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: url("../images/bee-cursor-closed.png") 16 16, pointer;
}
.button-primary,
.header-cta {
  color: var(--ink);
  background: var(--honey);
  box-shadow: 0 10px 24px rgba(217, 155, 16, 0.25);
}
.button-primary:hover,
.header-cta:hover { background: #ffd95d; }
.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.56);
  background: rgba(36, 26, 13, 0.36);
}
.button-secondary.dark {
  color: var(--leaf-dark);
  border-color: rgba(45, 107, 63, 0.24);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-motion {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
}
.hero-motion,
.hero-image { object-fit: cover; }
.hero-image { z-index: 0; }
.hero-motion {
  z-index: 1;
  transform: scale(1.04);
  transform-origin: center;
}
.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(23, 74, 42, 0.9), rgba(36, 26, 13, 0.58) 48%, rgba(36, 26, 13, 0.2)),
    linear-gradient(0deg, rgba(36, 26, 13, 0.35), transparent);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 118px 0 70px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--honey-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero .eyebrow,
.cta-band .eyebrow { color: var(--sun); }
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}
.hero h1 { font-size: clamp(1.0rem, 4.1vw, 5.6rem); }
.hero p:not(.eyebrow) {
  max-width: 800px;
  color: rgba(255,255,255,0.88);
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.intro-grid,
.page-hero-grid,
.clean-energy-grid,
.cta-inner,
.split-grid,
.contact-grid,
.error-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: center;
}
.intro-grid { padding: 40px 0; }
.intro-grid h2,
.section h2,
.page-hero h1,
.cta-band h2,
.error-section h1 { font-size: clamp(2.1rem, 3.0vw, 4.2rem); }
.intro-grid p,
.section-heading p,
.clean-energy-grid p,
.page-hero-grid p,
.detail-card p,
.detail-card li,
.contact-card p,
.error-section p { color: var(--muted); }

.credential-band {
  padding: 42px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 74, 42, 0.98), rgba(36, 26, 13, 0.92)),
    var(--leaf-dark);
}
.credential-inner {
  display: block;
}
.credential-logo-card {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 168px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
}
.credential-logo-card img {
  width: min(100%, 720px);
  height: auto;
}

.program-band {
  padding: 46px 0;
  background: #f0e5c8;
  border-bottom: 1px solid var(--line);
}
.program-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
}
.program-inner h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
}
.program-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.program-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(217, 155, 16, 0.28);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(36, 26, 13, 0.08);
  font-weight: 800;
}
.program-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--honey);
  border: 3px solid var(--leaf-dark);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section { padding: 92px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card,
.benefit-grid article,
.detail-card,
.contact-card,
.contact-form,
.modal-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.service-card { overflow: hidden; box-shadow: 0 18px 44px rgba(36, 26, 13, 0.08); }
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card div,
.benefit-grid article,
.detail-card,
.contact-card,
.contact-form { padding: 26px; }
.service-card h3,
.benefit-grid strong,
.detail-card h2 { margin: 0 0 10px; }
.service-card p,
.benefit-grid p { margin: 0; color: var(--muted); }

.clean-energy-section {
  background:
    linear-gradient(135deg, rgba(255, 243, 184, 0.92), rgba(255, 249, 233, 0.95)),
    radial-gradient(circle at 20% 20%, rgba(246, 198, 61, 0.35), transparent 28%);
}
.clean-energy-media {
  overflow: hidden;
  border: 1px solid rgba(36, 26, 13, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.clean-energy-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.benefits-section { background: var(--paper); }
.cta-band {
  padding: 54px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf-dark), var(--leaf));
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(255, 249, 233, 0.96), rgba(255, 243, 184, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(246, 198, 61, 0.38), transparent 26%);
  border-bottom: 1px solid var(--line);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.services-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}
.services-hero .page-hero-grid > div {
  max-width: 980px;
}
.about-hero,
.contact-hero { background-color: var(--paper); }
.contact-video-hero {
  min-height: 440px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 74, 42, 0.96), rgba(36, 26, 13, 0.78)),
    url("../images/consultation.jpg") center / cover no-repeat;
}
.contact-video-hero .eyebrow { color: var(--sun); }
.contact-video-hero .page-hero-grid p { color: rgba(255, 255, 255, 0.88); }
.contact-video-bg,
.contact-hero-scrim {
  position: absolute;
  inset: 0;
}
.contact-video-bg {
  z-index: 0;
  overflow: hidden;
  background: url("../images/consultation.jpg") center / cover no-repeat;
}
.contact-video-bg video {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  pointer-events: none;
}
.contact-hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 74, 42, 0.92), rgba(36, 26, 13, 0.72) 52%, rgba(36, 26, 13, 0.5)),
    linear-gradient(0deg, rgba(36, 26, 13, 0.38), rgba(36, 26, 13, 0.18));
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.detail-card img,
.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 22px;
}
.detail-card ul { margin: 16px 0 0; padding-left: 20px; }
.media-frame {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.media-frame img { margin: 0; }
.soft-image-frame {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(36, 26, 13, 0.14);
  overflow: hidden;
}
.soft-image-frame img {
  border-radius: 18px;
}
.section-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.stat-row div {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.stat-row strong,
.stat-row span { display: block; }
.stat-row strong { font-size: 1.3rem; }
.stat-row span { color: var(--muted); }
.values-section { background: var(--white); }

.contact-grid { align-items: start; }
.contact-card,
.contact-form { box-shadow: 0 18px 44px rgba(36, 26, 13, 0.08); }
.contact-card a {
  display: block;
  margin: 10px 0;
  color: var(--leaf-dark);
  font-weight: 900;
}
.contact-card .button { margin-top: 20px; }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.contact-fields {
  display: contents;
}
.full { grid-column: 1 / -1; }
label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
}
textarea { resize: vertical; }
.sms-opt-in {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.45;
}
.sms-opt-in input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--forest);
}
.sms-opt-in a {
  color: var(--forest);
  font-weight: 900;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(246, 198, 61, 0.42);
  border-color: var(--honey-dark);
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: 8px 0 0;
  padding: 12px 14px;
  color: #6c2d1d;
  background: #fff4f0;
  border: 1px solid rgba(178, 64, 40, 0.22);
  border-radius: 12px;
  font-weight: 800;
}
.form-status.is-success {
  color: var(--leaf-dark);
  background: #edf7ee;
  border-color: rgba(45, 107, 63, 0.2);
}
.button:disabled {
  opacity: 0.68;
  cursor: wait;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255,255,255,0.82);
  background: var(--ink);
}
.footer-grid { align-items: start; grid-template-columns: 1.2fr 1fr 1fr; }
.site-footer strong,
.site-footer a { color: var(--white); }
.site-footer a { display: block; margin-top: 6px; text-decoration: none; }
.site-footer span {
  display: block;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-legal {
  margin-top: 30px;
  padding-top: 20px;
  color: rgba(255,255,255,0.68);
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.7rem;
  text-align: center;
}
.footer-legal a {
  display: inline;
  margin: 0;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.has-prototype-notice {
  padding-bottom: 104px;
}

.prototype-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  padding: 14px max(18px, calc((100vw - 1160px) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(36, 26, 13, 0.14);
  box-shadow: 0 -14px 40px rgba(36, 26, 13, 0.14);
}

.prototype-notice strong {
  display: inline;
  color: var(--leaf-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prototype-notice p {
  display: inline;
  margin: 0 0 0 10px;
  color: #5b513b;
  font-size: 0.78rem;
  line-height: 1.55;
}

.bee-fab {
  position: fixed;
  right: 22px;
  bottom: 126px;
  z-index: 25;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--honey);
  background: #fff6cf;
  border: 3px solid var(--leaf-dark);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(36, 26, 13, 0.18), 0 3px 8px rgba(23, 74, 42, 0.16);
  cursor: url("../images/bee-cursor-closed.png") 16 16, pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.bee-fab:hover,
.bee-fab:focus {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(36, 26, 13, 0.22), 0 5px 12px rgba(23, 74, 42, 0.2);
}
.bee-fab img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
}

.estimate-modal[hidden] { display: none; }
.estimate-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 26, 13, 0.58);
  animation: fadeIn 160ms ease both;
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 26px;
  box-shadow: var(--shadow);
  animation: modalIn 180ms ease both;
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: url("../images/bee-cursor-closed.png") 16 16, pointer;
}
.modal-head h2 { padding-right: 44px; font-size: clamp(1.9rem, 4vw, 2.9rem); }
.modal-subtitle {
  max-width: 560px;
  margin: 12px 44px 0 0;
  color: var(--muted);
  font-size: 1rem;
}
.progress {
  height: 9px;
  margin: 20px 0 22px;
  background: var(--paper);
  border-radius: 999px;
  overflow: hidden;
}
.progress span {
  display: block;
  width: 33%;
  height: 100%;
  background: linear-gradient(90deg, var(--honey-dark), var(--honey));
  transition: width 180ms ease;
}
.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.form-step.is-active { display: grid; gap: 14px; }
.form-step legend {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 900;
}
.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}
.consent input { width: 18px; min-height: 18px; margin-top: 3px; }
.file-label span,
.field-note {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}
.option-toggle {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}
.option-toggle input {
  width: 18px;
  min-height: 18px;
}
.consultation-fields {
  grid-template-columns: 1fr;
}
.in-person-address {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf6;
}
.in-person-address[hidden] {
  display: none;
}
.recaptcha-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.form-success {
  padding: 22px;
  background: #edf7ee;
  border: 1px solid rgba(45, 107, 63, 0.2);
  border-radius: 14px;
}
.form-success strong { display: block; font-size: 1.2rem; }
.form-success .button { margin-top: 14px; }
.field-error {
  border-color: #b24028 !important;
  background: #fff4f0;
}

.not-found { min-height: 100vh; display: flex; flex-direction: column; }
.error-main { flex: 1; display: grid; }
.error-section { display: grid; align-items: center; padding: 92px 0; }
.error-badge {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--ink);
  background: var(--honey);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.error-badge span { font-size: clamp(4rem, 12vw, 7rem); font-weight: 900; line-height: 1; }
.error-badge strong { text-transform: uppercase; }

.legal-section {
  padding: 72px 0;
  background:
    radial-gradient(circle at top left, rgba(246, 198, 61, 0.18), transparent 32rem),
    var(--cream);
}
.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--forest);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}
.legal-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}
.legal-card a {
  color: var(--forest);
  font-weight: 800;
}
.legal-callout {
  margin: 24px 0 30px;
  padding: 20px 22px;
  border: 1px solid rgba(236, 183, 45, 0.55);
  border-left: 6px solid var(--gold);
  background: #fff8df;
  box-shadow: 0 12px 30px rgba(38, 28, 13, 0.08);
}
.legal-callout strong {
  display: block;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.legal-callout p {
  margin: 6px 0 0;
  color: #312b20;
  font-weight: 800;
  line-height: 1.55;
}
.legal-updated {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--honey-soft);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}
.legal-contact {
  margin-top: 18px;
  padding: 18px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .intro-grid,
  .page-hero-grid,
  .clean-energy-grid,
  .credential-inner,
  .program-inner,
  .cta-inner,
  .split-grid,
  .contact-grid,
  .error-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-grid,
  .benefit-grid,
  .service-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1160px); }
  .header-inner { min-height: 74px; }
  .brand-mark,
  .brand-logo { width: 60px; height: 60px; }
  .brand-mark { flex-basis: 60px; }
  .brand { gap: 8px; }
  .brand-name { font-size: clamp(1.08rem, 4.9vw, 1.32rem); }
  .hero { min-height: 700px; }
  .hero-motion { display: none; }
  .contact-video-bg { display: none; }
  .hero-content { padding: 90px 0 42px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero-actions,
  .hero-actions .button,
  .cta-actions,
  .cta-actions .button { width: 100%; }
  .section,
  .page-hero,
  .error-section { padding: 64px 0; }
  .service-grid,
  .benefit-grid,
  .service-detail-grid,
  .contact-form,
  .stat-row { grid-template-columns: 1fr; }
  .bee-fab {
    right: 14px;
    bottom: 84px;
    width: 62px;
    height: 62px;
  }
  .bee-fab img { width: 48px; height: 48px; }
  .estimate-modal { padding: 10px; align-items: end; }
  .modal-panel { max-height: calc(100vh - 20px); padding: 22px; border-radius: 18px 18px 0 0; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .button { width: 100%; }
  .has-prototype-notice { padding-bottom: 68px; }
  .prototype-notice { padding: 6px 9px; }
  .prototype-notice strong,
  .prototype-notice p {
    display: block;
    margin-left: 0;
    font-size: 0.56rem;
    line-height: 1.22;
  }
  .prototype-notice strong {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }
  .prototype-notice p { margin-top: 1px; }
  .footer-legal {
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion { display: none; }
  .contact-video-bg { display: none; }
}
