:root {
  --ink: #17253c;
  --ink-soft: #5a6984;
  --paper: #f7f9ff;
  --paper-strong: #edf2fb;
  --surface: #ffffff;
  --surface-muted: #f3f6fc;
  --line: rgba(23, 37, 60, 0.1);
  --line-strong: rgba(23, 37, 60, 0.18);
  --brand: #2556c8;
  --brand-deep: #173a8f;
  --brand-fog: #dfeaff;
  --accent: #c5a34f;
  --line-green: #338bff;
  --line-green-deep: #1b61db;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(17, 27, 23, 0.08);
  --shadow-strong: 0 24px 70px rgba(17, 27, 23, 0.16);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --header-height: 86px;
  --transition: 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(37, 86, 200, 0.12), transparent 32%),
    linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

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

.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 244, 255, 0.9)),
    linear-gradient(135deg, rgba(37, 86, 200, 0.05), rgba(197, 163, 79, 0.05));
}

.section--dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(10, 20, 42, 0.96), rgba(15, 31, 68, 0.96)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=80") center/cover no-repeat;
}

.section--accent {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 40, 92, 0.96), rgba(37, 86, 200, 0.92)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--hero,
.eyebrow--light {
  color: rgba(255, 255, 255, 0.84);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: 40px;
}

.section-heading--dark .eyebrow,
.section-heading--dark .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.section-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.section-copy--light {
  color: rgba(255, 255, 255, 0.82);
}

.subpage .section-heading h1 {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.28;
  font-weight: 850;
  line-break: anywhere;
  word-break: normal;
  overflow-wrap: anywhere;
}

.subpage .overview-card h2 {
  margin: 0;
  min-width: 0;
  font-size: clamp(1.25rem, 4.8vw, 1.8rem);
  line-height: 1.45;
  font-weight: 850;
  line-break: anywhere;
  word-break: normal;
  overflow-wrap: anywhere;
}

.subpage .section-copy,
.subpage .overview-card p {
  min-width: 0;
  line-break: anywhere;
  overflow-wrap: anywhere;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.button--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(37, 86, 200, 0.24);
}

.button--line {
  background: linear-gradient(135deg, var(--line-green), var(--line-green-deep));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(51, 139, 255, 0.24);
}

.button--ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.hero .button--ghost,
.section--dark .button--ghost,
.section--accent .button--ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.84rem;
}

.button--large {
  min-height: 58px;
  padding: 0 28px;
}

.button--full {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.header.is-scrolled {
  background: rgba(14, 23, 48, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(10, 20, 42, 0.28);
}

.header__inner {
  width: min(calc(var(--max-width) + 60px), calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.logo__gso {
  color: var(--white);
}

.logo__life {
  color: #9bbcff;
}

.logo__care {
  color: #e0c166;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.header-call {
  display: grid;
  gap: 1px;
  padding: 10px 18px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.header-call span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.72);
}

.header-call strong {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 40px) 0 170px;
  color: var(--white);
  overflow: hidden;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1800&q=80") center/cover no-repeat;
  transform: scale(1.02);
}

.hero__veil {
  background:
    linear-gradient(135deg, rgba(8, 18, 40, 0.86) 8%, rgba(22, 47, 109, 0.76) 54%, rgba(37, 86, 200, 0.42) 100%),
    radial-gradient(circle at top right, rgba(155, 188, 255, 0.22), transparent 34%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 380px);
  gap: 40px;
  align-items: center;
}

.hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero__title span {
  display: block;
}

.hero__lead {
  max-width: 41rem;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero__trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__trustline span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__summary {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.hero__summary-label {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero__summary-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero__summary-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.hero__summary-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero__summary-text {
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hero__dock {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 2;
  transform: translateX(-50%);
  width: min(calc(var(--max-width) - 20px), calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero__dock-card {
  display: grid;
  gap: 6px;
  align-content: center;
  justify-items: center;
  min-height: 108px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border: 1px solid rgba(23, 37, 60, 0.08);
  box-shadow: 0 18px 34px rgba(17, 27, 23, 0.12);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero__dock-card:hover,
.hero__dock-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(17, 27, 23, 0.14);
}

.hero__dock-card strong {
  font-size: 1rem;
}

.hero__dock-card small {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.hero__dock-card--line {
  background: #eef4ff;
  color: #1d4fc5;
  border-color: rgba(29, 79, 197, 0.12);
}

.hero__dock-card--line small {
  color: rgba(29, 79, 197, 0.72);
}

.hero__dock-card--area {
  background: #eef1fb;
  color: #40527f;
  border-color: rgba(64, 82, 127, 0.12);
}

.hero__dock-card--area small {
  color: rgba(64, 82, 127, 0.72);
}

.stats {
  position: relative;
  z-index: 1;
  margin-top: -22px;
  padding-bottom: 12px;
}

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

.stats__card {
  padding: 30px 24px;
  border-radius: var(--radius-md);
  background: rgba(16, 26, 52, 0.96);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.stats__card strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.stats__card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.overview__grid,
.intent-grid,
.services__grid,
.reason-grid,
.topic-grid,
.areas__grid {
  display: grid;
  gap: 22px;
}

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

.overview-card,
.intent-card,
.service-card,
.reason-card,
.topic-card,
.area-card,
.step-card,
.faq-item,
.contact-card {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.overview-card {
  padding: 32px 28px;
}

.overview-card--accent {
  background: linear-gradient(180deg, #eef4ff, #dde8ff);
  border-color: rgba(29, 79, 197, 0.12);
}

.overview-card__label {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.overview-card h3,
.intent-card h3,
.service-card h3,
.reason-card h3,
.topic-card h3,
.area-card h3,
.step-card h3,
.contact-card strong {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.45;
}

.overview-card p:last-child,
.intent-card p,
.service-card p,
.reason-card p,
.topic-card p,
.area-card p,
.step-card p,
.contact-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.intent-card {
  padding: 30px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.98));
}

.intent-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-fog);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.line-flow__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.line-flow__points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.line-flow__points li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 700;
}

.line-flow__points li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
}

.line-flow__steps {
  display: grid;
  gap: 18px;
}

.step-card {
  padding: 28px;
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 18px;
}

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

.service-card {
  padding: 30px 28px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(37, 86, 200, 0.22);
  box-shadow: 0 24px 48px rgba(17, 27, 23, 0.12);
}

.service-card--accent {
  background: linear-gradient(180deg, #eef4ff, #dde8ff);
  border-color: rgba(29, 79, 197, 0.12);
}

.service-card__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--brand);
  font-weight: 800;
}

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

.reason-card {
  min-height: 100%;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.reason-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.reason-card h3 {
  color: var(--white);
}

.reason-card p {
  color: rgba(255, 255, 255, 0.72);
}

.works__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 18px;
}

.work-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.work-card--large {
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(12, 20, 18, 0.02), rgba(12, 20, 18, 0.84));
  color: var(--white);
}

.work-card__overlay span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.work-card__overlay h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.5;
}

.work-card__overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

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

.topic-card,
.area-card {
  padding: 28px;
}

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

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 26px 72px 26px 26px;
  text-align: left;
  position: relative;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 16px;
  height: 2px;
  background: var(--brand);
  transform: translateY(-50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-question[aria-expanded="true"]::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 26px 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.contact__info {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact__info div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.contact__info span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.contact__info strong {
  font-size: 1rem;
}

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

.contact-card {
  padding: 28px;
}

.contact-card--line {
  grid-row: span 2;
  background: linear-gradient(180deg, #eef4ff, #dce8ff);
  border-color: rgba(29, 79, 197, 0.12);
}

.contact-card--phone {
  background: rgba(255, 255, 255, 0.92);
}

.contact-card--note {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  box-shadow: none;
}

.contact-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 79, 197, 0.12);
  color: #1d4fc5;
  font-size: 0.74rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card--note .contact-card__label,
.contact-card--note p,
.contact-card--note li {
  color: rgba(255, 255, 255, 0.8);
}

.contact-card__action {
  display: inline-flex;
  margin-top: 20px;
  color: inherit;
  font-weight: 800;
}

.contact-card__list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-card__list li {
  position: relative;
  padding-left: 18px;
}

.contact-card__list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.pm-hero__media {
  background: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1800&q=80") center/cover no-repeat;
}

.pm-card-grid,
.pm-repair-grid {
  display: grid;
  gap: 22px;
}

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

.pm-repair-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pm-check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.pm-check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.pm-check-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.pm-band-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(37, 86, 200, 0.12);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(37, 86, 200, 0.08), rgba(197, 163, 79, 0.08)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.pm-band-cta h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.45;
}

.pm-pill-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pm-pill-grid span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.footer {
  color: var(--white);
  background: #0d1630;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  padding: 62px 0 48px;
}

.footer__brand p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

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

.footer__nav h3 {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__nav a,
.footer__nav span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
}

.footer__bottom-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.floating-line {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: grid;
  gap: 2px;
  min-width: 176px;
  padding: 15px 18px 14px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--line-green), var(--line-green-deep));
  color: var(--white);
  box-shadow: 0 20px 40px rgba(27, 97, 219, 0.28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-line:hover,
.floating-line:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(27, 97, 219, 0.34);
}

.floating-line span {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-line strong {
  font-size: 1rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-lp #cases .fade-up {
  opacity: 1;
  transform: none;
}

@media (max-width: 1140px) {
  .header__inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .site-nav {
    gap: 20px;
  }

  .header-call {
    display: none;
  }

  .hero__layout,
  .line-flow__layout,
  .contact__layout,
  .section-heading--split,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 220px;
  }

  .hero__summary {
    max-width: 430px;
  }

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

  .pm-card-grid--three,
  .pm-repair-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 260px);
  }

  .work-card--large {
    grid-row: span 2;
  }

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

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

  .pm-band-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 74px;
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 999;
    display: block;
    padding: 0 16px 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu__panel {
    margin-top: 12px;
    padding: 24px 20px;
    border-radius: 28px;
    background: rgba(12, 22, 44, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-strong);
  }

  .mobile-menu__nav {
    display: grid;
    gap: 10px;
  }

  .mobile-menu__nav a {
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu__actions {
    display: grid;
    gap: 12px;
    margin-top: 20px;
  }

  .stats__grid,
  .overview__grid,
  .services__grid,
  .topic-grid,
  .pm-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__dock {
    grid-template-columns: 1fr;
    width: min(580px, calc(100% - 32px));
  }

  .contact-card--line {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding: 86px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 26px);
    padding-bottom: 314px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .hero__summary {
    padding: 24px;
  }

  .stats {
    margin-top: 0;
  }

  .stats__grid,
  .overview__grid,
  .intent-grid,
  .services__grid,
  .reason-grid,
  .works__grid,
  .topic-grid,
  .areas__grid,
  .contact__cards,
  .footer__nav,
  .pm-card-grid--three,
  .pm-repair-grid,
  .pm-pill-grid {
    grid-template-columns: 1fr;
  }

  .stats__card,
  .overview-card,
  .intent-card,
  .service-card,
  .reason-card,
    .topic-card,
    .area-card,
    .step-card,
    .contact-card,
    .pm-band-cta {
    padding: 24px 22px;
  }

  .works__grid {
    grid-template-rows: repeat(4, 240px);
  }

  .work-card--large {
    grid-row: span 1;
  }

  .faq-question {
    padding: 22px 62px 22px 22px;
  }

  .faq-answer {
    padding: 0 22px 22px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-line {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* Design refresh: local contractor tone, less template-like polish. */
:root {
  --ink: #18211d;
  --ink-soft: #66716b;
  --paper: #f4f5f1;
  --paper-strong: #ebece6;
  --surface: #ffffff;
  --surface-muted: #f7f8f4;
  --line: rgba(24, 33, 29, 0.12);
  --line-strong: rgba(24, 33, 29, 0.24);
  --brand: #2f5d4a;
  --brand-deep: #17382c;
  --brand-fog: #e5eee8;
  --accent: #6f7d6b;
  --line-green: #2584d6;
  --line-green-deep: #1265b0;
  --shadow-soft: 0 12px 26px rgba(24, 33, 29, 0.08);
  --shadow-strong: 0 18px 40px rgba(16, 24, 20, 0.18);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

body {
  background: #f4f5f1;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: #eceee8;
}

.section--dark {
  background:
    linear-gradient(90deg, rgba(18, 28, 25, 0.96), rgba(18, 28, 25, 0.9)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=78") center/cover no-repeat;
}

.section--accent {
  background: #233d33;
}

.eyebrow {
  color: var(--brand);
  letter-spacing: 0.08em;
}

.section-heading h2,
.hero__title {
  letter-spacing: 0;
}

.section-heading h2 {
  font-family: var(--font-sans);
  font-weight: 850;
}

.button {
  border-radius: 8px;
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--brand-deep);
}

.button--line {
  background: var(--line-green);
  box-shadow: 0 12px 26px rgba(18, 101, 176, 0.22);
}

.button--ghost {
  background: #ffffff;
  border-color: var(--line-strong);
}

.header.is-scrolled {
  background: rgba(22, 31, 28, 0.94);
  box-shadow: 0 12px 30px rgba(16, 24, 20, 0.18);
}

.logo {
  gap: 2px;
  letter-spacing: 0;
}

.logo__gso,
.logo__life,
.logo__care {
  color: #ffffff;
}

.logo__life {
  opacity: 0.78;
}

.logo__care {
  opacity: 0.58;
}

.site-nav {
  gap: 24px;
}

.site-nav a::after {
  background: #ffffff;
  height: 1px;
}

.header-call {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle,
.floating-line {
  border-radius: 8px;
}

.hero {
  min-height: 92svh;
  padding-bottom: 132px;
}

.hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.08), rgba(21, 28, 25, 0.08)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1800&q=78") center/cover no-repeat;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(15, 23, 20, 0.9) 0%, rgba(15, 23, 20, 0.72) 48%, rgba(15, 23, 20, 0.28) 100%),
    linear-gradient(0deg, rgba(15, 23, 20, 0.28), rgba(15, 23, 20, 0.12));
}

.hero__title {
  max-width: 920px;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.7vw, 5rem);
}

.hero__lead {
  color: rgba(255, 255, 255, 0.84);
}

.hero__trustline span {
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.hero__summary {
  border-radius: 10px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(20, 30, 26, 0.72);
  box-shadow: none;
}

.hero__summary-list li::before,
.line-flow__points li::before,
.contact-card__list li::before {
  border-radius: 0;
  background: var(--brand);
}

.hero__dock {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin: 56px auto 0;
  gap: 10px;
}

.hero__dock-card {
  min-height: 92px;
  border-radius: 8px;
  border-color: rgba(24, 33, 29, 0.14);
  box-shadow: 0 10px 22px rgba(16, 24, 20, 0.1);
}

.hero__dock-card--line {
  background: #eaf4fb;
  color: #1265b0;
}

.hero__dock-card--area {
  background: #eef1ea;
  color: var(--brand-deep);
}

.stats {
  margin-top: 0;
  background: #18211d;
}

.stats__grid {
  gap: 0;
}

.stats__card {
  border-radius: 0;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.stats__card:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.overview-card,
.intent-card,
.service-card,
.reason-card,
.topic-card,
.area-card,
.step-card,
.faq-item,
.contact-card {
  border-radius: 8px;
  box-shadow: none;
}

.overview-card,
.intent-card,
.service-card,
.topic-card,
.area-card,
.step-card,
.faq-item {
  border-color: rgba(24, 33, 29, 0.14);
}

.overview-card--accent,
.contact-card--line {
  background: #e9f0eb;
  border-color: rgba(47, 93, 74, 0.22);
}

.overview-card__label,
.service-card__eyebrow,
.contact-card__label {
  color: var(--brand);
  letter-spacing: 0.08em;
}

.intent-card {
  background: #ffffff;
}

.intent-card__tag {
  border-radius: 6px;
  background: var(--brand-fog);
}

.step-card__num {
  border-radius: 6px;
  background: var(--brand-deep);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(47, 93, 74, 0.34);
  box-shadow: 0 14px 28px rgba(24, 33, 29, 0.08);
}

.service-card a {
  color: var(--brand-deep);
}

.reason-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.work-card {
  border-radius: 8px;
  box-shadow: none;
}

.work-card__overlay {
  background: linear-gradient(180deg, rgba(12, 20, 18, 0.04), rgba(12, 20, 18, 0.86));
}

.work-card__overlay span {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.06em;
}

.faq-question::before,
.faq-question::after {
  background: var(--brand);
}

.contact__info div {
  border-radius: 8px;
}

.contact-card__badge {
  border-radius: 4px;
  background: rgba(37, 132, 214, 0.12);
  color: var(--line-green-deep);
}

.footer {
  background: #151d19;
}

.footer__nav h3,
.floating-line span {
  letter-spacing: 0.08em;
}

.floating-line {
  background: var(--line-green);
  box-shadow: 0 12px 28px rgba(18, 101, 176, 0.24);
}

@media (max-width: 920px) {
  .mobile-menu__panel {
    border-radius: 10px;
    background: rgba(22, 31, 28, 0.98);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 304px;
  }
}

/* Interaction refinement: quieter motion, smoother controls. */
.fade-up {
  transform: translateY(12px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.work-card img {
  transition:
    transform 560ms ease,
    filter 560ms ease;
}

.work-card:hover img {
  transform: scale(1.025);
  filter: saturate(0.96) contrast(1.02);
}

.work-card__overlay {
  transition: background 320ms ease;
}

.work-card:hover .work-card__overlay,
.work-card:focus-within .work-card__overlay {
  background: linear-gradient(180deg, rgba(12, 20, 18, 0.08), rgba(12, 20, 18, 0.9));
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    grid-template-rows 260ms ease,
    opacity 220ms ease,
    padding-bottom 260ms ease;
}

.faq-answer > * {
  min-height: 0;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
  opacity: 1;
}

.faq-question {
  transition: background-color 180ms ease;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: rgba(47, 93, 74, 0.04);
}

@media (max-width: 920px) {
  .mobile-menu {
    transition:
      opacity 220ms ease,
      transform 220ms ease;
    transform: translateY(-8px);
  }

  .mobile-menu.open {
    transform: translateY(0);
  }

  .mobile-menu__panel {
    transition: transform 220ms ease;
    transform: translateY(-6px);
  }

  .mobile-menu.open .mobile-menu__panel {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none;
  }
}

/* Contact section readability fix. */
.contact__intro h2 {
  color: #ffffff;
}

.contact__intro .section-copy--light {
  color: rgba(255, 255, 255, 0.9);
}

.contact__info div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Property management LP overrides after the design refresh. */
.pm-hero .pm-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.1), rgba(21, 28, 25, 0.1)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1800&q=78") center/cover no-repeat;
}

.leak-hero .leak-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.12), rgba(21, 28, 25, 0.12)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=78") center/cover no-repeat;
}

.reform-hero .reform-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.1), rgba(21, 28, 25, 0.1)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=78") center/cover no-repeat;
}

.pm-hero .hero__title {
  overflow-wrap: anywhere;
}

.leak-hero .hero__title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.reform-hero .hero__title {
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
}

.pm-lp {
  overflow-x: hidden;
}

.pm-lp h1,
.pm-lp h2,
.pm-lp h3,
.pm-lp p,
.pm-lp a,
.pm-lp li {
  overflow-wrap: anywhere;
}

.pm-lp .pm-band-cta {
  border-color: rgba(47, 93, 74, 0.18);
  background: #ffffff;
  box-shadow: none;
}

.pm-lp .pm-pill-grid span {
  border-radius: 8px;
  box-shadow: none;
}

.pm-evidence-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.pm-evidence-media {
  overflow: hidden;
  min-height: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.pm-evidence-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

@media (max-width: 720px) {
  .pm-hero .hero__title {
    font-size: clamp(2rem, 9.2vw, 3.1rem);
  }

  .leak-hero .hero__title {
    font-size: clamp(1.72rem, 7vw, 2.45rem);
  }

  .reform-hero .hero__title {
    font-size: clamp(1.8rem, 7.8vw, 2.55rem);
  }

  .pm-lp .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pm-lp .hero__actions .button {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .pm-evidence-grid,
  .pm-evidence-content {
    grid-template-columns: 1fr;
  }

  .pm-evidence-media img {
    min-height: 260px;
  }
}

.contact__info span {
  color: rgba(255, 255, 255, 0.72);
}

.contact__info strong {
  color: #ffffff;
}

/* 2026-05-28 LP visual alignment with the restored gsolifecare site. */
body:has(.pm-lp) {
  --ink: #1a1a1a;
  --ink-soft: #6b6b6b;
  --paper: #f6f3ec;
  --paper-strong: #eee7db;
  --surface: #ffffff;
  --surface-muted: #f8f6f1;
  --line: rgba(26, 26, 26, 0.1);
  --line-strong: rgba(26, 26, 26, 0.2);
  --brand: #2b5d3a;
  --brand-deep: #1f3427;
  --brand-fog: #e6eee1;
  --accent: #d4a853;
  --line-green: #2b5d3a;
  --line-green-deep: #1f3427;
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 18px 42px rgba(14, 21, 17, 0.18);
  color: var(--ink);
  background: #f6f3ec;
}

body:has(.pm-lp) .header {
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    backdrop-filter var(--transition);
}

body:has(.pm-lp) .header.is-scrolled {
  background: rgba(248, 246, 241, 0.92);
  border-bottom-color: rgba(226, 221, 213, 0.92);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

body:has(.pm-lp) .header.is-scrolled .site-nav a,
body:has(.pm-lp) .header.is-scrolled .logo__gso,
body:has(.pm-lp) .header.is-scrolled .logo__life,
body:has(.pm-lp) .header.is-scrolled .header-call {
  color: var(--brand-deep);
}

body:has(.pm-lp) .header.is-scrolled .logo__care {
  color: var(--accent);
  opacity: 1;
}

body:has(.pm-lp) .header.is-scrolled .header-call {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

body:has(.pm-lp) .header.is-scrolled .header-call span {
  color: var(--ink-soft);
}

body:has(.pm-lp) .logo {
  font-weight: 500;
  letter-spacing: -0.04em;
}

body:has(.pm-lp) .logo__gso,
body:has(.pm-lp) .logo__life {
  color: rgba(255, 255, 255, 0.96);
  opacity: 1;
}

body:has(.pm-lp) .logo__care {
  color: rgba(212, 168, 83, 0.96);
  opacity: 1;
}

body:has(.pm-lp) .site-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 400;
  letter-spacing: 0.08em;
}

body:has(.pm-lp) .site-nav a::after {
  height: 1px;
  background: currentColor;
}

body:has(.pm-lp) .header-call {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body:has(.pm-lp) .button {
  min-height: 3.5rem;
  border-radius: 0;
  font-weight: 400;
  letter-spacing: 0.12em;
  box-shadow: none;
}

body:has(.pm-lp) .button::after {
  content: "→";
  font-size: 0.95em;
}

body:has(.pm-lp) .button--primary,
body:has(.pm-lp) .button--line {
  border-color: var(--brand);
  background: rgba(43, 93, 58, 0.94);
  color: #ffffff;
}

body:has(.pm-lp) .button--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
}

.pm-lp {
  background: #f6f3ec;
}

.pm-lp .section {
  padding-block: clamp(5rem, 11vw, 9rem);
}

.pm-lp .section--soft {
  background: #eee7db;
}

.pm-lp .section--dark {
  background: var(--brand-deep);
}

.pm-lp .section--accent {
  background: #274c33;
}

.pm-lp .section-heading {
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.pm-lp .section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.pm-lp .eyebrow {
  color: var(--brand);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.pm-lp .eyebrow--hero,
.pm-lp .eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.pm-lp .hero.pm-hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 2.5rem) 0 2.25rem;
  background: #dfe7ec;
}

.pm-lp .pm-hero .hero__media {
  transform: none;
}

.pm-lp .pm-hero .hero__veil {
  background:
    linear-gradient(180deg, rgba(248, 246, 241, 0.16) 0%, rgba(248, 246, 241, 0.04) 34%, rgba(14, 21, 17, 0.3) 100%),
    linear-gradient(90deg, rgba(14, 21, 17, 0.7) 0%, rgba(14, 21, 17, 0.34) 46%, rgba(14, 21, 17, 0.08) 100%);
}

.pm-lp .pm-hero .hero__layout {
  min-height: calc(100svh - var(--header-height) - 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.pm-lp .hero__copy {
  max-width: 58rem;
  min-width: 0;
}

.pm-lp .pm-hero .hero__title {
  max-width: 56rem;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.04em;
  text-shadow: 0 10px 24px rgba(18, 28, 22, 0.18);
}

.pm-lp .pm-hero .hero__title span {
  display: block;
}

.pm-lp .leak-hero .hero__title,
.pm-lp .reform-hero .hero__title {
  font-size: clamp(2.1rem, 4.35vw, 4rem);
}

.pm-lp .hero__lead {
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.9;
}

.pm-lp .hero__trustline {
  gap: 0.6rem;
}

.pm-lp .hero__trustline span {
  min-height: 2.45rem;
  border-radius: 0;
  background: rgba(248, 246, 241, 0.12);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.pm-lp .hero__summary {
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(248, 246, 241, 0.14);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.pm-lp .hero__summary-label {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 400;
  letter-spacing: 0.18em;
}

.pm-lp .hero__summary-list li {
  font-weight: 400;
}

.pm-lp .hero__summary-list li::before {
  width: 0.45rem;
  height: 1px;
  border-radius: 0;
  background: var(--accent);
}

.pm-lp .hero__dock {
  position: relative;
  inset: auto;
  transform: none;
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 1.5rem auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.pm-lp .hero__dock-card {
  min-height: 6.8rem;
  border-radius: 0;
  border: 1px solid var(--line);
  border-right: 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.pm-lp .hero__dock-card:last-child {
  border-right: 1px solid var(--line);
}

.pm-lp .hero__dock-card--line {
  background: #e6eee1;
  color: var(--brand-deep);
}

.pm-lp .hero__dock-card--area {
  background: #eee7db;
  color: var(--brand-deep);
}

.pm-lp .hero__dock-card small,
.pm-lp .hero__dock-card--line small,
.pm-lp .hero__dock-card--area small {
  color: var(--ink-soft);
}

.pm-lp .pm-hero .pm-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.03), rgba(21, 28, 25, 0.03)),
    url("assets/hero/hero-town.png") center/cover no-repeat;
}

.pm-lp .leak-hero .leak-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.04), rgba(21, 28, 25, 0.04)),
    url("assets/hero/hero-roof-close.png") center 44%/cover no-repeat;
}

.pm-lp .reform-hero .reform-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.03), rgba(21, 28, 25, 0.03)),
    url("assets/hero/hero-house-wide.png") center 52%/cover no-repeat;
}

.pm-lp .paint-hero .paint-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.03), rgba(21, 28, 25, 0.03)),
    url("assets/hero/hero-painter.png") center 42%/cover no-repeat;
}

.pm-lp .roof-hero .roof-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.04), rgba(21, 28, 25, 0.04)),
    url("assets/hero/hero-roof-close.png") center 44%/cover no-repeat;
}

.pm-lp .business-hero .business-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.05), rgba(21, 28, 25, 0.05)),
    url("assets/hero/hero-town.png") center 48%/cover no-repeat;
}

.pm-lp .home-hero .home-hero__media {
  background:
    linear-gradient(0deg, rgba(21, 28, 25, 0.03), rgba(21, 28, 25, 0.03)),
    url("assets/hero/hero-house-wide.png") center 52%/cover no-repeat;
}

.pm-lp.home-lp .route-card {
  display: block;
  color: inherit;
}

.pm-lp.home-lp .route-card:hover,
.pm-lp.home-lp .route-card:focus-visible {
  border-color: rgba(43, 93, 58, 0.34);
  background: #ffffff;
}

.pm-lp.home-lp .route-card--wide {
  grid-column: span 2;
}

.pm-lp.home-lp .pm-band-cta {
  grid-template-columns: 1fr;
}

.pm-lp.home-lp .pm-band-cta h3,
.pm-lp.home-lp .pm-band-cta p,
.pm-lp.home-lp .pm-pill-grid span {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.pm-lp .case-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pm-lp .case-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.pm-lp .case-photo-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #dfe7ec;
}

.pm-lp .case-photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-lp .case-photo-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.55rem;
  background: rgba(39, 76, 51, 0.92);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.pm-lp .case-photo-card__body {
  display: grid;
  gap: 0.7rem;
  padding: 1.1rem;
}

.pm-lp .case-photo-card__body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.55;
}

.pm-lp .case-photo-card__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.pm-lp .case-study-list {
  display: grid;
  gap: 1.2rem;
}

.pm-lp .case-study-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.pm-lp .case-study-card__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.pm-lp .case-study-card__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #dfe7ec;
}

.pm-lp .case-study-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-lp .case-study-card__label {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.34rem 0.52rem;
  background: rgba(39, 76, 51, 0.92);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.pm-lp .case-study-card__body {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 0.35rem 0.25rem;
}

.pm-lp .case-study-card__tag {
  width: fit-content;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(39, 76, 51, 0.24);
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.pm-lp .case-study-card__body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.55;
}

.pm-lp .case-study-card__body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.pm-lp .case-study-card__meta {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pm-lp .case-study-card__meta li {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  gap: 0.6rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.pm-lp .case-study-card__meta span {
  color: var(--ink);
  font-weight: 700;
}

.pm-lp.business-lp .pm-band-cta {
  grid-template-columns: 1fr;
}

.pm-lp.business-lp .pm-band-cta h3,
.pm-lp.business-lp .pm-band-cta p,
.pm-lp.business-lp .pm-pill-grid span {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.pm-lp.roof-lp .pm-band-cta {
  grid-template-columns: 1fr;
}

.pm-lp.roof-lp .pm-band-cta h3,
.pm-lp.roof-lp .pm-band-cta p {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.pm-lp .overview-card,
.pm-lp .intent-card,
.pm-lp .service-card,
.pm-lp .reason-card,
.pm-lp .topic-card,
.pm-lp .area-card,
.pm-lp .step-card,
.pm-lp .faq-item,
.pm-lp .contact-card,
.pm-lp .pm-band-cta,
.pm-lp .pm-pill-grid span {
  border-radius: 0;
  box-shadow: none;
}

.pm-lp .overview-card,
.pm-lp .intent-card,
.pm-lp .service-card,
.pm-lp .topic-card,
.pm-lp .area-card,
.pm-lp .step-card,
.pm-lp .faq-item {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.pm-lp .intent-card__tag,
.pm-lp .service-card__eyebrow,
.pm-lp .overview-card__label,
.pm-lp .contact-card__label {
  color: var(--brand);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.pm-lp .intent-card__tag {
  border-radius: 0;
  background: var(--brand-fog);
}

.pm-lp .overview-card h3,
.pm-lp .intent-card h3,
.pm-lp .service-card h3,
.pm-lp .reason-card h3,
.pm-lp .topic-card h3,
.pm-lp .area-card h3,
.pm-lp .step-card h3,
.pm-lp .contact-card strong,
.pm-lp .faq-question {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.7;
}

.pm-lp .service-card {
  background: #ffffff;
}

.pm-lp .service-card:hover,
.pm-lp .service-card:focus-within {
  transform: none;
  border-color: rgba(43, 93, 58, 0.28);
  box-shadow: none;
}

.pm-lp .pm-check-list li::before,
.pm-lp .line-flow__points li::before,
.pm-lp .contact-card__list li::before {
  width: 0.45rem;
  height: 1px;
  border-radius: 0;
  background: var(--brand);
}

.pm-lp .pm-band-cta {
  background: #ffffff;
  border-color: rgba(43, 93, 58, 0.18);
}

.pm-lp .pm-pill-grid span {
  background: #ffffff;
  border-color: rgba(43, 93, 58, 0.14);
}

.pm-lp .pm-evidence-media {
  border-radius: 0;
  border-color: var(--line);
}

.pm-lp .contact-card--line,
.pm-lp .overview-card--accent {
  background: #e6eee1;
}

body:has(.pm-lp) .floating-line {
  border-radius: 0;
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1080px) {
  body:has(.pm-lp) .menu-toggle {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
  }

  body:has(.pm-lp) .header.is-scrolled .menu-toggle span {
    background: var(--ink);
  }

  body:has(.pm-lp) .mobile-menu__panel {
    border-radius: 0;
    background: #ffffff;
  }

  body:has(.pm-lp) .mobile-menu__nav a {
    color: var(--ink);
  }

  .pm-lp .pm-hero .hero__layout {
    grid-template-columns: 1fr;
  }

  .pm-lp .hero__summary {
    max-width: 34rem;
  }

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

  .pm-lp .hero__dock-card:nth-child(2n) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .pm-lp .hero.pm-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 1.5rem) 0 1rem;
  }

  .pm-lp .pm-hero .hero__layout {
    min-height: auto;
    gap: 1.5rem;
    width: calc(100% - 2rem);
    max-width: calc(100% - 2rem);
  }

  .pm-lp .pm-hero .hero__title,
  .pm-lp .leak-hero .hero__title,
  .pm-lp .reform-hero .hero__title,
  .pm-lp .paint-hero .hero__title,
  .pm-lp .roof-hero .hero__title {
    font-size: clamp(1.85rem, 8.5vw, 2.75rem);
    letter-spacing: 0.02em;
    max-width: 100%;
  }

  .pm-lp .hero__copy,
  .pm-lp .hero__copy * {
    min-width: 0;
  }

  .pm-lp .hero__lead {
    display: block;
    font-size: 0.9rem;
    width: 100%;
    max-width: 100%;
    line-break: anywhere;
    overflow-wrap: anywhere;
    word-break: break-all;
    white-space: normal;
  }

  .pm-lp .hero__trustline {
    display: grid;
  }

  .pm-lp .hero__trustline span {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
  }

  .pm-lp .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pm-lp .hero__actions .button {
    width: 100%;
  }

  .pm-lp .hero__summary {
    padding: 1.25rem;
  }

  .pm-lp .hero__dock {
    width: calc(100% - 2rem);
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .pm-lp .hero__dock-card,
  .pm-lp .hero__dock-card:nth-child(2n) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .pm-lp .hero__dock-card:last-child {
    border-bottom: 1px solid var(--line);
  }

  .pm-lp.home-lp .route-card--wide {
    grid-column: auto;
  }

  .pm-lp .case-photo-grid {
    grid-template-columns: 1fr;
  }

  .pm-lp .case-study-card {
    grid-template-columns: 1fr;
  }

  .pm-lp .section {
    padding-block: 4.5rem;
  }
}

.contact-card--line,
.contact-card--phone {
  color: var(--ink);
}

.contact-card--line strong,
.contact-card--phone strong {
  color: var(--ink);
}

.contact-card--line p,
.contact-card--phone p {
  color: var(--ink-soft);
}

.contact-card--line .contact-card__action {
  color: var(--line-green-deep);
}

.contact-card--phone .contact-card__action {
  color: var(--brand-deep);
}

.contact-card--note {
  background: rgba(255, 255, 255, 0.12);
}

.contact-card--note strong {
  color: #ffffff;
}

.contact-card--note .contact-card__label,
.contact-card--note p,
.contact-card--note li {
  color: rgba(255, 255, 255, 0.86);
}
