:root {
  --ink: #10233a;
  --navy: #183047;
  --navy-deep: #0c2033;
  --paper: #ffffff;
  --mist: #f6f4ef;
  --warm: #eee9df;
  --line: #d9d7d0;
  --muted: #68717a;
  --accent: #b88942;
  --accent-light: #d8b36d;
  --play: #d76a32;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", Georgia, serif;
  --sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #fff;
  background: var(--accent);
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  top: 16px;
}

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

.serif {
  font-family: var(--serif);
}

.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  color: #fff;
  transition: color .35s ease, background .35s ease, border-color .35s ease;
}

.header.is-scrolled {
  position: fixed;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(207, 212, 213, .72);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 64.4px;
  height: auto;
  aspect-ratio: 283.465 / 119.23;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}

.header.is-scrolled .brand-mark { filter: brightness(0) invert(.4); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header-nav a:not(.header-cta) {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.header-nav .official-site-link {
  overflow: hidden;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .82);
  line-height: 1;
  transform: translateY(0);
  transition: border-color .35s ease, background-color .35s ease,
    box-shadow .35s ease, transform .28s ease;
}

.header.is-scrolled .header-nav .official-site-link {
  border-color: rgba(16, 36, 58, .5);
}

.header-nav .official-site-link::after {
  display: none;
}

.header-nav .official-site-link::before {
  position: absolute;
  inset: -45% -75%;
  background: linear-gradient(110deg,
    transparent 40%,
    rgba(255, 255, 255, .38) 50%,
    transparent 60%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-55%) skewX(-14deg);
}

.header-nav .official-site-link:hover,
.header-nav .official-site-link:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 6px 18px rgba(3, 14, 25, .14);
  transform: translateY(-2px);
}

.header-nav .official-site-link:hover::before,
.header-nav .official-site-link:focus-visible::before {
  animation: official-site-link-sheen .7s ease-out both;
}

.header.is-scrolled .header-nav .official-site-link:hover,
.header.is-scrolled .header-nav .official-site-link:focus-visible {
  border-color: rgba(16, 36, 58, .82);
  background: rgba(16, 36, 58, .05);
}

@keyframes official-site-link-sheen {
  0% { opacity: 0; transform: translateX(-55%) skewX(-14deg); }
  22% { opacity: 1; }
  100% { opacity: 0; transform: translateX(55%) skewX(-14deg); }
}

@media (prefers-reduced-motion: reduce) {
  .header-nav .official-site-link {
    transition: border-color .2s ease, background-color .2s ease;
  }

  .header-nav .official-site-link:hover,
  .header-nav .official-site-link:focus-visible {
    transform: none;
  }

  .header-nav .official-site-link:hover::before,
  .header-nav .official-site-link:focus-visible::before {
    animation: none;
  }
}

.header-nav a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-height: 58px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}

.header-cta {
  min-height: 46px;
  gap: 16px;
  padding: 10px 18px;
}

.header:not(.is-scrolled) .header-cta {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.header:not(.is-scrolled) .header-cta:hover,
.header:not(.is-scrolled) .header-cta:focus-visible {
  color: #fff;
  background: transparent;
}

.header-cta::after,
.button::after {
  content: "↗";
  font-size: 15px;
  font-weight: 400;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--ink);
  background: transparent;
}

.button--light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button--light:hover,
.button--light:focus-visible {
  color: #fff;
  background: transparent;
}

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

.button--line:hover,
.button--line:focus-visible {
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--navy-deep);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
}

.hero-copy {
  position: relative;
  width: min(100%, 930px);
  padding: 118px 0 44px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.kicker::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 7.3vw, 112px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.07em;
  text-shadow: 0 8px 40px rgba(5, 13, 19, .2);
}

.hero h1 span {
  display: block;
  color: var(--accent-light);
  white-space: nowrap;
  transform: translateX(.36em);
}

.hero-description {
  max-width: 470px;
  margin: 44px 0 0 6px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  letter-spacing: .03em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 36px 0 0 6px;
}

.hero-phone {
  display: grid;
  gap: 1px;
  line-height: 1.25;
}

.hero-phone strong {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .04em;
}

.hero-phone small {
  color: rgba(255, 255, 255, .66);
  font-size: 9px;
  letter-spacing: .06em;
}

.hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 20, 28, .42) 0%, rgba(8, 20, 28, .29) 42%, rgba(8, 20, 28, .06) 78%),
    linear-gradient(0deg, rgba(8, 20, 28, .275) 0%, transparent 45%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(.78) contrast(1.06);
}

.hero-caption {
  position: absolute;
  right: 40px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-index {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  letter-spacing: .2em;
}

.hero-index::after {
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, .42);
  content: "";
}

.hero .button {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.hero .button:hover,
.hero .button:focus-visible {
  color: #fff;
  background: transparent;
}

.manifesto {
  padding: 170px 0 190px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: .52fr 1.48fr;
  gap: 8vw;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  align-self: start;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .2em;
}

.section-label::after {
  width: 64px;
  height: 1px;
  background: var(--line);
  content: "";
}

.manifesto-copy h2 {
  max-width: 790px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: -.045em;
}

.manifesto-copy p {
  max-width: 590px;
  margin: 50px 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.manifesto-link::after {
  content: "→";
  transition: transform .3s ease;
}

.manifesto-link:hover::after {
  transform: translateX(6px);
}

.accent-text {
  color: var(--accent);
}

.accent-text-light {
  color: var(--accent-light);
}

.visual-story {
  overflow: clip;
  padding: 20px 0 240px;
  background: var(--paper);
}

.visual-story-head {
  position: relative;
  z-index: 5;
  width: min(72%, 820px);
  margin: 0 0 74px auto;
}

.visual-story-head h2 {
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -.055em;
}

.visual-story-head p {
  max-width: 520px;
  margin: 38px 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.visual-collage {
  position: relative;
  min-height: min(72vw, 920px);
}

.visual-main {
  width: 77%;
  height: min(62vw, 730px);
  margin: 0;
  background: var(--warm);
}

.visual-main img,
.visual-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-main img {
  object-position: center 42%;
  filter: saturate(.76) contrast(1.03);
}

.visual-main figcaption,
.visual-inset figcaption {
  position: absolute;
  z-index: 4;
  color: #fff;
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.visual-main figcaption {
  bottom: 22px;
  left: 24px;
}

.visual-collage .visual-inset {
  position: absolute;
  top: 52%;
  right: 1.5%;
  z-index: 4;
  width: 35%;
  height: min(38vw, 450px);
  margin: 0;
  border: 12px solid #fff;
  background: #fff;
  box-shadow: 0 32px 80px rgba(20, 34, 43, .18);
}

.visual-inset img {
  filter: saturate(.64) contrast(1.05);
}

.visual-inset figcaption {
  right: 18px;
  bottom: 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}

.visual-note {
  position: absolute;
  right: 2%;
  bottom: -74px;
  z-index: 5;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.7;
  letter-spacing: -.025em;
}

.visual-note span {
  display: inline-block;
  margin-right: 16px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  vertical-align: middle;
}

.proof {
  color: #fff;
  background: var(--navy);
}

.proof-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 760px;
}

.proof-media {
  position: relative;
  min-height: 760px;
  margin-left: calc((100vw - min(100vw - 80px, var(--container))) / -2);
}

.proof-media img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(.2) saturate(.55) brightness(.78);
}

.proof-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 36, 49, .05), var(--navy) 100%);
  content: "";
}

.proof-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0 90px 6vw;
}

.proof-content .section-label {
  color: rgba(255, 255, 255, .62);
}

.proof-content .section-label::after {
  background: rgba(255, 255, 255, .28);
}

.proof-content h2 {
  margin: 42px 0 64px;
  font-family: var(--serif);
  font-size: clamp(36px, 3.7vw, 52px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.04em;
}

.proof-numbers {
  display: grid;
  gap: 30px;
}

.proof-number {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.proof-number strong {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.proof-number strong small {
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
}

.proof-number span {
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  letter-spacing: .1em;
}

.editorial-section {
  padding: 170px 0;
}

.editorial-head {
  display: grid;
  grid-template-columns: .52fr 1.48fr;
  gap: 8vw;
  margin-bottom: 90px;
}

.editorial-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.05em;
}

.editorial-head h2 span {
  display: block;
  color: var(--accent);
}

.worry-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
  align-items: start;
}

.worry-photo {
  position: relative;
  min-height: 820px;
}

.worry-photo img {
  height: 820px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78);
}

.photo-note {
  position: absolute;
  bottom: 22px;
  left: -30px;
  padding: 10px 16px;
  color: #fff;
  background: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}

.worry-list {
  display: grid;
  padding-top: 70px;
}

.worry-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.worry-item:last-child {
  border-bottom: 1px solid var(--line);
}

.worry-item .number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
}

.worry-item h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.worry-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.method {
  padding: 0 0 170px;
  background: var(--mist);
}

.method-visual {
  position: relative;
  height: min(37.5vw, 410px);
  min-height: 310px;
  overflow: hidden;
}

.method-visual img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.04);
}

.method-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 27, 34, .06), rgba(16, 27, 34, .4));
  content: "";
}

.method-title {
  position: absolute;
  right: max(40px, calc((100vw - var(--container)) / 2));
  bottom: 56px;
  z-index: 2;
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 500;
  line-height: 1.3;
  text-align: right;
  letter-spacing: -.05em;
}

.method-content {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 8vw;
  padding-top: 100px;
}

.method-lead {
  max-width: 780px;
}

.method-lead h3 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.55;
}

.method-lead p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 86px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-step {
  min-height: 230px;
  padding: 28px 28px 38px;
  border-right: 1px solid var(--line);
}

.method-step:last-child {
  border-right: 0;
}

.method-step span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 13px;
}

.method-step h3 {
  margin: 56px 0 12px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.method-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.compare {
  padding: 170px 0;
}

.compare-layout {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 9vw;
  align-items: start;
}

.compare-intro h2 {
  margin: 36px 0 26px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1.42;
}

.compare-intro p {
  color: var(--muted);
  font-size: 13px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.compare-table th,
.compare-table td {
  padding: 24px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  border-top: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}

.compare-table th:first-child,
.compare-table td:first-child {
  width: 22%;
  border-right: 1px solid rgba(13, 40, 59, .24);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}

.compare-table .featured {
  color: var(--accent);
}

.price-band {
  color: #fff;
  background: var(--navy-deep);
}

.price-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: 720px;
}

.price-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 100px 0;
}

.price-copy .section-label {
  color: rgba(255, 255, 255, .58);
}

.price-copy .section-label::after {
  background: rgba(255, 255, 255, .22);
}

.price-copy h2 {
  margin: 42px 0 54px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1.45;
}

.price-value {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .26);
  border-bottom: 1px solid rgba(255, 255, 255, .26);
}

.price-value strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(62px, 8vw, 104px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.05em;
}

.price-value strong small {
  margin-left: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
}

.price-value span,
.price-copy > p {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

.price-support {
  display: grid;
  grid-template-rows: 1fr 1fr;
  margin-right: calc((100vw - min(100vw - 80px, var(--container))) / -2);
  background: #fff;
}

.support-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 32px;
  align-content: center;
  padding: 60px 9vw 60px 70px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.support-item:last-child {
  border-bottom: 0;
}

.support-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 18px;
}

.support-item h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.support-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-scene {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.cta-scene img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: saturate(.45) brightness(.45);
}

.cta-scene::after {
  position: absolute;
  inset: 0;
  background: rgba(16, 28, 36, .24);
  content: "";
}

.cta-scene-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 840px);
}

.cta-scene-content p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  letter-spacing: .14em;
}

.cta-scene-content h2 {
  margin: 0 0 46px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.05em;
}

.cta-scene-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.cta-scene-phone {
  display: grid;
  text-align: left;
  line-height: 1.25;
}

.cta-scene-phone strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .05em;
}

.cta-scene-phone small {
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
}

.works {
  padding: 170px 0;
}


.reasons {
  position: relative;
  overflow: hidden;
  padding: 148px 0 126px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .94), transparent 48%),
    #faf8f3;
  isolation: isolate;
}

.reasons::before,
.reasons::after {
  position: absolute;
  z-index: -1;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 18px,
    rgba(184, 137, 66, .14) 18.5px 19.5px
  );
  content: "";
  pointer-events: none;
}

.reasons::before {
  top: -224px;
  right: -144px;
}

.reasons::after {
  bottom: -250px;
  left: -168px;
}

.reasons__head {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}

.reasons__head .section-label {
  justify-content: center;
  color: var(--accent);
}

.reasons__head .section-label::after {
  width: 66px;
}

.reasons__head h2 {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 62px);
  font-weight: 500;
  letter-spacing: .025em;
  line-height: 1.38;
}

.reasons__head h2 span {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.reasons__head h2 span::after {
  position: absolute;
  right: -.12em;
  bottom: .08em;
  left: -.12em;
  z-index: -1;
  height: .28em;
  background: linear-gradient(90deg, rgba(216, 179, 109, .12), rgba(216, 179, 109, .42));
  content: "";
  transform: scaleX(.1);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.2, .75, .2, 1) .35s;
}

.reasons__head.is-visible h2 span::after {
  transform: scaleX(1);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-card {
  position: relative;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 270px;
  padding: 34px 34px 32px 30px;
  border: 1px solid rgba(184, 137, 66, .42);
  background: rgba(255, 255, 255, .5);
  box-shadow: 0 18px 50px rgba(16, 35, 58, 0);
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.reason-card::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 112px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  content: "";
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .8s cubic-bezier(.2, .75, .2, 1) calc(var(--reveal-delay, 0ms) + 260ms);
}

.reason-card.is-visible::before {
  transform: translateX(-50%) scaleX(1);
}

.reason-card:hover {
  border-color: rgba(184, 137, 66, .78);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 20px 60px rgba(16, 35, 58, .08);
  transform: translateY(-5px);
}

.reason-card__mark {
  display: grid;
  justify-items: center;
  align-content: center;
  align-self: stretch;
}

.reason-card__number {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
}

.reasons-icon {
  --sprite-position: 0%;
  display: block;
  width: 128px;
  height: 98px;
  background-image: url("kyowa-reasons-icon-sprite-v52.png");
  background-repeat: no-repeat;
  background-position: var(--sprite-position) center;
  background-size: 1100% 100%;
  filter: saturate(.92) contrast(1.03);
  transition: transform .5s cubic-bezier(.2, .75, .2, 1), filter .4s ease;
}

.reason-card:hover .reasons-icon {
  filter: saturate(1.08) contrast(1.06);
  transform: translateY(-4px);
}

.reasons-icon--01 { --sprite-position: 0%; }
.reasons-icon--02 { --sprite-position: 10%; }
.reasons-icon--03 { --sprite-position: 20%; }
.reasons-icon--04 { --sprite-position: 30%; }
.reasons-icon--05 { --sprite-position: 40%; }
.reasons-icon--06 { --sprite-position: 50%; }
.reasons-icon--07 { --sprite-position: 60%; }
.reasons-icon--08 { --sprite-position: 70%; }
.reasons-icon--09 { --sprite-position: 80%; }
.reasons-icon--10 { --sprite-position: 90%; }
.reasons-icon--11 { --sprite-position: 100%; }

.reason-card__body h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1.55;
}

.reason-card__body p {
  margin: 0;
  color: #334457;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2.05;
}

.reason-underline {
  padding-bottom: .14em;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
}

.reason-badges {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 38px 0 0;
  padding: 34px 0 0;
  border-top: 1px solid var(--accent);
  list-style: none;
}

.reason-badge {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  min-height: 184px;
  padding: 2px 15px 0;
  text-align: center;
  border-right: 1px solid rgba(184, 137, 66, .3);
}

.reason-badge:last-child {
  border-right: 0;
}

.reason-badge .reasons-icon {
  width: 94px;
  height: 72px;
  margin-bottom: 16px;
}

.reason-badge strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1.75;
}

.reason-badge:hover .reasons-icon {
  filter: saturate(1.08) contrast(1.06);
  transform: translateY(-5px) scale(1.025);
}

@media (max-width: 1080px) {
  .reason-card {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
    padding-inline: 24px;
  }

  .reason-card__number {
    font-size: 56px;
  }

  .reason-card__mark .reasons-icon {
    width: 108px;
    height: 83px;
  }

  .reason-badge {
    padding-inline: 9px;
  }

  .reason-badge strong {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    grid-template-columns: 142px minmax(0, 1fr);
    min-height: 245px;
    padding: 30px 36px;
  }

  .reason-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 30px;
  }

  .reason-badge:nth-child(4) {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .reasons {
    padding: 98px 0 88px;
  }

  .reasons::before,
  .reasons::after {
    width: 240px;
  }

  .reasons::before {
    top: -158px;
    right: -110px;
  }

  .reasons::after {
    bottom: -170px;
    left: -120px;
  }

  .reasons__head {
    margin-bottom: 48px;
  }

  .reasons__head h2 {
    margin-top: 22px;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.5;
  }

  .reasons-grid {
    gap: 14px;
  }

  .reason-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 28px 20px 26px;
  }

  .reason-card::before {
    left: 22px;
    width: 72px;
    transform: scaleX(0);
    transform-origin: left;
  }

  .reason-card.is-visible::before {
    transform: scaleX(1);
  }

  .reason-card__mark {
    align-self: start;
  }

  .reason-card__number {
    margin-bottom: 4px;
    font-size: 45px;
  }

  .reason-card__mark .reasons-icon {
    width: 84px;
    height: 64px;
  }

  .reason-card__body h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.55;
  }

  .reason-card__body p {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.9;
  }

  .reason-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
    margin-top: 28px;
    padding-top: 24px;
  }

  .reason-badge {
    min-height: 158px;
    padding: 16px 8px 18px;
    border-bottom: 1px solid rgba(184, 137, 66, .24);
  }

  .reason-badge:nth-child(even) {
    border-right: 0;
  }

  .reason-badge:last-child {
    grid-column: 1 / -1;
    width: 50%;
    margin-inline: auto;
    border-left: 1px solid rgba(184, 137, 66, .3);
    border-bottom: 0;
  }

  .reason-badge .reasons-icon {
    width: 82px;
    height: 63px;
    margin-bottom: 10px;
  }

  .reason-badge strong {
    font-size: 13px;
    line-height: 1.65;
  }
}

.works-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 80px;
}

.works-head h2 {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1.3;
}

.works-head p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.work-list {
  display: grid;
  gap: 100px;
}

.work-item {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 6vw;
  align-items: center;
}

.work-item:nth-child(even) {
  grid-template-columns: .65fr 1.35fr;
}

.work-item:nth-child(even) .work-photos {
  order: 2;
}

.work-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.work-photo {
  position: relative;
  overflow: hidden;
}

.work-photo img {
  height: 440px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.work-photo:hover img {
  transform: scale(1.035);
}

.work-photo span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding-bottom: 3px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.work-info .work-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 15px;
}

.work-info h3 {
  margin: 24px 0 20px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
}

.work-info p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.voice-area {
  padding: 170px 0;
}

.voice-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 9vw;
}

.voice-intro h2 {
  margin: 36px 0 28px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.42;
}

.voice-intro p {
  color: var(--muted);
  font-size: 13px;
}

.voice-list {
  display: grid;
}

.voice-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.voice-item:last-child {
  border-bottom: 1px solid var(--line);
}

.voice-item__content {
  min-width: 0;
}

.voice-person {
  position: relative;
  display: block;
  overflow: hidden;
  width: 72px;
  aspect-ratio: 1;
  margin-top: 2px;
  border: 1px solid rgba(184, 137, 66, .55);
  border-radius: 50%;
  background: #f8f7f3;
  box-shadow: 0 10px 26px rgba(16, 35, 58, .08);
}

.voice-person img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .12em;
}

.voice-item blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 2.05;
}

.area-flow {
  padding: 170px 0;
  color: #fff;
  background: var(--navy);
}

.area-flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.flow-content {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}
.flow-content__image {
  width: min(100%, 300px);
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.flow-content__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.area-content .section-label,
.flow-content .section-label {
  color: rgba(255, 255, 255, .58);
}

.area-content .section-label::after,
.flow-content .section-label::after {
  background: rgba(255, 255, 255, .22);
}

.area-content h2,
.flow-content h2 {
  margin: 36px 0 26px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.45;
}

.flow-content h2 .flow-content__accent {
  color: var(--accent-light);
}

.area-content > p {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.area-map {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 0;
  border: 1px solid rgba(216, 179, 109, .36);
  background: #faf7f3;
  box-shadow: 0 24px 54px rgba(5, 19, 35, .18);
}

.area-map picture,
.area-map img {
  display: block;
  width: 100%;
}

.area-map img {
  height: auto;
}

.flow-list {
  margin-top: 0;
}

.flow-content__cta {
  margin-top: 40px;
}

.flow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.flow-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.flow-item .number {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 16px;
}

.flow-item h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.flow-item p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.faq {
  padding: 170px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 9vw;
}

.faq-intro h2 {
  margin: 36px 0 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 54px 28px 46px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 17px;
}

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

.faq-list summary::before {
  position: absolute;
  top: 28px;
  left: 0;
  color: var(--accent);
  content: "Q";
  font-family: var(--serif);
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 20px;
  height: 20px;
  content: "+";
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 54px 30px 46px;
  color: var(--muted);
  font-size: 13px;
}

.contact {
  padding: 170px 0;
  background: var(--warm);
}

.contact-head {
  display: grid;
  grid-template-columns: .52fr 1.48fr;
  gap: 8vw;
  margin-bottom: 80px;
}

.contact-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1.4;
}

.contact-head h2 span {
  display: block;
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 0;
}

.contact-aside {
  padding: 54px 48px;
  color: #fff;
  background: var(--navy-deep);
}

.contact-aside h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.contact-aside > p {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.contact-points {
  display: grid;
  gap: 0;
  margin: 44px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  list-style: none;
}

.contact-points li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  font-size: 12px;
}

.contact-phone {
  display: grid;
  line-height: 1.25;
}

.contact-phone strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .04em;
}

.contact-phone small {
  color: rgba(255, 255, 255, .6);
  font-size: 10px;
}

.form {
  position: relative;
  padding: 54px 58px;
  background: #fff;
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 42px;
}

.form-steps span {
  padding-bottom: 10px;
  color: #9ca3a6;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
}

.form-steps .active {
  color: var(--accent);
  border-color: var(--accent);
}

.form-panel[hidden] {
  display: none;
}

.form-panel__title {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  text-align: center;
}

.form-confirm__list {
  margin: 0;
}

.form-confirm__list > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.form-confirm__list dt {
  font-size: 12px;
  font-weight: 700;
}

.form-confirm__list dd {
  min-width: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 12px;
  margin-top: 32px;
}

.form-actions .button,
.form-complete .button {
  width: 100%;
  cursor: pointer;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: .65;
}

.form-button--secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.form-preview-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

.form-complete {
  padding: 30px 0 8px;
  text-align: center;
}

.form-complete__mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--accent);
  font-size: 30px;
  font-weight: 700;
}

.form-complete > p:not(.form-complete__mark) {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.form-complete .form-button--secondary {
  margin-top: 28px;
}

.form-error-message {
  margin-bottom: 18px;
  padding: 12px 14px;
  color: #9e3327;
  border-left: 3px solid var(--accent);
  background: #fff2ee;
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.form-row label {
  padding-top: 11px;
  font-size: 12px;
  font-weight: 700;
}

.required,
.optional {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 5px;
  font-size: 8px;
  vertical-align: 2px;
}

.required {
  color: #fff;
  background: var(--accent);
}

.optional {
  color: var(--muted);
  background: var(--mist);
}

.field-control input,
.field-control textarea {
  width: 100%;
  padding: 11px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #b8c0c2;
  border-radius: 0;
  background: transparent;
  outline: none;
  transition: border-color .25s ease;
}

.field-control textarea {
  min-height: 110px;
  resize: vertical;
}

.field-control input:focus,
.field-control textarea:focus {
  border-color: var(--accent);
}

.field-control input.is-error,
.field-control textarea.is-error {
  border-color: #bd3528;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #b1362a;
  font-size: 10px;
}

.form-submit {
  width: 100%;
  margin-top: 32px;
  cursor: pointer;
}

.form-privacy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.form-privacy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  padding: 76px 0 110px;
  color: rgba(255, 255, 255, .66);
  background: #0e1e29;
  font-size: 11px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
}

.footer .brand {
  color: #fff;
}

.footer .brand-mark { filter: brightness(0) invert(1); }

.footer h3 {
  margin: 26px 0 12px;
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.footer-links a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.copyright {
  margin-top: 50px;
  color: rgba(255, 255, 255, .36);
  font-size: 9px;
  letter-spacing: .08em;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 10px 10px 18px;
  color: #fff;
  background: rgba(19, 36, 49, .96);
  box-shadow: 0 14px 38px rgba(10, 23, 31, .23);
  backdrop-filter: blur(12px);
}

.sticky-cta-copy {
  line-height: 1.35;
}

.sticky-cta-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

.sticky-cta-copy span {
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
}

.sticky-cta .button {
  min-height: 44px;
  padding: 10px 15px;
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}

.sticky-cta .button:hover {
  color: #fff;
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2, .65, .2, 1), transform .9s cubic-bezier(.2, .65, .2, 1);
}

.reveal--left {
  transform: translate3d(-46px, 20px, 0);
}

.reveal--right {
  transform: translate3d(46px, 20px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

[data-parallax] > img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.075);
  transform-origin: center;
  will-change: transform;
}

.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--paper);
  content: "";
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.1s cubic-bezier(.75, 0, .2, 1);
}

.image-reveal.dark-cover::after {
  background: var(--navy);
}

.image-reveal.is-visible::after {
  transform: scaleX(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 4px;
}


.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy-deep);
  pointer-events: none;
  animation: intro-loader-out .72s cubic-bezier(.76, 0, .24, 1) 1.35s forwards;
}

.intro-loader__inner {
  width: min(calc(100% - 64px), 460px);
}

.intro-loader__inner > span,
.intro-loader__inner > small {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: intro-copy-in .6s cubic-bezier(.2, .65, .2, 1) .12s forwards;
}

.intro-loader__inner > span {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: .16em;
}

.intro-loader__inner > small {
  margin-top: 12px;
  color: rgba(255, 255, 255, .55);
  font-size: 8px;
  letter-spacing: .28em;
  animation-delay: .5s;
}

.intro-loader__line {
  height: 1px;
  margin-top: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.intro-loader__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: left;
  animation: intro-line 1.05s cubic-bezier(.76, 0, .24, 1) .25s forwards;
}

body.is-ready .intro-loader {
  animation-delay: .15s;
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 2px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent-light);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
  will-change: transform;
}

.journey-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 34;
  display: grid;
  width: 84px;
  gap: 13px;
  padding: 16px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(207, 212, 213, .6);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
}

.journey-rail a {
  display: grid;
  grid-template-columns: 20px 42px;
  align-items: center;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .08em;
  white-space: nowrap;
  transition: color .35s ease;
}

.journey-rail a span {
  font-family: var(--serif);
  font-size: 10px;
}

.journey-rail a:hover,
.journey-rail a.is-active {
  color: var(--accent);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: calc(100vw / 6) 100%;
  content: "";
  opacity: .18;
  pointer-events: none;
}

.hero-media img {
  animation: hero-cinematic 13s cubic-bezier(.2, .5, .2, 1) both;
}

.hero-copy .kicker,
.hero-description,
.hero-trust,
.hero-actions,
.hero-index,
.hero-scroll {
  opacity: 0;
  transform: translateY(20px);
}

body.is-ready .hero-copy .kicker,
body.is-ready .hero-description,
body.is-ready .hero-trust,
body.is-ready .hero-actions,
body.is-ready .hero-index,
body.is-ready .hero-scroll {
  animation: hero-detail-in .82s cubic-bezier(.2, .65, .2, 1) forwards;
}

body.is-ready .hero-copy .kicker { animation-delay: .25s; }
body.is-ready .hero-description { animation-delay: .8s; }
body.is-ready .hero-trust { animation-delay: .92s; }
body.is-ready .hero-actions { animation-delay: 1.04s; }
body.is-ready .hero-index,
body.is-ready .hero-scroll { animation-delay: 1.15s; }

.hero h1 .hero-line {
  display: block;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  transform: none;
}

.hero h1 .hero-line > span {
  display: block;
  color: inherit;
  transform: translateY(112%) rotate(2deg);
  transform-origin: left bottom;
}

.hero h1 .hero-line--accent {
  color: var(--accent-light);
  transform: translateX(.36em);
}

body.is-ready .hero h1 .hero-line > span {
  animation: hero-line-in 1s cubic-bezier(.76, 0, .24, 1) .42s forwards;
}

body.is-ready .hero h1 .hero-line--accent > span {
  animation-delay: .57s;
}

.hero-trust {
  display: flex;
  gap: 8px;
  margin: 24px 0 0 6px;
}

.hero-trust span {
  padding: 5px 10px;
  color: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .32);
  font-size: 9px;
  letter-spacing: .12em;
}

.hero-scroll {
  position: absolute;
  right: 96px;
  bottom: 64px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 8px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  position: relative;
  width: 18px;
  height: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 999px;
  background: rgba(8, 20, 28, .08);
}

.hero-scroll i::after {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transform: translate(-50%, 0);
  animation: scroll-cue 1.8s cubic-bezier(.45, 0, .25, 1) infinite;
}

.value-marquee {
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.value-marquee__track {
  display: flex;
  align-items: center;
  gap: 38px;
  width: max-content;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  animation: marquee-flow 30s linear infinite;
}

.value-marquee__track span {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: .08em;
}

.value-marquee__track i {
  color: var(--accent-light);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .12em;
}

.value-marquee__track i::before {
  margin-right: 38px;
  content: "●";
  font-size: 6px;
  vertical-align: middle;
}

.value-marquee__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
  padding: 27px 0 30px;
}

.value-marquee__cta p {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin: 0;
}

.value-marquee__cta strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.value-marquee__cta small {
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
}

.value-marquee__cta a {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .62);
  font-size: 11px;
  letter-spacing: .08em;
}

.value-marquee__cta a span {
  transition: transform .3s ease;
}

.value-marquee__cta a:hover span {
  transform: translate(4px, -4px);
}

.reveal[data-reveal] {
  transition-duration: .95s;
  transition-delay: var(--reveal-delay, 0ms);
  transition-timing-function: cubic-bezier(.2, .65, .2, 1);
}

.reveal[data-reveal="slide-left"] {
  transform: translate3d(-64px, 12px, 0);
}

.reveal[data-reveal="slide-right"] {
  transform: translate3d(64px, 12px, 0);
}

.reveal[data-reveal="mask"] {
  clip-path: inset(0 0 100% 0);
  opacity: 1;
  transform: translateY(28px);
  transition-property: clip-path, transform;
  transition-duration: 1.1s;
  transition-timing-function: cubic-bezier(.76, 0, .24, 1);
}

.reveal[data-reveal="blur"] {
  filter: blur(18px);
  transform: scale(.97);
  transition-property: opacity, filter, transform;
}

.reveal[data-reveal="card"] {
  transform: translateY(56px) rotate(.7deg);
  transition-property: opacity, transform, box-shadow;
}

.reveal[data-reveal="step"] {
  transform: translateX(80px);
  transition-property: opacity, transform, border-color, background;
}

.reveal[data-reveal="wipe"] {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  transform: none;
  transition-property: clip-path;
  transition-duration: 1.25s;
  transition-timing-function: cubic-bezier(.76, 0, .24, 1);
}

.reveal[data-reveal].is-visible {
  clip-path: inset(0);
  filter: none;
  opacity: 1;
  transform: none;
}

.image-reveal[data-wipe="up"]::after {
  transform: scaleY(1);
  transform-origin: bottom;
}

.image-reveal[data-wipe="up"].is-visible::after {
  transform: scaleY(0);
}

.image-reveal[data-wipe="right"]::after {
  transform-origin: left;
}

.image-reveal[data-wipe="left"]::after {
  transform-origin: right;
}

.image-reveal[data-wipe="circle"]::after {
  clip-path: circle(76% at 50% 50%);
  transform: none;
  transition: clip-path 1.35s cubic-bezier(.76, 0, .24, 1);
}

.image-reveal[data-wipe="circle"].is-visible::after {
  clip-path: circle(0 at 50% 50%);
  transform: none;
}

.choice-cta {
  position: relative;
  overflow: hidden;
  padding: 170px 0;
  background: #f4f1ea;
}

.choice-cta__gridline {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29, 48, 65, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 48, 65, .055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.choice-cta__head {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 78px;
  text-align: center;
}

.choice-cta__head .section-label {
  justify-content: center;
}

.choice-cta__head h2 {
  margin: 36px 0 28px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.6vw, 74px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.05em;
}

.choice-cta__head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.choice-cta__options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 54px 56px;
  background: #fff;
  border: 1px solid rgba(23, 35, 43, .1);
  transition: color .45s ease, background .45s ease, transform .45s ease;
}

.choice-card::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "↗";
  display: grid;
  place-items: center;
  transition: transform .45s cubic-bezier(.2, .65, .2, 1), background .45s ease;
}

.choice-card > span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .16em;
}

.choice-card h3 {
  margin: 80px 0 28px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.04em;
}

.choice-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.choice-card i {
  margin-top: auto;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
}

.choice-card--dark {
  color: #fff;
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.choice-card--dark p,
.choice-card--dark > span {
  color: rgba(255, 255, 255, .62);
}

.choice-card:hover {
  z-index: 2;
  color: #fff;
  background: var(--accent);
  transform: translateY(-10px);
}

.choice-card:hover p,
.choice-card:hover > span {
  color: rgba(255, 255, 255, .78);
}

.choice-card:hover::after {
  color: var(--accent);
  background: #fff;
  transform: rotate(45deg) scale(1.08);
}

.choice-cta__note {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.method-journey {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 8vw;
  margin-top: 110px;
}

.method-sticky {
  position: sticky;
  top: 126px;
  display: flex;
  flex-direction: column;
  align-self: start;
  min-height: 480px;
  padding: 42px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.method-sticky::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  content: "";
}

.method-sticky > span {
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  letter-spacing: .2em;
}

.method-sticky strong {
  margin-top: auto;
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: clamp(110px, 14vw, 190px);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.08em;
  transition: opacity .25s ease, transform .45s cubic-bezier(.2, .65, .2, 1);
}

.method-sticky.is-changing strong,
.method-sticky.is-changing p {
  opacity: 0;
  transform: translateY(12px);
}

.method-progress {
  height: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, .18);
}

.method-progress i {
  display: block;
  width: var(--method-progress, 33.333%);
  height: 100%;
  background: var(--accent-light);
  transition: width .55s cubic-bezier(.2, .65, .2, 1);
}

.method-sticky p {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  transition: opacity .25s ease, transform .45s cubic-bezier(.2, .65, .2, 1);
}

.method-journey .method-steps {
  display: block;
  margin: 0;
}

.method-journey .method-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48vh;
  padding: 70px 54px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.method-journey .method-step:last-child {
  border-bottom: 1px solid var(--line);
}

.method-journey .method-step.is-method-active {
  background: rgba(255, 255, 255, .68);
}

.method-journey .method-step h3 {
  margin: 38px 0 18px;
  font-size: clamp(27px, 3vw, 42px);
}

.method-journey .method-step > span {
  color: var(--accent);
}

.compare-table tbody tr {
  opacity: 0;
  transform: translateX(42px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .65, .2, 1);
  transition-delay: calc(var(--row-index, 0) * 90ms);
}

.compare-table-wrapper.is-visible tbody tr {
  opacity: 1;
  transform: none;
}

.price-value [data-count],
.proof-number [data-count] {
  font-variant-numeric: tabular-nums;
}

.cta-scene__ring {
  position: absolute;
  top: 12%;
  right: 8%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-scene__ring-company {
  --circle-radius: 88px;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  font-size: 0;
  animation: orbit-spin 28s linear infinite reverse;
  transform-origin: center;
}

.cta-scene__ring-company > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 1em;
  margin: -.5em 0 0 -.5em;
  color: rgba(255, 255, 255, .72);
  font-size: 7px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transform: rotate(calc(var(--char-angle) - 90deg)) translateX(var(--circle-radius)) rotate(90deg);
  transform-origin: center;
}

.work-list {
  gap: 18vh;
}

.work-item {
  position: sticky;
  top: 112px;
  min-height: calc(100svh - 152px);
  padding: 38px;
  background: #fff;
  border: 1px solid rgba(23, 35, 43, .1);
  box-shadow: 0 24px 70px rgba(19, 36, 49, .08);
  transform: scale(var(--work-scale, 1)) rotate(var(--work-rotate, 0deg));
  transform-origin: center top;
  transition: box-shadow .4s ease;
}

.work-item:nth-child(1) { z-index: 1; --work-rotate: -.25deg; }
.work-item:nth-child(2) { z-index: 2; --work-rotate: .22deg; }
.work-item:nth-child(3) { z-index: 3; --work-rotate: -.12deg; }

.work-item.is-stacked {
  box-shadow: 0 12px 38px rgba(19, 36, 49, .12);
}

.sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition: opacity .35s ease, transform .55s cubic-bezier(.2, .65, .2, 1);
}

.sticky-cta.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.sticky-cta-copy strong,
.sticky-cta-copy span {
  transition: opacity .2s ease, transform .2s ease;
}

.sticky-cta.is-changing .sticky-cta-copy strong,
.sticky-cta.is-changing .sticky-cta-copy span {
  opacity: 0;
  transform: translateY(6px);
}

@supports (animation-timeline: view()) {
  .method-title {
    animation: method-title-drift linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 55%;
  }

  .cta-scene-content {
    animation: cta-content-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 60%;
  }
}

@keyframes intro-copy-in {
  to { opacity: 1; transform: none; }
}

@keyframes intro-line {
  55% { transform: scaleX(1); transform-origin: left; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes intro-loader-out {
  to { opacity: 0; visibility: hidden; clip-path: inset(0 0 100%); }
}

@keyframes hero-cinematic {
  from { transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.14); }
  to { transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.075); }
}

@keyframes hero-line-in {
  to { transform: none; }
}

@keyframes hero-detail-in {
  to { opacity: 1; transform: none; }
}

@keyframes scroll-cue {
  0% { opacity: 0; transform: translate(-50%, 0) scale(.7); }
  18% { opacity: 1; }
  64% { opacity: 1; transform: translate(-50%, 10px) scale(1); }
  100% { opacity: 0; transform: translate(-50%, 14px) scale(.7); }
}

@keyframes hero-price-line-flow {
  0% { transform: translateX(-100%); }
  58%, 100% { transform: translateX(100%); }
}

@keyframes marquee-flow {
  to { transform: translateX(-50%); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes method-title-drift {
  from { transform: translateY(60px); opacity: .35; }
  to { transform: none; opacity: 1; }
}

@keyframes cta-content-drift {
  from { transform: translateY(80px); }
  to { transform: translateY(-20px); }
}

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

  .header-nav a:not(.header-cta) {
    display: none;
  }

  .hero-inner,
  .proof-inner,
  .price-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: min(100%, 800px);
  }

  .hero-media {
    min-height: 100%;
    margin: 0;
  }

  .hero-media img {
    min-height: 100%;
    object-position: 58% center;
  }

  .visual-story-head {
    width: min(82%, 760px);
  }

  .proof-media {
    min-height: 600px;
    margin-right: calc((100vw - min(100vw - 48px, var(--container))) / -2);
    margin-left: calc((100vw - min(100vw - 48px, var(--container))) / -2);
  }

  .proof-content {
    padding: 90px 0;
  }

  .price-support {
    margin-right: calc((100vw - min(100vw - 48px, var(--container))) / -2);
    margin-left: calc((100vw - min(100vw - 48px, var(--container))) / -2);
  }

  .method-title {
    right: 24px;
  }

  .work-item,
  .work-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .work-item:nth-child(even) .work-photos {
    order: 0;
  }

  .work-info {
    max-width: 560px;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .brand {
    gap: 8px;
    font-size: 13px;
  }

  .brand-mark {
    width: 50.4px;
  }

  .header-nav {
    gap: 10px;
  }

  .header-cta {
    min-height: 39px;
    padding: 8px 12px;
    font-size: 10px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    color: var(--ink);
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .header:not(.is-scrolled) .menu-toggle {
    color: #fff;
  }

  .menu-open .header {
    position: fixed;
    background: var(--navy-deep);
  }

  .menu-toggle::before,
  .menu-toggle::after {
    grid-area: 1 / 1;
    width: 24px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform .3s ease;
  }

  .menu-toggle::before {
    transform: translateY(-4px);
  }

  .menu-toggle::after {
    transform: translateY(4px);
  }

  .menu-toggle[aria-expanded="true"]::before {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 68px 0 0;
    z-index: 39;
    display: grid;
    align-content: center;
    gap: 24px;
    padding: 36px;
    color: #fff;
    background: var(--navy-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease;
  }

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

  .mobile-menu a {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    font-family: var(--serif);
    font-size: 22px;
  }

  .hero {
    min-height: 100svh;
    padding: 0;
  }

  .hero-inner {
    display: flex;
    min-height: 100svh;
  }

  .hero-copy {
    padding: 88px 0 114px;
  }

  .kicker {
    margin-bottom: 28px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 46px);
    line-height: 1.24;
  }

  .hero h1 span {
    white-space: nowrap;
    transform: translateX(.12em);
  }

  .hero-description {
    max-width: 94%;
    margin-top: 28px;
    font-size: 12px;
    line-height: 1.85;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .hero-media {
    inset: 0;
    height: auto;
    min-height: 100%;
    margin: 0;
  }

  .hero-media img {
    min-height: 100%;
    object-position: 63% center;
  }

  .hero-media::before {
    display: block;
    background:
      linear-gradient(90deg, rgba(8, 20, 28, .4), rgba(8, 20, 28, .1)),
      linear-gradient(0deg, rgba(8, 20, 28, .41) 0%, rgba(8, 20, 28, .09) 70%);
  }

  .hero-caption {
    right: 18px;
    bottom: 18px;
  }

  .hero-index {
    display: none;
  }

  .manifesto,
  .editorial-section,
  .compare,
  .works,
  .voice-area,
  .area-flow,
  .faq,
  .contact {
    padding: 110px 0;
  }

  .visual-story {
    padding: 20px 0 150px;
  }

  .visual-story-head {
    width: 100%;
    margin: 0 0 52px;
  }

  .visual-story-head h2 {
    margin-top: 28px;
    font-size: 40px;
    line-height: 1.42;
  }

  .visual-story-head p {
    margin-top: 30px;
    font-size: 13px;
  }

  .visual-collage {
    min-height: calc(68svh + 205px);
  }

  .visual-main {
    width: calc(100% + 18px);
    height: 68svh;
    min-height: 520px;
    margin-left: -18px;
  }

  .visual-main img {
    object-position: 52% center;
  }

  .visual-collage .visual-inset {
    top: 48svh;
    right: -18px;
    width: 62%;
    height: 57vw;
    min-height: 210px;
    border-width: 7px;
  }

  .visual-main figcaption {
    bottom: 16px;
    left: 18px;
  }

  .visual-inset figcaption {
    right: 10px;
    bottom: 8px;
    font-size: 7px;
  }

  .visual-note {
    right: auto;
    bottom: 0;
    left: 0;
    font-size: 21px;
  }

  .manifesto-grid,
  .editorial-head,
  .method-content,
  .compare-layout,
  .voice-layout,
  .area-flow-grid,
  .faq-layout,
  .contact-head,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid,
  .editorial-head,
  .contact-head {
    gap: 46px;
  }

  .manifesto-copy h2,
  .editorial-head h2,
  .contact-head h2 {
    font-size: 38px;
  }

  .manifesto-copy p {
    margin-top: 36px;
  }

  .proof-inner {
    min-height: auto;
  }

  .proof-media {
    min-height: 68svh;
    margin: 0 calc((100vw - min(100vw - 36px, var(--container))) / -2);
  }

  .proof-content {
    padding: 90px 0 100px;
  }

  .proof-content h2 {
    margin: 36px 0 48px;
    font-size: 38px;
  }

  .proof-number strong {
    font-size: 48px;
  }

  .worry-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .worry-photo {
    min-height: 68svh;
    margin-right: -18px;
  }

  .worry-photo img {
    height: 68svh;
    min-height: 540px;
  }

  .photo-note {
    left: 10px;
  }

  .worry-list {
    padding-top: 20px;
  }

  .worry-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .worry-item h3 {
    font-size: 20px;
  }

  .method {
    padding-bottom: 110px;
  }

  .method-visual {
    height: 36svh;
    min-height: 280px;
  }

  .method-title {
    right: 18px;
    bottom: 30px;
    left: 18px;
    font-size: 42px;
    text-align: left;
  }

  .method-content {
    gap: 42px;
    padding-top: 78px;
  }

  .method-lead h3 {
    font-size: 30px;
  }

  .method-steps {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .method-step {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .method-step:last-child {
    border-bottom: 0;
  }

  .method-step h3 {
    margin: 22px 0 8px;
  }

  .compare-layout,
  .voice-layout,
  .faq-layout {
    gap: 60px;
  }

  .compare-table-wrapper {
    overflow-x: auto;
    margin-right: -18px;
  }

  .compare-table {
    min-width: 620px;
  }

  .price-inner {
    min-height: auto;
  }

  .price-copy {
    padding: 100px 0;
  }

  .price-copy h2 {
    font-size: 38px;
  }

  .price-support {
    margin: 0 calc((100vw - min(100vw - 36px, var(--container))) / -2);
  }

  .support-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 54px 18px;
  }

  .support-item h3 {
    font-size: 21px;
  }

  .cta-scene {
    min-height: 78svh;
  }

  .cta-scene-content h2 {
    font-size: 42px;
  }

  .cta-scene-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .cta-scene-actions .button {
    width: 100%;
  }

  .cta-scene-phone {
    text-align: center;
  }

  .works-head {
    align-items: start;
    flex-direction: column;
    margin-bottom: 58px;
  }

  .works-head h2 {
    font-size: 40px;
  }

  .work-list {
    gap: 86px;
  }

  .work-photos {
    gap: 5px;
    margin: 0 -18px;
  }

  .work-photo img {
    height: 48vw;
    min-height: 210px;
  }

  .work-info h3 {
    font-size: 26px;
  }

  .voice-item blockquote {
    font-size: 17px;
  }

  .voice-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 30px 0;
  }

  .voice-person {
    width: 54px;
    box-shadow: inset 0 0 0 5px rgba(184, 137, 66, .045);
  }

  .area-flow-grid {
    gap: 100px;
  }

  .area-map {
    margin-right: -18px;
    margin-left: -18px;
  }

  .faq-list summary {
    padding-right: 40px;
    padding-left: 34px;
    font-size: 15px;
  }

  .faq-list summary::before {
    left: 0;
  }

  .faq-answer {
    padding-right: 10px;
    padding-left: 34px;
  }

  .contact-grid {
    margin: 0 -18px;
  }

  .contact-aside,
  .form {
    padding: 42px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .form-confirm__list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-row label {
    padding-top: 0;
  }

  .footer {
    padding-bottom: 120px;
  }

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

  .sticky-cta {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 8px 8px 12px;
  }

  .sticky-cta-copy strong {
    font-size: 13px;
  }

  .sticky-cta .button {
    min-height: 42px;
    gap: 10px;
    padding: 9px 12px;
    font-size: 10px;
  }
}

/* Three-photo layout for the consultation-to-construction flow. */
.flow-content__images {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 440px);
  aspect-ratio: 1.156 / 1;
  margin: 0;
}

.flow-content__images .flow-content__image {
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  aspect-ratio: auto;
  border: 1px solid rgba(216, 179, 109, .3);
  background: #0b1d2f;
}

.flow-content__image--main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.flow-content__images .flow-content__image--small {
  position: relative;
  z-index: 1;
  border: 4px solid #f7f4ee;
  box-shadow: 0 8px 20px rgba(3, 14, 25, .28);
}

.flow-content__image--small:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
  z-index: 2;
  transform: translate(calc(-90% - 2cm), 7%) rotate(-2deg);
}

.flow-content__image--small:last-child {
  grid-column: 2;
  grid-row: 2;
  z-index: 1;
  transform: translate(calc(-12% - 2cm), 7%) rotate(2deg);
}

.flow-content__images .flow-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-line__copy .contact-line__brand {
  color: #d5aa61;
  font-style: normal;
}

.contact-line__copy strong .contact-line__brand {
  color: #06c755;
}

@media (max-width: 720px) {
  .flow-content__images {
    width: min(92vw, 390px);
    margin-inline: auto;
    gap: 8px;
  }
}

@media (max-width: 1350px) {
  .journey-rail {
    display: none;
  }
}

@media (max-width: 720px) {
  .intro-loader__inner {
    width: calc(100% - 48px);
  }

  .intro-loader__inner > span {
    font-size: 25px;
  }

  .hero h1 .hero-line--accent {
    transform: translateX(.1em);
  }

  .hero-trust {
    gap: 5px;
    margin-top: 18px;
  }

  .hero-trust span {
    padding: 4px 7px;
    font-size: 8px;
  }

  .hero-scroll {
    display: none;
  }

  .value-marquee__track {
    gap: 24px;
    padding: 16px 0;
    animation-duration: 24s;
  }

  .value-marquee__track span {
    font-size: 22px;
  }

  .value-marquee__track i {
    font-size: 9px;
  }

  .value-marquee__track i::before {
    margin-right: 24px;
  }

  .value-marquee__cta {
    align-items: stretch;
    flex-direction: column;
    width: calc(100% - 36px);
    gap: 20px;
    padding: 24px 0 28px;
  }

  .value-marquee__cta p {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .value-marquee__cta strong {
    font-size: 17px;
  }

  .value-marquee__cta a {
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
  }

  .reveal[data-reveal="slide-left"] {
    transform: translate3d(-34px, 10px, 0);
  }

  .reveal[data-reveal="slide-right"],
  .reveal[data-reveal="step"] {
    transform: translate3d(34px, 10px, 0);
  }

  .choice-cta {
    padding: 110px 0;
  }

  .choice-cta__gridline {
    background-size: 64px 64px;
  }

  .choice-cta__head {
    margin-bottom: 48px;
    text-align: left;
  }

  .choice-cta__head .section-label {
    justify-content: flex-start;
  }

  .choice-cta__head h2 {
    margin-top: 28px;
    font-size: 38px;
  }

  .choice-cta__options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .choice-card {
    min-height: 390px;
    padding: 34px 28px;
  }

  .choice-card h3 {
    margin: 52px 0 22px;
    font-size: 34px;
  }

  .choice-card::after {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

  .choice-cta__note {
    font-size: 10px;
    line-height: 1.8;
    text-align: left;
  }

  .method-journey {
    display: block;
    margin-top: 72px;
  }

  .method-sticky {
    display: none;
  }

  .method-journey .method-step {
    min-height: 330px;
    padding: 54px 20px;
    border-bottom: 1px solid var(--line);
  }

  .method-journey .method-step h3 {
    margin-top: 30px;
    font-size: 29px;
  }

  .cta-scene__ring {
    top: 10%;
    right: -38px;
    width: 126px;
    height: 126px;
  }

  .cta-scene__ring-company {
    --circle-radius: 58px;
  }

  .cta-scene__ring-company > span {
    font-size: 5px;
  }

  .work-list {
    gap: 90px;
  }

  .work-item,
  .work-item:nth-child(1),
  .work-item:nth-child(2),
  .work-item:nth-child(3) {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 0 0 32px;
    border: 0;
    box-shadow: none;
    transform: none;
  }
}



h1,
h2,
h3 {
  font-feature-settings: "palt" 1;
  text-wrap: balance;
}

.hero-copy {
  width: min(100%, 720px);
  padding-top: 116px;
}

.hero .kicker {
  gap: 14px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .92);
  font-size: 11px;
  letter-spacing: .14em;
}

.hero .kicker::before {
  width: 34px;
  background: var(--accent-light);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 6.2vw, 92px);
  line-height: 1.08;
  letter-spacing: -.065em;
}

.hero h1.hero-title--cover-choice {
  max-width: 800px;
  font-size: clamp(36px, 4.7vw, 58px);
  line-height: 1.28;
  letter-spacing: -.05em;
}

.hero-title__accent {
  color: var(--accent-light);
  font-style: normal;
  text-shadow: 0 8px 34px rgba(5, 13, 19, .24);
}

.hero-choice-break {
  display: none;
}

.hero h1 .hero-line--accent {
  color: var(--accent-light);
  transform: none;
}

.hero-description {
  max-width: 520px;
  margin-top: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.9;
}

.hero-description strong {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(transparent 72%, rgba(216, 179, 109, .42) 72%);
}

.hero-trust {
  margin-top: 18px;
}

.hero-trust span {
  padding: 5px 11px;
  border-color: rgba(216, 179, 109, .48);
  color: rgba(255, 255, 255, .88);
  background: rgba(12, 32, 51, .22);
  backdrop-filter: blur(5px);
}

.hero-actions {
  margin-top: 26px;
}

.hero .button {
  color: #fff;
  border-color: var(--accent);
  background: linear-gradient(120deg, #c79a50, #ad7b35);
  box-shadow: 0 16px 38px rgba(8, 20, 31, .24);
}

.hero .button:hover,
.hero .button:focus-visible {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.hero-phone strong {
  color: var(--accent-light);
}

.hero-concern-card {
  position: absolute;
  right: 0;
  bottom: 72px;
  z-index: 4;
  width: 350px;
  padding: 25px 27px 22px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 2px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 70px rgba(5, 18, 29, .26);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translate3d(30px, 24px, 0) rotate(1.5deg);
}

body.is-ready .hero-concern-card {
  animation: hero-concern-in .95s cubic-bezier(.2, .65, .2, 1) 1.02s forwards;
}

.hero-concern-card__title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero-concern-card__title span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--play);
  font-family: var(--serif);
  font-size: 14px;
}

.hero-concern-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-concern-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid rgba(16, 35, 58, .12);
}

.hero-concern-card li i {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 9px;
  font-style: normal;
}

.hero-concern-card li q {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.hero-concern-card__note {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 35, 58, .12);
  color: var(--muted);
  font-size: 10px;
}

.hero-concern-card__note strong {
  margin-left: 4px;
  color: var(--accent);
}

.hero-concern-card__title .hero-concern-card__area {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--play);
  font-size: 14px;
  white-space: nowrap;
}

.hero-concern-card__title .hero-concern-card__price {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.hero-concern-card__title small {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-concern-card__conditions {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 35, 58, .12);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(7, 21, 34, .62) 0%, rgba(7, 21, 34, .39) 43%, rgba(7, 21, 34, .03) 72%, transparent 86%),
    linear-gradient(0deg, rgba(7, 21, 34, .34) 0%, transparent 52%);
}

.manifesto {
  position: relative;
  overflow: clip;
  padding: 150px 0 170px;
  background: #fff;
}

.manifesto::before {
  position: absolute;
  top: 14%;
  right: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184, 137, 66, .16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.manifesto::after {
  position: absolute;
  top: calc(14% + 70px);
  right: -100px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(184, 137, 66, .11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.concern-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(68px, 8vw, 120px);
  align-items: start;
}

.concern-intro {
  position: sticky;
  top: 136px;
  align-self: start;
}

.concern-symbol {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 0 30px;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(184, 137, 66, .34);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 32px rgba(16, 35, 58, .09);
  font-family: var(--serif);
  font-size: 32px;
  transform: rotate(-7deg);
}

.concern-intro h2 {
  margin: 36px 0 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -.055em;
}

.concern-intro__lead {
  max-width: 440px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.concern-intro__lead strong {
  color: var(--accent);
  font-weight: 700;
}

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

.concern-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  overflow: hidden;
  padding: 32px 30px 30px;
  border: 1px solid rgba(16, 35, 58, .1);
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 35, 58, .07);
  transition: color .45s ease, background .45s ease, transform .45s cubic-bezier(.2, .65, .2, 1), box-shadow .45s ease;
}

.concern-card:nth-child(even) {
  margin-top: 54px;
}

.concern-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 4px;
  background: var(--accent);
  content: "";
  transform: translateX(36px);
  transition: width .45s ease, transform .45s ease;
}

.concern-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(184, 137, 66, .2);
  border-radius: 50%;
  content: "";
  transition: transform .55s ease;
}

.concern-card.is-visible:hover {
  color: #fff;
  background: var(--navy-deep);
  box-shadow: 0 24px 60px rgba(12, 32, 51, .18);
  transform: translateY(-10px) rotate(-.4deg);
}

.concern-card.is-visible:hover::before {
  width: 100%;
  transform: none;
}

.concern-card.is-visible:hover::after {
  border-color: rgba(216, 179, 109, .42);
  transform: scale(1.35);
}

.concern-card__number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(184, 137, 66, .34);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 12px;
}

.concern-card__label {
  margin: 22px 0 0;
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}

.concern-card h3 {
  margin: 14px 0 18px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.1vw, 29px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -.035em;
}

.concern-card > p:last-child {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
}

.concern-card:hover > p:last-child,
.concern-card:hover .concern-card__label {
  color: rgba(255, 255, 255, .67);
}

.visual-story-ghost {
  position: absolute;
  top: 10%;
  left: -2vw;
  z-index: 5;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-family: var(--serif);
  font-size: clamp(72px, 10.5vw, 158px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.08em;
  text-shadow: 0 8px 40px rgba(12, 32, 51, .12);
  white-space: nowrap;
  pointer-events: none;
  transform: translate3d(var(--story-type-x, 0px), 0, 0);
  will-change: transform;
}

@keyframes hero-concern-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-1.2deg);
  }
}

@media (max-width: 1100px) {
  .hero-concern-card {
    display: none;
  }

  .hero-copy {
    width: min(100%, 780px);
  }
}

@media (max-width: 980px) {
  .concern-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .concern-intro {
    position: relative;
    top: auto;
    max-width: 650px;
  }

  .concern-intro h2 {
    max-width: 640px;
  }

  .concern-cards {
    max-width: 760px;
    margin-left: auto;
  }
}

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

  .hero .kicker {
    gap: 10px;
    margin-bottom: 20px;
    font-size: 9px;
    letter-spacing: .1em;
  }

  .hero .kicker::before {
    width: 24px;
  }

  .hero h1 {
    font-size: clamp(35px, 10vw, 42px);
    line-height: 1.18;
    letter-spacing: -.065em;
  }

  .hero h1.hero-title--cover-choice {
    font-size: clamp(29px, 8.1vw, 35px);
    line-height: 1.3;
    letter-spacing: -.055em;
  }

  .hero-title--cover-choice .hero-choice-break {
    display: block;
  }

  .hero h1 .hero-line--accent {
    transform: none;
  }

  .hero-description {
    max-width: 100%;
    margin-top: 24px;
    font-size: 11px;
    line-height: 1.75;
  }

  .hero-trust {
    flex-wrap: wrap;
    margin: 16px 0 0;
  }

  .hero-trust span {
    padding: 4px 7px;
    font-size: 7px;
  }

  .hero-actions {
    gap: 10px;
    margin: 22px 20px 0 0;
  }

  .hero-actions .button {
    min-height: 52px;
  }

  .hero-phone strong {
    font-size: 22px;
  }

  .manifesto {
    padding: 96px 0 110px;
  }

  .manifesto::before,
  .manifesto::after {
    display: none;
  }

  .concern-layout {
    gap: 50px;
  }

  .concern-symbol {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    font-size: 26px;
  }

  .concern-intro h2 {
    margin-top: 28px;
    font-size: 39px;
    line-height: 1.42;
  }

  .concern-intro__lead {
    margin-top: 28px;
    font-size: 12px;
  }

  .concern-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .concern-card,
  .concern-card:nth-child(even) {
    min-height: 275px;
    margin-top: 0;
    padding: 28px 25px;
  }

  .concern-card h3 {
    font-size: 25px;
  }

  .visual-story-ghost {
    top: 8%;
    left: -16%;
    color: rgba(255, 255, 255, .82);
    font-size: 58px;
  }
}



.particle-inspection {
  position: relative;
  height: 235svh;
  min-height: 1640px;
  color: var(--ink);
  background: #f8f7f3;
}

.particle-inspection__sticky {
  --particle-progress: 0;
  --particle-photo: 0;
  --particle-scan: 0;
  --particle-opacity: 1;
  --blueprint-opacity: 0;
  --blueprint-mask-opacity: 0;
  --blueprint-paper: #f8f7f3;
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 77% 48%, rgba(216, 179, 109, .1), transparent 31%),
    linear-gradient(135deg, #fff 0%, #f8f7f3 68%, #f2efe7 100%);
}

.particle-inspection__sticky::before,
.particle-inspection__sticky::after {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(184, 137, 66, .13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.particle-inspection__sticky::before {
  top: 12%;
  right: -9vw;
  width: min(54vw, 760px);
  aspect-ratio: 1;
}

.particle-inspection__sticky::after {
  top: 22%;
  right: 3vw;
  width: min(35vw, 500px);
  aspect-ratio: 1;
}

.particle-inspection__canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 35%;
  z-index: 2;
  width: 65%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
  mix-blend-mode: multiply;
}

.particle-enhanced .particle-inspection__canvas {
  opacity: var(--particle-opacity);
}

.particle-inspection__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(90deg, rgba(16, 35, 58, .055) 1px, transparent 1px);
  background-size: calc(100vw / 8) 100%;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .72), transparent 79%);
  pointer-events: none;
}

.particle-inspection__content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(390px, .82fr) minmax(430px, 1.18fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
  height: 100%;
  padding-top: 42px;
}

.particle-inspection__copy {
  position: relative;
  z-index: 5;
  max-width: 520px;
}

.particle-inspection__label {
  color: var(--muted);
}

.particle-inspection__label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(184, 137, 66, .12);
}

.particle-inspection__copy h2 {
  margin: 38px 0 0;
  font-family: var(--serif);
  font-size: clamp(45px, 5.4vw, 74px);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: -.06em;
}

.particle-inspection__copy h2 .particle-title__accent {
  color: var(--accent);
}

.particle-inspection__copy h2 .particle-title__particle {
  display: inline-block;
  font-size: .75em;
  letter-spacing: 0;
  vertical-align: baseline;
}

html .particle-inspection__intro .particle-inspection__highlight {
  margin: 20px 0 14px;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .02em;
}

.particle-inspection__copy > p {
  max-width: 455px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.particle-inspection__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.particle-inspection__steps li {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  padding: 13px 12px;
  color: rgba(16, 35, 58, .34);
  border-right: 1px solid var(--line);
  transition: color .45s ease, background .45s ease, box-shadow .45s ease, opacity .45s ease;
}

.particle-inspection__steps li:last-child {
  border-right: 0;
}

.particle-inspection__steps li::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #9b6a22, #d1a457);
  box-shadow: 0 2px 9px rgba(184, 137, 66, .28);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2, .65, .2, 1);
}

.particle-inspection__steps li.is-active {
  color: var(--ink);
  background: rgba(184, 137, 66, .13);
  box-shadow: inset 0 0 0 1px rgba(184, 137, 66, .22);
}

.particle-inspection__steps li.is-active::before {
  transform: scaleX(1);
}

.particle-inspection__steps li.is-active > span {
  color: #8f611e;
  font-weight: 700;
}

.particle-inspection__steps span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 9px;
}

.particle-inspection__steps strong {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.particle-inspection__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 420px);
  min-height: 76px;
  margin-top: 30px;
  padding: 15px 17px 15px 24px;
  color: #fff;
  background: linear-gradient(120deg, #c99d54, #aa7730);
  box-shadow: 0 18px 44px rgba(103, 72, 28, .16);
  transition: box-shadow .35s ease, transform .35s ease, filter .35s ease;
}

.particle-inspection__cta:hover,
.particle-inspection__cta:focus-visible {
  box-shadow: 0 24px 52px rgba(103, 72, 28, .23);
  filter: brightness(1.05);
  transform: translateY(-4px);
}

.particle-inspection__cta > span {
  display: grid;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.particle-inspection__cta small {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .08em;
  opacity: .72;
}

.particle-inspection__cta i {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 50%;
  font-style: normal;
  transition: color .35s ease, background .35s ease, transform .35s ease;
}

.particle-inspection__cta:hover i {
  color: var(--accent);
  background: #fff;
  transform: rotate(45deg);
}

.particle-inspection__visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  pointer-events: none;
}

@media (min-width: 721px) {
  .particle-inspection__sticky,
  .particle-inspection__content {
    height: max(100svh, 900px);
    min-height: 900px;
  }

  .particle-inspection__content {
    padding-bottom: 42px;
  }

  .particle-inspection__visual {
    min-height: clamp(560px, calc(100svh - 84px), 760px);
  }
}

.particle-inspection__photo {
  position: absolute;
  right: 1%;
  bottom: 8%;
  z-index: 5;
  width: min(22vw, 280px);
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, .96);
  background: var(--warm);
  box-shadow: 0 30px 74px rgba(16, 35, 58, .2), 0 0 0 1px rgba(188, 139, 54, .18);
  clip-path: inset(0);
  opacity: 0;
  transform: translate3d(0, calc((1 - var(--particle-photo)) * 46px), 0) rotate(2deg) scale(calc(.96 + var(--particle-photo) * .04));
  transform-origin: center bottom;
  will-change: opacity, transform;
}

.particle-enhanced .particle-inspection__photo {
  opacity: var(--particle-photo);
}

.particle-inspection__speech {
  position: absolute;
  right: clamp(170px, 19vw, 250px);
  bottom: calc(clamp(270px, 43%, 360px) - 19px);
  z-index: 7;
  width: max-content;
  max-width: min(250px, 33vw);
  margin: 0;
  padding: 13px 19px 14px;
  border: 1px solid rgba(188, 139, 54, .56);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 16px 40px rgba(16, 35, 58, .14);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: .035em;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(16px, 10px, 0) scale(.96);
  transform-origin: right bottom;
  will-change: opacity, transform;
}

.particle-inspection__speech::before {
  position: absolute;
  top: -1px;
  left: 18px;
  width: 42px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.particle-inspection__speech::after {
  position: absolute;
  right: -9px;
  bottom: 20px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(188, 139, 54, .56);
  border-right: 1px solid rgba(188, 139, 54, .56);
  background: rgba(255, 253, 248, .96);
  content: "";
  transform: rotate(45deg);
}

.particle-enhanced .particle-inspection__speech {
  opacity: clamp(0, calc((var(--particle-photo) - .52) * 2.2), 1);
  transform: translate3d(calc((1 - var(--particle-photo)) * 16px), calc((1 - var(--particle-photo)) * 10px), 0) scale(calc(.96 + var(--particle-photo) * .04));
}

html:not(.particle-enhanced) .particle-inspection__photo,
html:not(.particle-enhanced) .particle-inspection__speech {
  opacity: 1;
  transform: rotate(2deg);
}

.particle-inspection__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.78) contrast(1.03);
}

.particle-inspection__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 32, 51, .34), transparent 46%);
  content: "";
}

.particle-inspection__photo figcaption {
  position: absolute;
  right: 13px;
  bottom: 11px;
  z-index: 2;
  color: #fff;
  font-size: 7px;
  letter-spacing: .13em;
  writing-mode: vertical-rl;
}

.particle-inspection__blueprint {
  position: absolute;
  inset: 7% -1% 2% -8%;
  z-index: 3;
  display: grid;
  place-items: center;
  opacity: var(--blueprint-opacity);
  pointer-events: none;
  transform-origin: center;
  will-change: opacity;
}

.blueprint-elevation {
  width: 100%;
  height: 100%;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.blueprint-line {
  fill: none;
  stroke: #18364e;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.blueprint-surface {
  fill: var(--blueprint-paper);
  stroke: none;
  opacity: var(--blueprint-mask-opacity);
}

.blueprint-surface--roof,
.blueprint-surface--opening {
  fill: var(--blueprint-paper);
}

.blueprint-line--primary {
  stroke-width: 1.15;
  opacity: .9;
}

.blueprint-line--detail {
  stroke-width: .7;
  opacity: .72;
}

.blueprint-line--fine {
  stroke-width: .48;
  opacity: .46;
}

.blueprint-line--guide {
  stroke: rgba(24, 54, 78, .42);
  stroke-width: .5;
  opacity: .52;
}

.blueprint-line--axis {
  stroke: rgba(184, 137, 66, .32);
  stroke-width: .45;
  opacity: .46;
}

.blueprint-callout {
  --callout-progress: 0;
  opacity: var(--callout-progress);
  transform: translateY(calc((1 - var(--callout-progress)) * 7px));
  transform-box: fill-box;
  transform-origin: center;
}

.blueprint-callout__ring,
.blueprint-callout__leader {
  fill: none;
  stroke: #b88942;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: .8;
  vector-effect: non-scaling-stroke;
}

.blueprint-callout__ring {
  stroke-width: 1;
}

.blueprint-callout__dot {
  fill: #b88942;
  transform: scale(var(--callout-progress));
  transform-box: fill-box;
  transform-origin: center;
}

.blueprint-callout__name,
.blueprint-callout__meta {
  paint-order: stroke fill;
  stroke: rgba(248, 247, 243, .95);
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.blueprint-callout__name {
  fill: #10233a;
  stroke-width: 3px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: .09em;
}

.blueprint-callout__meta {
  fill: #9b7135;
  stroke-width: 2px;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: .15em;
}

.blueprint-elevation__caption {
  position: absolute;
  right: 9%;
  bottom: 2.5%;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(16, 35, 58, .66);
  font-family: var(--serif);
  font-size: 8px;
  letter-spacing: .18em;
  white-space: nowrap;
}

.blueprint-elevation__caption i {
  width: 34px;
  height: 1px;
  background: rgba(184, 137, 66, .52);
}

.blueprint-elevation__caption small {
  font-family: var(--sans);
  font-size: 6px;
  letter-spacing: .14em;
}

.particle-inspection__phase {
  position: absolute;
  top: 9%;
  right: 1%;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .16em;
}

.particle-inspection__phase span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(184, 137, 66, .4);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 10px;
}

.particle-inspection__phase p {
  min-width: 112px;
  margin: 0;
}

.particle-inspection__scroll {
  position: absolute;
  right: 26px;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(16, 35, 58, .48);
  font-size: 7px;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}

.particle-inspection__scroll i {
  position: relative;
  width: 1px;
  height: 64px;
  overflow: hidden;
  background: rgba(16, 35, 58, .18);
}

.particle-inspection__scroll i::after {
  position: absolute;
  inset: 0;
  background: var(--accent);
  content: "";
  transform: translateY(-100%);
  animation: particle-scroll-cue 2s ease-in-out infinite;
}

@keyframes particle-scroll-cue {
  45%, 100% { transform: translateY(100%); }
}

@media (max-width: 980px) {
  .particle-inspection {
    height: 220svh;
  }

  .particle-inspection__content {
    grid-template-columns: minmax(340px, .9fr) minmax(300px, 1.1fr);
    gap: 32px;
  }

  .particle-inspection__copy h2 {
    font-size: clamp(42px, 6.8vw, 62px);
  }

  .particle-inspection__steps strong {
    font-size: 11px;
  }

  .particle-inspection__photo {
    width: min(31vw, 300px);
  }
}

@media (max-width: 720px) {
  .particle-inspection {
    height: auto;
    min-height: 0;
  }

  .particle-inspection__sticky {
    position: relative;
    height: auto;
    min-height: 0;
  }

  .particle-inspection__sticky::before {
    top: 49%;
    right: -38%;
    width: 118vw;
  }

  .particle-inspection__sticky::after {
    top: 58%;
    right: -11%;
    width: 74vw;
  }

  .particle-inspection__grid {
    background-size: calc(100vw / 4) 100%;
    mask-image: linear-gradient(180deg, #000, transparent 72%);
  }

  .particle-inspection__canvas {
    top: auto;
    right: 0;
    bottom: 72px;
    left: 0;
    width: 100%;
    height: clamp(340px, 92vw, 500px);
  }

  .particle-inspection__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: auto;
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .particle-inspection__copy {
    max-width: none;
  }

  .particle-inspection__copy h2 {
    margin-top: 26px;
    font-size: clamp(36px, 10.4vw, 42px);
    line-height: 1.38;
  }

  .particle-inspection__copy > p {
    max-width: 92%;
    margin-top: 22px;
    font-size: 11px;
    line-height: 1.85;
  }

  .particle-inspection__copy {
    display: flex;
    flex-direction: column;
    max-width: none;
  }

  .particle-inspection__intro,
  .particle-inspection__actions {
    position: relative;
    width: 100%;
  }

  .particle-inspection__actions {
    flex: 0 0 auto;
    margin-top: 27px;
  }

  .particle-inspection__steps {
    margin-top: 0;
  }

  .particle-inspection__steps li {
    min-width: 0;
    min-height: 72px;
    padding: 9px 7px;
  }

  .particle-inspection__steps strong {
    min-width: 0;
    overflow: visible;
    font-size: 9px;
    line-height: 1.45;
    white-space: normal;
    text-overflow: clip;
    overflow-wrap: anywhere;
  }

  .particle-inspection__steps strong em {
    white-space: normal;
  }

  .particle-inspection__cta {
    width: min(100%, 330px);
    min-height: 62px;
    margin-top: 18px;
    padding: 10px 11px 10px 18px;
  }

  .particle-inspection__cta > span {
    font-size: 15px;
  }

  .particle-inspection__cta i {
    width: 38px;
    height: 38px;
  }

  .particle-inspection__visual {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    min-height: clamp(340px, 92vw, 500px);
  }

  .particle-inspection__blueprint {
    top: 0;
    right: -6%;
    bottom: 0;
    left: -6%;
  }

  .blueprint-callout__name {
    font-size: 20px;
  }

  .blueprint-callout__meta {
    display: none;
  }

  .blueprint-elevation__caption {
    right: 8%;
    bottom: 1.5%;
    gap: 6px;
    font-size: 7px;
  }

  .blueprint-elevation__caption i {
    width: 18px;
  }

  .blueprint-elevation__caption small {
    font-size: 5px;
  }

  .particle-inspection__photo {
    right: 1%;
    bottom: 5%;
    width: min(38vw, 170px);
    border-width: 5px;
  }

  .particle-inspection__speech {
    right: calc(min(38vw, 170px) - 12px);
    bottom: calc(5% + min(38vw, 170px) - 21px);
    max-width: min(210px, 58vw);
    padding: 10px 13px 11px;
    font-size: clamp(11px, 3.3vw, 14px);
  }

  .particle-inspection__phase {
    top: 0;
    right: 7px;
    bottom: auto;
  }

  .particle-inspection__phase p {
    min-width: 94px;
    font-size: 7px;
  }

  .particle-inspection__scroll {
    right: 8px;
    bottom: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .image-reveal::after {
    display: none;
  }

  [data-parallax] > img {
    transform: none;
  }

  .intro-loader {
    display: none;
  }

  .hero-copy .kicker,
  .hero-description,
  .hero-trust,
  .hero-actions,
  .hero-index,
  .hero-scroll,
  .hero-concern-card,
  .hero h1 .hero-line > span {
    opacity: 1;
    transform: none;
  }

  .hero-concern-card {
    animation: none;
  }

  .visual-story-ghost {
    transform: none;
    will-change: auto;
  }

  .particle-inspection {
    height: auto;
    min-height: 0;
  }

  .particle-inspection__sticky {
    position: relative;
    height: auto;
    min-height: 680px;
    --blueprint-mask-opacity: 1;
  }

  .particle-inspection__canvas,
  .particle-inspection__scroll {
    display: none;
  }

  .particle-inspection__photo,
  .particle-enhanced .particle-inspection__photo {
    clip-path: inset(0);
    opacity: 1;
    transform: rotate(2deg);
  }

  .particle-inspection__speech,
  .particle-enhanced .particle-inspection__speech {
    opacity: 1;
    transform: none;
  }

  .particle-inspection__blueprint {
    opacity: 1;
    transform: none;
  }

  .blueprint-line,
  .blueprint-callout__ring,
  .blueprint-callout__leader {
    stroke-dashoffset: 0 !important;
  }

  .blueprint-callout {
    --callout-progress: 1;
  }

  .value-marquee__track,
  .cta-scene__ring,
  .cta-scene__ring-company,
  .hero-media img {
    animation: none;
  }
}


.compare-intro .compare-intro__subtitle {
  position: relative;
  display: inline-block;
  margin: 34px 0 10px;
  padding-left: 31px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .1em;
}

.compare-intro .compare-intro__subtitle::before {
  position: absolute;
  top: .8em;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.compare-intro h2 {
  margin: 0 0 27px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.4;
  letter-spacing: -.045em;
}

.compare-intro h2 span {
  color: var(--accent);
}

.compare-intro .compare-intro__description {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.price-copy .price-copy__subtitle {
  position: relative;
  margin: 37px 0 12px;
  padding-left: 31px;
  color: rgba(216, 179, 109, .92);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: .09em;
}

.price-copy .price-copy__subtitle::before {
  position: absolute;
  top: .82em;
  left: 0;
  width: 20px;
  height: 1px;
  background: rgba(216, 179, 109, .86);
  content: "";
}

.price-copy h2 {
  margin: 0 0 46px;
  font-size: clamp(32px, 3.25vw, 42px);
  line-height: 1.48;
  letter-spacing: -.035em;
}

.price-copy h2 span {
  color: var(--accent-light);
}

@media (max-width: 720px) {
  .compare-intro .compare-intro__subtitle,
  .price-copy .price-copy__subtitle {
    margin-top: 28px;
    font-size: 14px;
  }

  .compare-intro h2 {
    font-size: 38px;
  }

  .price-copy h2 {
    margin-bottom: 42px;
    font-size: clamp(31px, 8.7vw, 38px);
    line-height: 1.52;
  }
}


.contact-prompt {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(92px, 8vw, 126px) 0 clamp(54px, 5vw, 78px);
  background: #fcf8f2;
}

.contact-prompt::before,
.contact-prompt::after {
  position: absolute;
  z-index: -1;
  width: clamp(300px, 30vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(178, 146, 88, .22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-prompt::before {
  top: -22vw;
  right: -18vw;
  box-shadow:
    0 0 0 29px rgba(178, 146, 88, .08),
    0 0 0 58px rgba(178, 146, 88, .055),
    0 0 0 87px rgba(178, 146, 88, .04);
}

.contact-prompt::after {
  bottom: -24vw;
  left: -21vw;
  box-shadow:
    0 0 0 31px rgba(178, 146, 88, .075),
    0 0 0 62px rgba(178, 146, 88, .05),
    0 0 0 93px rgba(178, 146, 88, .035);
}

.contact-prompt__container {
  position: relative;
  z-index: 1;
}

.contact-prompt__panel {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 54px clamp(60px, 8vw, 120px) 38px;
  border: 1px solid #b29258;
  color: var(--ink);
  background: rgba(252, 248, 242, .9);
  text-align: center;
}

.contact-prompt__rule {
  display: block;
  width: 150px;
  height: 1px;
  margin: 0 auto 38px;
  background: #b29258;
}

.contact-prompt__panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: .025em;
}

.contact-prompt__lead {
  margin: 24px 0 28px;
  color: #586474;
  font-family: var(--serif);
  font-size: clamp(14px, 1.45vw, 18px);
  line-height: 1.85;
  letter-spacing: .025em;
}

.contact-prompt__button {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(100%, 880px);
  min-height: 116px;
  margin: 0 auto;
  padding: 22px 30px 22px 58px;
  border: 1px solid #b29258;
  color: #fff;
  background: linear-gradient(112deg, #c83513, #e34418);
  box-shadow: 0 17px 42px rgba(160, 57, 25, .13);
  transition: box-shadow .35s ease, filter .35s ease, transform .35s ease;
}

.contact-prompt__button::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, .16) 48%, transparent 76%);
  content: "";
  transform: translateX(-100%);
  transition: opacity .35s ease;
}

.contact-prompt__button strong {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(25px, 2.9vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .05em;
}

.contact-prompt__button > span {
  position: relative;
  z-index: 1;
  font-size: 38px;
  font-weight: 200;
  line-height: 1;
  transition: transform .35s ease;
}

.contact-prompt__button:hover,
.contact-prompt__button:focus-visible {
  filter: saturate(1.08) brightness(1.03);
  outline: none;
  box-shadow: 0 22px 52px rgba(160, 57, 25, .2);
  transform: translateY(-3px);
}

.contact-prompt__button:hover::before,
.contact-prompt__button:focus-visible::before {
  opacity: 1;
  animation: contact-prompt-shine .9s ease forwards;
}

.contact-prompt__button:hover > span,
.contact-prompt__button:focus-visible > span {
  transform: translateX(7px);
}

.contact-prompt__or {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(100%, 880px);
  margin: 28px auto 13px;
  color: #506071;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-prompt__or::before,
.contact-prompt__or::after {
  height: 1px;
  background: rgba(178, 146, 88, .82);
  content: "";
}

.contact-prompt__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--ink);
  line-height: 1;
}

.contact-prompt__phone > span {
  color: #a77c25;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(33px, 4vw, 48px);
  line-height: 1;
}

.contact-prompt__phone strong {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}

.contact-prompt__phone:hover strong,
.contact-prompt__phone:focus-visible strong {
  color: #a77c25;
}

.contact-prompt__hours {
  margin: 13px 0 17px;
  color: #66717d;
  font-size: 16px;
  line-height: 1.6;
}

.contact-prompt__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 27px 0 0;
  border-top: 1px solid rgba(178, 146, 88, .72);
  list-style: none;
}

.contact-prompt__benefits li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.45;
}

.contact-prompt__benefits li + li::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 1px;
  background: rgba(178, 146, 88, .72);
  content: "";
}

.contact-prompt__benefits i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid #b29258;
  border-radius: 50%;
  color: #a77c25;
  font-family: var(--sans);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  place-items: center;
}

.contact-prompt + .paint-condition,
.contact-prompt + .compare,
.contact-prompt + .area-flow {
  padding-top: clamp(96px, 8vw, 128px);
}

@keyframes contact-prompt-shine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 900px) {
  .contact-prompt__panel {
    padding-inline: clamp(32px, 7vw, 58px);
  }

  .contact-prompt__panel h2 {
    font-size: clamp(34px, 5.2vw, 45px);
  }

  .contact-prompt__button {
    min-height: 100px;
  }
}

@media (max-width: 720px) {
  .contact-prompt {
    padding: 70px 0 42px;
  }

  .contact-prompt .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .contact-prompt__panel {
    padding: 38px 18px 24px;
  }

  .contact-prompt__rule {
    width: 82px;
    margin-bottom: 26px;
  }

  .contact-prompt__panel h2 {
    font-size: clamp(25px, 7.4vw, 31px);
    line-height: 1.52;
    letter-spacing: 0;
  }

  .contact-prompt__lead {
    margin: 18px 0 22px;
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.85;
  }

  .contact-prompt__button {
    min-height: 78px;
    padding: 16px 17px 16px 26px;
  }

  .contact-prompt__button strong {
    font-family: var(--sans);
    font-size: 19px;
    letter-spacing: .035em;
  }

  .contact-prompt__button > span {
    font-size: 27px;
  }

  .contact-prompt__or {
    gap: 13px;
    margin: 23px auto 13px;
    font-size: 13px;
  }

  .contact-prompt__phone {
    gap: 9px;
  }

  .contact-prompt__phone > span {
    font-size: 28px;
  }

  .contact-prompt__phone strong {
    font-size: clamp(29px, 8.7vw, 37px);
    letter-spacing: .025em;
  }

  .contact-prompt__hours {
    margin: 10px 0 14px;
    font-size: 11px;
  }

  .contact-prompt__benefits {
    padding-top: 18px;
  }

  .contact-prompt__benefits li {
    gap: 7px;
    padding-inline: 5px;
    font-family: var(--sans);
    font-size: 13px;
  }

  .contact-prompt__benefits i {
    width: 25px;
    height: 25px;
    font-size: 13px;
  }

  .contact-prompt + .paint-condition,
  .contact-prompt + .compare,
  .contact-prompt + .area-flow {
    padding-top: 86px;
  }
}

@media (max-width: 370px) {
  .contact-prompt__panel h2 {
    font-size: 24px;
  }

  .contact-prompt__phone strong {
    font-size: 28px;
  }

  .contact-prompt__benefits li {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-prompt__button,
  .contact-prompt__button::before,
  .contact-prompt__button > span {
    animation: none;
    transition: none;
  }
}


@media (min-width: 981px) {
  .contact-prompt__container {
    width: 60%;
    max-width: none;
  }

  .contact-prompt__panel {
    width: 100%;
    max-width: none;
  }

  .contact-prompt__panel h2 {
    font-size: clamp(30px, 2.7vw, 42px);
    letter-spacing: .015em;
    white-space: nowrap;
  }

  .contact-prompt__lead {
    font-size: clamp(11px, 1vw, 16px);
    white-space: nowrap;
  }
}


.cover-overview {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(116px, 10vw, 170px) 0 clamp(124px, 10vw, 176px);
  background:
    radial-gradient(circle at 50% 12%, rgba(216, 179, 109, .08), transparent 35%),
    #fff;
}

.cover-overview::before,
.cover-overview::after {
  position: absolute;
  z-index: -1;
  width: clamp(310px, 32vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 137, 66, .1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.cover-overview::before {
  top: -22vw;
  left: -19vw;
  box-shadow:
    0 0 0 28px rgba(184, 137, 66, .045),
    0 0 0 58px rgba(184, 137, 66, .03);
}

.cover-overview::after {
  right: -24vw;
  bottom: -25vw;
  box-shadow:
    0 0 0 32px rgba(184, 137, 66, .04),
    0 0 0 66px rgba(184, 137, 66, .025);
}

.cover-overview__head {
  max-width: 980px;
  margin: 0 auto clamp(54px, 6vw, 82px);
  text-align: center;
}

.cover-overview__head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(44px, 5.7vw, 78px);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -.055em;
}

.cover-overview__head h2::after {
  position: absolute;
  right: 3%;
  bottom: .06em;
  left: 3%;
  z-index: -1;
  height: .13em;
  background: linear-gradient(90deg, rgba(216, 179, 109, .14), rgba(184, 137, 66, .55), rgba(216, 179, 109, .14));
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.05s cubic-bezier(.22, 1, .36, 1) .2s;
}

.cover-overview__head.is-visible h2::after {
  transform: scaleX(1);
}

.cover-overview__head p {
  max-width: 880px;
  margin: 27px auto 0;
  color: #4e5a68;
  font-family: var(--serif);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2.05;
  letter-spacing: .025em;
}

.cover-overview__head strong {
  color: var(--accent);
  font-weight: 600;
  background: linear-gradient(transparent 70%, rgba(216, 179, 109, .16) 70%);
}

.cover-overview__figure {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(16, 35, 58, .14);
  background: #fff;
  box-shadow: 0 30px 80px rgba(19, 35, 54, .08);
}

.cover-overview__figure > a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f6f2eb;
  cursor: zoom-in;
}

.cover-overview__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1), filter .7s ease;
}

.cover-overview__figure > a:hover img,
.cover-overview__figure > a:focus-visible img {
  filter: contrast(1.02);
  transform: scale(1.012);
}

.cover-overview__figure > a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.cover-overview__zoom {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px 10px 16px;
  color: #fff;
  background: rgba(12, 32, 51, .88);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  backdrop-filter: blur(10px);
}

.cover-overview__zoom i {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  transition: transform .35s ease;
}

.cover-overview__figure > a:hover .cover-overview__zoom i,
.cover-overview__figure > a:focus-visible .cover-overview__zoom i {
  transform: rotate(45deg);
}

.cover-overview__figure figcaption {
  padding: 13px 10px 4px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .08em;
  text-align: center;
}

@media (max-width: 720px) {
  .cover-overview {
    padding: 94px 0 108px;
  }

  .cover-overview .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .cover-overview__head {
    margin-bottom: 43px;
  }

  .cover-overview__head h2 {
    font-size: clamp(34px, 9.6vw, 42px);
    letter-spacing: -.06em;
  }

  .cover-overview__head p {
    margin-top: 22px;
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.95;
    text-align: left;
  }

  .cover-overview__head p br {
    display: none;
  }

  .cover-overview__figure {
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 5px;
    border-right: 0;
    border-left: 0;
  }

  .cover-overview__zoom {
    right: 10px;
    bottom: 10px;
    gap: 8px;
    padding: 8px 9px 8px 11px;
    font-size: 9px;
  }

  .cover-overview__figure figcaption {
    padding-inline: 18px;
    font-size: 10px;
    letter-spacing: .035em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-overview__head h2::after {
    transform: scaleX(1);
    transition: none;
  }

  .cover-overview__figure img,
  .cover-overview__zoom i {
    transition: none;
  }

  .cover-overview__figure > a:hover img,
  .cover-overview__figure > a:focus-visible img {
    transform: none;
  }
}


@media (min-width: 981px) {
  .cover-overview .container {
    width: 70%;
    max-width: none;
  }

  .cover-overview__figure {
    width: 100%;
    max-width: none;
  }
}


.paint-condition__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: #e9e6df;
}

.paint-condition__photo::before,
.paint-condition__photo::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.paint-condition__photo::before {
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, .48);
}

.paint-condition__photo::after {
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  border-top: 2px solid rgba(184, 137, 66, .92);
  border-right: 2px solid rgba(184, 137, 66, .92);
}

.paint-condition__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.035);
  transform: scale(1.001);
  transition: filter .65s ease, transform 1s cubic-bezier(.22, 1, .36, 1);
}

.paint-condition__column:hover .paint-condition__photo img,
.paint-case:hover .paint-condition__photo img {
  filter: saturate(.98) contrast(1.06);
  transform: scale(1.025);
}

.paint-case .paint-condition__photo {
  aspect-ratio: 16 / 7.8;
}

.paint-condition__column--ok .paint-condition__photo img {
  object-position: center 47%;
}

.paint-condition__column--ng .paint-condition__photo img {
  object-position: center center;
}

.paint-case:nth-child(1) .paint-condition__photo img {
  object-position: center 48%;
}

.paint-case:nth-child(2) .paint-condition__photo img {
  object-position: center center;
}

@media (max-width: 760px) {
  .paint-condition__photo::before {
    inset: 9px;
  }

  .paint-condition__photo::after {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .paint-condition__photo img {
    transition: none;
  }

  .paint-condition__column:hover .paint-condition__photo img,
  .paint-case:hover .paint-condition__photo img {
    transform: none;
  }
}


.concern-layout {
  grid-template-columns: minmax(350px, .76fr) minmax(0, 1.55fr);
  gap: clamp(58px, 6.5vw, 104px);
}

.concern-intro h2 {
  font-size: clamp(44px, 3.75vw, 54px);
  line-height: 1.46;
}

.concern-cards {
  gap: 28px 22px;
}

.concern-card,
.concern-card:nth-child(even) {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--navy);
  border: 1px solid rgba(16, 35, 58, .11);
  background: #fff;
  box-shadow: 0 18px 54px rgba(16, 35, 58, .08);
}

.concern-card:nth-child(even) {
  margin-top: 54px;
}

.concern-card::before {
  z-index: 5;
  top: 0;
  right: auto;
  left: 0;
  width: 74px;
  height: 3px;
  transform: none;
}

.concern-card::after {
  display: none;
}

.concern-card.is-visible:hover {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 28px 72px rgba(16, 35, 58, .15);
  transform: translateY(-8px);
}

.concern-card.is-visible:hover::before {
  width: 100%;
  transform: none;
}

.concern-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  isolation: isolate;
  background: #d8d6d1;
}

.concern-card__visual::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  background: #f3f0ea;
  content: "";
  pointer-events: none;
  transform: scaleY(1);
  transform-origin: bottom;
}

.concern-card.is-visible .concern-card__visual::after {
  transform: scaleY(0);
  transition: transform .9s cubic-bezier(.68, 0, .2, 1) .1s;
}

.concern-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.035);
  transition: transform 1.15s cubic-bezier(.2, .65, .2, 1), filter .55s ease;
}

.concern-card--01 .concern-card__visual img {
  object-position: 50% 48%;
}

.concern-card--02 .concern-card__visual img {
  object-position: 50% 56%;
}

.concern-card--03 .concern-card__visual img {
  object-position: 50% 45%;
}

.concern-card.is-visible:hover .concern-card__visual img {
  filter: none;
  transform: scale(1.075);
}

.concern-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 27px 26px;
}

.concern-card__meta {
  display: flex;
  gap: 13px;
  align-items: center;
}

.concern-card__number {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  background: rgba(184, 137, 66, .055);
}

.concern-card__label {
  margin: 0;
  color: var(--accent);
  font-size: 9px;
  letter-spacing: .13em;
}

.concern-card h3 {
  margin: 23px 0 15px;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.5;
}

.concern-card__description {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.concern-card:hover .concern-card__label {
  color: var(--accent);
}

@media (max-width: 980px) {
  .concern-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .concern-cards {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 720px) {
  .concern-layout {
    gap: 44px;
  }

  .concern-intro h2 {
    font-size: 39px;
    line-height: 1.42;
  }

  .concern-cards {
    gap: 18px;
  }

  .concern-card,
  .concern-card:nth-child(even) {
    min-height: 0;
    margin-top: 0;
    padding: 0;
  }

  .concern-card__visual {
    aspect-ratio: 16 / 10;
  }

  .concern-card__body {
    padding: 23px 21px 22px;
  }

  .concern-card h3 {
    margin: 20px 0 13px;
    font-size: clamp(22px, 6.4vw, 26px);
    line-height: 1.48;
  }

  .concern-card__description {
    font-size: 12px;
    line-height: 1.85;
  }

}

@media (prefers-reduced-motion: reduce) {
  .concern-card__visual::after {
    display: none;
  }

  .concern-card__visual img,
  .concern-card.is-visible:hover .concern-card__visual img {
    transform: none;
    transition: none;
  }
}


@media (min-width: 981px) {
  .manifesto {
    padding: 110px 0 150px;
  }

  .concern-layout {
    display: block;
  }

  .concern-intro {
    position: relative;
    top: auto;
    max-width: 820px;
    margin: 0 auto 54px;
    text-align: center;
  }

  .concern-symbol {
    display: none;
  }

  .concern-intro .section-label {
    justify-content: center;
  }

  .concern-intro h2 {
    margin: 28px 0 0;
    font-size: clamp(48px, 4.2vw, 60px);
    line-height: 1.36;
  }

  .concern-intro__lead {
    max-width: none;
    margin: 22px auto 0;
    font-size: 13px;
  }

  .concern-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
  }

  .concern-card,
  .concern-card:nth-child(even) {
    align-self: stretch;
    margin-top: 0;
  }

  .concern-card__body {
    padding: 24px 21px 22px;
  }

  .concern-card__number {
    width: 36px;
    height: 36px;
  }

  .concern-card h3 {
    margin: 20px 0 13px;
    font-size: clamp(20px, 1.65vw, 24px);
    line-height: 1.5;
  }

  .concern-card__description {
    font-size: 10.5px;
    line-height: 1.82;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .concern-cards {
    gap: 8px;
  }

  .concern-card__body {
    padding: 22px 18px 20px;
  }

  .concern-card h3 {
    font-size: 20px;
  }

  .concern-card__description {
    font-size: 10px;
  }
}


@media (min-width: 981px) {
  .concern-cards {
    padding-bottom: 7px;
  }

  .concern-card:nth-child(2),
  .concern-card:nth-child(4) {
    top: 7px;
  }

  .concern-card:nth-child(1) .concern-card__number {
    transform: rotate(-3deg);
  }

  .concern-card:nth-child(2) .concern-card__number {
    transform: rotate(3deg);
  }

  .concern-card:nth-child(3) .concern-card__number {
    transform: rotate(-2deg);
  }

  .concern-card:nth-child(4) .concern-card__number {
    transform: rotate(4deg);
  }
}


.inspection-warning {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(104px, 10vw, 154px) 0 clamp(112px, 11vw, 170px);
  border-top: 1px solid rgba(16, 35, 58, .07);
  background:
    radial-gradient(circle at 4% 54%, rgba(216, 179, 109, .105) 0, rgba(216, 179, 109, .035) 18%, transparent 37%),
    radial-gradient(circle at 98% 22%, rgba(184, 137, 66, .075) 0, transparent 31%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 48%, #fff 100%);
}

.inspection-warning::before,
.inspection-warning::after {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(184, 137, 66, .11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.inspection-warning::before {
  top: 32%;
  left: -330px;
}

.inspection-warning::after {
  top: 8%;
  right: -300px;
}

.inspection-warning__rings {
  position: absolute;
  top: 96px;
  right: -116px;
  z-index: -1;
  width: 440px;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 137, 66, .08);
  border-radius: 50%;
  pointer-events: none;
}

.inspection-warning__rings::before,
.inspection-warning__rings::after {
  position: absolute;
  border: 1px solid rgba(184, 137, 66, .08);
  border-radius: inherit;
  content: "";
}

.inspection-warning__rings::before {
  inset: 64px;
}

.inspection-warning__rings::after {
  inset: 128px;
}

.inspection-warning__inner {
  position: relative;
  z-index: 1;
}

.inspection-warning__header {
  max-width: 1090px;
  margin: 0 auto;
  text-align: center;
}

.inspection-warning__eyebrow {
  justify-content: center;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .24em;
}

.inspection-warning__eyebrow::before {
  width: 64px;
  height: 1px;
  background: var(--line);
  content: "";
}

.inspection-warning__notice {
  display: inline-flex;
  min-height: 58px;
  margin: 34px 0 0;
  padding: 11px 25px;
  align-items: center;
  gap: 13px;
  color: var(--accent);
  border: 1px solid rgba(184, 137, 66, .52);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 40px rgba(16, 35, 58, .045);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  backdrop-filter: blur(10px);
}

.inspection-warning__notice svg {
  width: 30px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.inspection-warning h2 {
  margin: 32px auto 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.65vw, 68px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.055em;
}

.inspection-warning h2 span {
  position: relative;
  display: inline-block;
  color: var(--accent);
}

.inspection-warning h2 span::after {
  position: absolute;
  right: .06em;
  bottom: .04em;
  left: .06em;
  height: 7px;
  background: rgba(216, 179, 109, .18);
  content: "";
  transform: skewX(-15deg);
}

.inspection-warning__lead {
  display: grid;
  gap: 6px;
  max-width: 980px;
  margin: 26px auto 0;
  color: var(--navy);
  font-size: clamp(14px, 1.22vw, 17px);
  line-height: 1.9;
}

.inspection-warning__lead p {
  margin: 0;
}

.inspection-warning__lead strong {
  margin-right: .72em;
  color: var(--accent);
  font-weight: 700;
}

.inspection-warning__lead span {
  display: inline;
}

.inspection-warning__check {
  display: flex;
  width: min(100%, 680px);
  min-height: 64px;
  margin: 32px auto 0;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(184, 137, 66, .25);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 52px rgba(16, 35, 58, .055);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: .015em;
}

.inspection-warning__check i {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
}

.inspection-warning__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 50px auto 0;
}

.inspection-stat {
  position: relative;
  display: flex;
  min-height: 326px;
  overflow: hidden;
  padding: 28px 30px 32px;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid rgba(16, 35, 58, .11);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 60px rgba(16, 35, 58, .065);
  transition: transform .45s cubic-bezier(.2, .65, .2, 1), box-shadow .45s ease, border-color .45s ease;
  backdrop-filter: blur(10px);
}

.inspection-stat:nth-child(2) {
  top: 10px;
}

.inspection-stat::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 3px;
  background: var(--accent);
  content: "";
  transition: width .5s cubic-bezier(.2, .65, .2, 1);
}

.inspection-stat::after {
  position: absolute;
  right: -78px;
  bottom: -78px;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(184, 137, 66, .11);
  border-radius: 50%;
  content: "";
  transition: transform .6s ease;
}

.inspection-stat.is-visible:hover {
  border-color: rgba(184, 137, 66, .29);
  box-shadow: 0 28px 75px rgba(16, 35, 58, .115);
  transform: translateY(-7px);
}

.inspection-stat.is-visible:hover::before {
  width: 100%;
}

.inspection-stat.is-visible:hover::after {
  transform: scale(1.18);
}

.inspection-stat__index {
  align-self: flex-start;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .17em;
}

.inspection-stat__icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 20px 0 15px;
  place-items: center;
  color: var(--accent);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(216, 179, 109, .17), rgba(216, 179, 109, .055));
}

.inspection-stat__icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.inspection-stat__value {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(36px, 3.3vw, 48px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.045em;
}

.inspection-stat p {
  display: grid;
  gap: 1px;
  margin: 9px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
}

.inspection-stat p small {
  font-size: inherit;
}

.inspection-warning__sources {
  display: grid;
  gap: 3px;
  max-width: 1080px;
  margin: 45px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 10px;
  line-height: 1.75;
}

.inspection-warning__sources p {
  margin: 0;
}

@media (max-width: 980px) {
  .inspection-warning {
    padding: 94px 0 116px;
  }

  .inspection-warning h2 {
    font-size: clamp(40px, 6.7vw, 58px);
  }

  .inspection-warning__lead {
    max-width: 780px;
    font-size: 14px;
  }

  .inspection-warning__stats {
    gap: 14px;
  }

  .inspection-stat {
    min-height: 300px;
    padding-inline: 20px;
  }

  .inspection-stat__value {
    font-size: clamp(34px, 4.4vw, 42px);
  }
}

@media (max-width: 720px) {
  .inspection-warning {
    padding: 78px 0 92px;
    background:
      radial-gradient(circle at 104% 12%, rgba(184, 137, 66, .08), transparent 35%),
      linear-gradient(180deg, #fff 0%, #fbfaf7 58%, #fff 100%);
  }

  .inspection-warning::before,
  .inspection-warning::after,
  .inspection-warning__rings {
    display: none;
  }

  .inspection-warning__eyebrow {
    gap: 12px;
    font-size: 9px;
  }

  .inspection-warning__eyebrow::before,
  .inspection-warning__eyebrow::after {
    width: 34px;
  }

  .inspection-warning__notice {
    min-height: 52px;
    margin-top: 27px;
    padding: 9px 18px;
    gap: 10px;
    font-size: 12px;
  }

  .inspection-warning__notice svg {
    width: 25px;
    height: 28px;
  }

  .inspection-warning h2 {
    max-width: 520px;
    margin-top: 26px;
    font-size: clamp(32px, 9.7vw, 42px);
    line-height: 1.48;
  }

  .inspection-warning h2 span::after {
    height: 5px;
  }

  .inspection-warning__lead {
    gap: 9px;
    margin-top: 21px;
    font-size: 13px;
    line-height: 1.85;
  }

  .inspection-warning__lead strong,
  .inspection-warning__lead span {
    display: block;
    margin: 0;
  }

  .inspection-warning__check {
    min-height: 60px;
    margin-top: 25px;
    padding: 11px 15px;
    justify-content: flex-start;
    gap: 11px;
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
  }

  .inspection-warning__check i {
    width: 30px;
    height: 30px;
  }

  .inspection-warning__stats {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 34px;
  }

  .inspection-stat,
  .inspection-stat:nth-child(2) {
    top: auto;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 19px 20px 20px;
    align-items: center;
    column-gap: 16px;
    text-align: left;
  }

  .inspection-stat__index {
    position: absolute;
    top: 12px;
    right: 13px;
    font-size: 7px;
  }

  .inspection-stat__icon {
    grid-row: 1 / 3;
    width: 58px;
    height: 58px;
    margin: 0;
    border-radius: 18px;
  }

  .inspection-stat__icon svg {
    width: 37px;
    height: 37px;
  }

  .inspection-stat__value {
    align-self: end;
    padding-top: 4px;
    font-size: 32px;
    line-height: 1.25;
  }

  .inspection-stat p {
    display: block;
    align-self: start;
    margin-top: 1px;
    font-family: var(--sans);
    font-size: 11px;
    line-height: 1.45;
  }

  .inspection-stat p small {
    margin-left: .25em;
  }

  .inspection-warning__sources {
    gap: 6px;
    margin-top: 28px;
    text-align: left;
    font-size: 9.5px;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inspection-stat,
  .inspection-stat::before,
  .inspection-stat::after {
    transition: none;
  }
}


.particle-inspection__subheading {
  display: flex;
  margin: 29px 0 0;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 600;
  letter-spacing: .06em;
}

.particle-inspection__subheading::before {
  width: 30px;
  height: 1px;
  background: rgba(184, 137, 66, .62);
  content: "";
}

.particle-inspection__subheading + h2 {
  margin-top: 15px;
}

@media (max-width: 720px) {
  .particle-inspection__subheading {
    margin-top: 22px;
    gap: 10px;
    font-size: 13px;
    letter-spacing: .035em;
  }

  .particle-inspection__subheading::before {
    width: 24px;
  }

  .particle-inspection__subheading + h2 {
    margin-top: 12px;
  }
}


.particle-inspection__steps {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  width: 100%;
}

.particle-inspection__steps li {
  min-width: 0;
}

.particle-inspection__steps strong {
  white-space: normal;
  overflow-wrap: anywhere;
}

.particle-inspection__steps strong em {
  font-style: normal;
  white-space: nowrap;
}

.blueprint-callout {
  --motion-delay: 0s;
}

.blueprint-callout[data-callout-start="0.63"] {
  --motion-delay: .12s;
}

.blueprint-callout[data-callout-start="0.70"] {
  --motion-delay: .24s;
}

.blueprint-callout__orbit,
.blueprint-callout__pulse {
  fill: none;
  pointer-events: none;
  vector-effect: non-scaling-stroke;
}

.blueprint-callout__orbit {
  opacity: 0;
  stroke: rgba(184, 137, 66, .88);
  stroke-dasharray: .12 .08 .46 .34;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-width: .72;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, stroke-dashoffset;
}

.blueprint-callout__pulse {
  opacity: 0;
  stroke: #d8b36d;
  stroke-dasharray: .18 1.08;
  stroke-dashoffset: .18;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  will-change: stroke-dashoffset, opacity;
}

.blueprint-callout.is-motion-active .blueprint-callout__orbit {
  opacity: .88;
  animation: blueprint-orbit-rotate 3.8s linear var(--motion-delay) infinite;
}

.blueprint-callout.is-motion-active .blueprint-callout__pulse {
  animation: blueprint-leader-cue 2.05s ease-in-out var(--motion-delay) infinite;
}

@keyframes blueprint-orbit-rotate {
  from {
    stroke-dashoffset: 0;
    transform: rotate(0deg);
  }
  to {
    stroke-dashoffset: -1;
    transform: rotate(360deg);
  }
}

@keyframes blueprint-leader-cue {
  0% {
    opacity: 0;
    stroke-dashoffset: .18;
  }
  14% {
    opacity: .96;
  }
  66% {
    opacity: .96;
    stroke-dashoffset: -1.08;
  }
  82%,
  100% {
    opacity: 0;
    stroke-dashoffset: -1.08;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blueprint-callout__orbit,
  .blueprint-callout__pulse {
    display: none;
    animation: none;
  }
}


@media (min-width: 721px) {
  .inspection-warning__stats {
    gap: 16px;
    max-width: 810px;
    margin-top: 42px;
  }

  .inspection-stat {
    min-height: 246px;
    padding: 18px 20px 19px;
  }

  .inspection-stat:nth-child(2) {
    top: 8px;
  }

  .inspection-stat__icon {
    width: 54px;
    height: 54px;
    margin: 8px 0 7px;
    border-radius: 18px;
  }

  .inspection-stat__icon svg {
    width: 34px;
    height: 34px;
  }

  .inspection-warning__sources {
    max-width: 810px;
    margin-top: 36px;
  }
}


.paint-condition {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(116px, 10vw, 174px) 0 clamp(124px, 11vw, 190px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(250, 247, 241, .92) 52%, #fff 100%),
    radial-gradient(circle at 50% 0, rgba(216, 179, 109, .13), transparent 42%);
}

.paint-condition::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .32;
  background-image:
    linear-gradient(rgba(16, 35, 58, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 58, .035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
  content: "";
}

.paint-condition__rings {
  position: absolute;
  z-index: -1;
  width: clamp(360px, 42vw, 690px);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 137, 66, .13);
  border-radius: 50%;
  pointer-events: none;
}

.paint-condition__rings::before,
.paint-condition__rings::after {
  position: absolute;
  border: 1px solid rgba(184, 137, 66, .1);
  border-radius: inherit;
  content: "";
}

.paint-condition__rings::before {
  inset: 7%;
}

.paint-condition__rings::after {
  inset: 18%;
}

.paint-condition__rings--top {
  top: -19vw;
  right: -18vw;
}

.paint-condition__rings--bottom {
  bottom: -22vw;
  left: -22vw;
}

.paint-condition__inner {
  position: relative;
  z-index: 1;
}

.paint-condition__head {
  max-width: 940px;
  margin: 0 auto clamp(58px, 6vw, 86px);
  text-align: center;
}

.paint-condition__head .section-label {
  justify-content: center;
  color: var(--accent);
  letter-spacing: .23em;
}

.paint-condition__head .section-label::before,
.paint-condition__head .section-label::after {
  width: 46px;
  height: 1px;
  background: rgba(184, 137, 66, .46);
  content: "";
}

.paint-condition__head h2 {
  margin: 28px 0 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 67px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.055em;
}

.paint-condition__head h2 span {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.paint-condition__head h2 span::after {
  position: absolute;
  right: 0;
  bottom: .04em;
  left: 0;
  z-index: -1;
  height: .16em;
  background: linear-gradient(90deg, rgba(184, 137, 66, .82), rgba(216, 179, 109, .3));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1) .2s;
}

.paint-condition__head.is-visible h2 span::after {
  transform: scaleX(1);
}

.paint-condition__head > p {
  margin: 0;
  color: #435061;
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 2.05;
  letter-spacing: .035em;
}

.paint-condition__head > p strong {
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(transparent 69%, rgba(216, 179, 109, .24) 69%);
}

.paint-condition__head > .paint-condition__statement {
  margin: 20px 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .035em;
}

.paint-condition__compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1110px;
  margin: 0 auto;
  border: 1px solid rgba(16, 35, 58, .18);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 28px 80px rgba(19, 35, 54, .06);
  backdrop-filter: blur(8px);
}

.paint-condition__column {
  display: flex;
  min-width: 0;
  padding: 38px 32px 0;
  flex-direction: column;
}

.paint-condition__column + .paint-condition__column {
  border-left: 1px solid rgba(16, 35, 58, .16);
}

.paint-condition__column-head {
  margin-bottom: 25px;
}

.paint-condition__column-head > p {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .18em;
}

.paint-condition__column-head > div {
  display: flex;
  align-items: baseline;
  gap: 22px;
}

.paint-condition__column-head strong {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(52px, 5.8vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}

.paint-condition__column-head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .01em;
}

.paint-photo-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  place-items: end start;
  color: rgba(16, 35, 58, .27);
  background:
    linear-gradient(145deg, rgba(16, 35, 58, .08), rgba(184, 137, 66, .13)),
    #f2f0eb;
}

.paint-photo-placeholder::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .65;
  background: linear-gradient(110deg, transparent 14%, rgba(255, 255, 255, .46) 42%, transparent 67%);
  content: "";
  transform: translateX(-110%);
  animation: paint-photo-scan 6.8s ease-in-out infinite;
}

.paint-photo-placeholder::after {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .5);
  content: "";
  pointer-events: none;
}

.paint-photo-placeholder svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .78;
}

.paint-photo-placeholder > span {
  position: relative;
  z-index: 3;
  margin: 0 0 24px 26px;
  padding: 8px 12px;
  color: rgba(16, 35, 58, .74);
  background: rgba(255, 255, 255, .78);
  font-family: var(--serif);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .18em;
  backdrop-filter: blur(7px);
}

.paint-photo-placeholder--ng {
  color: rgba(126, 77, 45, .36);
  background:
    linear-gradient(145deg, rgba(87, 63, 49, .14), rgba(184, 137, 66, .13)),
    #ebe6de;
}

.paint-condition__photo-caption {
  min-height: 64px;
  margin: 16px 0 18px;
  color: #536071;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.75;
  text-align: center;
}

.paint-condition__checklist {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.paint-condition__checklist li {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: start;
  gap: 11px;
  color: #344254;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
}

.paint-condition__checklist i {
  display: grid;
  width: 23px;
  height: 23px;
  margin-top: 2px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.paint-condition__checklist small {
  color: var(--muted);
  font-size: .86em;
}

.paint-condition__answer {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 76px;
  margin: auto -32px 0;
  padding: 19px 32px;
  border-top: 1px solid rgba(16, 35, 58, .15);
  color: var(--ink);
  background: rgba(250, 248, 243, .82);
  font-family: var(--serif);
  font-size: clamp(17px, 1.65vw, 21px);
  letter-spacing: .025em;
}

.paint-condition__answer > span {
  color: var(--accent);
  font-size: 24px;
  font-weight: 300;
}

.paint-condition__answer strong {
  font-weight: 500;
}

.paint-materials {
  position: relative;
  max-width: 1110px;
  margin: 42px auto 0;
  padding: 44px 46px 40px;
  border: 1px solid rgba(16, 35, 58, .18);
  background: rgba(255, 255, 255, .72);
}

.paint-materials::before {
  position: absolute;
  top: -7px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: var(--accent);
  content: "";
  transform: rotate(45deg);
}

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

.paint-materials__head > span,
.paint-case__index {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: .19em;
}

.paint-materials__head h3 {
  margin: 8px 0 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .04em;
}

.paint-materials__head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.paint-materials__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 0 44px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.paint-materials__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(16, 35, 58, .13);
  content: "";
}

.paint-materials__list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 13px;
  min-width: 0;
  padding: 12px 7px;
  border-bottom: 1px solid rgba(16, 35, 58, .09);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
}

.paint-materials__list li:nth-child(4),
.paint-materials__list li:last-child {
  border-bottom-color: transparent;
}

.paint-materials__list span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .08em;
}

.paint-materials__list strong {
  min-width: 0;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.paint-condition__cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1110px;
  margin: 18px auto 0;
}

.paint-case {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(16, 35, 58, .18);
  background: rgba(255, 255, 255, .84);
}

.paint-case__index {
  display: block;
  margin: 0 0 8px 2px;
}

.paint-case .paint-photo-placeholder {
  aspect-ratio: 16 / 7.8;
  color: rgba(67, 58, 51, .28);
}

.paint-photo-placeholder--case {
  background:
    linear-gradient(142deg, rgba(16, 35, 58, .1), rgba(184, 137, 66, .16)),
    #e9e5de;
}

.paint-photo-placeholder--weathered {
  background:
    linear-gradient(155deg, rgba(102, 87, 68, .12), rgba(16, 35, 58, .11)),
    #e5e3de;
}

.paint-case > p {
  margin: 15px 8px 9px;
  color: #566272;
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.paint-case > strong {
  display: block;
  margin: 0 20px;
  padding: 11px 8px 7px;
  border-top: 1px solid rgba(184, 137, 66, .5);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-align: center;
}

.paint-condition__conclusion {
  max-width: 880px;
  margin: clamp(76px, 8vw, 118px) auto 0;
  text-align: center;
}

.paint-condition__conclusion > p:first-child {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 21px);
  letter-spacing: .08em;
}

.paint-condition__conclusion h3 {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 6px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .02em;
}

.paint-condition__conclusion h3::after {
  position: absolute;
  right: -3%;
  bottom: .1em;
  left: -3%;
  z-index: -1;
  height: .2em;
  background: linear-gradient(90deg, rgba(216, 179, 109, .12), rgba(184, 137, 66, .42), rgba(216, 179, 109, .12));
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1) .25s;
}

.paint-condition__conclusion.is-visible h3::after {
  transform: scaleX(1);
}

.paint-condition__conclusion > svg {
  display: block;
  width: 148px;
  margin: 10px auto 20px;
  color: var(--accent);
}

.paint-condition__conclusion-copy {
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.95;
}

.paint-condition__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 34px;
}

.paint-condition__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 510px);
  min-height: 92px;
  padding: 18px 22px 18px 30px;
  color: #fff;
  background: linear-gradient(112deg, #a87836, #c7994e);
  box-shadow: 0 22px 46px rgba(148, 104, 44, .2);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.paint-condition__cta > span {
  display: grid;
  gap: 2px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .035em;
  text-align: left;
}

.paint-condition__cta small {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .13em;
}

.paint-condition__cta i {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  place-items: center;
  transition: color .35s ease, background .35s ease, transform .35s ease;
}

.paint-condition__cta:hover,
.paint-condition__cta:focus-visible {
  filter: saturate(1.08);
  outline: none;
  box-shadow: 0 28px 58px rgba(148, 104, 44, .28);
  transform: translateY(-3px);
}

.paint-condition__cta:hover i,
.paint-condition__cta:focus-visible i {
  color: var(--accent);
  background: #fff;
  transform: rotate(45deg);
}

.paint-condition__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 2px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 13px;
  white-space: nowrap;
}

.paint-condition__link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(.22);
  transform-origin: right;
  transition: transform .35s ease;
}

.paint-condition__link:hover::after,
.paint-condition__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes paint-photo-scan {
  0%,
  18% {
    transform: translateX(-115%);
  }
  54%,
  100% {
    transform: translateX(115%);
  }
}

@media (max-width: 980px) {
  .paint-condition__compare,
  .paint-materials,
  .paint-condition__cases {
    max-width: 820px;
  }

  .paint-condition__column {
    padding-inline: 24px;
  }

  .paint-condition__answer {
    margin-inline: -24px;
    padding-inline: 24px;
  }

  .paint-condition__column-head > div {
    gap: 14px;
  }

  .paint-condition__column-head h3 {
    font-size: 20px;
  }

  .paint-materials {
    padding-inline: 34px;
  }

  .paint-materials__list {
    gap: 0 34px;
  }

}

@media (max-width: 760px) {
  .paint-condition {
    padding: 92px 0 112px;
  }

  .paint-condition::before {
    background-size: 52px 52px;
  }

  .paint-condition .container {
    width: min(calc(100% - 38px), var(--container));
  }

  .paint-condition__head {
    margin-bottom: 45px;
  }

  .paint-condition__head .section-label {
    gap: 12px;
    font-size: 10px;
  }

  .paint-condition__head .section-label::before,
  .paint-condition__head .section-label::after {
    width: 24px;
  }

  .paint-condition__head h2 {
    margin: 22px 0 17px;
    font-size: clamp(33px, 9.1vw, 48px);
    line-height: 1.45;
  }

  .paint-condition__head > p {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
  }

  .paint-condition__head > p br {
    display: none;
  }

  .paint-condition__compare {
    grid-template-columns: 1fr;
  }

  .paint-condition__column {
    padding: 29px 20px 0;
  }

  .paint-condition__column + .paint-condition__column {
    border-top: 7px solid #f5f1e9;
    border-left: 0;
  }

  .paint-condition__column-head {
    margin-bottom: 20px;
  }

  .paint-condition__column-head > div {
    gap: 17px;
  }

  .paint-condition__column-head strong {
    font-size: 58px;
  }

  .paint-condition__column-head h3 {
    font-size: 21px;
  }

  .paint-photo-placeholder::after {
    inset: 9px;
  }

  .paint-photo-placeholder > span {
    margin: 0 0 18px 18px;
    font-size: 9px;
  }

  .paint-condition__photo-caption {
    min-height: 0;
    margin: 13px 0 18px;
    font-size: 12px;
  }

  .paint-condition__checklist {
    gap: 11px;
    margin-bottom: 24px;
  }

  .paint-condition__checklist li {
    font-size: 14px;
  }

  .paint-condition__answer {
    min-height: 68px;
    margin-inline: -20px;
    padding: 16px 20px;
    font-size: 16px;
  }

  .paint-materials {
    margin-top: 26px;
    padding: 39px 20px 30px;
  }

  .paint-materials__head h3 {
    font-size: 24px;
  }

  .paint-materials__head p {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.65;
  }

  .paint-materials__list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 0;
    margin-top: 22px;
  }

  .paint-materials__list::before {
    display: none;
  }

  .paint-materials__list li {
    grid-template-columns: 31px 1fr;
    padding: 10px 4px;
    font-size: 13px;
  }

  .paint-materials__list li:nth-child(4) {
    border-bottom-color: rgba(16, 35, 58, .09);
  }

  .paint-materials__list li:last-child {
    border-bottom-color: transparent;
  }

  .paint-condition__cases {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .paint-case {
    padding: 11px;
  }

  .paint-case > p {
    font-size: 12px;
  }

  .paint-case > strong {
    font-size: 14px;
  }

  .paint-condition__conclusion {
    margin-top: 72px;
  }

  .paint-condition__conclusion > p:first-child {
    font-size: 14px;
  }

  .paint-condition__conclusion h3 {
    font-size: clamp(43px, 12.7vw, 61px);
    letter-spacing: -.02em;
  }

  .paint-condition__conclusion-copy {
    font-family: var(--sans);
    font-size: 14px;
    text-align: left;
  }

  .paint-condition__conclusion-copy br {
    display: none;
  }

  .paint-condition__actions {
    display: grid;
    width: 100%;
    gap: 15px;
    margin-top: 27px;
    justify-content: stretch;
  }

  .paint-condition__cta {
    width: 100%;
    min-height: 82px;
    padding: 15px 15px 15px 20px;
  }

  .paint-condition__cta > span {
    font-size: 16px;
  }

  .paint-condition__cta i {
    width: 42px;
    height: 42px;
  }

  .paint-condition__link {
    justify-self: center;
  }
}

@media (max-width: 390px) {
  .paint-condition__head h2 {
    font-size: 31px;
  }

  .paint-condition__column-head > div {
    gap: 13px;
  }

  .paint-condition__column-head strong {
    font-size: 52px;
  }

  .paint-condition__column-head h3 {
    font-size: 18px;
  }

  .paint-condition__conclusion h3 {
    font-size: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .paint-photo-placeholder::before {
    display: none;
    animation: none;
  }

  .paint-condition__head h2 span::after,
  .paint-condition__conclusion h3::after {
    transform: scaleX(1);
    transition: none;
  }
}


.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

@media (max-width: 720px) {
  .hero-media img {
    object-position: center;
  }
}


.method-visual[data-layer-reveal] {
  --layer-ease: cubic-bezier(.22, 1, .36, 1);
  isolation: isolate;
  background: #081622;
  perspective: 1400px;
}

.method-visual[data-layer-reveal]::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0 16.55%, rgba(255, 255, 255, .12) 16.6%, transparent 16.72% 49.85%, rgba(255, 255, 255, .1) 49.9%, transparent 50.02% 83.15%, rgba(255, 255, 255, .08) 83.2%, transparent 83.32%),
    linear-gradient(180deg, transparent 0 49.8%, rgba(216, 179, 109, .16) 49.9%, transparent 50.08%);
  content: "";
  pointer-events: none;
  transform: scaleX(.72);
  transform-origin: center;
}

.method-visual[data-layer-reveal]::after {
  z-index: 5;
  display: block;
  background:
    linear-gradient(90deg, rgba(7, 19, 29, .38), transparent 48%),
    linear-gradient(180deg, rgba(10, 22, 31, .06), rgba(8, 20, 29, .48));
  clip-path: none;
  transform: none;
  transition: none;
}

.method-visual__base {
  opacity: 0;
  filter: blur(10px) saturate(.58) contrast(1.02);
  will-change: opacity, filter;
}

.method-visual__layers {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  transform: translateZ(0);
}

.method-visual__layer {
  position: absolute;
  inset: -1px;
  opacity: 0;
  filter: drop-shadow(0 28px 24px rgba(3, 13, 21, .48));
  pointer-events: none;
  transform: translate3d(var(--layer-x), var(--layer-y), var(--layer-z)) rotateX(var(--layer-rx)) rotateZ(var(--layer-r)) scale(1.075);
  transform-origin: var(--layer-origin, center);
  will-change: opacity, transform, filter;
}

.method-visual__layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.075);
  transform-origin: center;
}

.method-visual__layer--01 {
  --layer-x: -20%;
  --layer-y: -84px;
  --layer-z: 120px;
  --layer-rx: 5deg;
  --layer-r: -2.8deg;
  --layer-delay: 0s;
  --layer-origin: left top;
  clip-path: polygon(0 0, 100% 0, 100% 26%, 0 42%);
}

.method-visual__layer--02 {
  --layer-x: 17%;
  --layer-y: -40px;
  --layer-z: 86px;
  --layer-rx: -4deg;
  --layer-r: 2.2deg;
  --layer-delay: .18s;
  --layer-origin: right center;
  clip-path: polygon(0 30%, 100% 14%, 100% 51%, 0 65%);
}

.method-visual__layer--03 {
  --layer-x: -16%;
  --layer-y: 42px;
  --layer-z: 70px;
  --layer-rx: 4deg;
  --layer-r: -2deg;
  --layer-delay: .36s;
  --layer-origin: left center;
  clip-path: polygon(0 54%, 100% 39%, 100% 76%, 0 91%);
}

.method-visual__layer--04 {
  --layer-x: 20%;
  --layer-y: 88px;
  --layer-z: 110px;
  --layer-rx: -5deg;
  --layer-r: 2.7deg;
  --layer-delay: .54s;
  --layer-origin: right bottom;
  clip-path: polygon(0 79%, 100% 64%, 100% 100%, 0 100%);
}

.method-visual__trace {
  --trace-angle: -6.6deg;
  position: absolute;
  left: -30%;
  z-index: 5;
  width: 160%;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, transparent 0 24%, rgba(226, 195, 137, .2) 38%, rgba(255, 236, 198, .96) 50%, rgba(202, 158, 86, .24) 62%, transparent 76%);
  box-shadow: 0 0 24px rgba(229, 194, 126, .82);
  pointer-events: none;
  transform: translate3d(-38%, 0, 0) rotate(var(--trace-angle));
  transform-origin: center;
  will-change: opacity, transform;
}

.method-visual__trace--01 {
  top: 39%;
}

.method-visual__trace--02 {
  top: 68%;
}

.method-visual__trace--03 {
  top: 84%;
}

.method-visual__meter {
  position: absolute;
  top: 28px;
  left: max(28px, calc((100vw - var(--container)) / 2));
  z-index: 7;
  display: grid;
  grid-template-columns: auto repeat(4, 24px);
  align-items: center;
  gap: 7px;
  opacity: 0;
  color: rgba(255, 255, 255, .8);
  pointer-events: none;
}

.method-visual__meter small {
  margin-right: 7px;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .24em;
}

.method-visual__meter i {
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 179, 109, .35), #e7c98e);
  transform: scaleX(0);
  transform-origin: left;
}

.method-visual[data-layer-reveal] .method-title {
  z-index: 7;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, 28px, 0);
  will-change: opacity, clip-path, transform;
}

.method-visual[data-layer-reveal] .method-title .accent-text-light {
  position: relative;
  display: inline-block;
}

.method-visual[data-layer-reveal] .method-title .accent-text-light::after {
  position: absolute;
  right: -.02em;
  bottom: .03em;
  left: 0;
  height: 1px;
  opacity: .86;
  background: linear-gradient(90deg, rgba(216, 179, 109, 0), #e2bd78 18%, #f2d49a 78%, rgba(216, 179, 109, 0));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.method-visual[data-layer-reveal].is-visible::before {
  animation: method-layer-grid 2.35s var(--layer-ease) .24s both;
}

.method-visual[data-layer-reveal].is-visible > .method-visual__base {
  animation: method-base-resolve 1.22s var(--layer-ease) 1.78s both;
}

.method-visual[data-layer-reveal].is-visible .method-visual__layer {
  animation: method-layer-stack 2.8s var(--layer-ease) var(--layer-delay) both;
}

.method-visual[data-layer-reveal].is-visible .method-visual__trace--01 {
  animation: method-layer-trace 1.72s cubic-bezier(.3, .7, .2, 1) .62s both;
}

.method-visual[data-layer-reveal].is-visible .method-visual__trace--02 {
  animation: method-layer-trace 1.72s cubic-bezier(.3, .7, .2, 1) .98s both;
}

.method-visual[data-layer-reveal].is-visible .method-visual__trace--03 {
  animation: method-layer-trace 1.72s cubic-bezier(.3, .7, .2, 1) 1.34s both;
}

.method-visual[data-layer-reveal].is-visible .method-visual__meter {
  animation: method-layer-meter 3.05s var(--layer-ease) .16s both;
}

.method-visual[data-layer-reveal].is-visible .method-visual__meter i:nth-of-type(1) {
  animation: method-meter-line .62s var(--layer-ease) .42s both;
}

.method-visual[data-layer-reveal].is-visible .method-visual__meter i:nth-of-type(2) {
  animation: method-meter-line .62s var(--layer-ease) .72s both;
}

.method-visual[data-layer-reveal].is-visible .method-visual__meter i:nth-of-type(3) {
  animation: method-meter-line .62s var(--layer-ease) 1.02s both;
}

.method-visual[data-layer-reveal].is-visible .method-visual__meter i:nth-of-type(4) {
  animation: method-meter-line .62s var(--layer-ease) 1.32s both;
}

.method-visual[data-layer-reveal].is-visible .method-title {
  animation: method-title-resolve 1.02s var(--layer-ease) 2.12s both;
}

.method-visual[data-layer-reveal].is-visible .method-title .accent-text-light::after {
  animation: method-title-rule .92s var(--layer-ease) 2.5s both;
}

@keyframes method-layer-stack {
  0% {
    opacity: 0;
    filter: drop-shadow(0 34px 30px rgba(3, 13, 21, .58));
    transform: translate3d(var(--layer-x), var(--layer-y), var(--layer-z)) rotateX(var(--layer-rx)) rotateZ(var(--layer-r)) scale(1.075);
  }
  20% {
    opacity: 1;
  }
  78%, 91% {
    opacity: 1;
    filter: drop-shadow(0 4px 4px rgba(3, 13, 21, .12));
    transform: translate3d(0, 0, 0) rotateX(0) rotateZ(0) scale(1);
  }
  100% {
    opacity: 0;
    filter: none;
    transform: translate3d(0, 0, 0) rotateX(0) rotateZ(0) scale(1);
  }
}

@keyframes method-base-resolve {
  0%, 18% {
    opacity: 0;
    filter: blur(10px) saturate(.58) contrast(1.02);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(.72) contrast(1.04);
  }
}

@keyframes method-layer-trace {
  0% {
    opacity: 0;
    transform: translate3d(-38%, 0, 0) rotate(var(--trace-angle));
  }
  26% {
    opacity: .95;
  }
  72% {
    opacity: .72;
  }
  100% {
    opacity: 0;
    transform: translate3d(38%, 0, 0) rotate(var(--trace-angle));
  }
}

@keyframes method-layer-grid {
  0% {
    opacity: 0;
    transform: scaleX(.72);
  }
  36% {
    opacity: .42;
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes method-layer-meter {
  0% {
    opacity: 0;
    transform: translate3d(-14px, 0, 0);
  }
  12%, 72% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes method-meter-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes method-title-resolve {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 28px, 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes method-title-rule {
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 720px) {
  .method-visual__layer--01 {
    --layer-x: -28%;
    --layer-y: -48px;
  }

  .method-visual__layer--02 {
    --layer-x: 24%;
    --layer-y: -22px;
  }

  .method-visual__layer--03 {
    --layer-x: -22%;
    --layer-y: 24px;
  }

  .method-visual__layer--04 {
    --layer-x: 28%;
    --layer-y: 50px;
  }

  .method-visual__trace {
    --trace-angle: -10deg;
  }

  .method-visual__meter {
    top: 17px;
    left: 18px;
    grid-template-columns: auto repeat(4, 15px);
    gap: 5px;
  }

  .method-visual__meter small {
    margin-right: 4px;
    font-size: 7px;
  }

  .method-visual__meter i {
    width: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-visual[data-layer-reveal]::before,
  .method-visual__layers,
  .method-visual__meter {
    display: none;
  }

  .method-visual[data-layer-reveal]::after {
    display: block;
  }

  .method-visual[data-layer-reveal] > .method-visual__base {
    opacity: 1;
    filter: saturate(.72) contrast(1.04);
    animation: none !important;
  }

  .method-visual[data-layer-reveal] .method-title {
    opacity: 1;
    clip-path: none;
    transform: none;
    animation: none !important;
  }

  .method-visual[data-layer-reveal] .method-title .accent-text-light::after {
    transform: scaleX(1);
    animation: none !important;
  }
}


.compare-table {
  border-collapse: separate;
  border-spacing: 0;
}

.compare-table th:nth-child(2),
.compare-table th:nth-child(3),
.compare-table td:nth-child(2),
.compare-table td:nth-child(3) {
  text-align: center;
  vertical-align: middle;
}

.compare-table thead th:nth-child(3),
.compare-table tbody td:nth-child(3) {
  border-right: 5px solid rgba(184, 137, 66, .92);
  border-left: 5px solid rgba(184, 137, 66, .92);
  color: var(--ink);
  background: rgba(216, 179, 109, .075);
  font-weight: 700;
}

.compare-table thead th:nth-child(3) {
  border-top: 5px solid rgba(184, 137, 66, .92);
  color: var(--accent);
  font-size: 18px;
  letter-spacing: .035em;
  box-shadow: 0 -10px 30px rgba(184, 137, 66, .055);
}

.compare-table tbody tr:last-child td:nth-child(3) {
  border-bottom: 5px solid rgba(184, 137, 66, .92);
}

.compare-table thead th:nth-child(2) {
  font-weight: 600;
}


.cover-concerns {
  position: relative;
  padding: clamp(120px, 12vw, 180px) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfaf7 0%, #fff 100%);
}

.cover-concerns::before,
.cover-concerns::after {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 37px,
    rgba(184, 137, 66, .15) 38px 39px
  );
  content: "";
  pointer-events: none;
}

.cover-concerns::before {
  top: -330px;
  right: -270px;
}

.cover-concerns::after {
  bottom: -355px;
  left: -285px;
}

.cover-concerns .container {
  position: relative;
  z-index: 1;
}

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

.cover-concerns__head::before {
  display: block;
  width: 78px;
  height: 1px;
  margin: 0 auto 43px;
  background: var(--accent);
  content: "";
}

.cover-concerns__head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 5.1vw, 68px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.045em;
}

.cover-concerns__head h2 .cover-concerns__accent {
  margin-left: .14em;
  background: linear-gradient(transparent 67%, rgba(216, 179, 109, .25) 67%);
}

.cover-concerns__head h2 .cover-concerns__particle {
  display: inline-block;
  margin: 0 .07em;
  font-size: .9em;
  letter-spacing: 0;
  vertical-align: baseline;
}

.cover-concerns__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 44px);
  max-width: 1240px;
  margin: 78px auto 0;
}

.cover-concern-card {
  position: relative;
  min-height: 510px;
  padding: 50px 40px 43px;
  border: 1px solid rgba(184, 137, 66, .3);
  background: rgba(255, 255, 255, .52);
  transition-delay: calc(var(--concern-index, 0) * 90ms);
}

.cover-concern-card:nth-child(1) { --concern-index: 0; }
.cover-concern-card:nth-child(2) { --concern-index: 1; }
.cover-concern-card:nth-child(3) { --concern-index: 2; }

.cover-concern-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 108px;
  height: 3px;
  background: var(--accent);
  content: "";
  transition: width .55s cubic-bezier(.2, .65, .2, 1);
}

.cover-concern-card__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: var(--accent);
}

.cover-concern-card__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cover-concern-card__icon .is-dashed {
  stroke-dasharray: 5 6;
}

.cover-concern-card h3 {
  margin: 34px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .01em;
}

.cover-concern-card h3 i {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 10px;
  color: var(--accent);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
  font-style: normal;
  line-height: 1;
  transform: translateY(-2px);
}

.cover-concern-card p {
  margin: 31px 0 0;
  padding-top: 29px;
  color: var(--ink);
  border-top: 1px solid rgba(13, 40, 59, .18);
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
}

.cover-concern-card p span {
  padding-bottom: 3px;
  background: linear-gradient(transparent calc(100% - 1px), rgba(184, 137, 66, .7) 0);
}

@media (hover: hover) and (pointer: fine) {
  .cover-concern-card:hover {
    border-color: rgba(184, 137, 66, .62);
    box-shadow: 0 28px 65px rgba(13, 40, 59, .08);
    transform: translateY(-8px);
  }

  .cover-concern-card:hover::before {
    width: calc(100% + 2px);
  }
}

@media (max-width: 980px) {
  .cover-concerns__grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 24px;
  }

  .cover-concern-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .cover-concerns {
    padding: 105px 0;
  }

  .cover-concerns::before,
  .cover-concerns::after {
    width: 320px;
    height: 320px;
  }

  .cover-concerns::before {
    top: -205px;
    right: -205px;
  }

  .cover-concerns::after {
    bottom: -220px;
    left: -210px;
  }

  .cover-concerns__head::before {
    width: 58px;
    margin-bottom: 31px;
  }

  .cover-concerns__head h2 {
    font-size: clamp(32px, 9.4vw, 43px);
    line-height: 1.5;
  }

  .cover-concerns__head h2 .cover-concerns__accent {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .cover-concerns__grid {
    margin-top: 55px;
  }

  .cover-concern-card {
    padding: 39px 27px 34px;
  }

  .cover-concern-card::before {
    width: 82px;
  }

  .cover-concern-card__icon {
    width: 72px;
    height: 72px;
  }

  .cover-concern-card h3 {
    margin-top: 25px;
    font-size: 23px;
    line-height: 1.7;
  }

  .cover-concern-card h3 i {
    width: 25px;
    height: 25px;
    margin-left: 7px;
    font-size: 13px;
  }

  .cover-concern-card p {
    margin-top: 25px;
    padding-top: 23px;
    font-size: 13px;
    line-height: 2.05;
  }

  .cover-concern-card p br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-concern-card,
  .cover-concern-card::before {
    transition: none !important;
  }
}


.cover-price-guide {
  position: relative;
  padding: clamp(120px, 11vw, 170px) 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid rgba(13, 40, 59, .08);
}

.cover-price-guide::before {
  position: absolute;
  top: 0;
  right: 7vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(184, 137, 66, .2), transparent);
  content: "";
  pointer-events: none;
}

.cover-price-guide__layout {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(0, 1.42fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: center;
}

.cover-price-guide__head h2 {
  margin: 34px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 4.7vw, 66px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -.05em;
}

.cover-price-guide__head h2 span {
  color: var(--accent);
}

.cover-price-guide__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .88fr) minmax(320px, 1.12fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(184, 137, 66, .38);
  background: #fff;
  box-shadow: 0 28px 80px rgba(13, 40, 59, .075);
}

.cover-price-guide__panel::before {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  width: 132px;
  height: 4px;
  background: var(--accent);
  content: "";
}

.cover-price-guide__plan,
.cover-price-guide__amount {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 68px);
}

.cover-price-guide__plan {
  position: relative;
  background:
    linear-gradient(rgba(184, 137, 66, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 137, 66, .055) 1px, transparent 1px),
    #f8f5ed;
  background-size: 32px 32px;
  border-right: 1px solid rgba(184, 137, 66, .25);
}

.cover-price-guide__plan > span,
.cover-price-guide__amount > span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.cover-price-guide__plan > span::before,
.cover-price-guide__amount > span::before {
  width: 26px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
  content: "";
}

.cover-price-guide__plan h3 {
  margin: 34px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .01em;
}

.cover-price-guide__plan small {
  margin-top: 44px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .18em;
}

.cover-price-guide__amount {
  position: relative;
  align-items: flex-start;
  background:
    radial-gradient(circle at 88% 14%, rgba(216, 179, 109, .13), transparent 28%),
    #fff;
}

.cover-price-guide__amount::after {
  position: absolute;
  right: -85px;
  bottom: -85px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(184, 137, 66, .14);
  border-radius: 50%;
  content: "";
}

.cover-price-guide__amount p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  margin: 29px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  line-height: .82;
  white-space: nowrap;
}

.cover-price-guide__amount strong {
  min-width: 2.25em;
  color: var(--accent);
  font-size: clamp(100px, 11vw, 164px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.09em;
}

.cover-price-guide__amount em {
  margin: 0 0 10px 18px;
  font-size: clamp(24px, 2.6vw, 36px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: .02em;
}

.cover-price-guide__amount small {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  margin-top: 23px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
}

.cover-price-guide__notes {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  padding: 17px 24px 18px;
  color: var(--muted);
  border-top: 1px solid rgba(13, 40, 59, .1);
  background: #fff;
}

.cover-price-guide__notes small {
  font-size: 10px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .cover-price-guide__layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .cover-price-guide__head h2 br {
    display: none;
  }

  .cover-price-guide__head h2 span {
    margin-left: .12em;
  }
}

@media (max-width: 720px) {
  .cover-price-guide {
    padding: 100px 0;
  }

  .cover-price-guide::before {
    right: 18px;
  }

  .cover-price-guide__layout {
    gap: 45px;
  }

  .cover-price-guide__head h2 {
    margin-top: 24px;
    font-size: clamp(34px, 10vw, 45px);
    line-height: 1.5;
  }

  .cover-price-guide__head h2 br {
    display: initial;
  }

  .cover-price-guide__head h2 span {
    margin-left: 0;
  }

  .cover-price-guide__panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .cover-price-guide__plan,
  .cover-price-guide__amount {
    padding: 42px 27px;
  }

  .cover-price-guide__plan {
    border-right: 0;
    border-bottom: 1px solid rgba(184, 137, 66, .25);
  }

  .cover-price-guide__plan h3 {
    margin-top: 26px;
    font-size: 26px;
    line-height: 1.65;
  }

  .cover-price-guide__plan small {
    margin-top: 30px;
  }

  .cover-price-guide__amount p {
    margin-top: 26px;
  }

  .cover-price-guide__amount strong {
    font-size: clamp(92px, 29vw, 126px);
  }

  .cover-price-guide__amount em {
    margin: 0 0 8px 10px;
    font-size: 23px;
  }

  .cover-price-guide__amount small {
    margin-top: 18px;
  }

  .cover-price-guide__notes {
    padding: 15px 18px 17px;
  }

  .cover-price-guide__notes small {
    font-size: 9px;
    line-height: 1.65;
  }
}


.cover-price-guide__layout {
  display: block;
}

.cover-price-guide__head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.cover-price-guide__head .section-label {
  justify-content: center;
}

.cover-price-guide__head h2 {
  margin-top: 30px;
}

.cover-price-guide__head h2 span {
  margin-left: .14em;
}

.cover-price-guide__panel {
  grid-template-columns: 1fr;
  max-width: 980px;
  min-height: 0;
  margin: 72px auto 0;
}

.cover-price-guide__plan {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  min-height: 190px;
  padding: 48px 60px;
  border-right: 0;
  border-bottom: 1px solid rgba(184, 137, 66, .25);
}

.cover-price-guide__plan h3 {
  margin: 0;
}

.cover-price-guide__plan small {
  margin: 0;
  text-align: right;
  white-space: nowrap;
}

.cover-price-guide__amount {
  align-items: center;
  min-height: 320px;
  padding: 58px 60px 52px;
  text-align: center;
}

.cover-price-guide__amount p {
  justify-content: center;
}

.cover-price-guide__amount small {
  align-self: center;
}

.cover-price-guide__notes {
  padding: 18px 30px 20px;
  text-align: center;
}

@media (max-width: 720px) {
  .cover-price-guide__head h2 {
    line-height: 1.5;
  }

  .cover-price-guide__head h2 span {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .cover-price-guide__panel {
    margin-top: 48px;
  }

  .cover-price-guide__plan {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 40px 27px;
  }

  .cover-price-guide__plan h3 {
    margin-top: 26px;
  }

  .cover-price-guide__plan small {
    margin-top: 28px;
    text-align: left;
  }

  .cover-price-guide__amount {
    min-height: 0;
    padding: 48px 20px 42px;
  }

  .cover-price-guide__notes {
    padding: 16px 18px 18px;
    text-align: left;
  }
}


.cover-price-guide__layout {
  /* max-width: 700px; */
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.cover-price-guide__panel {
  max-width: 700px;
}

.cover-price-guide__plan {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px 30px;
  padding: 42px 40px;
}

.cover-price-guide__plan > span {
  grid-row: 1 / span 2;
  align-self: center;
}

.cover-price-guide__plan small {
  grid-column: 2;
  margin: 0;
  text-align: left;
}

.cover-price-guide__amount {
  min-height: 0;
  padding: 20px 30px 18px;
}

@media (max-width: 720px) {
  .cover-price-guide__plan {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 34px 24px;
  }

  .cover-price-guide__plan > span {
    grid-row: auto;
    align-self: auto;
  }

  .cover-price-guide__plan small {
    grid-column: auto;
    margin-top: 24px;
  }

  .cover-price-guide__amount {
    padding: 18px 30px 16px;
  }
}


.cover-price-guide__plan {
  min-height: 0;
  padding: 14px 40px;
}

.cover-price-guide__amount {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.35vw, 19px);
  min-height: 0;
  padding: 20px 30px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 14%, rgba(216, 179, 109, .18), transparent 31%),
    linear-gradient(118deg, #102840 0%, #0c2033 100%);
}

.cover-price-guide__amount > span {
  flex: 0 0 auto;
  padding: 10px 13px;
  color: #fff;
  border: 1px solid rgba(216, 179, 109, .58);
  background: rgba(216, 179, 109, .1);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  white-space: nowrap;
}

.cover-price-guide__amount > span::before {
  display: none;
}

.cover-price-guide__amount p {
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #fff;
  font-family: var(--sans);
  line-height: 1;
}

.cover-price-guide__amount strong {
  min-width: 2.25em;
  color: var(--accent-light);
  font-family: var(--sans);
  font-size: clamp(92px, 9vw, 132px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.09em;
  text-align: right;
}

.cover-price-guide__amount em {
  margin: 0 0 0 10px;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(22px, 2.3vw, 31px);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
}

.cover-price-guide__amount small {
  flex: 0 0 auto;
  align-self: center;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.cover-price-guide__amount::after {
  border-color: rgba(216, 179, 109, .2);
}

@media (max-width: 720px) {
  .cover-price-guide__plan {
    padding: 12px 24px;
  }

  .cover-price-guide__amount {
    gap: 5px;
    padding: 14px 8px 13px;
  }

  .cover-price-guide__amount > span {
    padding: 7px 6px;
    font-size: 8px;
    letter-spacing: .04em;
  }

  .cover-price-guide__amount strong {
    min-width: 2.05em;
    font-size: clamp(48px, 17vw, 68px);
  }

  .cover-price-guide__amount em {
    margin-left: 4px;
    font-size: clamp(15px, 4.6vw, 18px);
  }

  .cover-price-guide__amount small {
    font-size: 7px;
    letter-spacing: 0;
  }
}


.support-icon {
  position: relative;
  display: grid;
  place-items: center;
  align-self: start;
  width: 64px;
  height: 64px;
  color: var(--accent);
  border: 1px solid rgba(184, 137, 66, .5);
  border-radius: 50%;
  background: rgba(216, 179, 109, .08);
  transition: color .35s ease, background .35s ease, transform .45s cubic-bezier(.2, .65, .2, 1);
}

.support-icon::after {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184, 137, 66, .16);
  border-radius: 50%;
  content: "";
}

.support-icon svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.support-item h3 {
  line-height: 1.55;
}

.support-item p {
  line-height: 2;
}

@media (hover: hover) and (pointer: fine) {
  .support-item:hover .support-icon {
    color: #fff;
    background: var(--accent);
    transform: translateY(-4px) rotate(-3deg);
  }

  .support-item:hover .support-icon::after {
    border-color: rgba(255, 255, 255, .32);
  }
}

@media (max-width: 720px) {
  .support-item {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }

  .support-icon {
    width: 46px;
    height: 46px;
  }

  .support-icon::after {
    inset: 4px;
  }

  .support-icon svg {
    width: 27px;
    height: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-icon {
    transition: none !important;
  }
}


.cover-price-guide__amount {
  color: var(--ink);
  background: #fff;
}

.cover-price-guide__amount > span {
  color: var(--ink);
  border-color: rgba(184, 137, 66, .42);
  background: #f8f5ed;
}

.cover-price-guide__amount p {
  color: var(--ink);
}

.cover-price-guide__amount strong,
.cover-price-guide__amount em {
  color: #d65a32;
}

.cover-price-guide__amount small {
  color: var(--muted);
}

.cover-price-guide__amount::after {
  border-color: rgba(184, 137, 66, .14);
}


.cover-price-guide__amount {
  align-items: flex-end;
}

.cover-price-guide__amount > span {
  align-self: center;
}

.cover-price-guide__amount p {
  align-items: flex-end;
}

.cover-price-guide__amount em {
  margin-bottom: 3px;
}

.cover-price-guide__amount small {
  align-self: flex-end;
  margin-bottom: 4px;
}

@media (max-width: 720px) {
  .cover-price-guide__amount em {
    margin-bottom: 2px;
  }

  .cover-price-guide__amount small {
    margin-bottom: 2px;
  }
}


.price-copy .price-copy__insurance-lead {
  margin: 38px 0 0;
  padding: 18px 0 18px 21px;
  color: #fff;
  border-left: 2px solid var(--accent-light);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.75;
  letter-spacing: .015em;
}

.price-copy__insurance-lead strong {
  font-weight: 500;
}

.price-copy .price-copy__insurance-body {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 2;
}

.price-copy .price-copy__insurance-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  color: rgba(255, 255, 255, .62);
  border: 1px solid rgba(216, 179, 109, .23);
  background: rgba(255, 255, 255, .04);
  font-size: 10px;
  line-height: 1.9;
}

.price-copy__insurance-note strong {
  color: var(--accent-light);
  font-weight: 700;
}

@media (max-width: 720px) {
  .price-copy .price-copy__insurance-lead {
    margin-top: 31px;
    padding: 14px 0 14px 16px;
    font-size: 17px;
    line-height: 1.75;
  }

  .price-copy .price-copy__insurance-body {
    margin-top: 21px;
    font-size: 12px;
    line-height: 1.95;
  }

  .price-copy .price-copy__insurance-note {
    margin-top: 20px;
    padding: 14px 15px;
    font-size: 9px;
    line-height: 1.85;
  }
}


@media (min-width: 1280px) {
  :root {
    --desktop-page-gutter: clamp(160px, 12.5vw, 180px);
  }

  .container,
  .value-marquee__cta {
    width: calc(100% - (var(--desktop-page-gutter) * 2));
    max-width: none;
  }

  .proof-media {
    margin-left: calc(var(--desktop-page-gutter) * -1);
  }

  .price-support {
    margin-right: calc(var(--desktop-page-gutter) * -1);
  }

  .method-title {
    right: var(--desktop-page-gutter);
  }

  .method-visual__meter {
    left: var(--desktop-page-gutter);
  }
}


@media (min-width: 1280px) {
  :root {
    --wide-section-gutter: clamp(115px, 9.0278vw, 130px);
  }

  .hero .hero-inner,
  .price-band .price-inner {
    width: calc(100% - (var(--wide-section-gutter) * 2));
    max-width: none;
  }

  .price-band .price-support {
    margin-right: calc(var(--wide-section-gutter) * -1);
  }
}


.roof-warranty {
  position: relative;
  overflow: hidden;
  padding: 154px 0 138px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .96), transparent 48%),
    #faf8f3;
  isolation: isolate;
}

.roof-warranty::before,
.roof-warranty::after {
  position: absolute;
  z-index: -1;
  width: 330px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 18px,
    rgba(184, 137, 66, .14) 18.5px 19.5px
  );
  content: "";
  pointer-events: none;
}

.roof-warranty::before {
  top: -238px;
  left: -194px;
}

.roof-warranty::after {
  right: -194px;
  bottom: -232px;
}

.roof-warranty__head {
  max-width: 940px;
  margin: 0 auto 66px;
  text-align: center;
}

.roof-warranty__head .section-label {
  justify-content: center;
  color: var(--accent);
}

.roof-warranty__head .section-label::after {
  width: 70px;
}

.roof-warranty__head h2 {
  margin: 27px 0 22px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 500;
  letter-spacing: .025em;
  line-height: 1.35;
}

.roof-warranty__head h2 span {
  position: relative;
  z-index: 0;
  margin-left: .16em;
  white-space: nowrap;
}

.roof-warranty__head h2 .roof-warranty__accent {
  color: var(--accent);
}

.roof-warranty__head h2 span::after {
  position: absolute;
  right: -.08em;
  bottom: .07em;
  left: -.08em;
  z-index: -1;
  height: .25em;
  background: linear-gradient(90deg, rgba(216, 179, 109, .12), rgba(216, 179, 109, .4));
  content: "";
  transform: scaleX(.12);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.2, .75, .2, 1) .32s;
}

.roof-warranty__head.is-visible h2 span::after {
  transform: scaleX(1);
}

.roof-warranty__head > p {
  margin: 0;
  color: #465363;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.05;
}

.roof-warranty__head > p strong {
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(transparent 72%, rgba(216, 179, 109, .28) 72%);
}

.roof-warranty__context {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(100%, 1340px);
  margin: 0 auto 20px;
  color: var(--ink);
}

.roof-warranty__context::after {
  flex: 1;
  height: 1px;
  background: rgba(184, 137, 66, .48);
  content: "";
}

.roof-warranty__context span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.roof-warranty__context strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
}

.roof-warranty__models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 1340px);
  margin: 0 auto;
}

.roof-warranty-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 137, 66, .42);
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 20px 60px rgba(16, 35, 58, 0);
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}

.roof-warranty-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.2, .75, .2, 1) calc(var(--reveal-delay, 0ms) + 230ms);
}

.roof-warranty-card.is-visible::before {
  transform: scaleX(1);
}

.roof-warranty-card--premium {
  border: 2px solid rgba(184, 137, 66, .84);
  background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(250, 243, 229, .68));
}

.roof-warranty-card:hover {
  border-color: rgba(184, 137, 66, .88);
  box-shadow: 0 24px 70px rgba(16, 35, 58, .08);
  transform: translateY(-5px);
}

.roof-warranty-card__head {
  min-height: 258px;
  padding: 46px 42px 38px;
  text-align: center;
  border-bottom: 1px solid rgba(184, 137, 66, .28);
}

.roof-warranty-card__head > span {
  display: block;
  margin-bottom: 17px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}

.roof-warranty-card__head p {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .05em;
}

.roof-warranty-card__head h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: clamp(38px, 3.7vw, 56px);
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1.35;
}

.roof-warranty-card__head small {
  color: #354456;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .045em;
}

.roof-warranty-card__terms {
  margin: 0;
  padding: 0 26px;
}

.roof-warranty-card__terms > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 26px;
  min-height: 93px;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(16, 35, 58, .16);
}

.roof-warranty-card__terms > div:last-child {
  border-bottom: 0;
}

.roof-warranty-card__terms dt {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .04em;
}

.roof-warranty-card__terms dd {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
  color: var(--accent);
  font-family: var(--serif);
  line-height: 1;
  white-space: nowrap;
}

.roof-warranty-card__terms dd strong {
  font-size: 50px;
  font-weight: 500;
}

.roof-warranty-card__terms dd span {
  font-size: 24px;
}

.roof-warranty-card__terms dd .is-none {
  color: #777a7d;
  font-size: 27px;
  font-weight: 500;
}

.roof-warranty__note {
  max-width: 1160px;
  margin: 42px auto 0;
  color: #44505e;
  font-family: var(--serif);
  font-size: 12px;
  line-height: 2;
  text-align: center;
}

@media (max-width: 900px) {
  .roof-warranty__models {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .roof-warranty-card__head {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .roof-warranty {
    padding: 98px 0 86px;
  }

  .roof-warranty::before,
  .roof-warranty::after {
    width: 230px;
  }

  .roof-warranty::before {
    top: -165px;
    left: -142px;
  }

  .roof-warranty::after {
    right: -146px;
    bottom: -160px;
  }

  .roof-warranty__head {
    margin-bottom: 46px;
  }

  .roof-warranty__head h2 {
    margin: 21px 0 18px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .roof-warranty__head h2 span {
    display: block;
    margin-left: 0;
  }

  .roof-warranty__head > p {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
  }

  .roof-warranty__head > p br {
    display: none;
  }

  .roof-warranty__context {
    gap: 12px;
    margin-bottom: 14px;
  }

  .roof-warranty__context span {
    font-size: 8px;
  }

  .roof-warranty__context strong {
    font-size: 16px;
  }

  .roof-warranty__models {
    gap: 16px;
  }

  .roof-warranty-card__head {
    padding: 36px 20px 29px;
  }

  .roof-warranty-card__head h3 {
    font-size: 35px;
  }

  .roof-warranty-card__head p,
  .roof-warranty-card__head small {
    font-size: 13px;
  }

  .roof-warranty-card__terms {
    padding: 0 14px;
  }

  .roof-warranty-card__terms > div {
    min-height: 78px;
    padding: 14px 8px;
  }

  .roof-warranty-card__terms dt {
    font-size: 15px;
  }

  .roof-warranty-card__terms dd strong {
    font-size: 39px;
  }

  .roof-warranty-card__terms dd span {
    font-size: 19px;
  }

  .roof-warranty-card__terms dd .is-none {
    font-size: 22px;
  }

  .roof-warranty__note {
    margin-top: 30px;
    font-family: var(--sans);
    font-size: 10px;
    line-height: 1.85;
    text-align: left;
  }

  .roof-warranty__note br {
    display: none;
  }
}


.cover-benefits {
  position: relative;
  overflow: hidden;
  padding: 148px 0 142px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .95), transparent 48%),
    #faf8f3;
  isolation: isolate;
}

.cover-benefits::before,
.cover-benefits::after {
  position: absolute;
  z-index: -1;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 18px,
    rgba(184, 137, 66, .14) 18.5px 19.5px
  );
  content: "";
  pointer-events: none;
}

.cover-benefits::before {
  top: -226px;
  left: -186px;
}

.cover-benefits::after {
  right: -192px;
  bottom: -230px;
}

.cover-benefits__head {
  max-width: 1000px;
  margin: 0 auto 68px;
  text-align: center;
}

.cover-benefits__head .section-label {
  justify-content: center;
  color: var(--accent);
}

.cover-benefits__head .section-label::after {
  width: 68px;
}

.cover-benefits__head h2 {
  margin: 27px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 500;
  letter-spacing: .035em;
  line-height: 1.38;
}

.cover-benefits__head h2 span {
  position: relative;
  z-index: 0;
  margin-left: .12em;
  white-space: nowrap;
}

.cover-benefits__head h2 span::after {
  position: absolute;
  right: -.08em;
  bottom: .06em;
  left: -.08em;
  z-index: -1;
  height: .24em;
  background: linear-gradient(90deg, rgba(216, 179, 109, .12), rgba(216, 179, 109, .4));
  content: "";
  transform: scaleX(.12);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.2, .75, .2, 1) .3s;
}

.cover-benefits__head.is-visible h2 span::after {
  transform: scaleX(1);
}

.cover-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
}

.cover-benefit {
  min-width: 0;
}

.cover-benefit__title {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 17px;
  align-items: baseline;
  min-height: 84px;
  padding: 0 4px 13px;
  border-bottom: 1px solid rgba(184, 137, 66, .7);
}

.cover-benefit__title > span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.7vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.cover-benefit__title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: .035em;
  line-height: 1.55;
}

.cover-benefit__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.57 / 1;
  margin-top: 22px;
  border: 1px solid rgba(184, 137, 66, .72);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(.2, .75, .2, 1) calc(var(--reveal-delay, 0ms) + 210ms), border-color .35s ease, box-shadow .35s ease;
}

.cover-benefit.is-visible .cover-benefit__photo {
  clip-path: inset(0);
}

.cover-benefit__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .75, .2, 1), filter .5s ease;
}

.cover-benefit__photo::before,
.cover-benefit__photo::after {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(184, 137, 66, .48);
  content: "";
  pointer-events: none;
}

.cover-benefit__photo::before {
  top: 9px;
  left: 9px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.cover-benefit__photo::after {
  right: 9px;
  bottom: 9px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.cover-benefit:hover .cover-benefit__photo {
  border-color: var(--accent);
  box-shadow: 0 18px 50px rgba(16, 35, 58, .07);
}

.cover-benefit:hover .cover-benefit__photo img {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.025);
}

.cover-benefit > p {
  margin: 21px 4px 0;
  color: #24364a;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2.08;
  letter-spacing: .018em;
}

@media (max-width: 1080px) {
  .cover-benefits__grid {
    gap: 24px;
  }

  .cover-benefit__title {
    gap: 12px;
  }

  .cover-benefit__title h3 {
    font-size: 18px;
  }

  .cover-benefit > p {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .cover-benefits__grid {
    grid-template-columns: 1fr;
    gap: 66px;
    max-width: 680px;
    margin-inline: auto;
  }

  .cover-benefit__title {
    min-height: 0;
  }

  .cover-benefit__title h3 {
    font-size: 23px;
  }

  .cover-benefit > p {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .cover-benefits {
    padding: 96px 0 88px;
  }

  .cover-benefits::before,
  .cover-benefits::after {
    width: 230px;
  }

  .cover-benefits::before {
    top: -166px;
    left: -142px;
  }

  .cover-benefits::after {
    right: -148px;
    bottom: -164px;
  }

  .cover-benefits__head {
    margin-bottom: 48px;
  }

  .cover-benefits__head h2 {
    margin-top: 21px;
    font-size: clamp(32px, 9vw, 42px);
  }

  .cover-benefits__head h2 span {
    display: block;
    margin-left: 0;
  }

  .cover-benefits__grid {
    gap: 58px;
  }

  .cover-benefit__title {
    gap: 11px;
    padding-bottom: 11px;
  }

  .cover-benefit__title > span {
    font-size: 48px;
  }

  .cover-benefit__title h3 {
    font-size: 19px;
    line-height: 1.55;
  }

  .cover-benefit__photo {
    margin-top: 16px;
  }

  .cover-benefit > p {
    margin-top: 17px;
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-benefit__photo {
    clip-path: inset(0);
  }
}


.contact-prompt--hero-compact {
  padding-block: clamp(48px, 4.8vw, 72px);
}

.contact-prompt--hero-compact .contact-prompt__panel {
  padding-top: 32px;
  padding-bottom: 30px;
}

.contact-prompt--hero-compact .contact-prompt__rule {
  width: 100px;
  margin-bottom: 26px;
}

@media (max-width: 720px) {
  .contact-prompt--hero-compact {
    padding-block: 42px;
  }

  .contact-prompt--hero-compact .contact-prompt__panel {
    padding: 26px 18px 22px;
  }

  .contact-prompt--hero-compact .contact-prompt__rule {
    margin-bottom: 20px;
  }
}


.compare-intro h2 .compare-title__nowrap {
  display: inline-block;
  color: inherit;
  white-space: nowrap;
}


.method-lead h3 .method-lead__accent {
  display: inline-block;
  color: var(--accent);
  white-space: nowrap;
}


.hero-summary {
  position: relative;
  overflow: clip;
  padding: 0 0 clamp(28px, 3.2vw, 48px);
  border-bottom: 1px solid rgba(16, 35, 58, .08);
  background: #faf9f6;
  isolation: isolate;
}

.hero-summary::before {
  position: absolute;
  top: -260px;
  right: -180px;
  z-index: -1;
  width: 480px;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 137, 66, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(184, 137, 66, .04),
    0 0 0 84px rgba(184, 137, 66, .028);
  content: "";
  pointer-events: none;
}

.hero-summary__container {
  position: relative;
  max-width: 1420px;
}

.hero-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, .8vw, 13px);
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(-1px);
}

.hero-summary__item {
  min-width: 0;
  aspect-ratio: 1;
}

.hero-summary__card {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(16px, 1.45vw, 24px);
  border: 1px solid rgba(16, 35, 58, .16);
  color: var(--ink);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 34px rgba(16, 35, 58, .035);
  transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease, background .35s ease;
}

.hero-summary__card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2, .65, .2, 1);
}

.hero-summary__meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  padding-right: clamp(72px, 6.2vw, 98px);
  color: var(--accent);
}

.hero-summary__meta b {
  font-family: var(--serif);
  font-size: clamp(21px, 1.85vw, 30px);
  font-weight: 500;
  line-height: 1;
}

.hero-summary__meta small {
  overflow: hidden;
  color: #7a8289;
  font-size: clamp(7px, .55vw, 9px);
  letter-spacing: .13em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-summary__icon {
  position: absolute;
  top: clamp(16px, 1.45vw, 24px);
  right: clamp(16px, 1.45vw, 24px);
  display: grid;
  width: clamp(66px, 5.4vw, 86px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(184, 137, 66, .48);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(250, 249, 246, .86);
  transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s ease;
}

.hero-summary__icon svg {
  display: block;
  width: 76%;
  height: 76%;
  overflow: visible;
}

.hero-summary__icon path,
.hero-summary__icon line,
.hero-summary__icon polyline,
.hero-summary__icon polygon,
.hero-summary__icon rect,
.hero-summary__icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hero-summary__icon .icon-dot {
  fill: currentColor;
  stroke: none;
}

.hero-summary__card h3 {
  margin: auto 0 11px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.32vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .005em;
}

.hero-summary__card h3 strong {
  color: var(--accent);
  font-weight: inherit;
}

.hero-summary__card p {
  min-height: 3.5em;
  margin: 0;
  padding-right: 25px;
  color: var(--muted);
  font-size: clamp(9.5px, .72vw, 12px);
  line-height: 1.75;
}

.hero-summary__arrow {
  position: absolute;
  right: clamp(13px, 1.2vw, 19px);
  bottom: clamp(13px, 1.2vw, 19px);
  display: grid;
  width: clamp(25px, 2vw, 32px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(184, 137, 66, .5);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
  transition: color .35s ease, background .35s ease, transform .35s ease;
}

.hero-summary__card:hover,
.hero-summary__card:focus-visible {
  border-color: rgba(184, 137, 66, .72);
  outline: none;
  background: #fff;
  box-shadow: 0 22px 48px rgba(16, 35, 58, .1);
  transform: translateY(-6px);
}

.hero-summary__card:hover::before,
.hero-summary__card:focus-visible::before {
  transform: scaleX(1);
}

.hero-summary__card:hover .hero-summary__arrow,
.hero-summary__card:focus-visible .hero-summary__arrow {
  color: #fff;
  background: var(--accent);
  transform: rotate(45deg);
}

.hero-summary__card:hover .hero-summary__icon,
.hero-summary__card:focus-visible .hero-summary__icon {
  border-color: var(--accent);
  color: #fff;
  background: var(--accent);
  transform: translateY(-2px);
}

@media (min-width: 1280px) {
  .hero-summary .hero-summary__container {
    width: min(calc(100% - (var(--wide-section-gutter) * 2)), 1420px);
    max-width: 1420px;
  }
}

@media (max-width: 1100px) {
  .hero-summary {
    --summary-edge: clamp(28px, 4vw, 44px);
  }

  .hero-summary .hero-summary__container {
    width: 100%;
    max-width: none;
  }

  .hero-summary__grid {
    grid-template-columns: repeat(4, clamp(230px, 31vw, 300px));
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 var(--summary-edge) 16px;
    scroll-padding-inline: var(--summary-edge);
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(184, 137, 66, .45) transparent;
    scrollbar-width: thin;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .hero-summary__item {
    aspect-ratio: 9 / 10;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .hero-summary__card {
    padding: clamp(18px, 2.5vw, 24px);
  }

  .hero-summary__meta {
    padding-right: clamp(76px, 9vw, 94px);
  }

  .hero-summary__icon {
    width: clamp(68px, 7vw, 78px);
  }

  .hero-summary__card h3 {
    font-size: clamp(18px, 2.2vw, 21px);
  }

  .hero-summary__card p {
    font-size: clamp(10px, 1.2vw, 11.5px);
  }
}

@media (max-width: 720px) {
  .hero-summary {
    --summary-edge: 20px;
    padding: 0 0 28px;
  }

  .hero-summary::before {
    top: -175px;
    right: -170px;
    width: 330px;
  }

  .hero-summary__grid {
    grid-template-columns: repeat(4, min(82vw, 292px));
    gap: 12px;
    padding: 0 var(--summary-edge) 14px;
    scroll-padding-inline: var(--summary-edge);
    /* scrollbar-width: none; */
  }

  .hero-summary__grid::-webkit-scrollbar {
    display: none;
  }

  .hero-summary__item {
    aspect-ratio: 88 / 100;
  }

  .hero-summary__card {
    padding: clamp(19px, 5.3vw, 22px);
  }

  .hero-summary__meta {
    gap: 6px;
    padding-right: clamp(72px, 20vw, 84px);
  }

  .hero-summary__meta b {
    font-size: 27px;
  }

  .hero-summary__meta small {
    font-size: 8px;
  }

  .hero-summary__icon {
    top: clamp(19px, 5.3vw, 22px);
    right: clamp(19px, 5.3vw, 22px);
    width: clamp(66px, 19vw, 74px);
  }

  .hero-summary__card h3 {
    margin-bottom: 13px;
    font-size: 21px;
  }

  .hero-summary__card p {
    min-height: 0;
    padding-right: 32px;
    font-size: clamp(10.5px, 3vw, 11px);
  }

  .hero-summary__arrow {
    right: 18px;
    bottom: 18px;
    width: 30px;
  }
}

@media (max-width: 390px) {
  .hero-summary {
    --summary-edge: 18px;
    padding-bottom: 24px;
  }

  .hero-summary__grid {
    grid-template-columns: repeat(4, min(82vw, 268px));
    gap: 10px;
    padding-bottom: 12px;
  }

  .hero-summary__card {
    padding: 18px;
  }

  .hero-summary__meta {
    padding-right: 68px;
  }

  .hero-summary__meta b {
    font-size: 24px;
  }

  .hero-summary__meta small {
    font-size: 7.5px;
  }

  .hero-summary__icon {
    top: 18px;
    right: 18px;
    width: 62px;
  }

  .hero-summary__card h3 {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .hero-summary__card p {
    font-size: 10.5px;
  }

  .hero-summary__arrow {
    right: 14px;
    bottom: 14px;
    width: 28px;
  }
}

@media (hover: none) {
  .hero-summary__card:hover {
    box-shadow: 0 12px 34px rgba(16, 35, 58, .035);
    transform: none;
  }

  .hero-summary__card:hover .hero-summary__icon,
  .hero-summary__card:hover .hero-summary__arrow {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-summary__card,
  .hero-summary__card::before,
  .hero-summary__arrow,
  .hero-summary__icon {
    transition: none;
  }
}


.hero h1.hero-title--urgent {
  max-width: 1040px;
  font-size: clamp(48px, 4.55vw, 72px);
  line-height: 1.22;
  letter-spacing: -.065em;
}

.hero h1.hero-title--urgent .hero-line--accent {
  margin-top: .04em;
}

@media (max-width: 980px) {
  .hero h1.hero-title--urgent {
    font-size: clamp(40px, 5.8vw, 58px);
  }
}

@media (max-width: 720px) {
  .hero h1.hero-title--urgent {
    font-size: clamp(20px, 5.8vw, 38px);
    line-height: 1.36;
    letter-spacing: -.045em;
  }
}


.header .brand {
  gap: 16px;
  font-size: 19px;
}

.header .brand-mark {
  width: 84px;
}

@media (min-width: 1280px) {
  .header .header-inner {
    width: calc(100% - (var(--wide-section-gutter) * 2));
    max-width: none;
  }
}

@media (max-width: 720px) {
  .header .brand {
    gap: 9px;
    font-size: 14px;
  }

  .header .brand-mark {
    width: 58.8px;
  }
}


.work-count {
  white-space: nowrap;
}

.work-count-note {
  display: inline-block;
  margin-left: .12em;
  font-size: .72em;
  font-weight: 400;
  letter-spacing: .02em;
  vertical-align: .08em;
  white-space: nowrap;
}

.hero-summary__card .work-count-note {
  font-size: .54em;
}


/* =========================================================
   ADD 2026-08: 工法説明の統合／3工法比較表
   ※既存デザインは変更せず、追加要素分のみ定義
   ========================================================= */

/* --- 構造図セクションに統合した3ステップ --- */
.cover-overview__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.cover-overview__action {
  margin-top: 48px;
  text-align: right;
}

/* --- 3工法比較表：列が1つ増えるぶん表側の幅を確保 --- */
.compare-layout--three {
  grid-template-columns: .46fr 1.54fr;
  gap: 4.5vw;
}

/* --- 3工法比較表：4列目を2・3列目と同じ扱いに --- */
.compare-table--three th:nth-child(4),
.compare-table--three td:nth-child(4) {
  text-align: center;
  vertical-align: middle;
}

.compare-table--three th:first-child,
.compare-table--three td:first-child {
  width: 16%;
}

.compare-table--three th,
.compare-table--three td {
  padding: 18px 14px;
}

/* --- 工法ごとの写真 --- */
.compare-method__photo {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 116px;
  margin-bottom: 12px;
  border-radius: 2px;
}

.compare-method__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-method__photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(13, 40, 59, .28);
  color: var(--muted);
  font-family: var(--sans, inherit);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .04em;
  text-align: center;
  background: rgba(13, 40, 59, .035);
}

.compare-method__photo--empty small {
  font-size: 9px;
}

.compare-method__name {
  display: block;
}

/* --- 評価記号（◎○△） --- */
.compare-rate {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
  font-style: normal;
  line-height: 1;
}

.compare-rate--best,
.compare-rate--good {
  color: var(--accent);
}

.compare-rate--fair {
  color: var(--muted);
}

.compare-table--three td small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  opacity: .82;
}

/* --- タブレット以下 --- */
@media (max-width: 980px) {
  .cover-overview__steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .cover-overview__action {
    text-align: left;
  }

  /* 既存の1カラム化を上書きしないよう、--three でも1カラムに戻す */
  .compare-layout--three {
    grid-template-columns: 1fr;
  }
}

/* --- スマートフォン：表は横スクロールで保持 --- */
@media (max-width: 720px) {
  /* 既存の1カラム化を上書きしないよう、--three でも1カラムに戻す */
  .compare-layout--three {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare-table--three {
    min-width: 620px;
  }

  .compare-table--three th,
  .compare-table--three td {
    padding: 14px 10px;
    font-size: 12px;
  }

  .compare-method__photo {
    height: 84px;
  }

  .compare-rate {
    font-size: 16px;
  }
}


/* =========================================================
   ADD 2026-08: 料金セクション（改善提案 p.8 準拠）
   ========================================================= */

.cover-price-guide__lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

/* 「税込」の小さな添え字 */
.cover-price-guide__tax {
  align-self: flex-end;
  margin: 0 10px 14px 0;
  color: var(--accent);
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: .04em;
}

/* パネル直下の「含まれる内容」「価格が変わる条件」 */
.price-detail {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  max-width: 700px;
  margin: 18px auto 0;
}

/* 注記もカード幅に揃える */
.cover-price-guide__notes {
  max-width: 700px;
  margin-inline: auto;
}

.price-detail__row {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(13, 40, 59, .1);
  background: #fff;
}

.price-detail__label {
  margin: 0;
  padding: 20px 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .08em;
  text-align: center;
  background: var(--navy-deep, #10243a);
}

.price-detail__row--variable .price-detail__label {
  background: #8b8172;
}

.price-detail__items {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 16px 20px;
  list-style: none;
}

.price-detail__items li {
  position: relative;
  padding: 4px 22px;
  color: var(--ink);
  font-size: 13.5px;
  letter-spacing: .02em;
}

.price-detail__items li + li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 15px;
  background: rgba(13, 40, 59, .16);
  transform: translateY(-50%);
  content: "";
}

@media (max-width: 1100px) {
  .price-detail {
    margin-top: 14px;
  }
}

@media (max-width: 720px) {
  .flow-content {
    display: block;
  }

  .flow-content__image {
    width: min(82vw, 300px);
    margin-inline: auto;
  }

  .flow-list {
    margin-top: 54px;
  }

  .price-detail__row {
    grid-template-columns: 1fr;
  }

  .price-detail__label {
    padding: 12px 14px;
    text-align: left;
  }

  .price-detail__label br {
    display: none;
  }

  .price-detail__items {
    padding: 12px 14px;
  }

  .price-detail__items li {
    padding: 4px 14px 4px 0;
    font-size: 13px;
  }

  .price-detail__items li + li::before {
    display: none;
  }

  .cover-price-guide__tax {
    margin-bottom: 8px;
  }
}

/* 写真＋価格カードを2カラムで並べる（改善提案 p.8 の構図） */
.price-main {
  display: grid;
  grid-template-columns: minmax(0, .44fr) minmax(0, .56fr);
  gap: clamp(20px, 2.4vw, 34px);
  align-items: stretch;
  margin-top: 40px;
}

.price-main > .cover-price-guide__panel {
  max-width: none;
  margin: 0;
}

.price-photo {
  position: relative;
  height: 100%;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #eceae5;
}

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

.price-photo__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 66px;
  height: 66px;
  color: #fff;
  border-radius: 50%;
  background: rgba(16, 36, 58, .88);
  font-family: var(--serif);
}

.price-photo__badge strong {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.price-photo__badge span {
  margin-left: 1px;
  font-size: 12px;
}

/* 内訳・条件の小サムネイル */
.price-detail__items li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-detail__thumb {
  display: block;
  flex: none;
  overflow: hidden;
  width: 42px;
  height: 32px;
  border-radius: 2px;
  background: #f0eeea;
}

.price-detail__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-detail__thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(13, 40, 59, .26);
  color: rgba(13, 40, 59, .42);
  font-size: 9px;
  letter-spacing: .06em;
  background: rgba(13, 40, 59, .03);
}

@media (max-width: 1100px) {
  .price-photo {
    margin-top: 26px;
  }
}

@media (max-width: 720px) {
  .price-photo__badge strong {
    font-size: 21px;
  }

  .price-detail__thumb {
    width: 36px;
    height: 28px;
  }
}


/* =========================================================
   ADD 2026-08(2): 料金セクションの追加調整
   ・写真＋カードを2カラム
   ・小さすぎる文字のサイズ引き上げ
   ・内訳／条件はそれぞれ横1行に収める
   ========================================================= */

/* --- 文字サイズ調整（8〜10px→可読サイズへ） --- */
.cover-price-guide__plan > span {
  font-size: 12px;
  letter-spacing: .14em;
}

.cover-price-guide__plan h3 {
  font-size: clamp(24px, 2.5vw, 32px);
}

.cover-price-guide__plan small {
  font-size: 13px;
  letter-spacing: .04em;
  line-height: 1.8;
}

.cover-price-guide__amount > span {
  font-size: 12.5px;
  letter-spacing: .14em;
}

.cover-price-guide__amount small {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .04em;
}

/* --- 内訳・条件を1行に収める --- */
.price-detail {
  max-width: none;
  margin-inline: 0;
}

.cover-price-guide__notes {
  max-width: none;
  margin-inline: 0;
}

.price-detail__row {
  grid-template-columns: 150px minmax(0, 1fr);
}

.price-detail__label {
  padding: 18px 12px;
  font-size: 12.5px;
  letter-spacing: .04em;
}

.price-detail__items {
  /* flex-wrap: nowrap; */
  justify-content: space-between;
  padding: 14px 18px;
}

.price-detail__items li {
  flex: 1 1 auto;
  justify-content: center;
  padding: 4px 12px;
  font-size: 13px;
  white-space: nowrap;
}

.price-detail__thumb {
  width: 46px;
  height: 34px;
}

/* ADD 2026-08: 屋根カバー工法／COMPARE 統合セクション */
.cover-compare {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(116px, 10vw, 170px) 0 clamp(124px, 10vw, 176px);
  background:
    radial-gradient(circle at 50% 12%, rgba(216, 179, 109, .08), transparent 35%),
    #fff;
}

.cover-compare::before,
.cover-compare::after {
  position: absolute;
  z-index: -1;
  width: clamp(310px, 32vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 137, 66, .1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.cover-compare::before {
  top: -22vw;
  left: -19vw;
  box-shadow:
    0 0 0 28px rgba(184, 137, 66, .045),
    0 0 0 58px rgba(184, 137, 66, .03);
}

.cover-compare::after {
  right: -24vw;
  bottom: -25vw;
  box-shadow:
    0 0 0 32px rgba(184, 137, 66, .04),
    0 0 0 66px rgba(184, 137, 66, .025);
}

.cover-compare__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.cover-compare__visual {
  position: sticky;
  top: 120px;
}

.cover-compare__visual-title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.04em;
}

.cover-compare__visual-lead {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.7;
}

.cover-compare__visual-lead span {
  color: var(--accent);
}

.cover-compare__figure {
  margin: 0;
}

.cover-compare__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.cover-compare__content {
  min-width: 0;
}

.cover-compare__content .compare-intro {
  margin-bottom: 56px;
}

.cover-compare__content .cover-compare__title {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.35;
  letter-spacing: -.05em;
  text-align: center;
  white-space: nowrap;
}

.cover-compare__content .compare-table-wrapper {
  overflow-x: hidden;
}

.cover-compare__content .compare-table--three {
  min-width: 0;
  table-layout: fixed;
}

.cover-compare__content .compare-table--three th:first-child,
.cover-compare__content .compare-table--three td:first-child {
  width: 14%;
}

.cover-compare__content .compare-table--three th,
.cover-compare__content .compare-table--three td {
  padding: 14px 8px;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.cover-compare__content .compare-method__name {
  margin-bottom: 8px;
}

.cover-compare__content .compare-method__photo {
  height: 92px;
}

.cover-compare__content .compare-table--three thead th:not(.featured) .compare-method__photo {
  width: calc(100% - 10px);
  margin-right: auto;
  margin-left: auto;
}

.cover-compare__description {
  margin: 28px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.7;
  text-align: center;
}

.cover-compare__description span {
  color: var(--accent);
}

.cover-compare__note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 980px) {
  .cover-compare {
    padding: 120px 0;
  }

  .cover-compare__layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .cover-compare__visual {
    position: static;
  }
}

@media (max-width: 720px) {
  .cover-compare {
    padding: 92px 0;
  }

  .cover-compare__layout {
    gap: 44px;
  }

  .cover-compare__content .compare-intro {
    margin-bottom: 36px;
  }

  .cover-compare__content .compare-table-wrapper {
    overflow-x: hidden;
  }

  .cover-compare__content .compare-table--three {
    min-width: 0;
  }

  .cover-compare__content .compare-table--three th:first-child,
  .cover-compare__content .compare-table--three td:first-child {
    width: 17%;
  }

  .cover-compare__content .compare-table--three th,
  .cover-compare__content .compare-table--three td {
    padding: 10px 4px;
    font-size: 10px;
  }

  .cover-compare__content .compare-method__photo {
    height: 68px;
  }
}


/* ADD 2026-08(7): 施工後の保証・アフターを開閉式に変更 */
.roof-warranty-accordion {
  border-top: 1px solid #d6cfc6;
  border-bottom: 1px solid #d6cfc6;
  background: #ebe8e2;
}

.roof-warranty-accordion__inner {
  width: min(calc(100% - 80px), 1080px);
  margin-inline: auto;
}

.roof-warranty-accordion > summary {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 22px;
  min-height: 104px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.roof-warranty-accordion > summary::-webkit-details-marker {
  display: none;
}

.roof-warranty-accordion__icon {
  width: 50px;
  height: 56px;
  fill: none;
  stroke: #77716c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.roof-warranty-accordion__title small {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.roof-warranty-accordion__title strong {
  font-family: var(--serif);
  font-size: clamp(21px, 2.3vw, 29px);
  letter-spacing: .06em;
}

.roof-warranty-accordion__action {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #776b62;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.roof-warranty-accordion__action i {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid #a49a91;
  border-radius: 50%;
}

.roof-warranty-accordion__action i::before,
.roof-warranty-accordion__action i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.roof-warranty-accordion__action i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.roof-warranty-accordion[open] .roof-warranty-accordion__action i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.roof-warranty-accordion__detail {
  padding: 0;
  border-top: 1px solid rgba(104, 91, 80, .16);
}

.roof-warranty-accordion__detail .roof-warranty {
  padding: 48px 0;
}

.roof-warranty-accordion--always-open .roof-warranty-accordion__detail {
  border-top: 0;
}

.roof-warranty-accordion__detail .reveal,
.roof-warranty-accordion__detail .image-reveal {
  opacity: 1 !important;
  filter: none !important;
  clip-path: none !important;
  transform: none !important;
}

@media (max-width: 720px) {
  .roof-warranty-accordion__inner {
    width: min(calc(100% - 36px), 1080px);
  }

  .roof-warranty-accordion > summary {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 92px;
  }

  .roof-warranty-accordion__icon {
    width: 38px;
    height: 44px;
  }

  .roof-warranty-accordion__title strong {
    font-size: 19px;
  }

  .roof-warranty-accordion__action span {
    display: none;
  }

  .roof-warranty-accordion__action i {
    width: 32px;
    height: 32px;
  }

  .roof-warranty-accordion--always-open .roof-warranty-accordion__detail .roof-warranty {
    padding: 72px 0 66px;
  }
}


/* ADD 2026-08: 点検・実績・施工事例・対応エリアの概要 */
.proof-summary {
  overflow: hidden;
  color: var(--ink);
  background: #f7f5f1;
}

.proof-summary__inspection {
  position: relative;
  padding: clamp(54px, 6vw, 86px) 0;
  color: #fff;
  background: #11191f;
}

.proof-summary__inspection::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 13, 18, .98), rgba(12, 20, 26, .9) 47%, rgba(10, 16, 21, .74));
  content: "";
}

.proof-summary__inspection-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, .9fr) minmax(230px, .72fr) minmax(330px, 1.1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
}

.proof-summary__copy .section-label {
  color: var(--accent-light);
}

.proof-summary__copy h2 {
  margin: 15px 0 18px;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .04em;
}

.proof-summary__copy h2 span {
  color: #f3d197;
}

.proof-summary__copy p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.proof-summary__report {
  position: relative;
  margin: 0;
  transform: rotate(-2deg);
}

.proof-summary__report img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.65) brightness(.7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .42);
}

.proof-summary__report figcaption {
  position: absolute;
  top: 16%;
  left: -9%;
  display: grid;
  width: 46%;
  aspect-ratio: 3 / 4;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .88);
  background: #202529;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .38);
  font-family: var(--serif);
  font-size: clamp(12px, 1.25vw, 16px);
  letter-spacing: .16em;
  transform: rotate(-5deg);
}

.proof-summary__conditions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.proof-summary__conditions figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .16);
}

.proof-summary__conditions img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: none;
  transition: transform .55s ease, filter .55s ease;
}

.proof-summary__conditions figure:hover img {
  filter: none;
  transform: scale(1.04);
}

.proof-summary__conditions figcaption {
  position: absolute;
  inset: auto auto 0 0;
  width: fit-content;
  padding: 5px 9px;
  color: #fff;
  background: rgba(0, 0, 0, .68);
  font-size: 10px;
  letter-spacing: .08em;
}

.proof-summary__facts {
  padding: 16px 0 26px;
  border-bottom: 1px solid #ddd7cd;
  background: #fff;
}

.proof-summary__facts-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 14px;
  color: #5f5144;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .16em;
  text-align: center;
}

.proof-summary__facts-title::before,
.proof-summary__facts-title::after {
  flex: 1;
  height: 1px;
  background: #d9d1c6;
  content: "";
}

.proof-summary__fact-grid {
  display: grid;
  grid-template-columns: 1.18fr .92fr 1.18fr 1.42fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-summary__fact-grid li {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  border-left: 1px solid #ddd7cd;
  color: #735d4d;
}

.proof-summary__fact-grid li:first-child {
  border-left: 0;
}

.proof-summary__fact-grid .proof-summary__achievement {
  gap: 10px;
  padding-inline: 12px;
}

.proof-summary__achievement-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 112px;
}

.proof-summary__achievement-copy > strong {
  color: #a44d3f;
  font-family: Georgia, serif;
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 400;
  line-height: .95;
  white-space: nowrap;
}

.proof-summary__achievement-copy > strong small {
  margin-left: 3px;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
}

.proof-summary__achievement-copy > span {
  display: block;
  color: #665a50;
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}

.proof-summary__achievement-copy > span small {
  display: inline;
  margin-left: 7px;
  color: #81766d;
  font-size: 8px;
  font-weight: 400;
}

.proof-summary__laurel {
  flex: 0 0 39px;
  width: 39px;
  height: 55px;
  background: #c1a095;
  -webkit-mask-image: url("proof-summary-laurel.svg");
  mask-image: url("proof-summary-laurel.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
}

.proof-summary__laurel--left {
  -webkit-mask-position: left center;
  mask-position: left center;
}

.proof-summary__laurel--right {
  -webkit-mask-position: right center;
  mask-position: right center;
}

.proof-summary__fact-icon {
  flex: 0 0 49px;
  width: 49px;
  height: 49px;
  fill: none;
  stroke: #77716c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.proof-summary__fact-grid > li > strong {
  color: #a44d3f;
  font-family: Georgia, serif;
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1;
  white-space: nowrap;
}

.proof-summary__fact-grid > li > strong small {
  margin-left: 3px;
  font-family: var(--sans);
  font-size: 12px;
}

.proof-summary__fact-grid i {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #9d8e7e;
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

.proof-summary__fact-grid span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.55;
}

.proof-summary__fact-grid span strong {
  color: #9d493d;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .035em;
}

.proof-summary__fact-grid span small {
  display: block;
  color: #8b8279;
  font-size: 9px;
}

.proof-summary__fact-grid .proof-summary__achievement-copy > span {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  white-space: nowrap;
}

.proof-summary__fact-grid .proof-summary__achievement-copy > span small {
  display: inline;
  margin-left: 7px;
}

.proof-summary__stories {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  padding-top: clamp(50px, 6vw, 78px);
  padding-bottom: clamp(50px, 6vw, 78px);
}

.proof-summary__stories article {
  min-width: 0;
}

.proof-summary__stories header > span {
  color: #a85547;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.proof-summary__stories h3 {
  margin: 4px 0 2px;
  color: #55473e;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: .06em;
}

.proof-summary__case header p {
  margin: 0 0 4px;
  color: #a85547;
  font-size: 11px;
}

.proof-summary__case header p strong {
  font-weight: 700;
}

.proof-summary__before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.proof-summary__before-after figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.proof-summary__before-after img {
  height: 225px;
  object-fit: cover;
}

.proof-summary__before-after figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 12px;
  color: #fff;
  background: #31343a;
  font-size: 10px;
  letter-spacing: .12em;
}

.proof-summary__before-after figure:last-child figcaption {
  background: #a64e41;
}

.proof-summary__case-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

article.proof-summary__case {
  display: block;
}

.proof-summary__case > header {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #c88c80;
}

.proof-summary__case-item {
  position: relative;
  padding-top: 18px;
}

.proof-summary__case-item .proof-summary__before-after {
  width: 85%;
  margin-inline: auto;
}

.proof-summary__case-index {
  position: absolute;
  top: 0;
  left: 7.5%;
  z-index: 4;
  color: #a85547;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.proof-summary__case-item .proof-summary__before-after img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (min-width: 721px) {
  .proof-summary__case-item .proof-summary__before-after {
    height: 176px;
  }

  .proof-summary__case-item:nth-child(1) .proof-summary__before-after img {
    object-position: center 45%;
  }

  .proof-summary__case-item:nth-child(2) .proof-summary__before-after figure:first-child img {
    object-position: center 45%;
  }

  .proof-summary__case-item:nth-child(2) .proof-summary__before-after figure:last-child img {
    object-position: center 52%;
  }
}

@media (min-width: 981px) {
  .proof-summary__case-list {
    gap: 14px;
  }

  .proof-summary__case-item {
    padding-top: 18px;
  }

  .proof-summary__case-item .proof-summary__before-after {
    height: 208px;
  }
}

.proof-summary__case-more {
  display: grid;
  grid-column: auto;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(168, 85, 71, .45);
  color: #55473e;
  background: rgba(255, 255, 255, .56);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
}

.proof-summary__case-more small {
  color: #a85547;
  font-size: 10px;
  letter-spacing: .08em;
}

.proof-summary__case-more i {
  display: grid;
  width: 27px;
  height: 27px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-style: normal;
  transition: transform .3s ease;
}

.proof-summary__case-more:hover,
.proof-summary__case-more:focus-visible {
  color: #fff;
  background: #a85547;
  transform: translateY(-2px);
}

.proof-summary__case-more:hover small,
.proof-summary__case-more:focus-visible small {
  color: rgba(255, 255, 255, .78);
}

.proof-summary__case-more:hover i,
.proof-summary__case-more:focus-visible i {
  transform: translate(2px, -2px);
}

.proof-summary__voice header {
  padding-bottom: 14px;
  border-bottom: 1px solid #c88c80;
}

.proof-summary__voice-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: center;
  padding-top: 28px;
}

.proof-summary__voice-body img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
}

.proof-summary__voice blockquote {
  margin: 0;
  color: #61574f;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2;
}

.proof-summary__voice-body p {
  margin: 12px 0 0;
  color: #8c8178;
  font-size: 10px;
}

.proof-summary__area {
  border-top: 1px solid #d7d1c9;
  background: #ebe8e2;
}

.proof-summary__area-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  min-height: 118px;
}

.proof-summary__area-inner > img {
  width: 180px;
  height: 118px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.proof-summary__area h3 {
  margin: 0;
  color: #56493f;
  font-family: var(--serif);
  font-size: clamp(21px, 2.3vw, 31px);
  font-weight: 500;
  letter-spacing: .05em;
}

.proof-summary__area h3 span {
  color: #b2483f;
  font-family: var(--sans);
}

.proof-summary__area h3 .proof-summary__pin {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 13px 0 3px;
  border-radius: 50%;
  background: #b2483f;
  vertical-align: -4px;
}

.proof-summary__area h3 .proof-summary__pin::before {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid #b2483f;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  content: "";
  transform: translateX(-50%);
}

.proof-summary__area h3 .proof-summary__pin::after {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ebe8e2;
  content: "";
}

.proof-summary__area p {
  margin: 5px 0 0;
  color: #7d736a;
  font-size: 11px;
}

@media (max-width: 980px) {
  .proof-summary__inspection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-summary__copy {
    grid-column: 1 / -1;
  }

  .proof-summary__fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-summary__fact-grid li:nth-child(3) {
    border-left: 0;
  }

  .proof-summary__fact-grid li:nth-child(n + 3) {
    border-top: 1px solid #ddd7cd;
  }
}

@media (max-width: 720px) {
  .proof-summary__inspection {
    padding: 52px 0;
  }

/*   .proof-summary__inspection-grid {
    grid-template-columns: minmax(110px, .8fr) minmax(0, 1.2fr);
    gap: 12px;
  } */

  .proof-summary__copy {
    grid-column: 1 / -1;
  }

  .proof-summary__report {
    width: 86%;
    max-width: 260px;
    margin: 0 auto;
    box-sizing: border-box;
    transform: none;
  }

  .proof-summary__report img,
  .proof-summary__report figcaption {
    width: calc(100% - 8px);
    aspect-ratio: 4 / 5;
    box-sizing: border-box;
  }

  .proof-summary__report img {
    display: block;
    margin: 8px 4px 0;
    transform: rotate(3deg);
  }

  .proof-summary__report figcaption {
    top: 4px;
    left: 4px;
    z-index: 2;
    padding: 8px;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    transform: rotate(-5deg);
  }

  .proof-summary__conditions {
    min-width: 0;
    gap: 5px;
  }

  .proof-summary__facts {
    padding-bottom: 10px;
  }

  .proof-summary__facts-title {
    font-size: 15px;
  }

  .proof-summary__fact-grid {
    grid-template-columns: 1fr;
  }

  .proof-summary__fact-grid li,
  .proof-summary__fact-grid li:nth-child(3) {
    justify-content: flex-start;
    min-height: 72px;
    border-top: 1px solid #ddd7cd;
    border-left: 0;
  }

  .proof-summary__stories {
    grid-template-columns: 1fr;
  }

  .proof-summary__before-after img {
    height: 180px;
  }

  .proof-summary__case-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .proof-summary__case-item {
    padding-top: 17px;
  }

  .proof-summary__case-item .proof-summary__before-after img {
    height: 180px;
  }

  .proof-summary__case-more {
    grid-column: auto;
    grid-template-columns: 1fr auto;
    margin-top: 18px;
    padding: 14px 16px;
  }

  .proof-summary__case-more small {
    grid-column: 1;
    grid-row: 2;
  }

  .proof-summary__case-more i {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .proof-summary__voice-body {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }

  .proof-summary__voice-body img {
    width: 70px;
    height: 70px;
  }

  .proof-summary__area-inner {
    grid-template-columns: 105px 1fr;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .proof-summary__area-inner > img {
    width: 105px;
    height: 90px;
  }

  .proof-summary__area h3 {
    font-size: 18px;
    line-height: 1.55;
  }

  .proof-summary__area p {
    font-size: 9px;
    line-height: 1.6;
  }
}


/* ADD 2026-08: PPT完成イメージをHTML/CSSで再現するPC表示 */
@media (min-width: 721px) {
  .proof-summary {
    width: 100%;
    margin: 0;
    border: 0;
    color: #514841;
    background: #f7f5f1;
    box-shadow: none;
  }

  .proof-summary__inspection {
    min-height: 240px;
    padding: 22px 0;
    background: #111 url("premium-roof-inspection.jpg") center 42% / cover no-repeat;
  }

  .proof-summary__inspection::before {
    background: linear-gradient(90deg, rgba(8, 10, 11, .97) 0%, rgba(9, 11, 12, .94) 41%, rgba(8, 10, 11, .82) 100%);
  }

/*   .proof-summary__inspection-grid {
    grid-template-columns: minmax(410px, 1.05fr) minmax(180px, .46fr) minmax(350px, 1fr);
    gap: 22px;
  } */

  .proof-summary__copy .section-label {
    display: none;
  }

  .proof-summary__copy h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(29px, 2.35vw, 35px);
    line-height: 1.48;
    letter-spacing: .035em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
  }

  .proof-summary__copy h2 span {
    color: #fff;
    white-space: nowrap;
  }

  .proof-summary__copy p {
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    letter-spacing: .04em;
  }

  .proof-summary__report {
    width: 196px;
    height: 218px;
    margin: 0 auto;
    transform: none;
  }

  .proof-summary__report img {
    width: 126px;
    height: 180px;
    margin: 18px 10px 0 auto;
    border: 5px solid #f4f2ed;
    object-fit: cover;
    filter: grayscale(.75) brightness(.78);
    transform: rotate(3deg);
  }

  .proof-summary__report img,
  .proof-summary__report figcaption {
    box-sizing: border-box;
  }

  .proof-summary__report figcaption {
    top: 16px;
    left: 14px;
    z-index: 2;
    width: 126px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: linear-gradient(145deg, #24282b, #111416);
    box-shadow: 0 16px 26px rgba(0, 0, 0, .45);
    font-size: 12px;
    letter-spacing: .12em;
    transform: rotate(-8deg);
  }

  .proof-summary__conditions {
    gap: 6px;
  }

  .proof-summary__conditions figure {
    height: 91px;
    background: #1b1d1e;
  }

  .proof-summary__conditions img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    filter: none;
  }

  .proof-summary__conditions figcaption {
    padding: 3px 8px;
    background: rgba(0, 0, 0, .68);
    font-size: 11px;
    line-height: 1.35;
  }

  .proof-summary__facts {
    padding: 8px 0 17px;
  }

  .proof-summary__facts-title {
    gap: 12px;
    margin-bottom: 4px;
    font-size: 18px;
    letter-spacing: .13em;
  }

  .proof-summary__fact-grid li {
    min-height: 82px;
    gap: 10px;
    padding: 5px 13px;
  }

  .proof-summary__fact-grid > li > strong {
    font-size: clamp(31px, 3vw, 39px);
  }

  .proof-summary__fact-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .proof-summary__fact-grid span {
    font-size: 12px;
  }

  .proof-summary__fact-grid span strong {
    font-size: 16px;
    white-space: nowrap;
  }

  .proof-summary__fact-grid span small {
    font-size: 10px;
  }

  .proof-summary__stories {
    grid-template-columns: 1.2fr .9fr;
    gap: 42px;
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .proof-summary__stories header > span {
    display: none;
  }

  .proof-summary__stories h3 {
    margin: 0 0 2px;
    font-size: 27px;
  }

  .proof-summary__case {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 14px;
    align-items: center;
  }

  .proof-summary__case header p {
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 1.7;
  }

  .proof-summary__case h3 {
    white-space: nowrap;
  }

  .proof-summary__before-after {
    position: relative;
    display: block;
    height: 146px;
    overflow: hidden;
    gap: 0;
    background: #fff;
  }

  .proof-summary__before-after::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 2px;
    height: calc(100% + 8px);
    background: #fff;
    content: "";
    transform: translate(-50%, -50%) rotate(8deg);
    transform-origin: center;
  }

  .proof-summary__before-after::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    content: "›";
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    transform: translate(-50%, -55%);
  }

  .proof-summary__before-after figure {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 54%;
  }

  .proof-summary__before-after figure:first-child {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  }

  .proof-summary__before-after figure:last-child {
    right: 0;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  }

  .proof-summary__before-after img {
    width: 100%;
    height: 100%;
  }

  .proof-summary__before-after figure:first-child img {
    object-position: center 32%;
  }

  .proof-summary__before-after figure:last-child img {
    object-position: center 43%;
  }

  .proof-summary__voice header {
    padding-bottom: 5px;
  }

  .proof-summary__voice-body {
    grid-template-columns: 74px 1fr;
    gap: 17px;
    padding-top: 16px;
  }

  .proof-summary__voice-body img {
    width: 74px;
    height: 74px;
    filter: grayscale(1);
  }

  .proof-summary__voice blockquote {
    font-size: 13px;
    line-height: 1.8;
  }

  .proof-summary__voice-body p {
    margin-top: 7px;
    font-size: 11px;
  }

  .proof-summary__area-inner {
    grid-template-columns: 145px 1fr;
    gap: 22px;
    min-height: 82px;
  }

  .proof-summary__area-inner > img {
    width: 145px;
    height: 81px;
    object-fit: cover;
  }

  .proof-summary__area h3 {
    display: inline-block;
    margin-right: 16px;
    font-size: 25px;
  }

  .proof-summary__area p {
    display: inline;
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .price-detail__row {
    grid-template-columns: 1fr;
  }

  .price-detail__items {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 0;
  }

  .price-detail__items li {
    flex: 0 0 50%;
    justify-content: flex-start;
    padding: 5px 8px 5px 0;
    font-size: 12.5px;
  }

  .price-detail__thumb {
    width: 38px;
    height: 28px;
  }

  .cover-price-guide__plan h3 {
    font-size: clamp(22px, 6.4vw, 28px);
  }
}


/* --- セクション見出し「PRICE GUIDE」を両側罫線に --- */
.cover-price-guide .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #9b4a3c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
}

.cover-price-guide .section-label::before,
.cover-price-guide .section-label::after {
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: .55;
  content: "";
}

/* --- 価格カード：2カラム＋二重枠＋クリーム地 --- */
.price-main > .cover-price-guide__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(155, 74, 60, .3);
  background: #faf7f3;
  padding: 12px;
}

.price-main > .cover-price-guide__panel::after {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(155, 74, 60, .22);
  pointer-events: none;
  content: "";
}

.price-main .cover-price-guide__plan,
.price-main .cover-price-guide__amount {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 18px 22px;
}

.price-main .cover-price-guide__amount::after {
  display: none;
}

/* 「モデルケース」を濃赤の塗りチップに */
.price-main .cover-price-guide__plan > span {
  padding: 5px 14px;
  color: #fff;
  background: #9b4a3c;
  font-size: 11.5px;
  letter-spacing: .14em;
}

.price-main .cover-price-guide__plan > span::before {
  display: none;
}

.price-main .cover-price-guide__plan h3 {
  margin: 16px 0 0;
  font-size: clamp(22px, 2.1vw, 27px);
  line-height: 1.5;
}

/* 見出し下の罫線 */
.price-main .cover-price-guide__plan small {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 40, 59, .16);
  color: var(--ink);
  font-size: 12.5px;
  letter-spacing: .04em;
}

/* 「参考価格」を両側罫線の中央ラベルに */
.price-main .cover-price-guide__amount > span {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 12px;
  color: #9b4a3c;
  font-size: 12px;
  letter-spacing: .2em;
}

.price-main .cover-price-guide__amount > span::before,
.price-main .cover-price-guide__amount > span::after {
  width: 30px;
  height: 1px;
  margin: 0;
  background: currentColor;
  opacity: .6;
  content: "";
}

.price-main .cover-price-guide__amount p {
  margin-top: 6px;
  justify-content: center;
  color: #9b2c2c;
}

.price-main .cover-price-guide__amount strong {
  color: #9b2c2c;
  font-size: clamp(64px, 6.4vw, 92px);
  min-width: 0;
}

.price-main .cover-price-guide__amount em {
  margin: 0 0 8px 6px;
  color: #9b2c2c;
  font-size: clamp(18px, 1.8vw, 24px);
}

.price-main .cover-price-guide__tax {
  margin: 0 6px 12px 0;
  color: #9b2c2c;
  font-size: clamp(14px, 1.3vw, 18px);
}

.price-main .cover-price-guide__amount small {
  display: block;
  width: 100%;
  margin-top: 6px;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
}

/* --- 50㎡バッジを写真の左上角に重ねる --- */
.price-photo__badge {
  top: -12px;
  left: -12px;
  width: 72px;
  height: 72px;
  background: #2b2b2b;
}

/* --- 内訳・条件のラベルを矢印（シェブロン）形に --- */
.price-detail__row {
  border: 0;
  background: #f6f5f2;
}

.price-detail__label {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  padding: 20px 26px 20px 16px;
  background: #3a3a3a;
}

.price-detail__row--variable .price-detail__label {
  background: #7d7466;
}

/* --- 注記は素の中央テキストに --- */
.cover-price-guide__notes {
  padding: 18px 0 0;
  border-top: 0;
  background: transparent;
  text-align: center;
}

.cover-price-guide__notes small {
  font-size: 12px;
}

/* プラン側：グリッドを1列に固定し、子要素を横幅いっぱいに */
.price-main .cover-price-guide__plan {
  display: block;
}

.price-main .cover-price-guide__plan > span {
  display: inline-block;
  width: auto;
}

.price-main .cover-price-guide__plan h3 {
  width: auto;
  white-space: nowrap;
}

.price-main .cover-price-guide__plan small {
  white-space: nowrap;
}

/* 金額側：カード幅に収まるサイズへ */
.price-main .cover-price-guide__amount {
  display: block;
  text-align: center;
}

.price-main .cover-price-guide__amount p {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  white-space: nowrap;
}

.price-main .cover-price-guide__amount strong {
  letter-spacing: -.04em;
}

.price-main .cover-price-guide__amount em {
  margin: 0 0 6px 4px;
}

.price-main .cover-price-guide__tax {
  margin: 0 4px 8px 0;
}

@media (max-width: 980px) {
  .price-main .cover-price-guide__plan h3,
  .price-main .cover-price-guide__plan small {
    white-space: normal;
  }
}


/* ADD 2026-08(5): 料金カードの高さ・比率を p.8 に合わせる
   （写真は約2:1・カード高さ約210pxが基準） */
.price-main {
  grid-template-columns: minmax(0, .455fr) minmax(0, .545fr);
  align-items: stretch;
}

.price-photo {
  min-height: 0;
  height: 100%;
}

.price-main .cover-price-guide__plan,
.price-main .cover-price-guide__amount {
  padding: 14px 18px;
}

.price-main .cover-price-guide__plan > span {
  padding: 4px 12px;
  font-size: 11px;
}

.price-main .cover-price-guide__plan h3 {
  margin-top: 12px;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.45;
}

.price-main .cover-price-guide__plan small {
  margin-top: 9px;
  padding-top: 9px;
  font-size: 11.5px;
}

.price-main .cover-price-guide__amount > span {
  font-size: 11px;
}

.price-main .cover-price-guide__amount p {
  margin-top: 4px;
}

.price-main .cover-price-guide__amount strong {
  font-size: clamp(44px, 4.3vw, 62px);
}

.price-main .cover-price-guide__amount em {
  margin-bottom: 5px;
  font-size: clamp(13px, 1.3vw, 17px);
}

.price-main .cover-price-guide__tax {
  margin-bottom: 6px;
  font-size: clamp(11px, 1.05vw, 14px);
}

.price-main .cover-price-guide__amount small {
  margin-top: 4px;
  font-size: 11.5px;
}

/* 50㎡バッジを写真枠の外側まで見せる */
.price-main.reveal[data-reveal="wipe"].is-visible {
  clip-path: none;
}

.price-photo {
  overflow: visible;
}

.price-photo__badge {
  top: -12px;
  left: -12px;
  z-index: 10;
  display: grid;
  place-items: center;
}

.price-photo__badge strong {
  line-height: 1;
}

.price-photo__badge span {
  position: absolute;
  top: 50%;
  left: calc(50% + 15px);
  margin: 0;
  line-height: 1;
  transform: translateY(30%);
}


/* Edgeを含む文字幅差で、金額の各要素が重ならないようにする */
.price-main .cover-price-guide__amount {
  container-type: inline-size;
}

.price-main .cover-price-guide__amount p {
  width: 100%;
}

.price-main .cover-price-guide__tax,
.price-main .cover-price-guide__amount strong,
.price-main .cover-price-guide__amount em {
  flex: 0 0 auto;
}

.price-main .cover-price-guide__amount strong {
  min-width: max-content;
  font-size: clamp(55.902px, 5.324vw, 82.522px);
  font-size: clamp(55.902px, 37.268cqi, 82.522px);
}

.price-main .cover-price-guide__amount em {
  font-size: clamp(12px, 7.5cqi, 17px);
}

.price-main .cover-price-guide__tax {
  font-size: clamp(10px, 6cqi, 14px);
}

/* 整理済み 2026-08-29: 980px以下の最終指定をこの1か所に集約 */
@media (max-width: 980px) {
  .price-main {
    grid-template-columns: 1fr;
  }

  .price-photo {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 720px) {
  .price-main,
  .price-photo,
  .price-main > .cover-price-guide__panel,
  .cover-price-guide__plan,
  .cover-price-guide__amount {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .price-main,
  .price-main > .cover-price-guide__panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .price-photo__badge {
    left: 0;
  }

  .price-main .cover-price-guide__amount p {
    width: 100%;
    min-width: 0;
    gap: 3px;
    justify-content: center;
  }

  .price-main .cover-price-guide__amount strong {
    min-width: 0;
    font-size: clamp(55.902px, 23.958vw, 82.522px);
  }

  .price-main .cover-price-guide__tax {
    margin-right: 2px;
    font-size: 11px;
  }

  .price-main .cover-price-guide__amount em {
    margin-left: 2px;
    font-size: 13px;
  }
}

/* Hero model price panel: 2026-09-07 */
.hero .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: end;
}

.hero .hero-copy {
  width: 100%;
}

.hero-concern-card.hero-price-panel {
  position: relative;
  right: auto;
  bottom: auto;
  align-self: end;
  width: 100%;
  margin: 0 0 clamp(92px, 11vh, 132px);
  padding: 0;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow: 0 4px 22px rgba(5, 17, 29, .46);
  opacity: 0;
  transform: translate3d(30px, 18px, 0);
  container-type: inline-size;
}

body.is-ready .hero-price-panel {
  animation: hero-price-panel-in .95s cubic-bezier(.2, .65, .2, 1) 1.02s forwards;
}

@media (min-width: 1351px) {
  .hero-concern-card.hero-price-panel {
    left: calc(var(--wide-section-gutter) - 96px);
  }

  .hero-price-panel__content {
    width: max-content;
    max-width: 100%;
    margin-left: auto;
  }
}

.hero-price-panel__photo {
  position: relative;
  width: min(41.8%, 209px);
  aspect-ratio: 3 / 4;
  margin: 0 0 clamp(14px, 2vh, 20px) auto;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .84);
  background: #fff;
  box-shadow: 0 20px 45px rgba(5, 17, 29, .32), 0 0 0 1px rgba(216, 179, 109, .18);
  transform: translateX(-38px) rotate(1.2deg);
}

.hero-price-panel__photo::after { content: none; }

.hero-price-panel__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.9);
}

.hero-price-panel__heading {
  display: grid;
  grid-template-columns: minmax(54px, 86px) max-content minmax(70px, 1fr);
  gap: clamp(14px, 1.5vw, 24px);
  align-items: center;
  color: var(--accent-light);
}

.hero-price-panel__heading span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-light), rgba(216, 179, 109, .42));
}

.hero-price-panel__heading p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.3;
}

.hero-price-panel__amount {
  margin-top: clamp(19px, 2.4vh, 28px);
}

.hero-price-panel__label {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 800;
  letter-spacing: .08em;
  text-shadow: 0 2px 14px rgba(9, 20, 31, .62);
}

.hero-price-panel__price {
  display: flex;
  align-items: flex-end;
  margin: 0;
  color: var(--accent-light);
  font-family: var(--serif);
  line-height: .88;
  white-space: nowrap;
}

.hero-price-panel__price strong {
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  inline-size: 6.5ch;
  /* Keep the last glyph inside the gradient's paint area despite negative tracking. */
  padding-inline-end: .08em;
  font-family: var(--serif);
  font-size: clamp(80px, 7.55vw, 122px);
  font-size: clamp(68px, 19cqi, 122px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.055em;
  font-variant-numeric: lining-nums tabular-nums;
  text-align: right;
}

/* Subtle gold sheen based on the site's existing accent color. */
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .hero-price-panel__price strong {
    background: linear-gradient(170deg,
      #d4a64e 0%, #c8943e 30%, #f1d58d 44%,
      #e5bf68 49%, #d3a249 58%, #b98435 76%, #ddba65 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 3px 8px rgba(5, 17, 29, .25));
  }
}

.hero-price-panel__price > span {
  margin: 0 0 .13em .18em;
  font-size: clamp(22px, 2.05vw, 33px);
  font-weight: 600;
  letter-spacing: .02em;
}

.hero-price-panel__price small {
  margin: 0 0 .08em .55em;
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 500;
  letter-spacing: .03em;
}

.hero-price-panel__underline {
  display: block;
  width: min(78%, 390px);
  margin-top: 11px;
}

.hero-price-panel__underline i {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 2px;
  background: rgba(229, 178, 88, .42);
}

.hero-price-panel__underline i::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--accent-light) 35%, #fff0c5 50%, var(--accent-light) 65%, transparent 100%);
  content: "";
  transform: translateX(-100%);
  animation: hero-price-line-flow 2.2s ease-in-out 1.25s infinite;
}

.hero-price-panel .hero-price-panel__notes {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(11px, calc(1vw - 1px), 15px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.5;
  list-style: none;
}

.hero-price-panel__notes > li {
  display: block;
  margin: 0;
  padding: 0 0 0 1.2em;
  border: 0;
  text-indent: -1.2em;
  overflow-wrap: anywhere;
}

.hero-price-panel__notes li::before {
  margin-right: .2em;
  content: "※";
}

@keyframes hero-price-panel-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1100px) {
  .hero .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-content: end;
    min-height: 100svh;
  }

  .hero-concern-card.hero-price-panel {
    display: block;
    width: min(100%, 650px);
    margin: 26px 0 48px;
    padding: 22px 24px 20px;
    border-top: 1px solid rgba(216, 179, 109, .72);
    border-bottom: 1px solid rgba(216, 179, 109, .38);
    background: linear-gradient(120deg, rgba(7, 25, 40, .7), rgba(7, 25, 40, .36));
    box-shadow: 0 18px 44px rgba(5, 17, 29, .18);
    backdrop-filter: blur(4px);
  }

  .hero .hero-copy {
    padding-bottom: 0;
  }

  .hero-price-panel__price strong {
    font-size: clamp(72px, 10.5vw, 105px);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    overflow: clip;
  }

  .hero .hero-inner {
    min-height: 100svh;
    padding: 88px 0 26px;
  }

  .hero .hero-copy {
    padding: 0;
  }

  .hero-concern-card.hero-price-panel {
    width: 100%;
    margin: 22px 0 0;
    padding: 15px 16px 14px;
  }

  .hero-price-panel__heading {
    grid-template-columns: 42px max-content 1fr;
    gap: 10px;
  }

  .hero-price-panel__photo {
    display: none;
  }

  .hero-price-panel__heading p {
    font-size: 13px;
  }

  .hero-price-panel__amount {
    margin-top: 12px;
  }

  .hero-price-panel__price {
    width: 100%;
    justify-content: center;
  }

  .hero-price-panel__label {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .hero-price-panel__price strong {
    font-size: clamp(51px, 16.2vw, 70px);
  }

  .hero-price-panel__price > span {
    margin-left: .14em;
    font-size: clamp(17px, 5.2vw, 22px);
  }

  .hero-price-panel__price small {
    margin-left: .35em;
    font-size: 11px;
  }

  .hero-price-panel__underline {
    width: 76%;
    margin: 7px auto 0;
  }

  .hero-price-panel .hero-price-panel__notes {
    gap: 0;
    margin-top: 10px;
    font-size: 9px;
    line-height: 1.5;
  }

  .hero-index {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero-price-panel__price strong {
    font-size: clamp(45px, 14.6vw, 56px);
  }

  .hero-price-panel__price small {
    font-size: 9px;
  }
}

.reasons::before,
.reasons::after,
.method-sticky::after,
.manifesto::before,
.manifesto::after,
.contact-prompt::before,
.contact-prompt::after,
.cover-overview::before,
.cover-overview::after,
.inspection-warning::before,
.inspection-warning::after,
.cover-concerns::before,
.cover-concerns::after,
.cover-price-guide__amount::after,
.roof-warranty::before,
.roof-warranty::after,
.cover-benefits::before,
.cover-benefits::after,
.hero-summary::before,
.cover-compare::before,
.cover-compare::after,
.paint-condition__rings {
  display: none !important;
  content: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-concern-card.hero-price-panel,
  body.is-ready .hero-price-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-price-panel__underline i::after {
    animation: none;
    transform: none;
  }
}

/* Keep the case-study heading, rule and CTA aligned with the case imagery. */
@media (min-width: 721px) {
  .proof-summary__case > header,
  .proof-summary__case-more {
    box-sizing: border-box;
    width: 85%;
    margin-right: auto;
    margin-left: auto;
  }

  .proof-summary__case > header p,
  .google-reviews__head > div:first-child > span {
    display: block;
    min-height: 20px;
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Google reviews */
.google-reviews__head {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.google-reviews__rating {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 8px;
  align-items: baseline;
  padding-bottom: 6px;
  text-align: right;
}

.google-reviews__rating strong {
  color: #55473e;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.google-reviews__rating > span,
.google-review-card__meta div > span {
  color: #c28c38;
  font-size: 11px;
  letter-spacing: .08em;
}

.google-reviews__rating small {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: #91877f;
  font-size: 9px;
  letter-spacing: .05em;
}

.google-reviews__list,
.google-reviews__more {
  display: grid;
  gap: 10px;
}

.google-reviews__list {
  padding-top: 14px;
}

.google-reviews__more[hidden] {
  display: none;
}

.google-review-card {
  position: relative;
  padding: 14px 16px 13px;
  border: 1px solid #ded7ce;
  background: rgba(255, 255, 255, .7);
}

.google-review-card::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 2px;
  background: #c28c38;
  content: "";
}

.google-review-card__meta {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
}

.google-review-card__avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b98a47;
  font-family: var(--serif);
  font-size: 14px;
  text-transform: uppercase;
}

.google-review-card__meta div {
  display: grid;
  gap: 1px;
}

.google-review-card__meta strong {
  color: #514840;
  font-size: 12px;
}

.google-review-card__meta small {
  color: #a09891;
  font-size: 9px;
}

.google-reviews .google-review-card blockquote {
  margin: 10px 0 0;
  color: #61574f;
  font-family: inherit;
  font-size: 12px;
  line-height: 1.75;
}

.google-reviews__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.google-reviews__toggle,
.google-reviews__actions a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: #172b3c;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
}

.google-reviews__toggle {
  min-width: 126px;
  padding: 0 22px;
}

.google-reviews__actions a {
  color: #74675d;
  background: transparent;
  font-weight: 500;
}

.google-reviews__toggle:hover,
.google-reviews__toggle:focus-visible {
  background: #a85547;
}

.google-reviews__actions a:hover,
.google-reviews__actions a:focus-visible {
  color: #a85547;
}

.google-reviews__note {
  margin: 9px 0 0;
  color: #9a9189;
  font-size: 9px;
}

/* Official LINE */
.contact-line {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.contact-line > img {
  width: 92px;
  height: 92px;
  padding: 5px;
  background: #fff;
  object-fit: contain;
}

.contact-line__copy {
  min-width: 0;
}

.contact-line__copy > span {
  display: block;
  margin-bottom: 5px;
  color: #d5aa61;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
}

.contact-line__copy strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-line__copy p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .google-reviews__head {
    align-items: center;
  }

  .google-reviews__rating strong {
    font-size: 24px;
  }

  .google-review-card {
    padding: 14px;
  }

  .google-review-card__meta {
    grid-template-columns: 32px 1fr auto;
  }

  .google-review-card__avatar {
    width: 32px;
    height: 32px;
  }

  .google-reviews .google-review-card blockquote {
    font-size: 12px;
    line-height: 1.75;
  }

  .google-reviews__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .google-reviews__toggle,
  .google-reviews__actions a {
    width: 100%;
  }

  .contact-line {
    grid-template-columns: 104px 1fr;
  }

  .contact-line > img {
    width: 104px;
    height: 104px;
  }
}

@media (max-width: 380px) {
  .contact-line {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }

  .contact-line > img {
    width: 88px;
    height: 88px;
  }

  .contact-line__copy strong {
    font-size: 15px;
  }
}

.cover-price-guide__head h2 .cover-price-guide__particle {
  display: inline-block;
  width: auto;
  margin: 0 .07em;
  color: inherit;
  font-size: .9em;
  letter-spacing: 0;
  vertical-align: baseline;
}
.hero-title--cover-choice .hero-title__particle {
  font-size: .8em;
  font-style: normal;
}

.hero-title--cover-choice .hero-title__other {
  font-size: .9em;
}

.hero-title--cover-choice .hero-title__accent {
  font-size: 1.2em;
}

.hero-title--cover-choice .hero-title__choice {
  font-size: .81em;
  font-style: normal;
}

.hero-title--cover-choice .hero-title__period {
  font-size: .9em;
  font-style: normal;
}
.paint-condition__head h2 .heading-particle-90,
.cover-compare__visual-title .heading-particle-90,
.roof-warranty__head h2 .heading-particle-90 {
  font-size: .9em;
  font-style: normal;
}
/* Match the single circle to the visual size of the other rating marks. */
.compare-rate--good {
  position: relative;
  color: transparent;
}

.compare-rate--good::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: .8em;
  height: .8em;
  box-sizing: border-box;
  border: 1px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* Match the price notes to the hero description typography. */
.hero-price-panel .hero-price-panel__notes {
  font-family: var(--sans);
  font-size: clamp(9.9px, calc(.9vw - .9px), 13.5px);
  font-weight: 400;
  color: rgba(255, 255, 255, .82);
  letter-spacing: .03em;
  line-height: 1.9;
}

@media (min-width: 1101px) {
  .hero-price-panel .hero-price-panel__notes {
    font-size: clamp(9.9px, calc(.9vw - .9px), 13.5px);
    line-height: 1.8;
  }
}

@media (max-width: 1100px) {
  .hero-price-panel .hero-price-panel__notes {
    font-size: 8.1px;
    line-height: 1.75;
  }
}
.hero-title--cover-choice .hero-title__particle,
.paint-condition__head h2 .heading-particle-90,
.cover-compare__visual-title .heading-particle-90,
.roof-warranty__head h2 .heading-particle-90 {
  vertical-align: baseline;
}

.hero-title--cover-choice .hero-title__choice {
  vertical-align: baseline;
}
@media (max-width: 1100px) {
  .hero-price-panel__photo { display: none; }
}
@media (prefers-reduced-motion: no-preference) {
  @supports (-webkit-background-clip: text) or (background-clip: text) {
    .price-main .cover-price-guide__amount [data-price-shine].is-count-complete {
      background-image: linear-gradient(45deg, currentColor 42%, #b66d68 48%, #cc9690 50%, #b66d68 52%, currentColor 58%);
      background-size: 300% 300%;
      background-position: 100% 0%;
      background-repeat: no-repeat;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: price-number-shine 5s ease-in-out .35s infinite;
    }
  }
}

@keyframes price-number-shine {
  0% { background-position: 100% 0%; }
  20%, 100% { background-position: 0% 100%; }
}
.hero-price-panel__price .hero-price-panel__tax {
  display: grid;
  justify-items: center;
  gap: .3em;
}

.hero-price-panel__tax .hero-price-panel__from {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 1.87em;
  line-height: 1;
  font-weight: 500;
}

.price-main .cover-price-guide__amount .cover-price-guide__from {
  margin-left: .18em;
  color: inherit;
  font-size: 1em;
}

.heading-particle-90 {
  font-size: .9em;
  font-style: normal;
  vertical-align: baseline;
}

.proof-summary__case h3 .proof-summary__case-accent {
  color: var(--accent);
}

.google-reviews__head h3 .google-reviews__title-accent {
  color: var(--accent);
}

.google-reviews__title {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: .08em;
}

.google-reviews__wordmark {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
  height: 1.5em;
  padding: 0 .36em;
  border: 1px solid rgba(66, 133, 244, .16);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(60, 64, 67, .1);
  line-height: 1;
}

.google-reviews__wordmark::after {
  position: absolute;
  bottom: -4px;
  left: 22%;
  z-index: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(66, 133, 244, .16);
  border-bottom: 1px solid rgba(66, 133, 244, .16);
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.google-reviews__wordmark img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 999px;
}

@media (max-width: 420px) {
  .google-reviews__wordmark {
    height: 1.35em;
  }
}

/* Match warranty and contact labels to the two-sided rule used for roof condition. */
.roof-warranty__head .section-label,
.contact-head .section-label {
  justify-content: center;
}

.roof-warranty__head .section-label::before,
.roof-warranty__head .section-label::after,
.contact-head .section-label::before,
.contact-head .section-label::after {
  flex: 0 0 auto;
  width: 46px;
  height: 1px;
  background: rgba(184, 137, 66, .46);
  content: "";
}

@media (max-width: 720px) {
  .roof-warranty__head .section-label,
  .contact-head .section-label {
    gap: 12px;
  }

  .roof-warranty__head .section-label::before,
  .roof-warranty__head .section-label::after,
  .contact-head .section-label::before,
  .contact-head .section-label::after {
    width: 24px;
  }
}

/* 360-420px: keep the full header brand on one line. */
@media (max-width: 420px) {
  .header .header-inner {
    gap: 6px;
  }

  .header .brand {
    flex: 0 1 auto;
    min-width: 0;
    gap: 6px;
    font-size: 12px;
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .header .brand-mark {
    flex: 0 0 auto;
    width: 48px;
  }

  .header .brand span {
    white-space: nowrap;
  }

  .header .header-nav {
    flex: 0 0 auto;
    gap: 6px;
  }

  .header .header-cta {
    width: 154px;
    min-height: 48px;
    padding: 8px 10px;
    gap: 8px;
    font-size: 9px;
  }

  .header .menu-toggle {
    width: 30px;
    height: 38px;
  }
}


/* Mobile direct link to the official LINE account */
.contact-line__mobile-note,
.contact-line__mobile-button {
  display: none;
}

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  .contact-line__qr-note {
    display: none;
  }

  .contact-line__mobile-note {
    display: inline;
  }

  .contact-line__mobile-button {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    margin-top: 2px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .34);
    background: #06c755;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    color: #fff;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }

  .contact-line__mobile-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, .18);
  }
}

@media (hover: hover) and (pointer: fine) and (max-width: 1100px) {
  .contact-line__mobile-button:hover,
  .contact-line__mobile-button:focus-visible {
    background: #05b94f;
    transform: translateY(-1px);
    box-shadow: 0 13px 28px rgba(0, 0, 0, .2);
  }
}

/* iPhone layout adjustments: 20260915-iphone1 */
@media (max-width: 720px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .header .header-inner {
    width: calc(100% - 28px);
    gap: 8px;
  }

  .header .brand {
    flex: 0 0 auto;
    gap: 6px;
    font-size: clamp(11px, 3vw, 14px);
    letter-spacing: .02em;
    white-space: nowrap;
  }

  .header .brand span { white-space: nowrap; }
  .header .brand-mark { width: clamp(40px, 12vw, 58px); }
  .header .header-nav { flex: 0 0 auto; gap: 6px; }

  .header .header-cta {
    flex: 0 0 auto;
    width: auto;
    min-height: 44px;
    padding: 8px;
    gap: 5px;
    font-size: clamp(8px, 2.4vw, 12px);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .header .header-cta::after { flex: 0 0 auto; font-size: 12px; }
  .header .menu-toggle { flex: 0 0 28px; width: 28px; height: 44px; }

  .hero h1.hero-title--cover-choice .hero-title__accent {
    font-size: clamp(34px, 10.8vw, 52px);
    white-space: nowrap;
  }

  .hero-price-panel__amount {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-price-panel__price { width: max-content; max-width: 100%; }
  .hero-price-panel__price strong { inline-size: auto; text-align: center; }
  .hero-price-panel__underline { width: 100%; margin: 7px auto 0; }

  .price-main .cover-price-guide__amount strong {
    width: auto;
    padding-inline: .06em .10em;
    letter-spacing: 0;
    overflow: visible;
  }

  .particle-inspection__copy #particle-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  #particle-title .particle-title__line,
  #particle-title .particle-title__accent { white-space: nowrap; }
}

/* Keep the opening sentence together on phones. */
.hero h1 .hero-opening { display: contents; }
@media (max-width: 720px) {
  .hero h1 .hero-opening {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    font-size: inherit;
    line-height: 1.5;
    white-space: nowrap;
  }
  .hero h1 .hero-opening .hero-line { flex: 0 0 auto; }
}

/* Mobile inspection photos and service-area heading: 20260915-iphone3 */
.proof-summary__area h3 .proof-summary__area-title,
.proof-summary__area h3 .proof-summary__area-line { color: inherit; font-family: inherit; }
@media (max-width: 720px) {
  .proof-summary__inspection-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .proof-summary__report { width: 196px; height: 218px; max-width: 100%; }
  .proof-summary__report img {
    display: block; width: 126px; height: 180px; margin: 18px 10px 0 auto;
    aspect-ratio: auto; border: 5px solid #f4f2ed;
    object-fit: cover; filter: none; transform: rotate(3deg);
  }
  .proof-summary__report figcaption {
    position: absolute; top: 16px; left: 14px; z-index: 2;
    width: 126px; height: 180px; aspect-ratio: auto; padding: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: linear-gradient(145deg, #24282b, #111416);
    box-shadow: 0 16px 26px rgba(0, 0, 0, .45);
    font-size: 12px; letter-spacing: .12em; transform: rotate(-8deg);
  }
  .proof-summary__conditions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .proof-summary__conditions figure { height: auto; min-width: 0; }
  .proof-summary__conditions img {
    display: block; width: 100%; height: auto; aspect-ratio: 5 / 3;
    object-fit: cover; filter: none;
  }
  .proof-summary__conditions figcaption {
    position: static; width: 100%; padding: 8px 4px;
    font-size: clamp(10px, 2.8vw, 13px); line-height: 1.5;
    text-align: center; letter-spacing: .02em; background: #202a32;
  }
  .proof-summary__area-inner {
    grid-template-columns: clamp(72px, 21vw, 105px) minmax(0, 1fr);
    gap: 12px;
  }
  .proof-summary__area-inner > img { width: 100%; height: auto; }
  .proof-summary__area h3 {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: clamp(13px, 3.8vw, 18px); line-height: 1.55;
    letter-spacing: 0;
  }
  .proof-summary__area h3 .proof-summary__pin {
    flex: 0 0 16px; width: 16px; height: 16px; margin: 4px 0 0;
  }
  .proof-summary__area h3 .proof-summary__pin::before { top: 12px; }
  .proof-summary__area h3 .proof-summary__pin::after { top: 4px; left: 4px; }
  .proof-summary__area h3 .proof-summary__area-title,
  .proof-summary__area h3 .proof-summary__area-line { color: inherit; font-family: inherit; }
  .proof-summary__area h3 .proof-summary__area-line { display: block; white-space: nowrap; }
}
