:root {
  --ink: #222222;
  --muted: #6d6d6d;
  --line: #dedede;
  --paper: #ffffff;
  --warm: #fbfaf6;
  --soft: #f4f7f2;
  --panel: #d9ded7;
  --brand: #004186;
  --accent: #18a77b;
  --sun: #f4c542;
  --radius: 8px;
  --content: min(1120px, calc(100vw - 40px));
  --serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 2;
  letter-spacing: .035em;
  overflow-x: clip;
}

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

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(0, 65, 134, .12);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1280px, calc(100vw - 48px));
  min-height: 82px;
  margin-inline: auto;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  display: block;
  width: min(310px, 42vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: #33414f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}

.site-nav a,
.footer-links a {
  transition: color .2s ease, opacity .2s ease;
}

.site-nav a {
  color: #33414f;
}

.footer-links a {
  color: #fff;
}

.site-nav a:hover {
  color: var(--brand);
}

.footer-links a:hover {
  color: #fff;
  opacity: .75;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero,
.split-section,
.concept-section,
.reasons-section,
.benefits-section,
.ai-search-section,
.local-section,
.closing-section,
.consult-banner-section {
  width: var(--content);
  margin-inline: auto;
}

.hero {
  display: block;
  width: 100%;
  max-width: none;
  min-height: auto;
  padding: 0 0 82px;
  background: #fff;
}

.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: clamp(330px, 28.7vw, 550px);
}

.fv-photo {
  position: relative;
  min-height: clamp(330px, 28.7vw, 550px);
  margin: 0;
  overflow: hidden;
  background-color: #cfd8d4;
}

.fv-photo-solar {
  background: #dfe8de;
}

.fv-photo-family {
  background: #eef1ef;
}

.fv-photo picture,
.fv-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.fv-photo img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.fv-photo-solar img {
  object-position: center center;
}

.fv-photo-family img {
  object-position: center center;
}

.hero-copy {
  width: var(--content);
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 20px 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .08em;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(34px, 2.85vw, 54px);
  line-height: 1.62;
}

.hero-copy h1 {
  font-size: clamp(30px, 2.35vw, 45px);
  line-height: 1.68;
  letter-spacing: .06em;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 1.72;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.7;
}

.keep-line {
  white-space: nowrap;
}

h4 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.85;
  letter-spacing: .04em;
}

.lead {
  max-width: 44em;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 19px);
  line-height: 2.15;
  letter-spacing: .06em;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 13px;
  color: #355143;
  background: rgba(24, 167, 123, .1);
  border: 1px solid rgba(24, 167, 123, .18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .04em;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.secondary {
  color: var(--brand);
  background: transparent;
}

.visual-frame {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.45) 0 42%, rgba(233,239,229,.72) 42% 100%),
    linear-gradient(135deg, rgba(0, 65, 134, 0.08), rgba(24, 167, 123, 0.14)),
    #dfe5dc;
  border-radius: 0 0 0 90px;
  box-shadow: 0 24px 64px rgba(28, 48, 42, .12);
}

.visual-frame span,
.media-placeholder span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: rgba(34, 34, 34, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.sun-disc {
  position: absolute;
  top: 54px;
  right: 56px;
  width: 96px;
  height: 96px;
  background: rgba(244, 197, 66, .42);
  border-radius: 50%;
}

.solar-roof {
  position: absolute;
  top: 126px;
  right: 72px;
  width: 62%;
  aspect-ratio: 1.85;
  transform: skewY(-11deg);
  background:
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px) 0 0 / 42px 100%,
    linear-gradient(0deg, rgba(255,255,255,.22) 1px, transparent 1px) 0 0 / 100% 36px,
    #263d46;
  box-shadow: -36px 48px 0 #ffffff, -36px 130px 0 #ecefe8, -36px 210px 0 #d4dbd0;
}

.family-window {
  position: absolute;
  right: 31%;
  bottom: 96px;
  width: 118px;
  height: 68px;
  background:
    radial-gradient(circle at 38% 56%, #4f625b 0 8px, transparent 9px),
    radial-gradient(circle at 60% 56%, #4f625b 0 8px, transparent 9px),
    linear-gradient(var(--sun), var(--sun));
  border: 8px solid #fff;
  box-shadow: 0 12px 28px rgba(24, 48, 40, .14);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 64px;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.section-copy {
  max-width: 620px;
}

.intro-movie-section {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 768px;
  min-height: 768px;
  overflow: hidden;
  background: #aaa;
}

.intro-movie {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-movie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
}

.intro-movie-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(1180px, calc(100vw - 40px));
  min-height: 640px;
  padding: 54px 0 58px;
  color: #fff;
}

.intro-movie-copy h2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-start;
  gap: 38px;
  margin: 0;
  font-size: clamp(24px, 1.55vw, 30px);
  font-weight: 500;
  line-height: 1;
}

.intro-movie-copy h2 span {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  line-height: 1.92;
  letter-spacing: .16em;
}

.intro-movie-copy p {
  align-self: end;
  max-width: 1080px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .9);
  text-align: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: .06em;
}

.section-copy p:not(.eyebrow),
.concept-section > p,
.local-section p,
.closing-section p {
  color: var(--muted);
}

.media-placeholder {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.48), rgba(255,255,255,0) 46%),
    var(--panel);
  border-radius: var(--radius);
}

.media-placeholder::before {
  content: "";
  position: absolute;
  right: 14%;
  bottom: 22%;
  width: 130px;
  height: 130px;
  background: rgba(255,255,255,.52);
  border-radius: 50%;
}

.media-placeholder.dark {
  background:
    linear-gradient(135deg, rgba(0,65,134,.82), rgba(24,167,123,.62)),
    #11314c;
}

.media-placeholder.dark span {
  color: rgba(255, 255, 255, 0.64);
}

.problem {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 46px;
  padding-inline: max(20px, calc((100vw - 1120px) / 2));
  background: #f4f5f6;
  border-top: 0;
}

.problem .section-copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.problem .section-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-inline: auto;
}

.problem .section-copy p + p {
  margin-top: 22px;
}

.issue-charts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.issue-chart {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.issue-chart img {
  display: block;
  width: 100%;
  height: auto;
}

.concept-section {
  width: 100%;
  max-width: none;
  min-height: auto;
  padding: 72px max(20px, calc((100vw - 1280px) / 2)) 76px;
  background:
    linear-gradient(135deg, rgba(0, 65, 134, .12) 0%, rgba(24, 167, 123, .16) 100%),
    #f3f8f8;
  overflow: hidden;
}

.solution-heading {
  position: relative;
  z-index: 2;
  text-align: center;
}

.concept-section .eyebrow,
.concept-section h2 {
  color: var(--brand);
}

.concept-section h2 {
  margin: 0;
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 1.72;
}

.solution-visual {
  position: relative;
  width: min(1280px, 100%);
  min-height: clamp(470px, 43vw, 560px);
  margin: 26px auto 0;
}

.solution-diagram,
.solution-photo {
  margin: 0;
}

.solution-diagram {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: min(44vw, 520px);
  transform: translateX(-50%);
}

.solution-diagram picture,
.solution-diagram img,
.solution-photo picture,
.solution-photo img {
  display: block;
  width: 100%;
}

.solution-diagram img,
.solution-photo img {
  height: auto;
}

.solution-photo {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  opacity: .74;
}

.solution-photo img {
  height: 100%;
  object-fit: cover;
}

.solution-photo-solar {
  top: 76px;
  left: 14%;
  width: min(17vw, 220px);
  aspect-ratio: 600 / 376;
}

.solution-photo-storage {
  top: 116px;
  right: 15%;
  width: min(11vw, 148px);
  aspect-ratio: 600 / 743;
}

.solution-photo-family {
  bottom: 30px;
  left: 9%;
  width: min(22vw, 280px);
  aspect-ratio: 600 / 450;
}

.solution-photo-house {
  right: 10%;
  bottom: 32px;
  width: min(21vw, 270px);
  aspect-ratio: 600 / 409;
}

.solution-lead {
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin: 8px auto 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 2;
  letter-spacing: .1em;
  text-align: center;
}

.solution-lead p {
  margin-bottom: 16px;
}

.js-enabled .reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s ease, transform .9s ease;
}

.js-enabled .solution-diagram.reveal-item {
  transform: translateX(-50%) translateY(22px);
  transition-delay: .12s;
}

.js-enabled .solution-photo-storage {
  transition-delay: .18s;
}

.js-enabled .solution-photo-family {
  transition-delay: .28s;
}

.js-enabled .solution-photo-house {
  transition-delay: .38s;
}

.js-enabled .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .solution-diagram.reveal-item.is-visible {
  transform: translateX(-50%) translateY(0);
}

.reasons-section {
  width: 100%;
  max-width: none;
  padding: 76px 0 0;
  background: #fff;
}

.section-heading {
  width: var(--content);
  margin-inline: auto;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.reasons-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: var(--content);
  margin-inline: auto;
  background: #fff;
  isolation: isolate;
}

.reasons-stage {
  display: block;
}

.reason-card {
  position: sticky;
  top: 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 768px;
  min-height: 768px;
  background: #fff;
  scroll-margin-top: 0;
  overflow: hidden;
}

.reason-panel {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 64px;
  width: 100%;
  height: 768px;
  max-height: 100%;
  padding: 28px 0 80px;
  background: #fff;
}

.reason-card:nth-child(1) {
  z-index: 1;
}

.reason-card:nth-child(2) {
  z-index: 2;
}

.reason-card:nth-child(3) {
  z-index: 3;
}

.reason-card:nth-child(4) {
  z-index: 4;
}

.reason-card + .reason-card {
  margin-top: -1px;
}

.reason-image {
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.reason-image picture,
.reason-image img {
  display: block;
  width: 100%;
}

.reason-image img {
  aspect-ratio: 960 / 768;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

.reason-copy {
  max-width: 620px;
  padding: 0;
  background: #fff;
}

.reason-copy .eyebrow {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .16em;
}

.reason-card h3 {
  display: flex;
  align-items: baseline;
  gap: .38em;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 1.72;
  letter-spacing: .08em;
}

.reason-number {
  color: var(--brand);
  font-family: var(--serif);
  font-size: inherit;
  letter-spacing: .08em;
}

.reason-card h4 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .06em;
}

.reason-card p:last-child {
  max-width: 520px;
  color: var(--muted);
}

.reason-points {
  max-width: 540px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 65, 134, .14);
}

.reason-points-label {
  margin: 0 0 10px;
  color: var(--brand);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .16em;
}

.reason-points ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--brand);
  font-size: clamp(13px, .92vw, 15px);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: .04em;
  list-style: none;
}

.reason-points li {
  position: relative;
  padding-left: 1.05em;
}

.reason-points li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
  content: "";
}

.reason-points strong {
  color: var(--brand);
  font-weight: 700;
}

.benefits-section {
  width: 100%;
  max-width: none;
  padding: 44px 0 92px;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf2ef, #f6f2e7);
}

.benefits-section .section-heading {
  margin-bottom: 46px;
}

.benefit-marquee {
  width: min(1280px, calc(100vw - 80px));
  margin-inline: auto;
  overflow: hidden;
}

.benefit-marquee-track {
  display: block;
  width: 100%;
}

.benefit-marquee-set {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.benefit-marquee-item {
  display: block;
  aspect-ratio: 664 / 450;
  overflow: hidden;
  background: #dfe8e2;
}

.benefit-marquee-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 18px 24px;
  width: min(1280px, calc(100vw - 80px));
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 27px;
  color: var(--ink);
  font-size: clamp(15px, 1.02vw, 18px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: .03em;
  white-space: nowrap;
}

.benefit-list li::before {
  position: absolute;
  top: .18em;
  left: 0;
  color: var(--brand);
  content: "✓";
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.ai-search-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 64px;
  padding: 92px 0;
}

.ai-search-section .section-copy {
  max-width: 620px;
}

.ai-search-section .section-copy h2 {
  font-size: clamp(27px, 2.05vw, 32px);
  line-height: 1.72;
  letter-spacing: .045em;
}

.ai-title-line {
  white-space: nowrap;
}

.check-grid {
  display: grid;
  gap: 16px;
}

.check-grid article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 8px 24px;
  align-items: center;
  padding: 28px 32px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-icon {
  grid-row: 1 / span 2;
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.check-grid h3 {
  margin: 0;
  font-size: 20px;
}

.check-grid p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.model-map-section {
  width: 100%;
  margin-inline: auto;
  padding: 86px max(20px, calc((100vw - 980px) / 2));
  background:
    linear-gradient(135deg, rgba(0, 65, 134, .12) 0%, rgba(24, 167, 123, .16) 100%),
    #f3f8f8;
}

.model-map-section .section-heading {
  width: 100%;
  margin-bottom: 34px;
}

.model-map-wordpress {
  overflow: hidden;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.model-map-wordpress > .row {
  margin: 0 !important;
}

.model-map-wordpress > .row > [class*="col-"] {
  flex: 0 0 100%;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}

.model-map-wordpress .tabs {
  width: 100%;
}

.model-map-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.model-map-tabs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.model-map-tabs label {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  color: var(--brand);
  background: #f5f7f8;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.model-map-tabs label:nth-of-type(4) {
  border-right: 0;
}

.model-map-tabs input:focus-visible + label {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.model-map-tabs input:checked + label {
  color: #fff;
  background: var(--brand);
}

.model-map-panel {
  order: 2;
  display: none;
  grid-column: 1 / -1;
  padding: 18px;
  background: #fff;
}

#model-map-gunma:checked ~ .model-map-panel:nth-of-type(1),
#model-map-saitama:checked ~ .model-map-panel:nth-of-type(2),
#model-map-hiraya:checked ~ .model-map-panel:nth-of-type(3),
#model-map-smartprima:checked ~ .model-map-panel:nth-of-type(4) {
  display: block;
}

.model-map {
  display: block;
  width: min(100%, 720px);
  aspect-ratio: 1;
  margin-inline: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.model-map-gunma {
  background-image: url("https://ishidaya-net.co.jp/gtw2jf/wp-content/uploads/2026/06/map1-1.png");
}

.model-map-saitama {
  background-image: url("https://ishidaya-net.co.jp/gtw2jf/wp-content/uploads/2026/06/map2-1.png");
}

.model-map-hiraya {
  background-image: url("https://ishidaya-net.co.jp/gtw2jf/wp-content/uploads/2026/06/map3-1.png");
}

.model-map-smartprima {
  background-image: url("https://ishidaya-net.co.jp/gtw2jf/wp-content/uploads/2026/06/map4-1.png");
}

.model-map rect {
  fill: transparent;
  transition: fill .2s ease;
}

.model-map a:hover rect,
.model-map a:focus rect {
  fill: rgba(255, 255, 255, .72);
}

.model-map-link {
  margin: 28px 0 0;
  text-align: center;
}

.model-map-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  color: #fff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
}

.local-section,
.closing-section {
  max-width: 860px;
  padding: 84px 0;
  text-align: center;
}

.closing-section {
  border-top: 1px solid var(--line);
}

.closing-section .eyebrow {
  color: var(--brand);
}

.honesty-style-section {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 0 0 60px;
  border-top: 1px solid var(--line);
}

.honesty-style-wordpress {
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
}

.honesty-style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.honesty-style-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(210px, 14.5vw) minmax(150px, auto);
  overflow: hidden;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.honesty-style-card::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 82px 82px 0;
  border-color: transparent #e60012 transparent transparent;
  content: "";
}

.honesty-style-card::after {
  position: absolute;
  top: 12px;
  right: 5px;
  z-index: 3;
  color: #fff;
  content: "NEW!!";
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  transform: rotate(45deg);
  transform-origin: center;
}

.honesty-style-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.honesty-style-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 28px 22px 30px;
  background: #fff;
  text-align: center;
}

.honesty-style-copy img {
  display: block;
  max-width: min(82%, 270px);
  max-height: 72px;
}

.honesty-style-copy strong {
  color: var(--brand);
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: .04em;
}

.honesty-style-card:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.honesty-style-card:hover .honesty-style-bg {
  transform: scale(1.04);
}

.consult-banner-section {
  margin-bottom: 76px;
}

.consult-banner-section .section-heading {
  margin-bottom: 28px;
}

.consult-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.consult-banner {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 65, 134, .08);
  transition: opacity .2s ease, transform .2s ease;
}

.consult-banner:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.consult-banner:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

.consult-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer {
  margin-top: 78px;
  color: #fff;
  background: var(--brand);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 42px 64px;
  width: min(1280px, calc(100vw - 48px));
  margin-inline: auto;
  padding: 56px 0 28px;
}

.footer-brand {
  max-width: 560px;
}

.footer-logo {
  padding: 14px 18px;
  background: #fff;
}

.footer-logo img {
  display: block;
  width: min(310px, 70vw);
  height: auto;
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 2;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, auto));
  gap: 12px 28px;
  align-self: start;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
}

.footer-links a:hover {
  color: #fff;
  opacity: .72;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 24px;
  color: rgba(255, 255, 255, .62);
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .ai-search-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefit-list {
    grid-template-columns: repeat(2, max-content);
  }
}

@media (max-width: 860px) {
  .site-header-inner {
    flex-wrap: wrap;
    gap: 14px 20px;
    min-height: auto;
    padding: 18px 0;
  }

  .site-logo img {
    width: min(280px, 68vw);
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 20px;
    margin-left: 0;
  }

  .hero,
  .split-section,
  .concept-section,
  .reasons-layout,
  .ai-search-section {
    grid-template-columns: 1fr;
  }

  .check-grid article {
    grid-template-columns: 58px 1fr;
  }

  .check-icon {
    width: 48px;
    height: 48px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding: 0 0 64px;
  }

  .hero-photos {
    display: contents;
  }

  .fv-photo {
    width: 100%;
    min-height: 250px;
  }

  .fv-photo-solar {
    order: 1;
  }

  .fv-photo-solar img {
    object-position: center center;
  }

  .hero-copy {
    order: 2;
    width: var(--content);
    padding: 48px 0;
  }

  .fv-photo-family {
    order: 3;
    min-height: 260px;
  }

  .fv-photo-family img {
    object-position: center center;
  }

  .visual-frame {
    min-height: 320px;
    border-radius: 0 0 0 52px;
  }

  .split-section {
    gap: 28px;
    padding: 72px 0;
  }

  .problem {
    gap: 32px;
    padding-inline: 22px;
  }

  .issue-charts {
    grid-template-columns: 1fr;
  }

  .intro-movie-section {
    height: 768px;
    min-height: 768px;
  }

  .intro-movie-copy {
    min-height: 640px;
    padding: 58px 0 42px;
  }

  .intro-movie-copy h2 {
    gap: 28px;
    font-size: clamp(22px, 5.2vw, 27px);
  }

  .intro-movie-copy p {
    max-width: min(520px, calc(100vw - 36px));
    font-size: 14px;
    line-height: 2.05;
  }

  .hero-copy p,
  .section-heading > p:not(.eyebrow),
  .intro-movie-copy p,
  .problem .section-copy p:not(.eyebrow),
  .solution-lead,
  .closing-section p,
  .footer-brand p {
    text-align: left;
  }

  .concept-section {
    min-height: auto;
    padding: 68px max(20px, calc((100vw - 1120px) / 2)) 76px;
  }

  .concept-section h2 {
    margin-bottom: 0;
  }

  .solution-visual {
    display: block;
    min-height: auto;
    margin-top: 28px;
  }

  .solution-diagram {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: min(100%, 440px);
    transform: none;
    justify-self: center;
  }

  .solution-photo {
    display: none;
  }

  .solution-lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: .07em;
  }

  .js-enabled .solution-diagram.reveal-item,
  .js-enabled .solution-diagram.reveal-item.is-visible {
    transform: none;
  }

  .benefit-list {
    max-width: 560px;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .honesty-style-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .consult-banner-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    margin-top: 64px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 0 24px;
  }

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

@media (max-width: 560px) {
  :root {
    --content: min(100vw - 44px, 1120px);
  }

  h1 {
    font-size: clamp(27px, 7.7vw, 34px);
    line-height: 1.75;
  }

  .hero-copy h1 {
    font-size: clamp(21px, 6.5vw, 26px);
    line-height: 1.75;
    letter-spacing: .05em;
    white-space: normal;
  }

  .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .site-header-inner {
    width: min(100vw - 28px, 1280px);
  }

  .site-logo img {
    width: min(246px, 74vw);
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .keep-line {
    white-space: normal;
  }

  .lead {
    font-size: 14px;
    line-height: 2;
  }

  h2 {
    font-size: 24px;
  }

  .closing-section h2 {
    font-size: clamp(17px, 5.45vw, 21px);
    line-height: 1.8;
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .reasons-section .section-heading h2 {
    font-size: clamp(17.5px, 5.7vw, 22px);
    letter-spacing: .05em;
    white-space: nowrap;
  }

  .benefits-section .section-heading h2 {
    font-size: clamp(17px, 5.45vw, 21px);
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .intro-movie-section {
    height: 768px;
    min-height: 768px;
  }

  .intro-movie-copy {
    min-height: 640px;
  }

  .intro-movie-copy h2 {
    gap: 20px;
    font-size: 22px;
    line-height: 1.65;
  }

  .solution-visual {
    grid-template-columns: 1fr;
  }

  .solution-photo {
    display: none;
  }

  .solution-lead {
    text-align: left;
  }

  .reason-card {
    position: relative;
    top: auto;
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
    border-bottom: 1px solid rgba(0, 65, 134, .16);
  }

  .reason-card + .reason-card {
    margin-top: 0;
  }

  .reason-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    height: auto;
    max-height: none;
    padding: 0 0 44px;
    align-items: stretch;
  }

  .reason-image img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .reason-copy {
    display: block;
    padding: 26px 20px 0;
  }

  .reason-copy .eyebrow {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .reason-card h3 {
    margin-bottom: 8px;
    font-size: 23px;
    line-height: 1.45;
  }

  .reason-card h4 {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.55;
  }

  .reason-card p {
    font-size: 12px;
    line-height: 1.65;
  }

  .reason-points {
    margin-top: 12px;
    padding-top: 10px;
  }

  .reason-points ul {
    gap: 3px;
    font-size: 11.5px;
    line-height: 1.5;
  }

  .reason-points-label {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .reason-points li::before {
    top: .62em;
    width: 4px;
    height: 4px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .benefits-section {
    padding: 50px 0 78px;
  }

  .benefits-section .section-heading {
    margin-bottom: 34px;
  }

  .benefit-marquee-set {
    grid-template-columns: 1fr;
  }

  .benefit-list {
    width: calc(100vw - 44px);
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .benefit-list li {
    padding-left: 28px;
    font-size: 14px;
  }

  .benefit-list li::before {
    top: .12em;
    font-size: 18px;
  }

  .ai-search-section .section-copy h2 {
    font-size: clamp(18.5px, 6vw, 23.5px);
    line-height: 1.75;
    letter-spacing: .04em;
  }

  .ai-title-line {
    white-space: nowrap;
  }

  .check-grid article {
    grid-template-columns: 50px 1fr;
    gap: 6px 14px;
    padding: 20px;
  }

  .check-icon {
    width: 42px;
    height: 42px;
  }

  .model-map-section {
    width: 100%;
    padding: 62px 14px;
  }

  .model-map-wordpress {
    padding: 8px;
  }

  .model-map-wordpress .tabs {
    column-gap: 3px;
  }

  .model-map-wordpress .tab_item {
    min-width: 0;
    padding: 9px 6px;
    font-size: 12px;
    line-height: 1.4;
  }

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

  .model-map-tabs label {
    min-height: 48px;
    font-size: 13px;
  }

  .model-map-tabs label:nth-of-type(even) {
    border-right: 0;
  }

  .model-map-panel {
    padding: 10px;
  }

  .model-map-link a {
    width: 100%;
  }

  .honesty-style-grid {
    grid-template-columns: 1fr 1fr;
  }

  .honesty-style-section {
    width: 100%;
    padding: 40px 0 52px;
  }

  .honesty-style-wordpress {
    margin-bottom: 48px;
  }

  .honesty-style-card {
    grid-template-rows: 150px minmax(118px, auto);
  }

  .honesty-style-copy {
    gap: 8px;
    min-height: 118px;
    padding: 18px 12px 20px;
  }

  .honesty-style-copy img {
    max-width: 86%;
    max-height: 38px;
  }

  .honesty-style-copy strong {
    font-size: 11px;
    line-height: 1.55;
  }

  .consult-banner-section {
    margin-bottom: 58px;
  }

  .site-footer-inner {
    width: min(100vw - 28px, 1280px);
  }

  .footer-logo {
    padding: 12px 14px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  .benefit-marquee-track {
    animation: none;
  }

  .benefit-marquee-set[aria-hidden="true"] {
    display: none;
  }
}
