:root {
  --navy: #102538;
  --green: #2f8062;
  --gold: #d6902f;
  --red: #b85d34;
  --brilo-blue: #28aeca;
  --brilo-orange: #ef7d00;
  --brilo-lime: #67b817;
  --brilo-pink: #e94d91;
  --ink: #0d2134;
  --muted: #5d6d82;
  --line: rgba(16, 37, 56, .14);
  --soft: #f5f7f3;
  --soft-blue: #eef6f8;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 20px 50px rgba(16, 37, 56, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf6;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar {
  color: #fff;
  background: #153f61;
  font-size: 13px;
  font-weight: 800;
}

.topbar-inner,
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
  padding: 8px 0;
}

.topbar a {
  text-decoration: none;
}

.nav-shell {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.brand strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 900;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta,
.btn.primary {
  color: #fff;
  background: var(--green);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(47, 128, 98, .2);
  animation: briloPaintCta 32s ease-in-out infinite;
}

.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,.35), rgba(255,255,255,0));
  transform: translateX(-120%);
  animation: briloPaintSheen 10s ease-in-out infinite;
}

@keyframes briloPaintCta {
  0%, 100% {
    background: var(--green);
    box-shadow: 0 12px 28px rgba(47, 128, 98, .2);
  }

  20% {
    background: var(--brilo-blue);
    box-shadow: 0 12px 28px rgba(40, 174, 202, .22);
  }

  40% {
    background: var(--brilo-orange);
    box-shadow: 0 12px 28px rgba(239, 125, 0, .22);
  }

  60% {
    background: var(--brilo-lime);
    box-shadow: 0 12px 28px rgba(103, 184, 23, .22);
  }

  80% {
    background: var(--brilo-pink);
    box-shadow: 0 12px 28px rgba(233, 77, 145, .22);
  }
}

@keyframes briloPaintSheen {
  0%, 62% {
    transform: translateX(-120%);
  }

  82%, 100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta,
  .nav-cta::after {
    animation: none;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  color: #fff;
  background-image: url("assets/brilo-hero-completed-home.png");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 29, 44, .88), rgba(12, 29, 44, .42));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 680px;
  max-width: 720px;
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: 19px;
  font-weight: 800;
}

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

.btn,
.contact-methods a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
}

.trust-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.trust-grid div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-grid img {
  display: none;
}

.trust-grid strong {
  display: block;
  font-size: 20px;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

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

.section-heading.centered {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.estimate h2,
.contact-page h1 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 700;
}

.showcase-grid,
.estimate-grid,
.company-grid,
.local-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.estimate-grid > * {
  min-width: 0;
}

.showcase-main,
.media-card,
.service-list article,
.work-card,
.symptom-list article,
.quality-grid article,
.reason-grid article,
.price-grid article,
.local-card,
.quote-form {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.showcase-main img,
.work-card img,
.service-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.work-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.work-card-visual,
.case-card-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  background: var(--line);
}

.work-card-visual img,
.case-card-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.work-card-visual span,
.case-badge {
  position: absolute;
  top: 10px;
  z-index: 1;
  padding: 4px 8px;
  color: #fff;
  background: rgba(16, 37, 56, .86);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.work-card-visual span:first-of-type,
.case-badge.before {
  left: 10px;
}

.work-card-visual span:last-of-type,
.case-badge.after {
  right: 10px;
  background: var(--red);
}

.work-area {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.showcase-main > div,
.media-card > div,
.work-card > div,
.work-card a > div {
  padding: 24px;
}

.showcase-main h3,
.media-card h3,
.work-card h3,
.service-list h3,
.quality-grid h3,
.price-grid h3,
.reason-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

.showcase-main p,
.media-card p,
.work-card p,
.service-list p,
.quality-grid p,
.price-grid p,
.reason-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.media-stack {
  display: grid;
  gap: 16px;
}

.media-card {
  display: grid;
  grid-template-columns: 170px 1fr;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.symptoms,
.quality {
  background: #fff;
}

.symptom-note {
  padding-left: 14px;
  border-left: 4px solid var(--gold);
  font-size: 14px;
}

.symptom-list,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.symptom-photo,
.quality-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.symptom-body,
.quality-body {
  padding: 22px 24px 24px;
}

.symptom-list span {
  display: block;
  width: 38px;
  height: 6px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 3px;
}

.local-care,
.price {
  background: var(--soft);
}

.local-card {
  padding: 30px;
  box-shadow: var(--shadow);
}

.local-card h3 {
  margin: 0 0 16px;
}

.local-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-weight: 800;
}

.reason-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reason-grid article,
.price-grid article {
  padding: 26px;
}

.service-list,
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.work-grid {
  grid-template-columns: repeat(3, 1fr);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.mid-cta {
  color: #fff;
  background: #153f61;
}

.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 0;
}

.mid-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.35;
  letter-spacing: 0;
}

.mid-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 10px 0 0;
  color: #d8e7ef;
  font-weight: 800;
}

.mid-cta .eyebrow {
  color: #f0ad48;
}

.mid-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.btn.ghost-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
}

.mid-cta-soft {
  color: var(--ink);
  background: var(--soft-blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mid-cta-soft h2 {
  color: var(--ink);
}

.mid-cta-soft p:not(.eyebrow) {
  color: var(--muted);
}

.mid-cta-soft .btn.ghost-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.service-list article {
  padding-bottom: 24px;
}

.service-list h3,
.service-list p {
  padding: 0 22px;
}

.service-photo {
  margin: 0 0 22px;
}

.price-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--green);
  font-size: 28px;
  line-height: 1.2;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-list span {
  color: var(--gold);
  font-weight: 900;
}

.flow-list strong {
  display: block;
  margin-top: 10px;
}

.flow-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.quality-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quality-grid article {
  box-shadow: 0 16px 34px rgba(19, 35, 48, .06);
}

.estimate,
.contact-page {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 37, 56, .95), rgba(18, 65, 52, .94)),
    url("assets/brilo-hero-completed-home.png") center / cover;
}

.estimate p,
.contact-page p {
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  gap: 18px;
  min-height: 74px;
  padding: 14px 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .12);
  width: 100%;
  min-width: 0;
}

.contact-methods span {
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--navy);
  background: var(--soft-blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-methods a:nth-child(2) span {
  color: #fff;
  background: #06c755;
}

.contact-methods strong {
  display: block;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  color: var(--ink);
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  font: inherit;
}

.quote-form button {
  border: 0;
  cursor: pointer;
}

.company dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.company dl div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px;
  background: #fff;
}

.company dt {
  color: var(--muted);
  font-weight: 900;
}

.company dd {
  margin: 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.location-block {
  margin-top: 38px;
}

.location-section {
  background: var(--paper);
}

.location-heading {
  margin-bottom: 24px;
}

.location-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.location-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.location-map {
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  border: 0;
}

.site-footer {
  color: #d8e7ef;
  background: #0c1d2a;
}

.footer-cta,
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(230px, .8fr) minmax(230px, .75fr);
  align-items: start;
  gap: 36px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.4;
}

.footer-brand {
  color: #fff;
}

.footer-main p {
  margin: 16px 0 0;
}

.footer-address {
  color: #aac0ce;
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 10px 22px;
  font-weight: 900;
}

.footer-links span,
.footer-contact span:first-child {
  grid-column: 1 / -1;
  color: #aac0ce;
  font-size: 13px;
  font-weight: 900;
}

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

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact strong {
  display: block;
  color: #fff;
  font-size: 26px;
}

.footer-contact strong a {
  color: inherit;
  text-decoration: none;
}

.footer-contact span:last-child {
  color: #d8e7ef;
}

.footer-bottom {
  padding: 22px 0;
  color: #aac0ce;
  font-size: 13px;
}

.mobile-cta {
  display: none;
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #fff, var(--soft));
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

.page-hero h1 span {
  display: inline-block;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.works-list {
  display: grid;
  gap: 24px;
}

.work-list-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 37, 56, .08);
}

.work-list-card a {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 0;
  color: inherit;
  text-decoration: none;
}

.work-list-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  background: var(--line);
}

.work-list-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.work-list-body {
  padding: 30px;
}

.work-list-body h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0;
}

.work-summary {
  display: grid;
  gap: 1px;
  margin: 22px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.work-summary div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
}

.work-summary dt {
  color: var(--muted);
  font-weight: 900;
}

.work-summary dd {
  margin: 0;
  font-weight: 800;
}

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

.case-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 37, 56, .08);
}

.case-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.case-card-body {
  padding: 24px;
}

.case-card-body h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: 0;
}

.case-card-summary {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.case-card-summary div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
}

.case-card-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.case-card-summary dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.works-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.works-pagination a,
.works-pagination span {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.works-pagination span {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.work-detail-main {
  background: #fff;
}

.work-hero-photo {
  margin: 0 0 38px;
}

.work-hero-photo img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
}

.case-table {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.case-table div {
  display: grid;
  grid-template-columns: 270px 1fr;
  background: #fff;
}

.case-table dt,
.case-table dd {
  margin: 0;
  padding: 18px 20px;
}

.case-table dt {
  background: #f8faf7;
  font-weight: 900;
}

.case-table dd {
  font-weight: 800;
}

.case-block {
  margin-top: 42px;
}

.case-block h2 {
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
  font-size: 24px;
  line-height: 1.4;
}

.before-after-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.before-after-grid figure {
  position: relative;
  margin: 0;
}

.before-after-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.before-after-grid span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 5px 10px;
  color: #fff;
  background: var(--navy);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.before-after-grid figure:last-child span {
  background: var(--red);
}

.before-after-arrow {
  color: var(--ink);
  font-family: Consolas, "Courier New", monospace;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.case-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-weight: 800;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.btn.ghost-dark {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .showcase-grid,
  .split-layout,
  .estimate-grid,
  .company-grid,
  .local-grid,
  .work-list-card a {
    grid-template-columns: 1fr;
  }

  .service-list,
  .work-grid,
  .reason-grid,
  .price-grid,
  .quality-grid,
  .works-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .mid-cta-inner {
    align-items: flex-start;
  }

  .case-table div {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(1120px, calc(100% - 32px));
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar a {
    display: none;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 24px;
  }

  .hero,
  .hero-content {
    min-height: 72svh;
  }

  .hero-content {
    min-width: 0;
    padding: 48px 0 52px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 29, 44, .82), rgba(12, 29, 44, .48) 48%, rgba(12, 29, 44, .86));
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 46px);
    overflow-wrap: anywhere;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
    max-width: 21em;
    line-height: 1.8;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

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

  .hero-actions {
    width: 100%;
    max-width: 340px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    padding-right: 18px;
    padding-left: 18px;
  }

  .contact-methods a {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    min-height: 68px;
    padding: 12px 14px;
  }

  .contact-methods span {
    min-width: 52px;
    min-height: 32px;
    padding: 0 8px;
  }

  .contact-methods strong {
    font-size: clamp(18px, 5.2vw, 22px);
  }

  .trust-band {
    position: relative;
    z-index: 3;
    margin-top: -56px;
    background: #fbfaf6;
    border-bottom: 0;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-top: 0;
    padding-bottom: 18px;
  }

  .trust-grid div {
    display: block;
    min-width: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(16, 37, 56, .08);
  }

  .trust-grid img {
    display: block;
    width: 100%;
    height: 52px;
    margin-bottom: 8px;
    object-fit: cover;
    border-radius: 6px;
  }

  .trust-grid strong {
    display: block;
    font-size: 14px;
    line-height: 1.35;
  }

  .trust-grid span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.45;
  }

  .visual-showcase {
    padding-top: 38px;
  }

  .visual-showcase .section-heading.centered {
    margin-bottom: 26px;
    text-align: left;
  }

  .mid-cta-inner {
    display: grid;
    gap: 20px;
    padding: 34px 0;
  }

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

  .section {
    padding: 62px 0;
  }

  .page-hero {
    padding: 56px 0;
  }

  .page-hero h1 {
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.28;
  }

  .contact-page h1 {
    font-size: clamp(30px, 8.4vw, 36px);
    line-height: 1.32;
    overflow-wrap: anywhere;
  }

  .page-hero h1 span {
    display: block;
  }

  .service-list,
  .work-grid,
  .reason-grid,
  .price-grid,
  .quality-grid,
  .symptom-list,
  .works-card-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    grid-template-columns: 1fr;
  }

  .media-card img {
    aspect-ratio: 16 / 9;
  }

  .quality-photo {
    aspect-ratio: 16 / 9;
  }

  .company dl div,
  .footer-cta,
  .footer-main,
  .case-table div,
  .before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .work-list-visual img {
    min-height: 210px;
  }

  .case-table dt,
  .case-table dd {
    padding: 14px 16px;
  }

  .location-map iframe {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .before-after-arrow {
    text-align: center;
  }

  .footer-cta h2 {
    font-size: 24px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(16, 37, 56, .18);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    color: #fff;
    background: #153f61;
    border-radius: 7px;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a:last-child {
    background: var(--green);
  }
}
