:root {
  --forest-950: #10241f;
  --forest-900: #18332d;
  --forest-800: #24483e;
  --forest-700: #2f5b4d;
  --coral-600: #b54f3b;
  --coral-500: #d26b51;
  --gold-500: #c98d37;
  --gold-100: #f3e5c9;
  --sky-100: #dfeef0;
  --sky-50: #edf6f6;
  --paper: #f8f6f0;
  --white: #ffffff;
  --ink: #17201e;
  --muted: #596460;
  --line: rgba(23, 32, 30, 0.16);
  --line-light: rgba(255, 255, 255, 0.24);
  --shadow-sm: 0 10px 28px rgba(16, 36, 31, 0.09);
  --shadow-lg: 0 28px 72px rgba(16, 36, 31, 0.2);
  --radius: 6px;
  --container: 1240px;
  --header-height: 76px;
  --section-space: 112px;
  --ease: 220ms ease;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  transform: translateY(-180%);
  padding: 11px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest-950);
  font-weight: 700;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: var(--header-height);
  align-items: center;
  gap: 32px;
  padding: 10px max(22px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(23, 32, 30, 0.1);
  background: rgba(248, 246, 240, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-950);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

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

.primary-nav a {
  position: relative;
  color: #39433f;
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
}

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

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

.header-share {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--forest-900);
  border-radius: var(--radius);
  color: var(--forest-900);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
  transition: color var(--ease), background var(--ease);
}

.header-share:hover {
  color: var(--white);
  background: var(--forest-900);
}

.header-share svg {
  width: 17px;
  height: 17px;
}

.nav-toggle.icon-button {
  display: none;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.fallback-hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.fallback-hero > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fallback-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 36, 31, 0.88), rgba(16, 36, 31, 0.15));
  content: "";
}

.fallback-hero > div {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: auto;
  padding: 160px 24px 80px;
}

.fallback-hero h1 {
  font: 700 4rem/1 Georgia, serif;
}

.fallback-gallery {
  max-width: var(--container);
  margin: auto;
  padding: 60px 24px;
}

.fallback-gallery img {
  margin: 20px 0;
}

.hero {
  position: relative;
  min-height: calc(88svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  animation: hero-reveal 900ms ease both;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(11, 26, 22, 0.92) 0%, rgba(11, 26, 22, 0.7) 42%, rgba(11, 26, 22, 0.12) 72%), linear-gradient(0deg, rgba(11, 26, 22, 0.4), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(var(--container), calc(100% - 44px));
  min-height: calc(88svh - var(--header-height));
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 64px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-600);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ffd3c7;
}

.hero-highlight {
  margin: 0 0 14px;
  color: #ffd3c7;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.04;
}

h1 {
  max-width: 800px;
  font-size: 5.4rem;
}

h2 {
  max-width: 820px;
  font-size: 3.65rem;
}

h3 {
  font-size: 2.2rem;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.65;
}

.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.button.primary {
  color: var(--white);
  background: var(--coral-600);
}

.button.primary:hover {
  background: #974231;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(16, 36, 31, 0.18);
}

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

.button-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.hero-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  right: max(22px, calc((100vw - var(--container)) / 2));
  bottom: 26px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.fact-band {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: var(--forest-900);
}

.fact-band-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(125px, 1fr)) minmax(150px, 0.9fr);
  width: min(var(--container), calc(100% - 44px));
  min-height: 126px;
  align-items: stretch;
  margin: 0 auto;
}

.fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-right: 1px solid var(--line-light);
}

.fact:first-child {
  padding-left: 0;
}

.fact span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fact strong {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.fact-band-inner > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 22px;
  color: #ffd3c7;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.fact-band-inner > a svg {
  width: 18px;
}

.section {
  padding: var(--section-space) 22px;
}

.section-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.positioning {
  background: var(--sky-50);
}

.lifestyle-flyer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
  margin-top: clamp(42px, 6vw, 76px);
}

.lifestyle-flyer-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 0.42fr);
  min-height: 520px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(16, 47, 34, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(20, 35, 30, 0.12);
}

.lifestyle-flyer-card:nth-child(even) {
  margin-top: 44px;
}

.lifestyle-flyer-card figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  background: var(--pine-900);
}

.lifestyle-flyer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lifestyle-flyer-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(10, 32, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 0.75rem;
  line-height: 1.45;
}

.lifestyle-flyer-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  background: linear-gradient(180deg, #ffffff 0%, #f2ead8 100%);
  border-left: 4px solid var(--gold-500);
}

.lifestyle-flyer-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  line-height: 0.98;
}

.lifestyle-flyer-copy p:not(.eyebrow) {
  margin: 0;
  color: #44504b;
}

.section-disclosure {
  max-width: 840px;
  margin: 24px auto 0;
  color: #58645f;
  font-size: 0.88rem;
  text-align: center;
}

.editorial-grid,
.split-heading,
.due-grid,
.faq-grid,
.possibility-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 84px;
  align-items: start;
}

.editorial-copy .lead {
  margin-top: 0;
}

.proof-list,
.checklist {
  display: grid;
  gap: 13px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li,
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #39433f;
}

.proof-list svg,
.checklist svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 3px;
  color: var(--coral-600);
}

.story {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: center;
}

.story-copy {
  max-width: 520px;
}

.story-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--forest-800);
  background: transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.text-link svg {
  width: 18px;
  transition: transform var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.story-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  min-height: 610px;
}

figure {
  margin: 0;
}

.story-image {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sky-100);
}

.story-image.large {
  grid-row: 1 / 3;
}

.story-image img,
.highlight figure img,
.fit-panel figure img,
.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(16, 36, 31, 0.8);
  font-size: 0.7rem;
  font-weight: 750;
}

.gallery-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  align-items: end;
}

.split-heading .lead {
  margin: 0;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.gallery-toolbar > p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button,
.fit-tabs button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #47524e;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.filter-button:hover,
.filter-button[aria-pressed="true"],
.fit-tabs button:hover,
.fit-tabs button[aria-selected="true"] {
  border-color: var(--forest-900);
  color: var(--white);
  background: var(--forest-900);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--sky-100);
  cursor: pointer;
}

.gallery-card:nth-child(7n + 2) {
  grid-column: span 2;
}

.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 572px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-card:hover .gallery-image,
.gallery-card:focus-visible .gallery-image {
  transform: scale(1.025);
}

.gallery-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(8, 20, 17, 0.82));
  content: "";
  pointer-events: none;
}

.gallery-meta {
  position: absolute;
  right: 16px;
  bottom: 15px;
  left: 16px;
  z-index: 1;
  display: grid;
  color: var(--white);
  text-align: left;
}

.gallery-meta > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.gallery-meta small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
}

.concept-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--coral-600);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.highlights {
  background: var(--forest-950);
  color: var(--white);
}

.highlights .eyebrow {
  color: #ffd3c7;
}

.highlight-list {
  display: grid;
  gap: 116px;
}

.highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 84px;
  align-items: center;
}

.highlight.reverse figure {
  grid-column: 2;
}

.highlight.reverse .highlight-copy {
  grid-column: 1;
  grid-row: 1;
}

.highlight figure {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-800);
}

.highlight-copy {
  position: relative;
  padding: 20px 0;
}

.section-number {
  display: block;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  line-height: 1;
}

.highlight-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.highlight-copy .text-link {
  color: #ffd3c7;
}

.buyer-fit {
  background: var(--sky-50);
}

.fit-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

.fit-copy p:not(.eyebrow, .concept-notice) {
  margin: 22px 0 0;
  color: var(--muted);
}

.fit-panel figure {
  position: relative;
  min-height: 420px;
}

.concept-notice {
  margin: 22px 0 0;
  padding: 13px;
  border-left: 3px solid var(--coral-600);
  color: #6f3024;
  background: #fff0eb;
  font-size: 0.8rem;
}

.possibilities {
  color: var(--white);
  background: var(--forest-800);
}

.possibility-heading {
  align-items: end;
  margin-bottom: 54px;
}

.possibility-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.comparison {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--forest-950);
}

.comparison-images {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #263834;
}

.comparison-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-current,
.comparison-concept {
  position: absolute;
  inset: 0;
}

.comparison-concept {
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}

.comparison-concept span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: var(--coral-600);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 2px;
  transform: translateX(-1px);
  background: var(--white);
  pointer-events: none;
}

.comparison-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--forest-900);
  content: "↔";
}

.comparison-controls {
  padding: 16px;
}

.comparison-controls label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 750;
}

.comparison-controls input {
  width: 100%;
  accent-color: var(--coral-500);
  cursor: ew-resize;
}

.comparison-controls > div {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.concept-filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.concept-filter {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.concept-filter[aria-pressed="true"] {
  border-color: var(--coral-400);
  color: var(--forest-950);
  background: var(--coral-400);
}

.comparison-instruction {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

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

.comparison-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--forest-950);
}

.comparison-card-header {
  display: flex;
  min-height: 100px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 14px;
}

.comparison-card-header h3 {
  margin: 4px 0 3px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.42rem;
  line-height: 1.08;
}

.comparison-card-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.comparison-card-header .comparison-area {
  color: var(--coral-300);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-open {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}

.comparison-open .button-icon {
  width: 15px;
  height: 15px;
}

.comparison-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #263834;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}

.comparison-image,
.comparison-overlay {
  position: absolute;
  inset: 0;
}

.comparison-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.comparison-overlay {
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  pointer-events: none;
}

.comparison-label {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  color: var(--white);
  background: rgba(18, 42, 35, 0.88);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-label-concept {
  left: 12px;
  background: var(--coral-600);
}

.comparison-label-current {
  right: 12px;
}

.comparison-divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 2px;
  transform: translateX(-1px);
  background: var(--white);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: var(--reveal);
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  cursor: ew-resize;
}

.comparison-handle span {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--forest-900);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.comparison-handle span::before,
.comparison-handle span::after {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  content: "";
}

.comparison-handle span::before {
  left: 5px;
  transform: translateY(-50%) rotate(-135deg);
}

.comparison-handle span::after {
  right: 5px;
  transform: translateY(-50%) rotate(45deg);
}

.comparison-handle:focus-visible,
.comparison-open:focus-visible,
.concept-filter:focus-visible {
  outline: 3px solid var(--coral-300);
  outline-offset: 3px;
}

.comparison-meta {
  display: grid;
  gap: 9px;
  padding: 15px 18px 18px;
}

.comparison-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1.55;
}

.comparison-meta .comparison-disclosure {
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.comparison-dialog {
  width: min(1120px, calc(100vw - 30px));
  max-width: none;
  max-height: calc(100dvh - 30px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest-950);
}

.comparison-dialog::backdrop {
  background: rgba(5, 18, 14, 0.84);
}

.comparison-dialog-bar {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.comparison-dialog-bar strong {
  display: block;
  margin-top: 2px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.16rem;
}

.comparison-dialog-stage .comparison-card {
  border: 0;
  border-radius: 0;
}

.comparison-dialog-stage .comparison-card-header {
  min-height: auto;
}

.due-diligence {
  background: var(--paper);
}

.due-grid > div:last-child {
  padding: 34px;
  border-top: 4px solid var(--coral-600);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.due-grid h3 {
  font-size: 1.55rem;
}

.checklist {
  margin-top: 26px;
}

.guides {
  background: var(--sky-50);
}

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

.guide-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.guide-card:hover,
.guide-card:focus-visible {
  border-color: var(--forest-700);
  background: #fcfffe;
  box-shadow: var(--shadow-sm);
}

.guide-number {
  margin-bottom: 52px;
  color: #9ba9a4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.guide-card h3 {
  font-size: 1.55rem;
  line-height: 1.16;
}

.guide-card p {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--forest-800);
  font-size: 0.8rem;
  font-weight: 800;
}

.guide-link svg {
  width: 17px;
  transition: transform var(--ease);
}

.guide-card:hover .guide-link svg {
  transform: translateX(4px);
}

.faq {
  background: var(--white);
}

.faq-intro {
  min-width: 0;
}

.faq-map-card {
  margin-top: clamp(32px, 5vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(20, 35, 30, 0.12);
}

.faq-map-frame {
  min-height: 360px;
  background: var(--sky-100);
}

.faq-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.faq-map-copy {
  padding: clamp(22px, 3vw, 30px);
}

.faq-map-copy h3 {
  margin: 4px 0 8px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.faq-map-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.faq-map-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.faq-map-actions .button {
  min-height: 44px;
}

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

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

.faq-item summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background: var(--forest-900);
  content: "";
}

.faq-plus::after {
  transform: rotate(90deg);
  transition: transform var(--ease);
}

.faq-item[open] .faq-plus::after {
  transform: rotate(0);
}

.faq-item p {
  margin: 0;
  padding: 0 36px 24px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.final-media,
.final-shade {
  position: absolute;
  inset: 0;
}

.final-shade {
  background: linear-gradient(90deg, rgba(10, 24, 20, 0.91), rgba(10, 24, 20, 0.42) 65%, rgba(10, 24, 20, 0.14));
}

.final-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(var(--container), calc(100% - 44px));
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 80px 0;
}

.final-content > p:not(.eyebrow, .contact-status) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.contact-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.contact-status svg {
  width: 17px;
}

.contact-funnel-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  max-width: 1040px;
  align-items: start;
  margin-top: 38px;
}

.agent-panel,
.lead-panel {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 16, 13, 0.78);
  backdrop-filter: blur(12px);
}

.agent-panel {
  padding: 28px;
}

.agent-panel h3 {
  font-size: 1.7rem;
}

.agent-brokerage {
  margin: 7px 0 0;
  color: #ffd3c7;
  font-weight: 750;
}

.agent-panel address {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.agent-links {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.agent-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.agent-links svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.agent-license {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.lead-panel {
  padding: 28px;
}

.showing-form {
  display: grid;
  max-width: none;
  gap: 16px;
  margin: 0;
}

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

.showing-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 750;
}

.showing-form input,
.showing-form select,
.showing-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7, 16, 13, 0.58);
}

.showing-form select option {
  color: var(--ink);
  background: var(--white);
}

.showing-form textarea {
  resize: vertical;
}

.showing-form .button {
  width: fit-content;
}

.showing-form fieldset {
  display: grid;
  gap: 16px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.showing-form legend {
  width: 100%;
  margin-bottom: 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.15;
}

.form-step > p {
  margin: -4px 0 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.funnel-progress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.funnel-progress span {
  padding: 9px 11px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 750;
}

.funnel-progress span.active {
  border-color: var(--coral-500);
  color: var(--white);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-privacy {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.55;
}

.showing-form button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.mobile-contact-bar {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  padding: 56px max(22px, calc((100vw - var(--container)) / 2));
  color: rgba(255, 255, 255, 0.65);
  background: #091712;
}

.footer-brand {
  display: grid;
  align-content: start;
}

.footer-brand strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.footer-brand span {
  margin-top: 5px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.footer-copy p {
  margin: 0 0 12px;
  font-size: 0.78rem;
}

.footer-agent {
  display: grid;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-agent strong {
  color: var(--white);
  font-size: 0.88rem;
}

.footer-agent span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.lightbox {
  width: min(1180px, calc(100vw - 28px));
  max-width: none;
  max-height: calc(100svh - 28px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: #07100d;
  box-shadow: var(--shadow-lg);
}

.lightbox::backdrop {
  background: rgba(3, 9, 7, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox-bar,
.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
}

.lightbox-bar > div {
  display: grid;
}

.lightbox-kicker {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 750;
  text-transform: uppercase;
}

.lightbox-kicker.concept {
  color: #ffb8a8;
}

.lightbox-bar strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.lightbox-close {
  color: rgba(255, 255, 255, 0.8);
}

.lightbox-stage {
  position: relative;
  display: grid;
  min-height: 300px;
  max-height: calc(100svh - 160px);
  place-items: center;
  overflow: hidden;
  background: #020604;
}

.lightbox-stage img {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 160px);
  object-fit: contain;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(7, 16, 13, 0.7);
}

.lightbox-arrow.previous {
  left: 14px;
}

.lightbox-arrow.next {
  right: 14px;
}

.lightbox-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.lightbox-footer span {
  flex: 0 0 auto;
  font-size: 0.75rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  transform: translateY(24px);
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest-950);
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
}

.has-image-error::after {
  display: grid;
  min-height: 240px;
  place-items: center;
  padding: 20px;
  color: var(--muted);
  background: var(--sky-100);
  content: "Property image unavailable";
}

.image-fallback {
  display: grid;
  min-height: 240px;
  place-items: center;
  color: var(--muted);
  background: var(--sky-100);
}

@keyframes hero-reveal {
  from { opacity: 0.6; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  :root {
    --section-space: 88px;
  }

  .site-header {
    gap: 20px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 0.78rem;
  }

  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3.1rem;
  }

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

  .fact-band-inner > a {
    display: none;
  }

  .story-grid,
  .highlight,
  .editorial-grid,
  .split-heading,
  .due-grid,
  .faq-grid,
  .possibility-heading {
    gap: 52px;
  }

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

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

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

  .comparison:last-child {
    grid-column: 1 / 3;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
    --section-space: 72px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding: 8px 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    min-height: 48px;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

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

  .nav-toggle.icon-button {
    display: inline-grid;
    color: var(--forest-900);
  }

  .header-share span {
    display: none;
  }

  .header-share {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .hero,
  .hero-content {
    min-height: calc(82svh - var(--header-height));
  }

  .hero-content {
    justify-content: flex-end;
  }

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

  .hero-shade {
    background: linear-gradient(0deg, rgba(11, 26, 22, 0.94) 0%, rgba(11, 26, 22, 0.6) 58%, rgba(11, 26, 22, 0.12));
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  h3 {
    font-size: 1.85rem;
  }

  .hero-scroll {
    display: none;
  }

  .fact-band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .fact {
    padding: 18px;
  }

  .editorial-grid,
  .split-heading,
  .story-grid,
  .highlight,
  .due-grid,
  .faq-grid,
  .possibility-heading {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 28px;
  }

  .faq-map-frame,
  .faq-map-frame iframe {
    min-height: 320px;
  }

  .lifestyle-flyer-grid,
  .lifestyle-flyer-card {
    grid-template-columns: 1fr;
  }

  .lifestyle-flyer-card {
    min-height: 0;
  }

  .lifestyle-flyer-card:nth-child(even) {
    margin-top: 0;
  }

  .lifestyle-flyer-card figure {
    min-height: 520px;
  }

  .lifestyle-flyer-copy {
    border-top: 4px solid var(--gold-500);
    border-left: 0;
  }

  .story-copy {
    max-width: 680px;
  }

  .story-collage {
    min-height: 520px;
  }

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

  .gallery-featured {
    min-height: 460px;
  }

  .gallery-card:nth-child(7n + 2) {
    grid-column: auto;
  }

  .highlight.reverse figure,
  .highlight.reverse .highlight-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .highlight-list {
    gap: 84px;
  }

  .highlight-copy {
    order: 2;
  }

  .section-number {
    margin-bottom: 28px;
  }

  .fit-panel {
    grid-template-columns: 1fr;
  }

  .contact-funnel-grid {
    grid-template-columns: 1fr;
  }

  .fit-panel figure {
    min-height: 360px;
    order: -1;
  }

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

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

  .comparison:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --section-space: 62px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .lifestyle-flyer-card figure {
    min-height: 390px;
  }

  .lifestyle-flyer-card figcaption {
    position: static;
    border-radius: 0;
  }

  .hero,
  .hero-content {
    min-height: calc(78svh - var(--header-height));
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 50px 0 44px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

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

  .fact {
    min-width: 0;
    padding: 14px 10px;
  }

  .fact strong {
    font-size: 0.98rem;
  }

  .fact span {
    font-size: 0.62rem;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .story-collage {
    grid-template-columns: 1fr 1fr;
    min-height: 430px;
  }

  .story-image.large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-toolbar {
    display: block;
  }

  .gallery-filters {
    width: 100%;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .gallery-toolbar > p {
    margin-top: 10px;
  }

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

  .gallery-card,
  .gallery-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .highlight-list {
    gap: 64px;
  }

  .highlight {
    gap: 28px;
  }

  .section-number {
    font-size: 3.5rem;
  }

  .fit-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fit-tabs button {
    min-width: 0;
  }

  .fit-copy {
    padding: 32px 24px;
  }

  .fit-panel figure {
    min-height: 300px;
  }

  .due-grid > div:last-child {
    padding: 24px 20px;
  }

  .final-cta,
  .final-content {
    min-height: 610px;
  }

  .final-content {
    width: calc(100% - 36px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 18px;
  }

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

  .showing-form .button {
    width: 100%;
  }

  body.contact-enabled {
    padding-bottom: 64px;
  }

  .agent-panel,
  .lead-panel {
    padding: 22px 18px;
  }

  .funnel-progress {
    grid-template-columns: 1fr;
  }

  .form-actions {
    display: grid;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 55;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--forest-950);
    box-shadow: 0 -12px 32px rgba(7, 16, 13, 0.24);
  }

  .mobile-contact-bar a {
    display: grid;
    min-width: 0;
    place-items: center;
    align-content: center;
    gap: 2px;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-contact-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .lightbox {
    width: calc(100vw - 12px);
    max-height: calc(100svh - 12px);
  }

  .lightbox-stage,
  .lightbox-stage img {
    max-height: calc(100svh - 185px);
  }

  .lightbox-footer {
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .brand-copy {
    display: none;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .fit-tabs {
    grid-template-columns: 1fr;
  }
}

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

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

/* Claude intelligence modules integrated into the existing visual system. */
.difference {
  background: var(--sky-50);
}

.structured-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scrollbar-color: var(--forest-700) var(--paper);
}

.structured-table-wrap:focus-visible {
  outline-offset: 5px;
}

.structured-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.structured-table th,
.structured-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.structured-table thead th {
  color: var(--white);
  background: var(--forest-950);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.structured-table tbody th {
  width: 31%;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.88rem;
}

.structured-table td {
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.85rem;
}

.structured-table td small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.68rem;
}

.structured-table tbody tr:last-child > *,
.structured-table tfoot tr:last-child > * {
  border-bottom: 0;
}

.structured-table tfoot th,
.structured-table tfoot td {
  color: var(--forest-950);
  background: var(--gold-100);
  font-weight: 800;
}

.comparison-matrix .property-value {
  color: var(--forest-700);
  font-weight: 800;
}

.comparison-matrix .conventional-value {
  color: var(--coral-600);
}

.comparison-matrix .is-pending > * {
  color: var(--forest-950);
  background: var(--gold-100);
}

.comparison-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
  margin-top: 24px;
}

.matrix-disclosure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-left: 4px solid var(--gold-500);
  background: var(--forest-900);
  color: var(--white);
}

.matrix-disclosure h3 {
  margin: 8px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.matrix-disclosure p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.difference-card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
}

.difference-card h3,
.outdoor-proof-card h3,
.location-card h3,
.calculator-card h3 {
  margin: 8px 0 10px;
  font-size: 1.2rem;
}

.difference-card p:last-child,
.outdoor-proof-card p,
.location-card p {
  margin: 0;
  color: var(--muted);
}

.approach-visual {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  background: var(--forest-950);
}

.approach-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 22px;
  color: var(--white);
  background: rgba(16, 36, 31, 0.9);
}

.approach-visual figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.outdoor-proof {
  background: var(--white);
}

.measurement-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border-left: 4px solid var(--coral-600);
  background: var(--paper);
}

.measurement-note span {
  max-width: 670px;
  color: var(--muted);
}

.outdoor-breakdown {
  margin: 0 0 34px;
}

.outdoor-breakdown h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

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

.outdoor-ledger {
  margin-bottom: 28px;
}

.outdoor-proof-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.outdoor-proof-card button {
  display: block;
  width: 100%;
  height: 220px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--forest-950);
  cursor: pointer;
}

.outdoor-proof-card button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}

.outdoor-proof-card button:hover img {
  transform: scale(1.025);
}

.outdoor-proof-card > div {
  padding: 22px;
}

.owner-perspective {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin: 28px 0 0;
  padding: 30px;
  border-left: 4px solid var(--coral-600);
  color: var(--white);
  background: var(--forest-900);
}

.owner-perspective p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.35;
}

.owner-perspective cite {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-style: normal;
}

.yard-potential {
  color: var(--white);
  background: var(--forest-950);
}

.yard-potential-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 560px;
  align-items: center;
  gap: 64px;
}

.yard-potential figure {
  position: relative;
  height: 100%;
  min-height: 520px;
  margin: 0;
}

.yard-potential figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yard-potential figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 6px 9px;
  background: rgba(16, 36, 31, 0.85);
  font-size: 0.72rem;
}

.yard-potential .lead {
  color: rgba(255, 255, 255, 0.76);
}

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

.ceiling-potential {
  background: var(--paper);
}

.ceiling-potential-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  min-height: 540px;
  align-items: center;
  gap: 64px;
}

.ceiling-potential-grid figure {
  position: relative;
  height: 100%;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: var(--forest-950);
}

.ceiling-potential-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceiling-potential-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(16, 36, 31, 0.86);
  font-size: 0.72rem;
}

.verification-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold-500);
  color: var(--muted);
  background: var(--white);
}

.calculators {
  background: var(--sky-50);
}

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

.calculator-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.savings-disclosure {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.savings-disclosure summary {
  min-height: 48px;
  padding: 14px 18px;
  color: var(--forest-950);
  font-weight: 800;
  cursor: pointer;
}

.savings-disclosure p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.calculator-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cost-savings-card {
  grid-column: 1 / -1;
}

.calculator-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.calculator-heading > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--white);
  background: var(--forest-900);
  font-family: Consolas, "Courier New", monospace;
}

.calculator-heading h3,
.calculator-heading p {
  margin: 0;
}

.calculator-heading p {
  color: var(--muted);
}

.calculator-fields {
  display: grid;
  gap: 20px;
}

.calculator-fields label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 700;
}

.calculator-fields input,
.calculator-fields select {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 44px;
}

.calculator-fields input:disabled,
.calculator-fields select:disabled {
  opacity: 0.55;
}

.calculator-fields output {
  font-family: Consolas, "Courier New", monospace;
}

.calculator-result {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
}

.calculator-result > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  background: var(--paper);
}

.calculator-result .primary-result {
  color: var(--white);
  background: var(--forest-900);
}

.calculator-locked {
  display: flex;
  min-height: 132px;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.calculation-paused {
  min-height: 210px;
  margin-top: 0;
  border: 1px solid rgba(201, 141, 55, 0.55);
  border-left: 4px solid var(--gold-500);
  background: var(--gold-100);
}

.calculation-paused strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.calculation-paused p {
  max-width: 54ch;
  color: var(--ink);
  line-height: 1.65;
}

.cost-table td:last-child {
  min-width: 220px;
  color: var(--forest-700);
  font-weight: 800;
}

.pending-value {
  display: block;
  color: var(--coral-600);
}

.cost-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.cost-summary-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
  background: var(--paper);
}

.cost-summary-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.cost-summary-grid strong {
  color: var(--forest-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.15;
}

.cost-summary-grid .savings-state {
  color: var(--white);
  background: var(--forest-900);
}

.cost-summary-grid .savings-state strong {
  color: var(--gold-100);
}

.cost-summary-grid .savings-state span {
  color: rgba(255, 255, 255, 0.72);
}

.calculator-locked svg {
  width: 22px;
  flex: 0 0 22px;
}

.calculator-locked p,
.calculator-disclaimer {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.calculator-disclaimer {
  margin-top: 22px;
}

.planning-tools {
  background: var(--white);
}

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

.planning-tool-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.area-planner {
  grid-column: 1 / -1;
}

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

.planning-fields label {
  grid-template-columns: 1fr;
}

.budget-result {
  margin-top: 22px;
}

.research-questions {
  display: grid;
  gap: 18px;
}

.research-question {
  margin: 0;
  padding: 0;
  border: 0;
}

.research-question legend,
.area-select-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.research-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.research-options label {
  position: relative;
}

.research-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.research-options span {
  display: block;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.research-options input:checked + span {
  border-color: var(--forest-900);
  color: var(--white);
  background: var(--forest-900);
}

.research-options input:focus-visible + span {
  outline: 3px solid rgba(201, 141, 55, 0.55);
  outline-offset: 2px;
}

.research-result,
.area-route-result {
  min-height: 132px;
  margin-top: 24px;
  padding: 20px;
  border-left: 3px solid var(--gold-500);
  background: var(--white);
}

.research-result > :first-child,
.area-route-result > :first-child {
  margin-top: 0;
}

.research-result > :last-child,
.area-route-result > :last-child {
  margin-bottom: 0;
}

.research-result h4,
.area-route-result h4 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.research-result p,
.area-route-result p {
  color: var(--muted);
}

.area-select-label select {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
}

.area-route-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.area-route-actions .button {
  min-height: 42px;
}

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

.location-table-grid {
  display: grid;
  min-width: 0;
  gap: 28px;
  margin-top: 48px;
}

.location-table-block {
  min-width: 0;
}

.location-table-block h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.location-table {
  min-width: 940px;
}

.location-table th:first-child {
  width: 42%;
}

.location-destination {
  display: grid;
  justify-items: start;
  gap: 7px;
}

.map-action-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--forest-700);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration-color: var(--gold-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.map-action-link:hover {
  color: var(--coral-600);
}

.map-action-link svg {
  width: 16px;
  height: 16px;
  margin-left: 7px;
}

.pricing {
  background: var(--sky-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: start;
}

.pricing-state {
  display: grid;
  gap: 8px;
  margin: 30px 0 22px;
  padding: 22px;
  border-left: 4px solid var(--gold-500);
  background: var(--white);
}

.pricing-state span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-state strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.pricing-features {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.pricing-features h3 {
  font-size: 1.65rem;
}

.pricing-features > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.source-note {
  max-width: 920px;
  margin: 20px 0 0;
  color: var(--muted);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.76rem;
}

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

.location-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 150px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.location-card:focus-visible {
  outline: 3px solid rgba(31, 74, 61, 0.32);
  outline-offset: 3px;
}

.location-card figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--sky-100);
}

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

.location-card > div {
  padding: 20px;
}

.location-map-dialog {
  width: min(940px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.location-map-dialog::backdrop {
  background: rgba(7, 17, 14, 0.72);
  backdrop-filter: blur(8px);
}

.location-map-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(320px, 58svh);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  animation: location-map-enter 220ms ease both;
}

.location-map-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest-900);
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.location-map-close:focus-visible {
  outline: 3px solid rgba(31, 74, 61, 0.32);
  outline-offset: 3px;
}

.location-map-copy {
  display: grid;
  gap: 10px;
  padding: 28px 78px 22px 28px;
}

.location-map-copy h3,
.location-map-copy p {
  margin: 0;
}

.location-map-copy h3 {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}

.location-map-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.92rem;
}

.location-map-frame {
  min-height: 320px;
  background: var(--sky-100);
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

@keyframes location-map-enter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.distance-key {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.distance-key span {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.78rem;
}

.distance-key strong {
  color: var(--ink);
}

.contact-funnel-grid.contact-direct {
  grid-template-columns: minmax(280px, 520px);
}

@media (max-width: 1050px) {
  .difference-layout,
  .comparison-proof,
  .yard-potential-grid,
  .ceiling-potential-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .approach-visual,
  .yard-potential figure,
  .ceiling-potential-grid figure {
    min-height: 420px;
  }

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

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

@media (max-width: 720px) {
  .difference-grid,
  .outdoor-proof-grid,
  .calculator-grid,
  .planning-tools-grid,
  .location-grid,
  .distance-key {
    grid-template-columns: 1fr;
  }

  .difference-card {
    min-height: auto;
    padding: 22px;
  }

  .approach-visual,
  .yard-potential figure {
    min-height: 320px;
  }

  .measurement-note,
  .owner-perspective {
    display: grid;
  }

  .outdoor-proof-card button {
    height: 250px;
  }

  .calculator-card {
    padding: 22px 18px;
  }

  .planning-tool-card {
    padding: 22px 18px;
  }

  .planning-fields {
    grid-template-columns: 1fr;
  }

  .area-planner {
    grid-column: auto;
  }

  .structured-table th,
  .structured-table td {
    padding: 13px 14px;
  }

  .restoration-table {
    min-width: 0;
  }

  .restoration-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .restoration-table,
  .restoration-table tbody,
  .restoration-table tr,
  .restoration-table th,
  .restoration-table td {
    display: block;
    width: 100%;
  }

  .restoration-table tr {
    border-bottom: 1px solid var(--line);
  }

  .restoration-table tbody th {
    border-bottom: 0;
  }

  .restoration-table td {
    padding-top: 8px;
    overflow-wrap: anywhere;
  }

  .cost-summary-grid {
    grid-template-columns: 1fr;
  }

  .cost-summary-grid > div {
    min-height: 120px;
  }

  .location-card {
    grid-template-columns: 96px 1fr;
  }

  .location-map-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100svh - 12px);
  }

  .location-map-panel {
    grid-template-rows: auto minmax(300px, 62svh);
  }

  .location-map-copy {
    padding: 24px 66px 18px 20px;
  }

  .location-map-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .comparison-card-header {
    min-height: auto;
    gap: 12px;
    padding: 15px 14px 12px;
  }

  .comparison-card-header h3 {
    font-size: 1.2rem;
  }

  .comparison-open span {
    display: none;
  }

  .comparison-open {
    min-width: 38px;
    justify-content: center;
    padding: 7px;
  }

  .comparison-meta {
    padding: 13px 14px 16px;
  }

  .comparison-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100svh - 12px);
  }

  .comparison-dialog-bar {
    min-height: 56px;
    padding: 9px 12px;
  }

  .comparison-dialog-stage .comparison-card-header {
    padding: 14px 12px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-card,
  .comparison-overlay,
  .comparison-divider,
  .comparison-handle,
  .location-map-panel {
    transition: none !important;
    animation: none !important;
  }
}
