/* BCサービス ハウスクリーニングLP — v0 v5 準拠静的CSS */

:root {
  --background: #ffffff;
  --foreground: #1f2937;
  --primary: #075985;
  --brand: #075985;
  --brand-deep: #123b56;
  --brand-deepest: #0d2c41;
  --aqua: #e7f6f8;
  --ivory: #fff8ed;
  --warm: #f2a444;
  --warm-soft: #fdefda;
  --warm-foreground: #6b3d05;
  --secondary: #eff7fb;
  --muted: #f3f6f8;
  --muted-foreground: #4b5563;
  --accent: #06c755;
  --accent-strong: #04a445;
  --border: #dbe6ee;
  --radius: 0.25rem;
  --container: 1200px;
  --header-h: 64px;
  --fixed-cta-h: 64px;
  --font: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.7;
  overflow-x: hidden;
  padding-bottom: calc(var(--fixed-cta-h) + 16px);
  text-align: center;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }

  .container {
    width: min(100% - 64px, var(--container));
  }

  :root {
    --header-h: 80px;
  }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px solid var(--primary);
  background: var(--background);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand-deep);
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-size: 1rem;
  line-height: 1.2;
}

.header-nav {
  display: none;
}

.header-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.header-nav a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-deep);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.header-nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

a.header-cta.btn-line {
  display: none;
}

@media (min-width: 1024px) {
  .header-nav {
    display: block;
  }

  a.header-cta.btn-line {
    display: inline-flex;
  }
}

/* ===== Buttons / CTA ===== */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius);
  border-bottom: 4px solid var(--accent-strong);
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.btn-line:hover {
  background: var(--accent-strong);
}

.btn-line svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid var(--brand-deep);
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
}

.btn-outline:hover {
  background: var(--secondary);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ===== Sections ===== */
.section {
  padding: 48px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 64px 0;
  }
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: rgba(7, 89, 133, 0.1);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-title {
  color: var(--brand-deepest);
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  font-weight: 900;
  line-height: 1.4;
  padding-bottom: 12px;
  border-bottom: 4px solid var(--primary);
  display: inline-block;
  max-width: 100%;
}

.section-lead {
  margin-top: 16px;
  margin-inline: auto;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  max-width: 720px;
  text-align: center;
}

.section--hero {
  background: var(--secondary);
  padding: 32px 0 0;
}

.section--problems {
  background: var(--ivory);
}

.section--water {
  background: var(--aqua);
}

.section--pressure {
  background: var(--brand-deep);
  color: #fff;
}

.section--pressure .section-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section--pressure .section-title {
  color: #fff;
  border-bottom-color: var(--warm);
}

.section--pressure .section-lead {
  color: rgba(255, 255, 255, 0.88);
}

.section--price,
.section--aircon,
.section--works,
.section--faq {
  background: var(--background);
}

.section--reason {
  background: var(--secondary);
}

.section--flow {
  background: var(--aqua);
}

.section--area {
  background: var(--ivory);
}

.section--final {
  background: var(--brand-deep);
  color: #fff;
  text-align: center;
}

.section--final .section-title {
  color: #fff;
  border-bottom-color: var(--warm);
}

.section--final .section-lead {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Hero ===== */
.hero-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
  }
}

.hero-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: var(--brand-deep);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
}

.hero-title {
  color: var(--brand-deepest);
  font-size: clamp(1.55rem, 4.6vw, 2.35rem);
  font-weight: 900;
  line-height: 1.35;
}

.hero-title .mark {
  background: linear-gradient(transparent 62%, rgba(242, 164, 68, 0.45) 62%);
}

.hero-lead {
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.hero-note {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--warm-soft);
  border-top: 4px solid var(--warm);
  color: var(--warm-foreground);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  margin-inline: auto;
  max-width: 390px;
}

@media (min-width: 640px) {
  .hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
  }
}

.hero-cta-row .btn-line {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-cta-row .btn-line {
    width: auto;
  }
}

.proof-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--brand-deep);
}

.proof-bar li {
  padding: 14px 12px;
  text-align: center;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 1.4;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-bar li:nth-child(2n) {
  border-right: none;
}

@media (min-width: 768px) {
  .proof-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-bar li {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-bar li:last-child {
    border-right: none;
  }
}

/* ===== Photo placeholders / media ===== */
.photo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(7, 89, 133, 0.35);
  background: var(--aqua);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
}

.photo-slot--4x3 { aspect-ratio: 4 / 3; }
.photo-slot--3x2 { aspect-ratio: 3 / 2; }
.photo-slot--16x9 { aspect-ratio: 16 / 9; }
.photo-slot--1x1 { aspect-ratio: 1 / 1; }

.photo-slot--warm {
  background: var(--warm-soft);
  border-color: rgba(242, 164, 68, 0.5);
  color: var(--warm-foreground);
}

.photo-slot--deep {
  background: rgba(231, 246, 248, 0.95);
  border-color: rgba(231, 246, 248, 0.4);
  color: var(--brand-deep);
}

.photo-slot--soft {
  border-color: rgba(7, 89, 133, 0.25);
  color: var(--brand-deep);
}

.photo-slot--media {
  position: relative;
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.photo-slot--contain {
  background: #f3f9fc;
}

.photo-slot__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-slot__img--contain {
  object-fit: contain;
  background: #f3f9fc;
}

.photo-slot__img--hero,
.photo-slot__img--floor-varnish {
  object-position: center 62%;
}

.inline-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 100%;
}

.inline-ba__item {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.inline-ba__item .ba-label {
  margin-bottom: 4px;
  text-align: center;
}

.inline-ba__item img {
  width: 100%;
  flex: 1;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(7, 89, 133, 0.2);
  background: #fff;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--warm-soft);
}

.photo-collage__main,
.photo-collage__stack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(242, 164, 68, 0.35);
}

.photo-collage__main {
  aspect-ratio: auto;
  min-height: 0;
}

.photo-collage__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 0;
}

.pressure-case {
  margin-top: 24px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(18, 59, 86, 0.06);
}

.pressure-case__caption {
  margin: 0 0 10px;
  color: var(--brand-deepest);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.pressure-case__ba {
  height: auto;
}

.pressure-case__ba .inline-ba__item img {
  aspect-ratio: 4 / 3;
  max-height: 280px;
}

/* ===== Cards ===== */
.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1024px) {
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.problem-card {
  background: #fff;
  border: 1px solid rgba(242, 164, 68, 0.35);
  border-top: 4px solid var(--warm);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 6px 16px rgba(18, 59, 86, 0.06);
  font-weight: 700;
  color: var(--brand-deepest);
  font-size: 0.95rem;
  text-align: center;
}

.service-card,
.price-card,
.reason-card,
.flow-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(18, 59, 86, 0.08);
  overflow: hidden;
}

.service-card {
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-align: center;
}

/* 水まわり主力カード：写真枠を4:3で揃え、実写真を収める */
.section--water .card-grid--2 > .service-card:not(.service-card--featured) > .photo-slot {
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.section--water .service-card > .photo-slot > .photo-slot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--water .service-card > .photo-slot--contain > .photo-slot__img {
  object-fit: contain;
  background: #f3f9fc;
}

.section--water .service-card--featured > .photo-collage {
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}

.floor-card > .photo-slot--media > .photo-slot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.floor-card > .photo-slot--media {
  position: relative;
  overflow: hidden;
}

.section--floor {
  background: var(--ivory);
}

.section--floor .section-eyebrow {
  background: rgba(242, 164, 68, 0.18);
  color: var(--warm-foreground);
}

.section--floor .section-title {
  border-bottom-color: var(--warm);
}

.floor-card {
  border-top-color: var(--warm);
}

.floor-card > .photo-slot {
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  background: var(--warm-soft);
  border-color: rgba(242, 164, 68, 0.45);
  color: var(--warm-foreground);
}

.floor-card .meta-list {
  width: 100%;
}

.floor-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(242, 164, 68, 0.35);
  border-top: 4px solid var(--warm);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(18, 59, 86, 0.05);
  text-align: center;
}

.floor-note ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-items: center;
}

.floor-note li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15em;
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  max-width: 40rem;
}

.floor-note li::before {
  content: "・";
  flex-shrink: 0;
  color: var(--warm);
  font-weight: 900;
}

.service-card h3,
.price-card h3,
.reason-card h3,
.flow-card h3,
.ba-card h3 {
  color: var(--brand-deepest);
  font-size: 1.05rem;
  font-weight: 900;
}

.service-card p,
.price-card p,
.reason-card p,
.flow-card p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.meta-list {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.875rem;
  width: 100%;
  justify-items: center;
  text-align: center;
}

.meta-list dt {
  color: var(--primary);
  font-weight: 800;
}

.meta-list dd {
  margin: 0;
  color: var(--brand-deep);
  font-weight: 700;
}

.service-card--featured {
  border-top-color: var(--warm);
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .service-card--featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
  }
}

.service-card__body--set {
  justify-content: flex-start;
  align-items: center;
}

.service-card__body--set .chip-row {
  margin-top: 4px;
  justify-content: center;
}

.set-price {
  margin-top: 12px;
  color: var(--brand-deepest);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.4;
}

.set-price-note {
  margin-top: 4px;
  color: var(--muted-foreground);
  font-size: 0.85rem;
  font-weight: 600;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--aqua);
  color: var(--brand-deep);
  font-size: 0.8125rem;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--warm);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.badge--navy {
  background: var(--brand-deep);
}

.pressure-card {
  background: #fff;
  color: var(--foreground);
  border-top: 4px solid var(--warm);
}

.pressure-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--warm);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  text-align: center;
}

/* ===== Pricing ===== */
.price-intro {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.price-intro p {
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.price-intro p + p {
  margin-top: 8px;
}

.price-block-title {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--brand-deepest);
  font-size: 1.125rem;
  font-weight: 900;
  text-align: center;
}

.price-card {
  border-top: 4px solid var(--primary);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.price-card--set {
  border-top-color: var(--warm);
  background: linear-gradient(180deg, #fffdf8 0%, #fff 48%);
}

.price-card--featured {
  border: 2px solid var(--warm);
  border-top-width: 6px;
  box-shadow: 0 12px 28px rgba(242, 164, 68, 0.18);
  padding: 22px 18px;
}

.price-amount {
  color: var(--brand-deepest);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.price-card--featured .price-amount {
  font-size: 1.85rem;
}

.price-amount small {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted-foreground);
}

.price-sub {
  display: grid;
  gap: 4px;
  justify-items: center;
  font-size: 0.9rem;
  color: var(--brand-deep);
  font-weight: 700;
  text-align: center;
}

.price-note-box {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.note-card {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--muted);
  border-top: 4px solid var(--primary);
  font-size: 0.875rem;
  color: var(--brand-deep);
  text-align: center;
}

.note-card--warm {
  background: var(--warm-soft);
  border-top-color: var(--warm);
  color: var(--warm-foreground);
}

.combo-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid var(--border);
}

.combo-table th,
.combo-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.combo-table th {
  background: var(--secondary);
  color: var(--brand-deep);
  font-weight: 800;
}

/* ===== Aircon ===== */
.aircon-banner {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--secondary), #fff);
  box-shadow: 0 8px 20px rgba(18, 59, 86, 0.06);
  text-align: center;
}

@media (min-width: 768px) {
  .aircon-banner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.aircon-banner h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--brand-deepest);
  font-weight: 900;
  line-height: 1.4;
}

.aircon-banner p {
  margin-top: 10px;
  color: var(--muted-foreground);
  font-size: 0.92rem;
}

.aircon-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
}

.link-text {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
}

/* ===== Reasons / Flow / BA ===== */
.reason-card,
.flow-card {
  padding: 18px 16px;
  border-top: 4px solid var(--primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 900;
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}

.ba-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .ba-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ba-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 8px 18px rgba(18, 59, 86, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
}

.ba-card > h3 {
  margin-bottom: 10px;
  min-height: 2.8em;
  text-align: center;
}

.ba-card .ba-composite,
.ba-card .ba-pair {
  margin-top: auto;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
}

.ba-pair--square {
  aspect-ratio: 1 / 1;
}

.ba-pair--square > div {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.ba-pair--square .photo-slot {
  flex: 1;
  min-height: 0;
  aspect-ratio: auto;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.ba-pair .photo-slot--media {
  position: relative;
  overflow: hidden;
}

.ba-pair .photo-slot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-composite {
  margin-top: 10px;
  width: 100%;
}

.ba-composite .photo-slot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
}

.hero-grid .photo-slot--media {
  position: relative;
  overflow: hidden;
}

.hero-grid .photo-slot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pressure-card--info .service-card__body {
  padding-top: 18px;
}

.section--pressure .card-grid {
  margin-top: 16px;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 24px;
  margin-inline: auto;
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(18, 59, 86, 0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  font-weight: 800;
  color: var(--brand-deepest);
  text-align: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q,
.faq-a-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
}

.faq-q {
  background: var(--primary);
  color: #fff;
}

.faq-a-badge {
  background: var(--warm);
  color: #fff;
}

.faq-a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px 16px;
  color: var(--muted-foreground);
  font-size: 0.92rem;
  text-align: center;
}

/* ===== Area ===== */
.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.area-list li {
  min-height: 44px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid rgba(242, 164, 68, 0.4);
  border-radius: var(--radius);
  color: var(--brand-deepest);
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(18, 59, 86, 0.05);
  text-align: center;
}

.area-note {
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--brand-deepest);
  color: rgba(255, 255, 255, 0.88);
  padding: 36px 0 28px;
  text-align: center;
}

.footer-grid {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand {
  font-size: 1.125rem;
  font-weight: 900;
  color: #fff;
}

.footer-brand small {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.footer-nav a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.footer-tel {
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
}

.footer-tel a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Fixed mobile CTA ===== */
.fixed-line-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: block;
  background: var(--accent);
  border-top: 1px solid var(--accent-strong);
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.12);
}

.fixed-line-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--fixed-cta-h);
  padding: 12px 16px;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  white-space: nowrap;
}

.fixed-line-cta svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 1024px) {
  .fixed-line-cta {
    display: none;
  }
}

/* ===== Utilities ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}
