:root {
  --ink: #0d2740;
  --muted: #61717c;
  --paper: #f4f8fa;
  --white: #ffffff;
  --navy: #0b2b4f;
  --navy-2: #123b63;
  --gold: #b89042;
  --line: #dbe5ea;
  --pale-blue: #e9f5fb;
  --shadow: 0 18px 44px rgba(13, 39, 64, 0.12);
  --font-sans: "Noto Sans JP", "Yu Gothic", "Hiragino Sans", Meiryo, sans-serif;
  --font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 76px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
h1, h2, h3, p { margin-top: 0; overflow-wrap: anywhere; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 10px clamp(16px, 4vw, 58px);
  border-bottom: 1px solid rgba(219, 229, 234, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}
.brand img {
  width: clamp(140px, 17vw, 220px);
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}
.menu-button {
  display: grid;
  gap: 4px;
  justify-self: end;
  width: 74px;
  min-height: 48px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
}
.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
}
.menu-button em {
  font-size: 11px;
  font-style: normal;
  line-height: 1;
}
.global-nav {
  position: fixed;
  inset: 78px 0 auto 0;
  display: none;
  padding: 10px 18px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.global-nav.is-open { display: grid; }
.global-nav a {
  padding: 15px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}
.header-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
.header-tel small,
.header-tel strong {
  display: block;
  line-height: 1.2;
  text-align: right;
}
.header-tel small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.header-tel strong {
  color: var(--navy);
  font-size: 20px;
}
.header-contact {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.hero {
  padding: 18px clamp(10px, 3vw, 42px) 34px;
  background: linear-gradient(180deg, #ffffff, var(--paper));
}
.hero-media {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-media img {
  height: auto;
  object-fit: contain;
  object-position: center;
}
.hero-cta {
  display: grid;
  gap: 10px;
  width: min(100%, 760px);
  margin: 18px auto 0;
}
.btn,
.text-button,
.contact-form button {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}
.btn.primary,
.contact-form button {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(11, 43, 79, 0.22);
}
.btn.secondary,
.text-button {
  border-color: var(--navy);
  background: var(--white);
  color: var(--navy);
}
.btn.ghost {
  border-color: var(--gold);
  background: #fffaf0;
  color: #4a3519;
}

.section {
  padding: 68px clamp(18px, 4vw, 72px);
}
.section-head {
  max-width: 880px;
  margin-bottom: 26px;
}
.eyebrow {
  width: fit-content;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}
.section-head h1,
.section-head h2,
.company-info h2,
.area h2,
.contact h2 {
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 5.2vw, 48px);
  line-height: 1.2;
  letter-spacing: 0;
}
.section-head p,
.company-info p,
.map-copy p,
.contact-card p {
  color: var(--muted);
}

.problems { background: var(--white); }
.problem-grid {
  display: grid;
  gap: 12px;
}
.problem-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 2px 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f9fcfd);
  box-shadow: 0 10px 22px rgba(13, 39, 64, 0.06);
}
.problem-grid span {
  grid-row: span 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}
.problem-grid h2 {
  margin: 0;
  font-size: 19px;
}
.problem-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.services,
.area { background: var(--paper); }
.wide-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.wide-image img {
  height: auto;
  object-fit: contain;
  object-position: center;
}
.service-panel {
  display: grid;
  gap: 14px;
  max-width: 1180px;
}
.service-panel article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 330px;
  overflow: hidden;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 39, 64, 0.07);
}
.service-panel article::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86) 48%, rgba(255, 255, 255, 0.18));
}
.service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.service-panel span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}
.service-panel h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.35;
}
.service-panel small {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.service-panel p {
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin: 24px 0 0;
  color: var(--ink);
  line-height: 1.8;
}

.subsidy {
  background: #f8fbf7;
}
.renovation-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  max-width: 1180px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid #dbe4dc;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.renovation-message {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}
.renovation-message .ribbon {
  width: fit-content;
  margin: 0;
  padding: 11px 18px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}
.renovation-message h3 {
  max-width: 650px;
  margin: 0;
  color: var(--navy);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.25;
}
.renovation-message h3 strong {
  color: var(--gold);
}
.renovation-message p {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.9;
}
.renovation-message ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.renovation-message li {
  padding: 12px 14px;
  border: 1px solid #d7e5df;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-weight: 900;
}
.renovation-photo {
  position: absolute;
  inset: 0 0 0 38%;
  margin: 0;
}
.renovation-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.16));
}
.renovation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.renovation-logo {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(230px, 44vw);
  margin: -12px 0 0;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(13, 39, 64, 0.12);
}
.renovation-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.subsidy-banner-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.renovation-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  grid-template-areas:
    "copy badge"
    "benefits contact"
    "note note";
  align-items: end;
  gap: 20px;
  overflow: hidden;
  max-width: 1180px;
  min-height: 620px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid #dbe4dc;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(255, 255, 255, 0.68) 72%, rgba(255, 255, 255, 0.9) 100%),
    url("../images/banners/renovation-bg.jpg") right center / cover no-repeat;
  box-shadow: var(--shadow);
}
.renovation-copy {
  grid-area: copy;
  max-width: 590px;
  z-index: 1;
}
.renovation-copy .ribbon {
  display: inline-block;
  margin-bottom: 26px;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}
.renovation-copy h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1.25;
}
.renovation-copy h3 strong {
  color: var(--gold);
  font-weight: 900;
}
.renovation-copy p {
  color: var(--navy);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.9;
}
.renovation-badge {
  grid-area: badge;
  position: static;
  justify-self: end;
  display: grid;
  width: 158px;
  height: 158px;
  place-items: center;
  padding: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #4c8a37;
  text-align: center;
  box-shadow: 0 12px 28px rgba(13, 39, 64, 0.12);
}
.renovation-badge span {
  font-size: 20px;
  font-weight: 900;
}
.renovation-badge strong {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 4px;
  background: #4c8a37;
  color: var(--white);
}
.renovation-benefits {
  grid-area: benefits;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  max-width: none;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}
.renovation-benefits article {
  display: grid;
  gap: 8px;
  padding: 16px;
  text-align: center;
}
.renovation-benefits span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-inline: auto;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  font-weight: 900;
}
.renovation-benefits h4 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}
.renovation-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.renovation-contact {
  grid-area: contact;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-self: end;
  width: min(100%, 380px);
  margin-top: 0;
  padding: 22px;
  border-radius: 10px;
  background: rgba(239, 247, 251, 0.94);
  text-align: center;
}
.renovation-contact p {
  color: var(--navy);
  font-weight: 900;
}
.renovation-contact a {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-radius: 7px;
  font-weight: 900;
}
.renovation-contact a:first-of-type {
  background: var(--navy);
  color: var(--white);
  font-size: 28px;
}
.renovation-contact a:last-of-type {
  background: var(--gold);
  color: var(--white);
}
.renovation-note {
  grid-area: note;
  position: static;
  margin: 0;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
}
.subsidy-card {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid #d9e7d6;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.subsidy-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
}
.subsidy-actions {
  display: grid;
  gap: 10px;
}

.works { background: var(--white); }
.case-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
}
.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.before-after figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #eef4f7;
  aspect-ratio: 4 / 3;
}
.before-after figure span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(7, 26, 40, 0.84);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}
.before-after figure:nth-child(2) span {
  background: rgba(180, 137, 40, 0.9);
}
.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.case-card h3 {
  margin: 18px 18px 8px;
  color: var(--navy);
  font-size: 22px;
}
.case-card p {
  margin: 0 18px 20px;
  color: var(--muted);
}
.works-note {
  display: grid;
  gap: 8px;
  max-width: 920px;
  margin-top: 20px;
}
.works-note h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}
.works-note p {
  color: var(--muted);
}
.company {
  background: linear-gradient(180deg, #ffffff, #f7fafb);
}
.company-layout {
  display: grid;
  gap: 24px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.company-info {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(13, 39, 64, 0.08);
}
.company-info dl {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}
.company-info dl div {
  display: grid;
  gap: 4px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.company-info dt {
  color: var(--navy);
  font-weight: 900;
}
.company-info dd {
  margin: 0;
  color: var(--muted);
}
.maker-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.maker-links a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #fffaf0;
  color: #4a3519;
  font-weight: 900;
}

.map-layout {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin-top: 24px;
  margin-inline: auto;
}
.google-map-frame {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.google-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}
.map-preview {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.map-preview img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
}
.area-image.map-preview img {
  height: auto;
  object-fit: contain;
}
.map-preview span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-grid;
  min-height: 48px;
  place-items: center;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}
.map-copy {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.map-copy h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
}
.shop-location-map {
  margin: 18px 0;
  border: 1px solid var(--line);
}
.shop-location-map img {
  height: auto;
  object-fit: contain;
}
.shop-address {
  margin: 0 0 16px;
  color: var(--navy);
  font-weight: 900;
}

.contact {
  background: var(--navy);
  color: var(--white);
}
.contact .eyebrow {
  color: #fff4d8;
}
.contact-card {
  display: grid;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.contact-card p {
  color: #dce8ee;
}
.phone-large {
  display: grid;
  min-height: 72px;
  place-items: center;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-size: clamp(32px, 8vw, 54px);
  font-weight: 900;
  line-height: 1;
}
.contact-actions {
  display: grid;
  gap: 14px;
}
.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}
.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--white);
  font-weight: 900;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}
.contact .btn.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-footer {
  padding: 28px 18px;
  background: #071a28;
  color: #dce8ee;
}
.footer-inner {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}
.footer-inner img {
  width: min(220px, 70vw);
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}
.fixed-cta {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}
.fixed-cta a {
  display: grid;
  min-height: 50px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}
.fixed-cta a:nth-child(2) {
  background: var(--gold);
  color: #2f2413;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 759px) {
  .renovation-feature {
    padding: 18px;
  }
  .renovation-photo {
    position: relative;
    inset: auto;
    order: -1;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
  }
  .renovation-photo::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12));
  }
  .renovation-logo {
    justify-self: start;
    width: min(220px, 70vw);
    margin-top: 0;
  }
  .renovation-message ul {
    grid-template-columns: 1fr;
  }
  .service-panel article {
    min-height: 280px;
    padding: 22px;
  }
  .service-panel span {
    width: 48px;
    height: 48px;
    margin-bottom: 34px;
  }
  .service-panel p {
    max-width: 230px;
    margin-top: 16px;
  }
  .renovation-visual {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "copy"
      "benefits"
      "contact"
      "note";
    align-items: start;
    min-height: auto;
    padding: 22px 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 58%, rgba(255, 255, 255, 0.95) 100%),
      url("../images/banners/renovation-bg.jpg") right top / auto 280px no-repeat;
  }
  .renovation-copy {
    padding-top: 0;
  }
  .renovation-copy .ribbon {
    margin-bottom: 18px;
    padding: 10px 14px;
    font-size: 14px;
  }
  .renovation-badge {
    justify-self: end;
    width: 118px;
    height: 118px;
  }
  .renovation-badge span {
    font-size: 15px;
  }
  .renovation-badge strong {
    padding-inline: 12px;
    font-size: 13px;
  }
  .renovation-benefits {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    padding: 10px;
  }
  .renovation-benefits article {
    padding: 12px 8px;
  }
  .renovation-contact {
    justify-self: stretch;
    margin-top: 0;
    padding: 16px;
  }
  .renovation-contact a:first-of-type {
    font-size: 22px;
  }
  .before-after {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) {
  body { padding-bottom: 0; }
  .menu-button { display: none; }
  .global-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: clamp(10px, 2vw, 24px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .global-nav a {
    padding: 0;
    border: 0;
    color: var(--muted);
    font-size: 14px;
    white-space: nowrap;
  }
  .header-actions { display: flex; }
  .hero-cta {
    grid-template-columns: repeat(3, 1fr);
  }
  .problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-panel article {
    min-height: 370px;
  }
  .service-panel span {
    margin-bottom: 68px;
  }
  .subsidy-card {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    align-items: center;
  }
  .subsidy-actions {
    grid-template-columns: 1fr;
  }
  .company-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .map-layout {
    grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .contact-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    align-items: start;
  }
  .fixed-cta {
    left: auto;
    width: 390px;
  }
}

@media (min-width: 900px) {
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-header {
    grid-template-columns: auto auto;
  }
  .brand img {
    width: 136px;
  }
  .hero {
    padding-inline: 8px;
  }
  .hero-media,
  .wide-image {
    border-radius: 8px;
  }
  .section {
    padding: 54px 16px;
  }
  .problem-grid article {
    padding: 16px;
  }
  .company-info {
    padding: 18px;
  }
  .phone-large {
    min-height: 64px;
  }
}
