:root {
  color-scheme: light;
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ink: #102936;
  --ink-soft: #536977;
  --deep: #163b53;
  --deep-2: #0d2a3d;
  --paper: #eef3f6;
  --paper-2: #dfe9ef;
  --surface: #ffffff;
  --surface-2: #f7f9fa;
  --accent: #d9b867;
  --accent-strong: #bf9743;
  --rust: #2f6f93;
  --rust-text: #245a78;
  --line: rgba(22, 59, 83, .15);
  --line-strong: rgba(22, 59, 83, .30);
  --white: #fff;
  --shadow: 0 24px 64px rgba(22, 59, 83, .12);
  --shadow-small: 0 12px 32px rgba(22, 59, 83, .10);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shell: 1280px;
  --header-height: 82px;
}

html[data-design="night"] {
  color-scheme: dark;
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ink: #f2f3ec;
  --ink-soft: #acb8b1;
  --deep: #d4ed68;
  --deep-2: #071915;
  --paper: #071712;
  --paper-2: #0c211b;
  --surface: #102820;
  --surface-2: #0b201a;
  --accent: #f0cf7b;
  --accent-strong: #d6ad53;
  --rust: #ff744d;
  --rust-text: #ff9a7f;
  --line: rgba(225, 238, 229, .14);
  --line-strong: rgba(225, 238, 229, .28);
  --shadow: 0 30px 80px rgba(0, 0, 0, .34);
  --shadow-small: 0 16px 42px rgba(0, 0, 0, .24);
  --radius-xl: 8px;
  --radius-lg: 6px;
  --radius-md: 4px;
  --radius-sm: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(47, 111, 147, .11), transparent 26rem),
    var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.028em;
  line-height: 1.04;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

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

.section {
  position: relative;
  padding: 96px 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 11px 16px;
  color: #102936;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rust-text);
}

.eyebrow span::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 15px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  transition: transform .2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-solid {
  color: #102936;
  background: var(--accent);
  box-shadow: 0 14px 34px rgba(130, 93, 21, .18);
}

.button-solid:hover {
  background: #e6ca80;
  box-shadow: 0 18px 38px rgba(130, 93, 21, .25);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .36);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, .66);
}

.button-small {
  min-height: 44px;
  padding: 12px 15px;
  font-size: 14px;
}

.button-meta {
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.8;
  transition: gap .2s ease, color .2s ease;
}

.text-link:hover {
  gap: 14px;
  color: var(--rust-text);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  color: var(--white);
  background: rgba(11, 38, 56, .96);
  backdrop-filter: blur(18px) saturate(135%);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 31, 47, .98);
  box-shadow: 0 12px 36px rgba(7, 27, 40, .22);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
  transition: transform .2s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 66px;
  height: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.noscript-nav {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 13px 0;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 20px 0 24px;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  min-height: min(650px, calc(100svh - var(--header-height) - 56px));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: clamp(42px, 5vw, 76px);
  padding: clamp(38px, 4vw, 56px);
  border: 1px solid rgba(22, 59, 83, .09);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 4% 4%, rgba(22, 59, 83, .12), transparent 28rem),
    radial-gradient(circle at 78% 112%, rgba(111, 187, 74, .13), transparent 25rem),
    linear-gradient(135deg, #ffffff 0%, #f5f9fb 58%, #e7f0f4 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.hero-shell::before {
  position: absolute;
  top: -180px;
  left: -170px;
  z-index: -1;
  width: 470px;
  height: 470px;
  border: 110px solid rgba(47, 111, 147, .08);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1;
}

.hero h1 em {
  display: block;
  color: var(--deep);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(22, 59, 83, .16);
  list-style: none;
}

.hero-points li {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 0 15px;
  border-right: 1px solid rgba(22, 59, 83, .13);
}

.hero-points li:first-child {
  padding-left: 0;
}

.hero-points li:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-points > li > span {
  color: var(--rust-text);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
}

.hero-points strong,
.hero-points small {
  display: block;
}

.hero-points strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.hero-points small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}

.hero-media {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin: 0;
}

.hero-image-frame {
  position: relative;
  height: min(580px, 64svh);
  min-height: 450px;
  border-radius: 18px;
  background: var(--paper-2);
  box-shadow: 0 22px 60px rgba(22, 59, 83, .22);
  overflow: hidden;
}

.hero-image-frame picture,
.service-image-wrap picture,
.owner-image-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 27, 22, .25));
  content: "";
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transition: transform .7s cubic-bezier(.2, .75, .2, 1);
}

.hero-media:hover .hero-image-frame img {
  transform: scale(1.025);
}

.hero-stamp {
  position: absolute;
  top: -43px;
  right: -28px;
  z-index: -1;
  color: rgba(22, 59, 83, .08);
  font-family: var(--font-display);
  font-size: 184px;
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: 1;
}

/* Shared section heads */
.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: end;
  gap: clamp(36px, 7vw, 112px);
  margin-bottom: 58px;
}

.section-intro h2,
.owner-copy h2,
.faq-heading h2,
.contact-copy h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.section-intro > p,
.faq-heading > p,
.contact-copy > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

/* Services */
.services {
  background:
    radial-gradient(circle at 92% 12%, rgba(47, 111, 147, .10), transparent 24rem),
    var(--paper);
}

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

.service-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .65) inset;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-small);
  transform: translateY(-6px);
}

.service-priority {
  grid-column: span 6;
  grid-row: auto;
}

.service-image-wrap {
  position: relative;
  height: 220px;
  flex: 0 0 auto;
  background: var(--paper-2);
  overflow: hidden;
}

.service-priority .service-image-wrap {
  height: 300px;
}

.service-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .75, .2, 1), filter .3s ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.04);
}

.image-note {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 5px;
  color: rgba(255, 255, 255, .88);
  background: rgba(10, 27, 22, .68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-content {
  position: relative;
  flex: 1 1 auto;
  padding: 24px;
}

.service-index {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--rust-text);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.service-card h3 {
  max-width: calc(100% - 52px);
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1.05;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

.service-priority h3 {
  max-width: calc(100% - 58px);
  font-size: clamp(30px, 2.8vw, 42px);
}

.service-priority .service-content {
  padding: 30px;
}

.service-priority .service-index {
  top: 30px;
  right: 30px;
}

.service-details {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.service-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  color: var(--deep);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  list-style: none;
}

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

.service-details summary::after {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.service-details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.service-details ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.service-details li::marker {
  color: var(--accent-strong);
}

.scope-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.scope-note > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #102936;
  background: var(--accent);
  font-weight: 900;
}

.scope-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.scope-note strong {
  color: var(--ink);
}

.scope-note a {
  border-bottom: 1px solid currentColor;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 750;
}

/* Before / after example */
.renovation-showcase {
  background:
    radial-gradient(circle at 8% 90%, rgba(217, 184, 103, .14), transparent 26rem),
    var(--surface-2);
}

.renovation-compare {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(38px, 7vw, 110px);
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.compare-copy h2 {
  max-width: 650px;
  font-size: clamp(40px, 4.2vw, 62px);
}

.compare-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.compare-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 15px;
  list-style: none;
}

.compare-points li {
  position: relative;
  padding-left: 19px;
}

.compare-points li::before {
  position: absolute;
  top: .67em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-strong);
  content: "";
}

.compare-visual {
  min-width: 0;
  margin: 0;
}

.compare-image-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  box-shadow: 0 20px 50px rgba(22, 59, 83, .16);
  overflow: hidden;
}

.compare-image-wrap picture,
.compare-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
}

.compare-image-wrap img {
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .75, .2, 1), filter .35s ease;
}

.compare-slider {
  --compare-position: 50%;
  isolation: isolate;
}

.compare-slider .compare-image {
  position: absolute;
  inset: 0;
}

.compare-image-after {
  z-index: 0;
}

.compare-image-before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  appearance: none;
  background: transparent;
  touch-action: pan-y;
}

.compare-range::-webkit-slider-runnable-track {
  height: 100%;
  background: transparent;
}

.compare-range::-webkit-slider-thumb {
  width: 44px;
  height: 44px;
  border: 0;
  appearance: none;
  background: transparent;
}

.compare-range::-moz-range-track {
  height: 100%;
  background: transparent;
}

.compare-range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.compare-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  pointer-events: none;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 6px;
  color: var(--white);
  background: rgba(13, 42, 61, .88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.compare-label-before {
  left: 16px;
}

.compare-label-after {
  right: 16px;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  z-index: 4;
  width: 3px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 1px rgba(13, 42, 61, .18);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, .96);
  border-radius: 50%;
  color: #102936;
  background: var(--accent);
  box-shadow: 0 8px 22px rgba(10, 35, 51, .26);
  content: "↔";
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.compare-range:focus-visible {
  outline: none;
}

.compare-range:focus-visible ~ .compare-divider::after {
  box-shadow: 0 0 0 5px rgba(214, 178, 94, .34), 0 8px 22px rgba(10, 35, 51, .26);
}

.compare-instruction {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.compare-visual figcaption {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

/* Owner */
.owner {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    var(--deep-2);
  background-size: 34px 34px;
  overflow: hidden;
}

.owner::before {
  position: absolute;
  top: -240px;
  right: -150px;
  width: 620px;
  height: 620px;
  border: 120px solid rgba(228, 185, 79, .08);
  border-radius: 50%;
  content: "";
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(56px, 9vw, 140px);
}

.owner-media {
  position: relative;
  margin: 0;
}

.owner-image-frame {
  position: relative;
  height: 650px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 58px rgba(5, 25, 38, .22);
  transition: box-shadow .35s ease, transform .35s ease;
  overflow: hidden;
}

.owner-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .65s cubic-bezier(.2, .75, .2, 1), filter .35s ease;
}

.owner-media:hover .owner-image-frame {
  box-shadow: 0 30px 70px rgba(5, 25, 38, .31);
  transform: translateY(-4px);
}

.owner-media:hover .owner-image-frame img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.owner-media figcaption {
  position: absolute;
  right: -24px;
  bottom: 32px;
  min-width: 260px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-sm);
  color: #102936;
  background: var(--accent);
  box-shadow: var(--shadow);
}

.owner-media figcaption strong,
.owner-media figcaption span {
  display: block;
}

.owner-media figcaption strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.owner-media figcaption span {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 650;
}

.owner-media figcaption small {
  display: block;
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid rgba(16, 35, 29, .18);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.owner-copy {
  position: relative;
  z-index: 2;
}

.owner .eyebrow,
.contact .eyebrow {
  color: rgba(255, 255, 255, .65);
}

.owner .eyebrow span,
.contact .eyebrow span {
  color: var(--accent);
}

.owner-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 20px;
  line-height: 1.65;
}

.owner-points {
  display: grid;
  gap: 0;
  margin: 38px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.owner-points article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.owner-points article > span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.owner-points h3 {
  font-size: 21px;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.owner-points p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.owner .text-link {
  color: var(--white);
}

/* Process */
.process {
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 184, 103, .13), transparent 23rem),
    var(--surface-2);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.process-list li {
  position: relative;
  min-height: 0;
  padding: 16px 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .32);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.process-number {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--white);
  background: var(--deep);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 850;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.process-line {
  display: none;
}

.process-list h3 {
  margin-top: 26px;
  font-size: 22px;
  line-height: 1.16;
  transition: color .25s ease;
}

.process-list p {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

@media (hover: hover) {
  .process-list li:hover {
    z-index: 3;
    background: var(--surface);
    box-shadow: var(--shadow-small);
    transform: translateY(-5px);
  }

  .process-list li:hover .process-number {
    color: #102936;
    background: var(--accent);
    box-shadow: 0 10px 22px rgba(170, 124, 34, .25);
    transform: scale(1.08);
  }

  .process-list li:hover h3 {
    color: var(--rust-text);
  }

  .compare-visual:hover .compare-image-wrap:not(.compare-slider) img {
    filter: saturate(1.035) contrast(1.015);
    transform: scale(1.025);
  }

  .compare-visual:hover .compare-slider .compare-divider::after {
    transform: translate(-50%, -50%) scale(1.08);
  }

  .compare-visual:hover .compare-label {
    color: #102936;
    background: var(--accent);
    transform: translateY(-2px);
  }
}

/* Tax guidance */
.tax-band {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 10%, rgba(111, 187, 74, .13), transparent 25rem),
    var(--deep-2);
  overflow: hidden;
}

.tax-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: 46px;
}

.tax-head h2 {
  max-width: 760px;
  font-size: clamp(48px, 5vw, 76px);
}

.tax-band .eyebrow {
  color: rgba(255, 255, 255, .62);
}

.tax-band .eyebrow span {
  color: var(--accent);
}

.tax-head > p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
}

.tax-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .17);
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.tax-rules article {
  min-width: 0;
  padding: 32px clamp(24px, 3vw, 42px) 36px;
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.tax-rules article:first-child {
  padding-left: 0;
}

.tax-rules article:last-child {
  padding-right: 0;
  border-right: 0;
}

.tax-paragraph {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 850;
  line-height: 1;
  transition: color .2s ease, transform .2s ease;
}

.tax-paragraph:hover {
  color: var(--white);
  transform: translateX(3px);
}

.tax-paragraph small {
  font-size: 12px;
  letter-spacing: .08em;
}

.tax-rules h3 {
  margin-top: 28px;
  font-size: 23px;
  line-height: 1.08;
}

.tax-rules p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  line-height: 1.6;
}

.tax-disclaimer {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
}

/* FAQ */
.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  align-self: start;
}

.faq-heading > p {
  margin-top: 26px;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -.02em;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details[open] summary {
  color: var(--rust-text);
}

.faq-list details p {
  max-width: 720px;
  margin: 0 50px 30px 0;
  color: var(--ink-soft);
  font-size: 16px;
}

/* Contact */
.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(228, 185, 79, .12), transparent 28rem),
    radial-gradient(circle at 88% 90%, rgba(201, 95, 59, .12), transparent 25rem),
    var(--deep-2);
  overflow: hidden;
}

.contact::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, .06);
  content: "";
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  align-items: start;
  gap: clamp(54px, 8vw, 120px);
}

.contact-copy > p {
  margin-top: 28px;
  color: rgba(255, 255, 255, .68);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 42px;
}

.contact-cards a {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .055);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-cards a:hover {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .09);
  transform: translateY(-3px);
}

.contact-cards span,
.contact-cards strong,
.contact-cards small {
  display: block;
}

.contact-cards span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-cards strong {
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: 19px;
}

.contact-cards small {
  margin-top: 22px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.contact-cards b {
  color: var(--accent);
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  color: #102936;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .25);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(20, 36, 31, .14);
}

.form-step {
  color: #245a78;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
}

.form-head p {
  margin: 0;
  color: #68746e;
  font-size: 11px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.field label {
  margin-bottom: 8px;
  color: #274252;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 750;
}

.field label span,
.label-row > span {
  color: #5f6b66;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid rgba(20, 36, 31, .22);
  border-radius: 8px;
  color: #102936;
  background: #f5f8fa;
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #5f6b66;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(20, 36, 31, .38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #2f6f93;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47, 111, 147, .14);
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  display: none;
}

.form-enabled .form-submit {
  display: inline-flex;
}

.form-noscript {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(147, 65, 43, .24);
  border-radius: 10px;
  color: #102936;
  background: rgba(47, 111, 147, .07);
  font-size: 14px;
}

.form-noscript a {
  color: var(--rust-text);
  font-weight: 800;
  text-decoration: underline;
}

.form-status {
  min-height: 1.4em;
  margin: 13px 0 0;
  color: #245a78;
  font-size: 13px;
  font-weight: 700;
}

.form-note {
  margin: 5px 0 0;
  color: #68746e;
  font-size: 11px;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, .72);
  background: #0b2638;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(400px, 1.1fr);
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 64px;
}

.footer-logo {
  width: 150px;
  height: auto;
  border-radius: 10px;
  background: var(--white);
}

.footer-brand p {
  max-width: 430px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 9px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  font-size: 14px;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--accent);
}

.footer-bottom {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.to-top {
  justify-self: end;
}

/* Preview and mobile utilities */
.preview-switcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  color: rgba(255, 255, 255, .68);
  background: rgba(8, 23, 18, .90);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}

.preview-switcher details {
  position: relative;
}

.preview-switcher summary {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

.preview-switcher summary::-webkit-details-marker {
  display: none;
}

.preview-switcher summary::before {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  box-shadow: 4px 0 0 -2px currentColor, -4px 0 0 -2px currentColor;
}

.preview-switcher details > div {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  display: flex;
  gap: 3px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  background: rgba(8, 23, 18, .94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

.preview-switcher button {
  min-height: 34px;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  color: rgba(255, 255, 255, .68);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
}

.preview-switcher button[aria-pressed="true"] {
  color: #102936;
  background: var(--accent);
}

.mobile-contact {
  display: none;
}

/* Motion */
html.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .82s ease var(--delay, 0ms), transform .82s cubic-bezier(.2, .72, .2, 1) var(--delay, 0ms);
}

html.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy > * {
  animation: hero-in .72s both;
}

.hero-media {
  animation: hero-in .9s .12s both;
}

.hero-copy > :nth-child(2) { animation-delay: 70ms; }
.hero-copy > :nth-child(3) { animation-delay: 130ms; }
.hero-copy > :nth-child(4) { animation-delay: 190ms; }
.hero-copy > :nth-child(5) { animation-delay: 250ms; }

/* Markant / night concept */
html[data-design="night"] body {
  background:
    radial-gradient(circle at 84% 8%, rgba(212, 237, 104, .08), transparent 30rem),
    var(--paper);
}

html[data-design="night"] .site-header {
  border-bottom-color: rgba(255, 255, 255, .11);
  background: rgba(5, 18, 14, .90);
}

html[data-design="night"] .brand {
  padding: 0;
  background: transparent;
}

html[data-design="night"] .brand-logo {
  width: 64px;
}

html[data-design="night"] .header-actions .button-solid {
  color: #071712;
}

html[data-design="night"] .hero {
  padding: 14px 0 8px;
}

html[data-design="night"] .hero-shell {
  min-height: min(820px, calc(100svh - var(--header-height) - 38px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(42px, 6vw, 84px);
  border-color: rgba(255, 255, 255, .13);
  background: #071712;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

html[data-design="night"] .hero-shell::before {
  top: auto;
  right: auto;
  bottom: -250px;
  left: -150px;
  z-index: 2;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(212, 237, 104, .17);
  border-radius: 50%;
}

html[data-design="night"] .hero-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 14, 11, .97) 0%, rgba(3, 14, 11, .84) 43%, rgba(3, 14, 11, .18) 76%, rgba(3, 14, 11, .05) 100%);
  content: "";
  pointer-events: none;
}

html[data-design="night"] .hero-copy {
  max-width: 760px;
}

html[data-design="night"] .hero h1 {
  font-size: clamp(62px, 7.2vw, 106px);
  letter-spacing: -.055em;
}

html[data-design="night"] .hero h1 em {
  color: var(--accent);
}

html[data-design="night"] .hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .68);
}

html[data-design="night"] .hero-points {
  border-top-color: rgba(255, 255, 255, .2);
}

html[data-design="night"] .hero-points li {
  border-right-color: rgba(255, 255, 255, .18);
}

html[data-design="night"] .hero-points > li > span {
  color: var(--accent);
}

html[data-design="night"] .hero-points small {
  color: rgba(255, 255, 255, .58);
}

html[data-design="night"] .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

html[data-design="night"] .hero-image-frame {
  height: 100%;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}

html[data-design="night"] .hero-image-frame img {
  object-position: 50% 48%;
}

html[data-design="night"] .hero-image-frame::after {
  background: linear-gradient(0deg, rgba(2, 13, 10, .24), transparent 50%);
}

html[data-design="night"] .hero-stamp {
  display: none;
}

html[data-design="night"] .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .06);
}

html[data-design="night"] .button-meta {
  color: rgba(255, 255, 255, .58);
  border-left-color: rgba(255, 255, 255, .22);
}

html[data-design="night"] .services {
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 237, 104, .06), transparent 28rem),
    var(--paper);
}

html[data-design="night"] .service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

html[data-design="night"] .service-card,
html[data-design="night"] .service-priority {
  position: relative;
  grid-column: auto;
  grid-row: auto;
  min-height: 500px;
  border-color: rgba(255, 255, 255, .14);
  background: #0c201a;
  box-shadow: none;
}

html[data-design="night"] .service-priority {
  grid-column: span 2;
}

html[data-design="night"] .service-image-wrap,
html[data-design="night"] .service-priority .service-image-wrap {
  position: absolute;
  inset: 0;
  height: 100%;
}

html[data-design="night"] .service-image-wrap::after {
  border: 0;
  background: linear-gradient(180deg, rgba(7, 23, 18, .08) 20%, rgba(7, 23, 18, .95) 88%);
  box-shadow: none;
}

html[data-design="night"] .service-content {
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
}

html[data-design="night"] .service-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, .68);
}

html[data-design="night"] .service-index {
  top: 24px;
  right: 24px;
  color: var(--accent);
}

html[data-design="night"] .image-note {
  top: 15px;
  right: auto;
  bottom: auto;
  left: 15px;
  z-index: 4;
}

html[data-design="night"] .scope-note {
  border-color: rgba(255, 255, 255, .14);
  background: var(--surface);
}

html[data-design="night"] .renovation-showcase {
  background:
    radial-gradient(circle at 12% 85%, rgba(240, 207, 123, .08), transparent 26rem),
    var(--paper);
}

html[data-design="night"] .renovation-compare {
  border-color: rgba(255, 255, 255, .14);
  background: var(--surface);
  box-shadow: none;
}

html[data-design="night"] .compare-copy > p:not(.eyebrow),
html[data-design="night"] .compare-points,
html[data-design="night"] .compare-visual figcaption {
  color: rgba(255, 255, 255, .66);
}

html[data-design="night"] .compare-image-wrap {
  border-color: rgba(255, 255, 255, .2);
}

html[data-design="night"] .owner {
  color: #071712;
  background: var(--accent);
}

html[data-design="night"] .owner::before {
  border-color: rgba(7, 23, 18, .08);
}

html[data-design="night"] .owner-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
}

html[data-design="night"] .owner-media {
  order: 2;
}

html[data-design="night"] .owner-copy {
  order: 1;
}

html[data-design="night"] .owner-image-frame {
  height: 570px;
  border-radius: 2px;
  transform: rotate(1.5deg);
}

html[data-design="night"] .owner-media:hover .owner-image-frame {
  transform: rotate(1.5deg) translateY(-4px);
}

html[data-design="night"] .owner-media figcaption {
  right: auto;
  bottom: 20px;
  left: -20px;
  color: var(--white);
  background: #071712;
}

html[data-design="night"] .owner-media figcaption small {
  border-top-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .62);
}

html[data-design="night"] .owner .eyebrow {
  color: rgba(7, 23, 18, .62);
}

html[data-design="night"] .owner .eyebrow span {
  color: #7b3925;
}

html[data-design="night"] .owner-lead,
html[data-design="night"] .owner-points p {
  color: rgba(7, 23, 18, .70);
}

html[data-design="night"] .owner-points {
  border-top-color: rgba(7, 23, 18, .2);
}

html[data-design="night"] .owner-points article {
  border-bottom-color: rgba(7, 23, 18, .2);
}

html[data-design="night"] .owner-points article > span {
  color: #7b3925;
}

html[data-design="night"] .owner .text-link {
  color: #071712;
}

html[data-design="night"] .process {
  color: var(--white);
  background: #061611;
}

html[data-design="night"] .process-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

html[data-design="night"] .process-list::before {
  display: none;
}

html[data-design="night"] .process-list li {
  min-height: 0;
  display: grid;
  grid-template-columns: 88px minmax(80px, .35fr) 1fr;
  align-items: center;
  gap: 32px;
  padding: 34px 18px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  border-radius: 0;
  background: transparent;
}

html[data-design="night"] .process-list li:hover {
  padding-left: 18px;
  transform: none;
}

html[data-design="night"] .process-number {
  width: auto;
  height: auto;
  display: block;
  color: var(--accent);
  background: transparent;
  font-size: 42px;
}

html[data-design="night"] .process-line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0;
  background: rgba(255, 255, 255, .22);
}

html[data-design="night"] .process-list p {
  color: rgba(255, 255, 255, .59);
}

html[data-design="night"] .process-list h3 {
  margin-top: 0;
}

html[data-design="night"] .faq {
  background: var(--paper-2);
}

html[data-design="night"] .contact {
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 237, 104, .08), transparent 28rem),
    #061611;
}

html[data-design="night"] .preview-switcher button[aria-pressed="true"] {
  color: #071712;
}

/* Responsive */
@media (max-width: 1180px) {
  .site-nav {
    gap: 18px;
  }

  .phone-link span {
    display: none;
  }

  .phone-link {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius-sm);
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(370px, .8fr);
    gap: 38px;
    padding: 48px;
  }

  .hero h1 {
    font-size: clamp(56px, 6vw, 75px);
  }

  .owner-grid {
    gap: 70px;
  }

  .contact-shell {
    grid-template-columns: .8fr 1.2fr;
    gap: 54px;
  }
}

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

  .section {
    padding: 90px 0;
  }

  .header-inner {
    gap: 14px;
  }

  .site-nav {
    display: none;
  }

  .noscript-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 22px;
    padding: 12px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    background: var(--paper);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
  }

  .noscript-nav a {
    padding: 7px 0;
  }

  .menu-enabled .menu-toggle {
    display: block;
  }

  .menu-enabled .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 24px 54px rgba(20, 36, 31, .16);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .menu-enabled .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .menu-enabled .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 18px;
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button {
    display: none;
  }

  .hero-shell {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-image-frame {
    height: min(620px, 70vw);
    min-height: 460px;
  }

  .section-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .section-intro > p {
    max-width: 700px;
  }

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

  .service-card,
  .service-featured,
  .service-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
  }

  .service-card,
  .service-featured,
  .service-wide {
    min-height: 0;
  }

  .service-card .service-image-wrap,
  .service-featured .service-image-wrap,
  .service-wide .service-image-wrap {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .renovation-compare {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .compare-copy {
    max-width: 700px;
  }

  .compare-visual {
    max-width: 720px;
  }

  .owner-grid,
  .contact-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .owner-media {
    max-width: 620px;
  }

  .owner-image-frame {
    height: min(760px, 105vw);
  }

  .process-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .process-list li {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 30px;
  }

  .process-list::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 23px;
    width: 1px;
    height: auto;
  }

  .process-list h3 {
    margin-top: 0;
  }

  .tax-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .tax-head > p {
    max-width: 720px;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  .faq-heading {
    position: static;
    max-width: 720px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
  }

  html[data-design="night"] .hero-shell {
    min-height: 720px;
    display: flex;
    align-items: flex-end;
  }

  html[data-design="night"] .hero-shell::after {
    background: linear-gradient(0deg, rgba(3, 14, 11, .98) 0%, rgba(3, 14, 11, .76) 53%, rgba(3, 14, 11, .14) 100%);
  }

  html[data-design="night"] .hero-image-frame img {
    object-position: 42% center;
  }

  html[data-design="night"] .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-design="night"] .service-image-wrap,
  html[data-design="night"] .service-priority .service-image-wrap {
    width: auto;
    height: 100%;
    aspect-ratio: auto;
  }

  html[data-design="night"] .service-card--repair .service-image-wrap img {
    object-position: 58% 50%;
  }

  html[data-design="night"] .service-card,
  html[data-design="night"] .service-featured,
  html[data-design="night"] .service-wide {
    grid-column: auto;
    min-height: 500px;
  }

  html[data-design="night"] .owner-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  html[data-design="night"] .owner-media {
    order: 1;
  }

  html[data-design="night"] .owner-copy {
    order: 2;
  }
}

@media (min-width: 681px) and (max-width: 820px) {
  html[data-design="night"] .hero h1 {
    max-width: 48vw;
    font-size: clamp(44px, 6.2vw, 52px);
    line-height: .98;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  html {
    scroll-padding-bottom: 84px;
  }

  body {
    font-size: 16px;
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(100% - 30px, var(--shell));
  }

  .section {
    padding: 76px 0;
  }

  .brand-logo,
  html[data-design="night"] .brand-logo {
    width: 54px;
  }

  .phone-link {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 14px 0 38px;
  }

  .hero-shell {
    gap: 34px;
    padding: 32px 22px 22px;
    border-radius: 24px;
  }

  .hero-shell::before {
    top: -230px;
    left: -250px;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: .045em;
  }

  .eyebrow span::before {
    width: 18px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 25px;
  }

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

  .hero-points {
    margin-top: 28px;
    padding-top: 16px;
  }

  .hero-points li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
    padding-inline: 9px;
  }

  .hero-points strong {
    font-size: 12px;
  }

  .hero-image-frame {
    height: 96vw;
    min-height: 390px;
    max-height: 520px;
    border-radius: 18px 18px 58px 18px;
  }

  .hero-image-frame img {
    object-position: 64% center;
  }

  .hero-stamp {
    top: -28px;
    right: -16px;
    font-size: 120px;
  }

  .section-intro {
    margin-bottom: 36px;
  }

  .section-intro h2,
  .owner-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(41px, 12vw, 57px);
  }

  .section-intro > p,
  .faq-heading > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .service-grid,
  html[data-design="night"] .service-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .service-content {
    padding: 23px;
  }

  .service-index {
    top: 24px;
    right: 23px;
  }

  .service-card h3 {
    font-size: 29px;
  }

  .scope-note {
    grid-template-columns: auto 1fr;
    padding: 20px 0 0;
  }

  .scope-note a {
    grid-column: 2;
    justify-self: start;
  }

  .owner-grid {
    gap: 54px;
  }

  .owner-image-frame {
    height: 126vw;
    max-height: 620px;
    border-radius: 14px;
  }

  .owner-media figcaption {
    right: -4px;
    bottom: 16px;
    min-width: 230px;
  }

  .owner-lead {
    font-size: 17px;
  }

  .owner-points article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .process-list li {
    padding: 0 0 26px;
  }

  .tax-rules {
    grid-template-columns: minmax(0, 1fr);
  }

  .tax-rules article,
  .tax-rules article:first-child,
  .tax-rules article:last-child {
    padding: 26px 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
  }

  .tax-rules article:last-child {
    border-bottom: 0;
  }

  .tax-rules h3 {
    margin-top: 20px;
  }

  .footer-logo {
    width: 132px;
  }

  .faq-grid {
    gap: 34px;
  }

  .faq-list summary {
    min-height: 80px;
    font-size: 18px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .contact-shell {
    gap: 42px;
  }

  .contact-cards,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .field-wide {
    grid-column: auto;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .form-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .footer-main {
    padding-top: 60px;
  }

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    grid-template-columns: minmax(0, 1fr);
    gap: 13px;
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .to-top {
    justify-self: start;
  }

  .preview-switcher {
    position: static;
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: #081712;
  }

  .preview-switcher summary {
    justify-content: center;
  }

  .preview-switcher details > div {
    position: static;
    justify-content: center;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0;
    box-shadow: none;
  }

  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 44;
    display: grid;
    min-height: calc(64px + env(safe-area-inset-bottom));
    grid-template-columns: .72fr 1.28fr;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    background: rgba(8, 23, 18, .94);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
  }

  .mobile-contact a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 750;
  }

  .mobile-contact a:first-child {
    border: 1px solid rgba(255, 255, 255, .2);
  }

  .mobile-contact a:last-child {
    color: #102936;
    background: var(--accent);
  }

  .mobile-contact svg {
    width: 17px;
    height: 17px;
  }

  html[data-design="night"] .hero-shell {
    min-height: 850px;
    padding: 30px 22px;
  }

  html[data-design="night"] .hero-copy {
    padding-top: 210px;
  }

  html[data-design="night"] .hero h1 {
    font-size: clamp(40px, 11.3vw, 50px);
    line-height: .98;
  }

  html[data-design="night"] .hero h1 wbr:last-of-type {
    display: none;
  }

  html[data-design="night"] .service-card,
  html[data-design="night"] .service-featured,
  html[data-design="night"] .service-wide {
    min-height: 490px;
  }

  html[data-design="night"] .service-content {
    padding: 25px;
  }

  html[data-design="night"] .process-list li {
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 26px 0;
  }

  html[data-design="night"] .process-line {
    display: none;
  }

  html[data-design="night"] .process-number {
    font-size: 30px;
  }
}

@media (max-height: 620px) and (max-width: 680px) {
  .mobile-contact {
    position: static;
  }

  body {
    padding-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html.reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Legacy-inspirierte Standardrichtung: Bild, Aussage und Anfrage stehen vor Dekoration. */
html[data-design="warm"] .hero {
  padding: 0;
  background: #0c2a3d;
}

html[data-design="warm"] .hero-shell {
  width: 100%;
  min-height: min(86svh, 860px);
  display: block;
  padding: clamp(76px, 8vw, 116px) 0 34px;
  border: 0;
  border-radius: 0;
  background: #0c2a3d;
  box-shadow: none;
}

html[data-design="warm"] .hero-shell::before {
  display: none;
}

html[data-design="warm"] .hero-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 22, 33, .94) 0%, rgba(5, 22, 33, .83) 45%, rgba(5, 22, 33, .26) 76%, rgba(5, 22, 33, .12) 100%);
  content: "";
  pointer-events: none;
}

html[data-design="warm"] .hero-copy {
  width: min(980px, calc(100% - 48px));
  margin-inline: auto;
  color: var(--white);
}

html[data-design="warm"] .hero .eyebrow {
  color: rgba(255, 255, 255, .76);
}

html[data-design="warm"] .hero .eyebrow span {
  color: var(--accent);
}

html[data-design="warm"] .hero h1 {
  max-width: 940px;
  color: var(--white);
  font-size: clamp(44px, 4.5vw, 64px);
  letter-spacing: -.04em;
  line-height: 1.02;
  overflow-wrap: anywhere;
  hyphens: auto;
}

html[data-design="warm"] .hero-lead {
  max-width: 740px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.38vw, 20px);
}

html[data-design="warm"] .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

html[data-design="warm"] .hero-image-frame {
  height: 100%;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}

html[data-design="warm"] .hero-image-frame::after {
  background: linear-gradient(0deg, rgba(5, 22, 33, .32), transparent 52%);
}

html[data-design="warm"] .hero-image-frame img {
  object-position: 50% 48%;
}

@media (min-width: 981px) {
  html[data-design="warm"] .hero-copy {
    width: min(1280px, calc(100% - 96px));
  }

  html[data-design="warm"] .hero h1 {
    max-width: min(860px, 58vw);
  }

  html[data-design="warm"] .hero-lead {
    max-width: min(740px, 54vw);
  }

  html[data-design="warm"] .hero-image-frame img,
  html[data-design="night"] .hero-image-frame img {
    transform: scale(1.015);
    transform-origin: center center;
  }

  html[data-design="warm"] .hero-media:hover .hero-image-frame img,
  html[data-design="night"] .hero-media:hover .hero-image-frame img {
    transform: scale(1.03);
  }
}

html[data-design="warm"] .hero-points {
  max-width: 920px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  border: 0;
}

html[data-design="warm"] .hero-points li,
html[data-design="warm"] .hero-points li:first-child,
html[data-design="warm"] .hero-points li:last-child {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 7px;
  background: rgba(8, 27, 39, .4);
  backdrop-filter: blur(6px);
}

html[data-design="warm"] .hero-points > li > span {
  color: var(--accent);
}

html[data-design="warm"] .hero-points small {
  color: rgba(255, 255, 255, .65);
}

@media (hover: hover) and (pointer: fine) {
  html[data-design="warm"] .hero-points li {
    transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  }

  html[data-design="warm"] .hero-points li:hover {
    z-index: 1;
    border-color: rgba(231, 190, 92, .9);
    background: rgba(7, 27, 40, .68);
    box-shadow: 0 14px 28px rgba(3, 17, 28, .24);
    transform: translateY(-5px);
  }

  html[data-design="warm"] .hero-points li:hover small {
    color: rgba(255, 255, 255, .86);
  }
}

html[data-design="warm"] .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}

html[data-design="warm"] .button-ghost:hover {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .16);
}

html[data-design="warm"] .hero-stamp {
  display: none;
}

html[data-design="warm"] .services {
  background: #f4f7f9;
}

html[data-design="warm"] .section-intro {
  gap: clamp(28px, 5vw, 74px);
  margin-bottom: 44px;
}

html[data-design="warm"] .section-intro h2 {
  max-width: 680px;
  font-size: clamp(40px, 4vw, 58px);
}

html[data-design="warm"] .section-intro > p {
  max-width: 520px;
  font-size: 17px;
}

html[data-design="warm"] .service-grid {
  gap: 20px;
}

html[data-design="warm"] .service-card {
  border-radius: 7px;
  box-shadow: none;
}

html[data-design="warm"] .service-card:hover {
  box-shadow: 0 16px 34px rgba(22, 59, 83, .12);
}

html[data-design="warm"] .service-image-wrap,
html[data-design="warm"] .service-priority .service-image-wrap {
  height: 230px;
}

/* Individuelle Bildschwerpunkte: Werkzeug und Gesichter bleiben im flachen Kartenformat sichtbar. */
html[data-design="warm"] .service-card--repair .service-image-wrap img {
  object-position: 50% 50%;
}

html[data-design="warm"] .service-card--renovation .service-image-wrap img {
  object-position: 50% 38%;
}

html[data-design="warm"] .service-card--caretaking .service-image-wrap img {
  object-position: 50% 42%;
}

html[data-design="warm"] .service-card--garden .service-image-wrap img {
  object-position: 50% 32%;
}

html[data-design="warm"] .service-card--cleaning .service-image-wrap img {
  object-position: 58% 38%;
}

html[data-design="warm"] .service-priority h3 {
  font-size: clamp(27px, 2.3vw, 35px);
}

html[data-design="warm"] .service-card h3 {
  font-size: clamp(22px, 1.75vw, 27px);
}

html[data-design="warm"] .service-priority .service-content {
  padding: 26px;
}

html[data-design="warm"] .service-card p {
  margin-top: 12px;
  font-size: 15px;
}

html[data-design="night"] .service-details {
  border-top-color: rgba(255, 255, 255, .18);
}

html[data-design="night"] .service-details summary {
  color: var(--accent);
}

html[data-design="night"] .service-details ul {
  color: rgba(255, 255, 255, .72);
}

html[data-design="warm"] .renovation-showcase {
  padding-block: 74px;
}

@media (max-width: 980px) {
  html[data-design="warm"] .hero-shell {
    min-height: 720px;
    padding: 54px 0 30px;
  }

  html[data-design="warm"] .hero-shell::after {
    background: linear-gradient(180deg, rgba(5, 22, 33, .34) 0%, rgba(5, 22, 33, .8) 48%, rgba(5, 22, 33, .94) 100%);
  }

  html[data-design="warm"] .hero-copy {
    width: min(760px, calc(100% - 48px));
    padding-top: 235px;
  }

  html[data-design="warm"] .hero-image-frame img {
    object-position: 42% center;
  }
}

@media (max-width: 680px) {
  html[data-design="warm"] .hero-shell,
  html[data-design="night"] .hero-shell {
    --mobile-hero-image-height: clamp(360px, 100vw, 500px);
    min-height: 0;
    display: block;
    padding: calc(var(--mobile-hero-image-height) - 28px) 0 30px;
    border-radius: 0;
  }

  html[data-design="warm"] .hero-media,
  html[data-design="night"] .hero-media {
    inset: 0 0 auto;
    height: var(--mobile-hero-image-height);
  }

  html[data-design="warm"] .hero-shell::after {
    background: linear-gradient(180deg, rgba(5, 22, 33, .04) 0%, rgba(5, 22, 33, .12) 55%, rgba(5, 22, 33, .96) 94%, #0c2a3d 100%);
  }

  html[data-design="night"] .hero-shell::after {
    background: linear-gradient(180deg, rgba(3, 14, 11, .04) 0%, rgba(3, 14, 11, .14) 55%, rgba(3, 14, 11, .97) 94%, #071712 100%);
  }

  html[data-design="warm"] .hero-copy,
  html[data-design="night"] .hero-copy {
    width: calc(100% - 44px);
    margin-inline: auto;
    padding-top: 0;
  }

  html[data-design="warm"] .hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 9.3vw, 36px);
    letter-spacing: -.045em;
    line-height: 1.04;
  }

  html[data-design="warm"] .hero-lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  html[data-design="warm"] .hero-points {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 24px;
  }

  html[data-design="warm"] .hero-points li,
  html[data-design="warm"] .hero-points li:first-child,
  html[data-design="warm"] .hero-points li:last-child {
    padding: 11px 13px;
  }

  html[data-design="warm"] .hero-image-frame img,
  html[data-design="night"] .hero-image-frame img {
    object-position: 50% center;
    transform: none;
  }

  html[data-design="warm"] .service-image-wrap,
  html[data-design="warm"] .service-priority .service-image-wrap {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}
