:root {
  --ink: #151716;
  --ink-2: #20231f;
  --paper: #f6f3ea;
  --paper-2: #ebe6d8;
  --muted: #716e65;
  --line: rgba(21, 23, 22, 0.14);
  --solar: #f3b414;
  --solar-2: #ffcf33;
  --moss: #60745a;
  --white-soft: #fffaf0;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(21, 23, 22, 0.22);
  --font-display: "Rajdhani", sans-serif;
  --font-body: "Afacad", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(21, 23, 22, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(246, 243, 234, 0.18);
  background: rgba(21, 23, 22, 0.86);
  color: var(--paper);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
  background: var(--solar);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: rgba(246, 243, 234, 0.62);
  font-size: 13px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(246, 243, 234, 0.82);
  font-size: 15px;
}

.nav a,
.header-cta {
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover {
  color: var(--solar-2);
}

.header-cta {
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.header-cta:hover {
  background: var(--solar);
}

.section-dark {
  background:
    radial-gradient(circle at 22% 18%, rgba(243, 180, 20, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(246, 243, 234, 0.055) 1px, transparent 1px) 0 0 / 90px 90px,
    var(--ink);
  color: var(--paper);
}

.hero {
  min-height: 100vh;
  padding: 132px 32px 30px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  width: 100%;
  max-width: 1220px;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1fr);
  gap: 48px;
  align-items: center;
  margin: 0 auto;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
}

.hero-grid > *,
.service-layout > *,
.split-feature > *,
.service-check > *,
.project-grid > *,
.why > *,
.faq-contact > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--solar);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 740px;
  margin-bottom: 28px;
  font-size: clamp(60px, 8vw, 126px);
}

h1 span {
  display: block;
}

h2 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 82px);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.hero-lead {
  max-width: 650px;
  color: rgba(246, 243, 234, 0.78);
  font-size: clamp(20px, 2vw, 25px);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--solar);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(246, 243, 234, 0.22);
  color: var(--paper);
}

.button-secondary:hover {
  border-color: var(--solar);
}

.solar-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-height: 620px;
  overflow: visible;
  background: none;
  box-shadow: none;
  --glow-x: 52%;
  --glow-y: 14%;
  --panel-light: 0.72;
}

.solar-stage::before {
  display: none;
  content: none;
}

.solar-stage::after {
  display: none;
  content: none;
}

.cursor-glow,
.light-point {
  position: absolute;
  left: var(--glow-x);
  top: var(--glow-y);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cursor-glow {
  z-index: 2;
  width: clamp(240px, 34vw, 460px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.32), rgba(245, 183, 0, 0.14) 30%, transparent 66%);
  filter: blur(30px);
  mix-blend-mode: screen;
  opacity: 0.86;
}

.light-point {
  z-index: 5;
  width: 68px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 223, 130, 0.64);
  background: rgba(245, 183, 0, 0.12);
  box-shadow: 0 0 50px rgba(245, 183, 0, 0.32);
}

.panel-scene {
  position: absolute;
  z-index: 3;
  right: -10%;
  bottom: 12%;
  width: min(840px, 122%);
  height: 70%;
  transform: rotate(270deg);
  transform-origin: 58% 62%;
}

.hero-panel {
  position: absolute;
  top: 8%;
  left: 39.5%;
  width: 21%;
  height: 84%;
  filter:
    drop-shadow(0 34px 44px rgba(0, 0, 0, 0.36))
    brightness(calc(0.74 + var(--panel-light) * 0.34));
}

.line-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 223, 130, calc(0.22 + var(--panel-light) * 0.34));
  background:
    linear-gradient(130deg, transparent 0 44%, rgba(255, 244, 204, calc(0.02 + var(--panel-light) * 0.12)) 49%, transparent 58%),
    linear-gradient(180deg, rgba(246, 243, 234, 0.055), rgba(246, 243, 234, 0.01)),
    rgba(21, 23, 22, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(246, 243, 234, calc(0.07 + var(--panel-light) * 0.18)),
    inset 0 0 44px rgba(245, 183, 0, calc(0.02 + var(--panel-light) * 0.12)),
    0 0 58px rgba(245, 183, 0, calc(0.03 + var(--panel-light) * 0.13));
}

.line-panel::before,
.line-panel::after,
.panel-cells,
.panel-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.line-panel::before {
  content: "";
  inset: 9% 7%;
  border: 1px solid rgba(255, 226, 143, calc(0.18 + var(--panel-light) * 0.32));
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 226, 143, calc(0.16 + var(--panel-light) * 0.34)) 0 1px,
      transparent 1px calc(100% / 6)
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 226, 143, calc(0.15 + var(--panel-light) * 0.3)) 0 1px,
      transparent 1px calc(100% / 12)
    );
}

.line-panel::after {
  content: "";
  inset: 5%;
  border: 1px solid rgba(246, 243, 234, calc(0.08 + var(--panel-light) * 0.16));
}

.panel-cells {
  inset: 9% 7%;
  background:
    radial-gradient(circle at 8.33% 16.66%, rgba(246, 243, 234, 0.48) 0 2px, transparent 2.8px),
    radial-gradient(circle at 25% 16.66%, rgba(246, 243, 234, 0.38) 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 41.66% 16.66%, rgba(246, 243, 234, 0.38) 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 58.33% 16.66%, rgba(246, 243, 234, 0.38) 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 75% 16.66%, rgba(246, 243, 234, 0.38) 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 91.66% 16.66%, rgba(246, 243, 234, 0.48) 0 2px, transparent 2.8px);
  background-size: 100% calc(100% / 3);
  opacity: calc(0.35 + var(--panel-light) * 0.5);
}

.panel-sheen {
  background:
    linear-gradient(105deg, transparent 10%, rgba(255, 255, 255, calc(0.03 + var(--panel-light) * 0.1)) 43%, transparent 72%),
    radial-gradient(ellipse 112% 34% at 50% 48%, rgba(245, 183, 0, calc(0.1 + var(--panel-light) * 0.16)), transparent 72%);
  mix-blend-mode: screen;
}

.panel-contact {
  position: absolute;
  right: 20%;
  bottom: 4%;
  left: 17%;
  height: 24px;
  background: rgba(0, 0, 0, 0.38);
  filter: blur(22px);
  transform: rotate(-2deg);
}

.energy-readout {
  position: absolute;
  z-index: 6;
  top: 42px;
  right: 4%;
  width: min(238px, calc(100% - 40px));
  padding: 0 0 14px;
  border: 1px solid rgba(246, 243, 234, 0.22);
  border-width: 0 0 1px;
  background: transparent;
  color: var(--paper);
  backdrop-filter: none;
}

.readout-label {
  display: block;
  margin-bottom: 12px;
  color: var(--solar);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.energy-readout strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.4vw, 78px);
  line-height: 0.78;
}

.energy-readout small {
  display: block;
  margin-top: 10px;
  color: rgba(246, 243, 234, 0.66);
}

.panel-guide {
  position: absolute;
  z-index: 6;
  right: 2%;
  bottom: 24px;
  left: 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: rgba(246, 243, 234, 0.56);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-guide::before {
  display: none;
  content: none;
}

.panel-guide span:nth-child(2) {
  text-align: center;
  color: rgba(245, 183, 0, 0.84);
}

.panel-guide span:nth-child(3) {
  text-align: right;
}

.hero-strip {
  display: grid;
  max-width: 1220px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 28px auto 0;
  border: 1px solid rgba(246, 243, 234, 0.12);
  background: rgba(246, 243, 234, 0.12);
}

.hero-strip span {
  padding: 18px;
  background: rgba(21, 23, 22, 0.8);
  color: rgba(246, 243, 234, 0.78);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
}

.services,
.process,
.projects,
.faq-contact {
  padding: 112px 32px;
}

.section-heading,
.service-layout,
.process-line,
.project-grid,
.faq-contact {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: block;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 940px;
  margin-bottom: 0;
  text-align: left;
}

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

.service-main,
.service-panel {
  min-height: 340px;
  padding: clamp(28px, 4vw, 54px);
}

.service-main {
  background: var(--white-soft);
  border: 1px solid var(--line);
}

.service-number {
  display: block;
  margin-bottom: 40px;
  color: var(--solar);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.8;
}

.service-main p,
.service-panel p,
.feature-copy p,
.service-check-copy p,
.why-list p,
.project-small p,
.project-large p,
.faq p {
  color: var(--muted);
}

.service-main ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.service-main li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.panel-yellow {
  background: var(--solar);
  color: var(--ink);
}

.panel-yellow .service-number {
  color: rgba(21, 23, 22, 0.42);
}

.panel-yellow p {
  color: rgba(21, 23, 22, 0.72);
}

.panel-graphite {
  background: var(--ink);
  color: var(--paper);
}

.panel-graphite p {
  color: rgba(246, 243, 234, 0.72);
}

.panel-paper {
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink);
}

.panel-paper p {
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  min-height: 760px;
  background: var(--paper-2);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 8vw, 112px);
}

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

.proof-grid div {
  display: grid;
  gap: 18px;
  min-height: 148px;
  padding: 24px;
  background: var(--paper);
}

.proof-grid strong {
  color: var(--solar);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.proof-grid span {
  font-weight: 700;
}

.service-check {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 68px;
  align-items: center;
  padding: 120px max(32px, calc((100vw - 1220px) / 2));
}

.service-check-copy p {
  max-width: 620px;
  color: rgba(246, 243, 234, 0.76);
}

.checklist {
  border-top: 1px solid rgba(246, 243, 234, 0.16);
}

.check-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(246, 243, 234, 0.16);
}

.check-row span {
  color: var(--solar);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.check-row p {
  margin: 0;
  color: rgba(246, 243, 234, 0.82);
  font-size: 22px;
}

.compact {
  display: block;
}

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

.process-step {
  min-height: 270px;
  padding: 28px;
  background: var(--white-soft);
}

.process-step span {
  display: block;
  margin-bottom: 64px;
  color: var(--solar);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
}

.process-step h3 {
  font-size: 28px;
}

.process-step p {
  color: var(--muted);
}

.projects {
  background: var(--paper-2);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.project-large {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--paper);
}

.project-large::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 23, 22, 0.82), transparent 58%);
  content: "";
}

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

.project-large div {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.project-large span,
.project-small span {
  color: var(--solar);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

.project-large p {
  color: rgba(246, 243, 234, 0.78);
}

.project-small {
  min-height: 301px;
  padding: 28px;
  background: var(--white-soft);
}

.project-small img {
  width: calc(100% + 56px);
  max-width: none;
  height: 170px;
  margin: -28px -28px 28px;
  object-fit: cover;
}

.project-small h3 {
  font-size: 32px;
}

.project-small.dark {
  background: var(--ink);
  color: var(--paper);
}

.project-small.dark p {
  color: rgba(246, 243, 234, 0.7);
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  gap: 80px;
  padding: 120px max(32px, calc((100vw - 1220px) / 2));
}

.why-list {
  display: grid;
  gap: 1px;
  background: rgba(246, 243, 234, 0.14);
}

.why-list div {
  padding: 28px;
  background: rgba(21, 23, 22, 0.82);
}

.why-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--solar);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.why-list p {
  margin: 0;
  color: rgba(246, 243, 234, 0.72);
}

.faq-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.74fr);
  gap: 64px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-of-type {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

details p {
  max-width: 660px;
  margin-bottom: 24px;
}

.contact-panel {
  padding: 34px;
  background: var(--ink);
  color: var(--paper);
}

.contact-panel h2 {
  font-size: clamp(38px, 4vw, 58px);
}

form {
  display: grid;
  gap: 14px;
}

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(246, 243, 234, 0.74);
  font-size: 15px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(246, 243, 234, 0.18);
  border-radius: 0;
  background: rgba(246, 243, 234, 0.08);
  color: var(--paper);
  font: inherit;
  padding: 14px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(246, 243, 234, 0.42);
}

select {
  color: var(--paper);
}

.form-notice {
  margin: 2px 0 4px;
  color: rgba(246, 243, 234, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.form-notice a {
  color: var(--solar);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 30px 32px;
  background: var(--paper-2);
  color: var(--muted);
}

.footer small {
  flex-basis: 100%;
  max-width: 980px;
  color: var(--muted);
  font-size: 14px;
}

.footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-page {
  background: var(--paper);
}

.legal-shell {
  padding: 150px 24px 86px;
}

.legal-document {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 54px;
  background: var(--white-soft);
  box-shadow: 0 18px 55px rgba(21, 23, 22, 0.1);
}

.legal-document h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 84px);
}

.legal-document h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 44px);
}

.legal-document section {
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-document p,
.legal-document li,
.legal-document dd {
  color: var(--muted);
}

.legal-document a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-lead {
  max-width: 760px;
  color: var(--ink);
  font-size: 22px;
}

.legal-table {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.legal-table div,
.legal-details div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 20px;
  background: var(--paper);
}

.legal-table strong,
.legal-details dt {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.legal-table span,
.legal-details dd {
  margin: 0;
}

.legal-details {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.blog-page {
  background:
    linear-gradient(90deg, rgba(21, 23, 22, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
}

.blog-hero,
.blog-article-hero {
  padding: 150px 32px 84px;
}

.blog-hero-inner,
.blog-index,
.blog-article-heading,
.blog-article-shell {
  width: min(1220px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-items: end;
}

.blog-hero h1,
.blog-article-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 7vw, 104px);
}

.blog-lead {
  max-width: 760px;
  color: rgba(246, 243, 234, 0.76);
  font-size: clamp(20px, 2vw, 25px);
}

.blog-hero-note {
  padding: 28px;
  border: 1px solid rgba(246, 243, 234, 0.18);
  background: rgba(21, 23, 22, 0.72);
}

.blog-hero-note span,
.blog-card-category,
.blog-backlink,
.blog-meta,
.blog-card-meta {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-hero-note span,
.blog-card-category,
.blog-backlink {
  color: var(--solar);
}

.blog-hero-note strong {
  display: block;
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: 76px;
  line-height: 0.8;
}

.blog-hero-note p {
  margin: 0;
  color: rgba(246, 243, 234, 0.68);
}

.blog-index {
  padding: 112px 0;
}

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

.blog-card {
  min-height: 360px;
  background: var(--white-soft);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card:hover {
  border-color: rgba(21, 23, 22, 0.28);
  box-shadow: 0 18px 50px rgba(21, 23, 22, 0.12);
  transform: translateY(-4px);
}

.blog-card a {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
}

.blog-card h3 {
  margin-top: 34px;
  font-size: clamp(30px, 3vw, 42px);
}

.blog-card p {
  color: var(--muted);
}

.blog-card-meta {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.blog-card-meta span {
  color: var(--ink);
}

.blog-backlink {
  display: inline-flex;
  margin-bottom: 28px;
  font-size: 14px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 34px;
  color: rgba(246, 243, 234, 0.62);
  font-size: 14px;
}

.blog-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(280px, 360px);
  gap: 72px;
  align-items: start;
  padding: 86px 0 112px;
}

.blog-content {
  padding: 54px;
  background: var(--white-soft);
  border: 1px solid var(--line);
}

.blog-content h2,
.blog-content h3 {
  max-width: 700px;
  line-height: 1;
}

.blog-content h2 {
  margin-top: 58px;
  font-size: clamp(36px, 4vw, 58px);
}

.blog-content h2:first-child {
  margin-top: 0;
}

.blog-content h3 {
  margin-top: 38px;
  font-size: clamp(28px, 3vw, 38px);
}

.blog-content p,
.blog-content li {
  color: var(--muted);
  font-size: 20px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-aside {
  position: sticky;
  top: 118px;
  padding: 30px;
  background: var(--ink);
  color: var(--paper);
}

.blog-aside h2 {
  margin-bottom: 18px;
  font-size: 42px;
}

.blog-aside p {
  color: rgba(246, 243, 234, 0.72);
}

.blog-aside .button {
  width: 100%;
  margin-top: 10px;
}

.thanks-page {
  background: var(--ink);
}

.thanks-page .site-header {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.thanks-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 150px 32px 80px;
}

.thanks-card {
  width: min(820px, 100%);
  margin: 0 auto;
}

.thanks-card h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(56px, 8vw, 108px);
}

.thanks-card p {
  max-width: 640px;
  color: rgba(246, 243, 234, 0.76);
}

.thanks-card a:not(.button) {
  color: var(--solar);
  font-weight: 700;
}

.thanks-card .button {
  margin-top: 18px;
}

[data-animate] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid,
  .split-feature,
  .service-check,
  .why,
  .faq-contact,
  .blog-hero-inner,
  .blog-article-shell {
    grid-template-columns: 1fr;
  }

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

  .blog-aside {
    position: static;
  }

  .solar-stage {
    min-height: 520px;
  }

  .section-heading,
  .service-layout,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .service-main,
  .service-panel {
    min-height: 0;
  }

  .service-main ul {
    grid-template-columns: 1fr;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-table div,
  .legal-details div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .hero,
  .services,
  .process,
  .projects,
  .faq-contact,
  .blog-hero,
  .blog-article-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .blog-hero-inner,
  .blog-index,
  .blog-article-heading,
  .blog-article-shell {
    width: 100%;
  }

  .blog-hero,
  .blog-article-hero {
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-index,
  .blog-article-shell {
    padding-top: 54px;
    padding-bottom: 64px;
  }

  .blog-content {
    padding: 28px 20px;
  }

  .blog-content p,
  .blog-content li {
    font-size: 18px;
  }

  .legal-shell {
    padding: 118px 14px 48px;
  }

  .legal-document {
    padding: 28px 20px;
  }

  h1 {
    max-width: 100%;
    font-size: 46px;
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .eyebrow {
    max-width: 28ch;
    font-size: 13px;
    line-height: 1.25;
    white-space: normal;
  }

  h2 {
    font-size: 42px;
  }

  .hero-strip,
  .process-line,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-lead {
    max-width: 28ch;
  }

  .solar-stage,
  .feature-image img,
  .project-large,
  .project-large img {
    min-height: 440px;
  }

  .energy-readout {
    top: 18px;
    right: auto;
    left: 14px;
    width: 170px;
    padding: 0 0 12px;
  }

  .energy-readout strong {
    font-size: 50px;
  }

  .panel-scene {
    right: auto;
    left: -12%;
    bottom: 13%;
    width: 118%;
    height: 44%;
  }

  .cursor-glow {
    width: 280px;
  }

  .light-point {
    width: 54px;
  }

  .panel-guide {
    right: 14px;
    bottom: 18px;
    left: 14px;
    font-size: 12px;
  }

  .service-check,
  .why {
    padding-right: 18px;
    padding-left: 18px;
  }

  .check-row {
    grid-template-columns: 46px 1fr;
  }

  .check-row p {
    font-size: 19px;
  }
}
