:root {
    --kw-body-font: "Roboto", Arial, sans-serif;
    --kw-display-font: "Nimbus Sans", "Nimbus Sans L", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
    --ink: #000000;
    --forest: #666666;
    --forest-deep: #202020;
    --sage: #999999;
    --sand: #f7f7f7;
    --stone: #cccccc;
    --terracotta: #b40101;
    --terracotta-deep: #8f0000;
    --cream: #ffffff;
    --white: #ffffff;
    --line: #cccccc;
    --surface-soft: #f7f7f7;
    --surface-muted: #f2f2f2;
    --shadow: 0 16px 32px -28px rgba(0, 0, 0, 0.16);
    --shadow-soft: 0 12px 24px -24px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--kw-body-font);
    color: var(--ink);
    background: #ffffff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(180, 1, 1, 0.06), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    pointer-events: none;
    opacity: 1;
}

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

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

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

.page-shell {
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 auto;
    padding: 20px 0 40px;
    position: relative;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 22px;
    border: 1px solid rgba(217, 217, 217, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 18px;
    z-index: 20;
    box-shadow: 0 14px 28px -24px rgba(0, 0, 0, 0.16);
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-copy strong,
.brand-copy span {
    line-height: 1;
}

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

.brand-copy span {
    color: rgba(77, 77, 77, 0.78);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 0.96rem;
}

.site-nav a {
    color: rgba(77, 77, 77, 0.86);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--ink);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--terracotta);
    color: var(--white) !important;
    box-shadow: 0 10px 18px -16px rgba(0, 0, 0, 0.16);
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--terracotta);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 999px;
    font: inherit;
    cursor: pointer;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
    gap: 32px;
    padding: 56px 0 28px;
    align-items: center;
}

.hero-copy {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.hero-copy-banner {
    padding: 28px 28px 24px;
    background: var(--terracotta);
    color: var(--white);
}

.hero-copy-banner .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.hero-copy-body {
    padding: 26px 28px 28px;
}

.eyebrow,
.card-kicker,
.tool-topline span,
.about-detail span,
.contact-card span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow,
.card-kicker,
.tool-topline span,
.about-detail span {
    color: var(--terracotta-deep);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.brand-ribbon h2,
.service-card h3,
.tool-card h3 {
    margin: 0;
    font-family: var(--kw-display-font);
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.65rem, 5vw, 4.95rem);
    line-height: 0.94;
    max-width: 12ch;
}

.hero-text,
.section-heading p,
.service-card p,
.tool-card p,
.about-copy p,
.contact-section .section-heading p {
    color: rgba(30, 39, 34, 0.74);
    line-height: 1.7;
}

.hero-text {
    max-width: 68ch;
    margin: 0;
    font-size: 1.04rem;
    color: rgba(30, 39, 34, 0.8);
    font-weight: 700;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
    text-align: center;
}

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

.button-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 18px 30px -24px rgba(143, 0, 0, 0.55);
}

.button-ink {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.42);
}

.button-secondary {
    border: 1px solid var(--forest-deep);
    background: #ffffff;
    color: var(--ink);
}

.button-light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--white);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.hero-points span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(180, 1, 1, 0.06);
    border: 1px solid rgba(180, 1, 1, 0.12);
    font-size: 0.84rem;
    box-shadow: 0 10px 18px -20px rgba(0, 0, 0, 0.16);
}

.hero-card,
.brand-ribbon,
.service-card,
.tool-card,
.about-panel,
.contact-card {
    box-shadow: var(--shadow);
}

.hero-card {
    position: relative;
    display: grid;
    gap: 18px;
}

.portrait-panel {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid var(--line);
    background: #ececec;
}

.portrait-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 18%, rgba(0, 0, 0, 0.36) 100%);
    pointer-events: none;
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-image-hero {
    object-position: 48% center;
}

.portrait-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--terracotta);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.portrait-logo-mark {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    width: min(210px, 48%);
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.24));
    pointer-events: none;
}

.spotlight-panel {
    display: grid;
    gap: 12px;
}

.spotlight-item {
    padding: 16px 18px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid var(--line);
}

.spotlight-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.spotlight-link:hover,
.spotlight-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(180, 1, 1, 0.28);
    box-shadow: 0 18px 30px -24px rgba(143, 0, 0, 0.24);
}

.spotlight-item p {
    margin: 0 0 6px;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(30, 39, 34, 0.52);
}

.spotlight-item strong {
    line-height: 1.4;
    display: block;
}

.contact-chip {
    background: var(--forest-deep);
    color: var(--white);
}

.contact-chip span {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.contact-chip a {
    display: inline-block;
    margin-top: 8px;
    font-size: 1.2rem;
}

.brand-ribbon {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    align-items: stretch;
    gap: 0;
    margin-top: 8px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-top: 6px solid var(--terracotta);
    overflow: hidden;
}

.featured-listing-section {
    padding-top: 18px;
}

.featured-listing-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
    gap: 28px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #ffffff;
    border-top: 6px solid var(--terracotta);
    box-shadow: var(--shadow);
}

.featured-listing-copy,
.featured-media-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.featured-listing-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.featured-listing-status {
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    border-radius: 999px;
    border: 1px solid rgba(180, 1, 1, 0.14);
    background: rgba(180, 1, 1, 0.08);
    color: var(--kw-red);
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.featured-listing-status--active {
    background: rgba(180, 1, 1, 0.08);
    border-color: rgba(180, 1, 1, 0.14);
    color: var(--kw-red);
}

.featured-listing-status--coming-soon {
    background: rgba(28, 91, 168, 0.09);
    border-color: rgba(28, 91, 168, 0.16);
    color: #1c5ba8;
}

.featured-listing-status--pending {
    background: rgba(184, 108, 0, 0.1);
    border-color: rgba(184, 108, 0, 0.2);
    color: #8e5600;
}

.featured-listing-status--sold {
    background: rgba(32, 32, 32, 0.08);
    border-color: rgba(32, 32, 32, 0.16);
    color: #202020;
}

.featured-listing-status-muted {
    background: #f7f7f7;
    border-color: var(--line);
    color: rgba(30, 39, 34, 0.68);
}

.featured-listing-copy h2,
.featured-media-heading strong {
    margin: 0;
    font-size: clamp(1.7rem, 3.2vw, 2.7rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.featured-listing-price {
    margin: 16px 0 0;
    color: var(--terracotta);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.94;
}

.featured-listing-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.featured-listing-stats span {
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    font-size: 0.84rem;
    font-weight: 700;
}

.featured-listing-text,
.featured-listing-note,
.featured-media-note {
    color: rgba(30, 39, 34, 0.74);
    line-height: 1.7;
}

.featured-listing-text {
    margin: 16px 0 0;
}

.featured-listing-highlights {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.featured-listing-highlights li {
    position: relative;
    padding-left: 18px;
    line-height: 1.55;
}

.featured-listing-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--terracotta);
}

.featured-listing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.featured-listing-note {
    margin: 0;
    font-size: 0.84rem;
    min-height: 3.4em;
}

.featured-media-heading p {
    margin: 0 0 8px;
    color: var(--terracotta-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.featured-photo-carousel {
    display: grid;
    gap: 12px;
}

.featured-photo-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(180, 1, 1, 0.14);
    background: linear-gradient(180deg, #f8f7f7 0%, #f2f2f2 100%);
    box-shadow: var(--shadow-soft);
}

.featured-photo-slide {
    display: none;
}

.featured-photo-slide.is-active {
    display: block;
}

.featured-photo-slide img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 380px;
    display: block;
    object-fit: cover;
    transition: transform 240ms ease;
}

.featured-photo-slide:hover img,
.featured-photo-slide:focus-visible img {
    transform: scale(1.03);
}

.featured-photo-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.featured-photo-arrow,
.featured-photo-dot {
    border: 0;
    cursor: pointer;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        opacity 180ms ease;
}

.featured-photo-arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--terracotta);
    box-shadow: var(--shadow-soft);
    font-size: 1rem;
}

.featured-photo-viewport .featured-photo-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    border: 1px solid rgba(180, 1, 1, 0.16);
    background: rgba(255, 255, 255, 0.94);
    transform: translateY(-50%);
}

.featured-photo-arrow-prev {
    left: 14px;
}

.featured-photo-arrow-next {
    right: 14px;
}

.featured-photo-arrow:hover,
.featured-photo-arrow:focus-visible {
    transform: translateY(-1px);
    background: #fdf5f5;
}

.featured-photo-viewport .featured-photo-arrow:hover,
.featured-photo-viewport .featured-photo-arrow:focus-visible {
    transform: translateY(-50%) scale(1.03);
}

.featured-photo-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.featured-photo-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(30, 39, 34, 0.2);
}

.featured-photo-dot.is-active {
    background: var(--terracotta);
    transform: scale(1.15);
}

.featured-media-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
    padding-top: 18px;
}

.featured-media-note {
    margin: 0;
    min-height: 3.4em;
    font-size: 0.88rem;
}

.brand-ribbon h2,
.section-heading h2,
.about-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1;
}

.ribbon-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 28px 30px 30px;
    background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 58%, #b40101 100%);
}

.ribbon-copy .eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.ribbon-copy h2 {
    max-width: 9ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 0.92;
}

.ribbon-summary {
    max-width: 36ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 700;
}

.logo-row {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 26px;
    padding: 24px 20px;
    background:
        linear-gradient(145deg, rgba(180, 1, 1, 0.05), transparent 34%),
        radial-gradient(circle at top right, rgba(180, 1, 1, 0.08), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.logo-row-label {
    display: inline-block;
    padding: 10px 16px;
    color: #111111;
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    border: 2px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 28px -26px rgba(0, 0, 0, 0.24);
}

.logo-stack {
    display: grid;
    justify-items: center;
    gap: 22px;
    width: 100%;
}

.logo-divider {
    display: inline-block;
    padding: 10px 16px;
    background: var(--terracotta);
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 0.32em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 20px 34px -24px rgba(143, 0, 0, 0.5);
}

.logo-platinum {
    width: min(320px, 94%);
}

.logo-kw {
    width: min(330px, 96%);
}

.service-grid,
.tool-grid,
.about-grid,
.contact-grid {
    display: grid;
    gap: 20px;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.review-stat-grid,
.reviews-grid {
    display: grid;
    gap: 20px;
    margin-top: 22px;
}

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

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

.service-card,
.tool-card,
.about-panel,
.contact-card,
.review-stat-card,
.review-card {
    border: 1px solid var(--line);
}

.service-card {
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
}

.service-card h3 {
    font-size: 1.42rem;
    margin-top: 10px;
}

.partner-team-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.partner-team-card .button {
    width: 100%;
    margin-top: auto;
}

.wealth-preview-section,
.tools-section,
.partner-team-section,
.journey-preview-section,
.wealth-section,
.about-section,
.service-area-section,
.story-section,
.contact-section {
    padding-top: 64px;
}

.page-rent-vs-buy .rent-vs-buy-page > .wealth-section:first-child {
    padding-top: 22px;
}

.page-rent-vs-buy .wealth-panel[data-reveal] {
    opacity: 1;
    transform: none;
}

.section-heading {
    max-width: 860px;
}

.section-heading h2 {
    margin-top: 10px;
}

.section-heading p {
    margin-top: 18px;
}

.tools-shell {
    border: 1px solid rgba(143, 0, 0, 0.5);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 18%),
        linear-gradient(135deg, #8f0000 0%, #b40101 52%, #b40101 100%);
    box-shadow: 0 32px 58px -34px rgba(100, 10, 20, 0.5);
    padding: 24px;
}

.tools-shell .section-heading {
    max-width: 920px;
}

.tools-shell .section-heading .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.tools-shell .section-heading h2 {
    color: #ffffff;
}

.tools-shell .section-heading p {
    color: rgba(255, 255, 255, 0.88);
}

.tool-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 22px;
    align-items: stretch;
}

.tool-card {
    padding: 24px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.tools-shell .tool-card {
    border-color: rgba(180, 1, 1, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 250, 250, 0.98) 100%);
    box-shadow: 0 18px 34px -28px rgba(67, 5, 14, 0.32);
}

.tools-shell .tool-card-sage {
    border-top: 6px solid rgba(77, 77, 77, 0.85);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 250, 250, 0.98) 100%);
}

.tool-card-warm {
    border-top: 6px solid var(--terracotta);
}

.tool-card-dark {
    color: var(--white);
    border-top: 6px solid var(--terracotta);
    border-color: #2b2b2b;
    background: #232323;
}

.tool-card-sage {
    border-top: 6px solid #4d4d4d;
    background: var(--surface-soft);
}

.tool-card-listings {
    border-top: 6px solid #000000;
    background: #ffffff;
}

.tool-card-ink {
    border-top: 6px solid #000000;
    background: #ffffff;
}

.tool-card-dark .tool-topline span,
.tool-card-dark p,
.tool-card-dark .tool-list,
.tool-card-dark h3 {
    color: inherit;
}

.tool-card-dark .tool-topline span {
    color: rgba(255, 255, 255, 0.68);
}

.tool-topline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 18px;
}

.tool-topline strong {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-card h3 {
    font-size: 1.62rem;
    line-height: 1.02;
}

.tool-card p {
    margin: 14px 0 0;
}

.tool-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
    display: grid;
    gap: 10px;
}

.tool-list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.tool-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.72;
}

.tool-card .button {
    width: 100%;
    margin-top: auto;
}

.journey-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}

.journey-preview-card {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.journey-preview-image {
    aspect-ratio: 16 / 9;
    background: #f2f2f2;
    overflow: hidden;
}

.journey-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-preview-copy {
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.journey-preview-copy h3 {
    margin-top: 10px;
    font-size: 1.6rem;
    line-height: 1.02;
}

.journey-preview-copy p:last-of-type {
    margin: 14px 0 18px;
}

.home-showcase-section {
    padding-top: 64px;
}

.home-showcase-shell {
    padding: 30px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 58%, #b40101 100%);
    box-shadow: var(--shadow);
}

.home-showcase-header {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
    gap: 24px;
    align-items: end;
}

.home-showcase-header .eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.home-showcase-header h2 {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.home-showcase-header-note {
    margin: 0;
    max-width: 44ch;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    justify-self: end;
}

.home-showcase-stage {
    display: grid;
    grid-template-columns: 228px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    height: min(880px, 80vh);
    margin-top: 22px;
}

.home-showcase-rail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
}

.home-showcase-tab {
    padding: 16px 18px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.home-showcase-tab:hover,
.home-showcase-tab:focus-visible {
    transform: translateY(-1px);
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.34);
}

.home-showcase-tab span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-showcase-tab strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.home-showcase-tab.is-active {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.home-showcase-tab.is-active span {
    color: var(--terracotta);
}

.home-showcase-tab.is-active strong {
    color: #1e2722;
}

.home-showcase-panel-frame {
    min-height: 0;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.home-showcase-panel {
    height: 100%;
    overflow: auto;
    padding-right: 14px;
    scrollbar-gutter: stable;
}

.home-showcase-panel-heading {
    max-width: 64ch;
    margin-bottom: 22px;
}

.home-showcase-panel-heading .eyebrow {
    margin: 0;
}

.home-showcase-panel-heading h3 {
    margin: 10px 0 0;
    font-size: clamp(1.9rem, 3vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.home-showcase-panel-heading p:last-child {
    margin: 14px 0 0;
    color: rgba(30, 39, 34, 0.78);
    line-height: 1.7;
}

.home-showcase-about-layout {
    display: grid;
    gap: 20px;
}

@media (min-width: 1181px) {
    .home-showcase-panel[data-home-panel="about"] {
        display: grid;
        grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
        column-gap: 24px;
        row-gap: 18px;
        align-content: start;
    }

    .home-showcase-panel[data-home-panel="about"] .home-showcase-panel-heading {
        grid-column: 1;
        margin-bottom: 0;
        max-width: none;
    }

    .home-showcase-panel[data-home-panel="about"] .home-showcase-about-layout,
    .home-showcase-panel[data-home-panel="about"] .home-showcase-about-top {
        display: contents;
    }

    .home-showcase-panel[data-home-panel="about"] .home-showcase-about-copy {
        grid-column: 1;
        align-self: start;
    }

    .home-showcase-panel[data-home-panel="about"] .home-showcase-about-photo {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: start;
        margin-top: 4px;
    }

    .home-showcase-panel[data-home-panel="about"] .about-panel,
    .home-showcase-panel[data-home-panel="about"] .home-showcase-instagram-card {
        grid-column: 1 / -1;
    }
}

.home-showcase-about-top {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 20px;
    align-items: start;
}

.home-showcase-about-top .about-photo-card {
    margin: 0;
    width: 100%;
    align-self: start;
}

.home-showcase-about-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-showcase-about-copy p {
    margin: 0;
    color: rgba(30, 39, 34, 0.78);
    line-height: 1.72;
}

.home-showcase-approach-card {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(180, 1, 1, 0.12);
    background: linear-gradient(180deg, rgba(180, 1, 1, 0.05), rgba(180, 1, 1, 0.02));
}

.home-showcase-approach-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
    line-height: 1.4;
}

.home-showcase-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: 20px;
}

.home-showcase-support-summary,
.home-showcase-support-card {
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.home-showcase-support-summary {
    position: relative;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    align-content: start;
    gap: 0;
    padding: 24px;
    background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 58%, #b40101 100%);
    color: #ffffff;
    overflow: hidden;
}

.home-showcase-support-summary::after {
    content: "";
    position: absolute;
    inset: auto -60px -90px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
}

.home-showcase-support-summary .eyebrow {
    color: rgba(255, 255, 255, 0.8);
}

.home-showcase-support-summary h3 {
    margin: 10px 0 0;
    max-width: 11ch;
    font-size: clamp(1.7rem, 2.8vw, 2.7rem);
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.home-showcase-support-summary p:last-child {
    margin-top: 14px;
    max-width: 44ch;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.72;
}

.home-showcase-support-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-self: end;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    z-index: 1;
}

.home-showcase-support-summary-item {
    padding: 14px 14px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-showcase-support-summary-item span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-showcase-support-summary-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.3;
}

.home-showcase-support-card {
    padding: 24px;
    border: 1px solid var(--line);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-showcase-support-points {
    display: grid;
    gap: 14px;
}

.home-showcase-support-point {
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(180, 1, 1, 0.1);
    background: var(--surface-soft);
}

.home-showcase-support-point strong {
    display: block;
    font-size: 0.98rem;
}

.home-showcase-support-point p {
    margin: 8px 0 0;
    color: rgba(30, 39, 34, 0.74);
    line-height: 1.6;
}

.home-showcase-panel .review-stat-grid,
.home-showcase-panel .reviews-grid {
    margin-top: 20px;
}

.home-showcase-panel .review-stat-card {
    min-width: 0;
}

.home-showcase-panel .review-stat-card strong {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    letter-spacing: -0.045em;
}

@media (max-width: 1280px) {
    .home-showcase-panel .review-stat-grid {
        grid-template-columns: repeat(2, minmax(170px, 1fr));
    }

    .home-showcase-panel .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.home-showcase-panel .review-actions {
    margin-top: 20px;
}

.wealth-preview-grid {
    margin-top: 22px;
}

.wealth-preview-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wealth-preview-card p {
    margin: 0;
}

.wealth-preview-card h3 {
    margin: 0;
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.wealth-preview-inline-value {
    white-space: nowrap;
}

.wealth-preview-inline-value-positive {
    color: #207749;
    white-space: nowrap;
}

.wealth-preview-card-renter {
    border-top: 6px solid #4d4d4d;
}

.wealth-preview-card-owner {
    border-top: 6px solid var(--terracotta);
}

.wealth-preview-card-hook p:last-child,
.wealth-preview-card-outcome p:last-child {
    color: rgba(30, 39, 34, 0.78);
    line-height: 1.65;
}

.wealth-preview-metrics {
    display: grid;
    gap: 10px;
}

.wealth-preview-metric {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(217, 217, 217, 0.9);
    background: #ffffff;
}

.wealth-preview-metric span {
    display: block;
    color: rgba(30, 39, 34, 0.58);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wealth-preview-metric strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.35;
}

.wealth-preview-metric-highlight {
    background: rgba(44, 143, 86, 0.08);
    border-color: rgba(44, 143, 86, 0.16);
}

.wealth-preview-metric-highlight strong {
    color: #246344;
}

.wealth-preview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.wealth-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.wealth-banner {
    padding: 24px 24px 22px;
    background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 56%, #b40101 100%);
    color: #ffffff;
}

.wealth-banner .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.wealth-banner h2 {
    margin: 0;
    max-width: 24ch;
    font-size: clamp(1.85rem, 3vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    font-weight: 900;
}

.wealth-body {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wealth-context {
    margin: 0;
    color: var(--terracotta);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wealth-summary {
    margin: 10px 0 0;
    max-width: 62ch;
    color: rgba(30, 39, 34, 0.82);
    font-size: 0.98rem;
    line-height: 1.62;
    font-weight: 700;
}

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

.wealth-assumption {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 92px;
    padding: 14px 16px;
    border: 1px solid rgba(180, 1, 1, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(34, 34, 34, 0.06);
}

.wealth-assumption span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(30, 39, 34, 0.56);
}

.wealth-assumption strong {
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.15;
    color: #1e2722;
}

.wealth-assumptions-note {
    margin: 0;
    max-width: 68ch;
    color: rgba(30, 39, 34, 0.66);
    font-size: 0.88rem;
    line-height: 1.5;
    font-weight: 700;
}

.wealth-assumptions-note span {
    color: #b40101;
    font-weight: 900;
}

.wealth-controls {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.wealth-mode-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wealth-mode-button {
    border: 1px solid rgba(180, 1, 1, 0.18);
    border-radius: 999px;
    background: #ffffff;
    color: rgba(30, 39, 34, 0.86);
    padding: 11px 16px;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.wealth-mode-button:hover,
.wealth-mode-button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(180, 1, 1, 0.32);
}

.wealth-mode-button.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
    color: #ffffff;
}

.wealth-fair-inputs {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    align-items: end;
    gap: 12px 14px;
    padding: 14px 16px;
    border: 1px solid rgba(180, 1, 1, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f8 100%);
    box-shadow: var(--shadow-soft);
}

.wealth-input-field {
    display: grid;
    gap: 8px;
}

.wealth-input-field span {
    color: rgba(30, 39, 34, 0.68);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wealth-input-field input {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(30, 39, 34, 0.12);
    border-radius: 16px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
}

.wealth-fair-note {
    margin: 0;
    color: rgba(30, 39, 34, 0.68);
    font-size: 0.82rem;
    line-height: 1.5;
}

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

.wealth-card,
.wealth-chart-card,
.wealth-breakdown-card,
.wealth-takeaway,
.wealth-disclaimer {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border: 1px solid rgba(180, 1, 1, 0.08);
    box-shadow: var(--shadow-soft);
}

.wealth-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    border-radius: 26px;
}

.wealth-card-renter {
    border-top: 6px solid #4d4d4d;
}

.wealth-card-owner {
    border-top: 6px solid var(--terracotta);
}

.wealth-card-compare {
    border-top: 6px solid var(--ink);
}

.wealth-card-kicker {
    margin: 0;
    color: var(--terracotta);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wealth-card h3,
.wealth-chart-header h3,
.wealth-breakdown-card h3,
.wealth-takeaway h3 {
    margin: 10px 0 0;
    min-height: 7.4rem;
    font-size: 1.42rem;
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.wealth-stat-stack {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.wealth-stat-stack-compare {
    gap: 10px;
}

.wealth-stat-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 13px;
    border-radius: 18px;
    border: 1px solid rgba(217, 217, 217, 0.9);
    background: #ffffff;
}

.wealth-stat-row span {
    max-width: 28ch;
    color: rgba(30, 39, 34, 0.72);
    font-size: 0.87rem;
    font-weight: 700;
    line-height: 1.45;
}

.wealth-stat-row strong {
    color: var(--ink);
    font-size: 1.14rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-align: right;
}

.wealth-stat-row-compare strong {
    white-space: nowrap;
}

.wealth-stat-row-muted {
    background: var(--surface-soft);
}

.wealth-stat-row-highlight {
    background: rgba(180, 1, 1, 0.08);
    border-color: rgba(180, 1, 1, 0.16);
}

.wealth-stat-row-highlight strong {
    color: var(--terracotta-deep);
}

.wealth-stat-row-positive {
    background: rgba(44, 143, 86, 0.08);
    border-color: rgba(44, 143, 86, 0.16);
}

.wealth-value-positive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(44, 143, 86, 0.14);
    border: 1px solid rgba(44, 143, 86, 0.2);
    color: #207749;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.wealth-stat-row-negative {
    background: rgba(180, 1, 1, 0.08);
    border-color: rgba(180, 1, 1, 0.16);
}

.wealth-value-negative {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(180, 1, 1, 0.1);
    border: 1px solid rgba(180, 1, 1, 0.16);
    color: var(--terracotta-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.wealth-card-note {
    margin: auto 0 0;
    padding-top: 14px;
    color: rgba(30, 39, 34, 0.66);
    font-size: 0.86rem;
    line-height: 1.55;
    max-width: 58ch;
}

.wealth-chart-card,
.wealth-breakdown-card,
.wealth-takeaway,
.wealth-disclaimer {
    padding: 22px;
    border-radius: 28px;
}

.wealth-chart-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.wealth-chart-header h3 {
    min-height: 0;
    max-width: 16ch;
    margin-top: 8px;
}

.wealth-chart-readout {
    min-width: 210px;
    padding: 12px 14px;
    border-radius: 20px;
    background: var(--surface-soft);
    border: 1px solid rgba(217, 217, 217, 0.9);
    display: grid;
    gap: 4px;
}

.wealth-chart-readout strong {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.wealth-chart-readout span {
    color: rgba(30, 39, 34, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.wealth-chart-note {
    margin: 10px 0 0;
    color: rgba(30, 39, 34, 0.72);
    font-size: 0.9rem;
    line-height: 1.6;
}

.wealth-chart-shell {
    margin-top: 14px;
    padding: 8px 10px 6px;
    border-radius: 22px;
    border: 1px solid rgba(180, 1, 1, 0.12);
    background: linear-gradient(180deg, #fffdfd 0%, #f8f3f4 100%);
    overflow: hidden;
}

.wealth-chart {
    display: block;
    width: 100%;
    height: auto;
    touch-action: pan-y;
    cursor: crosshair;
}

.wealth-chart-grid-line {
    stroke: rgba(30, 39, 34, 0.12);
    stroke-dasharray: 4 6;
}

.wealth-chart-axis-line {
    stroke: rgba(30, 39, 34, 0.2);
}

.wealth-chart-axis-label,
.wealth-chart-tick-label {
    fill: rgba(30, 39, 34, 0.58);
    font-size: 12px;
    font-weight: 700;
}

.wealth-chart-line {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
}

.wealth-chart-line-purchase {
    stroke: #111111;
    stroke-width: 3.5;
    stroke-dasharray: 12 8;
}

.wealth-chart-line-value {
    stroke: #b40101;
    stroke-width: 5;
}

.wealth-chart-line-balance {
    stroke: #1d4ed8;
    stroke-width: 4.5;
}

.wealth-chart-guide {
    stroke: rgba(30, 39, 34, 0.18);
    stroke-dasharray: 5 5;
}

.wealth-chart-focus-point {
    stroke: #ffffff;
    stroke-width: 2.5;
}

.wealth-chart-focus-label {
    pointer-events: none;
}

.wealth-chart-focus-connector {
    stroke-width: 1.5;
    opacity: 0.52;
}

.wealth-chart-focus-label-bg {
    fill: rgba(255, 255, 255, 0.97);
    stroke-width: 1.4;
}

.wealth-chart-focus-label-text {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.01em;
    dominant-baseline: middle;
}

.wealth-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 12px;
}

.wealth-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(30, 39, 34, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
}

.wealth-legend-swatch {
    width: 18px;
    height: 4px;
    border-radius: 999px;
    flex-shrink: 0;
}

.wealth-legend-purchase {
    background: #111111;
}

.wealth-legend-value {
    background: #b40101;
}

.wealth-legend-balance {
    background: #1d4ed8;
}

.wealth-breakdown-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.wealth-breakdown-row {
    display: grid;
    gap: 8px;
}

.wealth-breakdown-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.wealth-breakdown-label {
    color: rgba(30, 39, 34, 0.78);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
}

.wealth-breakdown-value {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.wealth-breakdown-track {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(30, 39, 34, 0.08);
    overflow: hidden;
}

.wealth-breakdown-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
}

.wealth-breakdown-fill-rent {
    background: linear-gradient(90deg, #4d4d4d 0%, #6b7280 100%);
}

.wealth-breakdown-fill-renter-savings {
    background: linear-gradient(90deg, #51642f 0%, #7a9150 100%);
}

.wealth-breakdown-fill-interest {
    background: linear-gradient(90deg, #444444 0%, #7a7a7a 100%);
}

.wealth-breakdown-fill-taxes {
    background: linear-gradient(90deg, #8a5a44 0%, #b68162 100%);
}

.wealth-breakdown-fill-insurance {
    background: linear-gradient(90deg, #6d7c96 0%, #9eabc1 100%);
}

.wealth-breakdown-fill-pmi {
    background: linear-gradient(90deg, #7c5e88 0%, #a586b2 100%);
}

.wealth-breakdown-fill-owner-total {
    background: linear-gradient(90deg, #8f0000 0%, #b40101 100%);
}

.wealth-breakdown-fill-owner-net {
    background: linear-gradient(90deg, #365f3b 0%, #5a8f61 100%);
}

.wealth-breakdown-fill-principal {
    background: linear-gradient(90deg, #1f1f1f 0%, #4d4d4d 100%);
}

.wealth-breakdown-fill-appreciation {
    background: linear-gradient(90deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
}

.wealth-breakdown-note {
    color: rgba(30, 39, 34, 0.62);
    font-size: 0.84rem;
    line-height: 1.55;
}

.wealth-takeaway {
    background: linear-gradient(135deg, rgba(180, 1, 1, 0.08) 0%, #ffffff 48%, #ffffff 100%);
    border-color: rgba(180, 1, 1, 0.14);
}

.wealth-takeaway h3 {
    min-height: 0;
    max-width: 30ch;
}

.wealth-takeaway p:last-child {
    margin-bottom: 0;
}

.wealth-takeaway > p:not(.wealth-card-kicker) {
    margin: 10px 0 0;
    max-width: 72ch;
    color: rgba(30, 39, 34, 0.78);
    line-height: 1.62;
}

.wealth-move-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.wealth-move-grid-single {
    grid-template-columns: minmax(0, 540px);
    justify-content: start;
}

.wealth-move-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(180, 1, 1, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.wealth-move-card h4 {
    margin: 10px 0 0;
    min-height: 4.9rem;
    font-size: 1.05rem;
    line-height: 1.28;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 28ch;
}

.wealth-move-card > p:not(.wealth-card-kicker) {
    margin: 14px 0 0;
    color: rgba(30, 39, 34, 0.76);
    line-height: 1.62;
}

.wealth-move-stats {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    flex: 1 1 auto;
}

.wealth-move-stats .wealth-stat-row {
    min-height: 58px;
}

.wealth-cta {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(30, 39, 34, 0.1);
}

.wealth-cta p {
    margin: 0;
    color: rgba(30, 39, 34, 0.9);
    font-weight: 800;
}

.wealth-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.wealth-disclaimer-list {
    margin: 16px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

.wealth-disclaimer-list li {
    color: rgba(30, 39, 34, 0.74);
    line-height: 1.65;
}

.wealth-disclaimer-copy {
    margin: 14px 0 0;
    color: rgba(30, 39, 34, 0.74);
    font-size: 0.9rem;
    line-height: 1.62;
}

.about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.about-copy p {
    margin-top: 14px;
    max-width: 62ch;
}

.about-copy {
    grid-column: 1;
}

.about-photo-card {
    grid-column: 2;
}

.about-photo-card {
    margin: 0;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.about-photo-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 34%;
}

.about-panel {
    grid-column: 1 / -1;
    padding: 24px;
    border-radius: 26px;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.about-detail {
    flex: 1 1 170px;
    max-width: 180px;
    min-height: 132px;
    padding: 14px 14px 16px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-detail strong {
    display: block;
    margin-top: 8px;
    font-size: 0.94rem;
    line-height: 1.35;
}

.home-showcase-instagram-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr) auto;
    gap: 16px;
    align-items: center;
    padding: 22px 24px;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.home-showcase-instagram-copy h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.home-showcase-instagram-copy p:last-child {
    margin: 12px 0 0;
    color: rgba(30, 39, 34, 0.76);
    line-height: 1.68;
}

.home-showcase-instagram-copy strong {
    color: var(--ink);
}

.home-showcase-instagram-preview {
    display: grid;
    gap: 10px;
}

.home-showcase-instagram-chip {
    padding: 12px 14px 13px;
    border-radius: 18px;
    border: 1px solid rgba(180, 1, 1, 0.12);
    background: rgba(180, 1, 1, 0.04);
}

.home-showcase-instagram-chip span {
    display: block;
    color: var(--terracotta);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-showcase-instagram-chip strong {
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    line-height: 1.35;
}

.home-showcase-instagram-link {
    min-width: 180px;
    align-self: stretch;
}

.service-area-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 20px;
    margin-top: 22px;
    align-items: stretch;
}

.service-area-overview,
.service-area-map-card {
    border: 1px solid var(--line);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.service-area-overview {
    padding: 24px;
}

.service-area-kicker {
    margin: 0 0 10px;
    color: var(--terracotta);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-area-overview h3 {
    margin: 0;
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.service-area-overview p:last-of-type {
    margin-top: 14px;
    color: rgba(30, 39, 34, 0.74);
    line-height: 1.7;
}

.service-area-chip-group + .service-area-chip-group {
    margin-top: 18px;
}

.service-area-chip-group p {
    margin: 0 0 10px;
    color: rgba(30, 39, 34, 0.64);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-area-chips span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    font-size: 0.84rem;
    font-weight: 700;
}

.service-area-chips-strong span {
    border-color: rgba(180, 1, 1, 0.22);
    background: rgba(180, 1, 1, 0.08);
    color: #8f0019;
}

.service-area-map-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
}

.service-area-map-header {
    padding: 10px 10px 14px;
}

.service-area-map-header p {
    margin: 0 0 6px;
    color: var(--terracotta);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-area-map-header strong {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
}

.service-area-map {
    flex: 1 1 auto;
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid rgba(180, 1, 1, 0.12);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    background: linear-gradient(180deg, #fffdfd 0%, #f8f3f4 100%);
}

.service-area-map .leaflet-container,
.service-area-map.leaflet-container {
    width: 100%;
    height: 100%;
    min-height: 320px;
    font-family: inherit;
    background: linear-gradient(180deg, #fffdfd 0%, #f8f3f4 100%);
}

.service-area-map .leaflet-control-zoom {
    border: none;
    box-shadow: var(--shadow-soft);
}

.service-area-map .leaflet-control-zoom a {
    color: #1e2722;
    border-bottom: 1px solid rgba(30, 39, 34, 0.08);
}

.service-area-map .leaflet-control-attribution {
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.92);
    color: rgba(30, 39, 34, 0.72);
    font-size: 0.7rem;
    border-top-left-radius: 10px;
}

.service-area-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding: 14px 10px 0;
}

.service-area-map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(30, 39, 34, 0.78);
    font-size: 0.8rem;
    font-weight: 700;
}

.service-area-legend {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    flex-shrink: 0;
}

.service-area-legend-heat {
    background: rgba(180, 1, 1, 0.78);
    box-shadow: 0 0 0 5px rgba(180, 1, 1, 0.12);
}

.service-area-legend-radius {
    background: rgba(180, 1, 1, 0.18);
    border: 1.5px solid rgba(180, 1, 1, 0.5);
    box-shadow: 0 0 0 4px rgba(180, 1, 1, 0.08);
}

.service-area-legend-point {
    background: #b40101;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(143, 0, 25, 0.65);
}

.service-area-map-note {
    margin: 14px 10px 4px;
    color: rgba(30, 39, 34, 0.7);
    font-size: 0.88rem;
    line-height: 1.6;
}

.service-area-map.is-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(180, 1, 1, 0.08), rgba(180, 1, 1, 0.02)),
        linear-gradient(180deg, #fbfbfb 0%, #f3f3f3 100%);
}

.service-area-map-fallback {
    max-width: 300px;
    padding: 24px;
    text-align: center;
}

.service-area-map-fallback strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-area-map-fallback span {
    display: block;
    color: rgba(30, 39, 34, 0.72);
    line-height: 1.6;
}

.service-area-label {
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    color: #1e2722;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 5px 9px;
    white-space: nowrap;
}

.service-area-label::before {
    display: none;
}

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

.story-card {
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.story-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.story-card:first-child img {
    object-position: center 30%;
}

.story-card:nth-child(2) img {
    object-position: center 26%;
}

.story-card:nth-child(3) img {
    object-position: center 18%;
}

.story-card figcaption {
    padding: 18px 20px 20px;
}

.story-card strong {
    display: block;
    font-size: 1.04rem;
    line-height: 1.25;
}

.story-card span {
    display: block;
    margin-top: 10px;
    color: rgba(30, 39, 34, 0.74);
    line-height: 1.6;
}

.reviews-section {
    padding-top: 64px;
}

.reviews-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.reviews-banner {
    padding: 24px 24px 22px;
    background: linear-gradient(135deg, var(--terracotta-deep) 0%, var(--terracotta) 56%, #b40101 100%);
    color: #ffffff;
}

.reviews-banner .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.reviews-banner h2 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    font-weight: 900;
}

.reviews-body {
    padding: 22px 24px 24px;
}

.reviews-hook {
    margin: 0;
    max-width: 56ch;
    color: #374151;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reviews-summary {
    margin: 16px 0 0;
    max-width: 64ch;
    color: rgba(30, 39, 34, 0.82);
    font-size: 1.02rem;
    line-height: 1.68;
    font-weight: 700;
}

.review-stat-card,
.review-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    box-shadow: var(--shadow-soft);
}

.review-stat-card {
    padding: 22px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(180, 1, 1, 0.08);
}

.review-stat-card span {
    display: inline-block;
    color: var(--terracotta);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.review-stat-card strong {
    display: block;
    margin-top: 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.review-stat-card p {
    margin: 12px 0 0;
    color: rgba(30, 39, 34, 0.72);
    line-height: 1.6;
}

.review-card {
    padding: 24px;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(180, 1, 1, 0.08);
    border-top: 6px solid var(--terracotta);
}

.review-stars {
    color: var(--terracotta);
    font-size: 1rem;
    letter-spacing: 0.18em;
}

.review-card p {
    margin: 0;
    color: rgba(30, 39, 34, 0.8);
    line-height: 1.72;
}

.review-quote {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.55;
}

.review-meta {
    margin-top: auto;
    padding-top: 4px;
}

.review-meta strong {
    display: block;
    font-size: 0.96rem;
}

.review-meta span {
    display: block;
    margin-top: 6px;
    color: rgba(30, 39, 34, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 22px;
}

.review-source {
    margin: 0;
    color: rgba(30, 39, 34, 0.64);
    font-size: 0.84rem;
    line-height: 1.6;
}

.review-source [data-profile-stats-checked] {
    display: block;
    margin-top: 6px;
}

.review-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section-heading-tight {
    max-width: 640px;
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.contact-card {
    padding: 22px;
    border-radius: 22px;
    background: #ffffff;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card:hover,
.contact-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(180, 1, 1, 0.34);
    box-shadow: 0 24px 42px -34px rgba(143, 0, 0, 0.28);
}

.contact-card span {
    display: block;
}

.contact-card strong {
    display: block;
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.35;
}

.site-footer {
    padding: 42px 0 8px;
    margin-top: 64px;
    border-top: 4px solid var(--terracotta);
    text-align: center;
    color: rgba(30, 39, 34, 0.62);
}

.site-footer-band {
    display: grid;
    grid-template-columns: minmax(150px, 0.95fr) minmax(0, 1.2fr) minmax(140px, 0.85fr);
    align-items: center;
    gap: 24px;
    max-width: 1320px;
    margin: 0 auto;
}

.site-footer-compliance {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 760px;
    margin: 14px auto 0;
    padding-top: 14px;
    border-top: 1px solid rgba(30, 39, 34, 0.1);
}

.site-footer-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.site-footer-copy {
    text-align: center;
}

.site-footer p {
    margin: 6px 0;
}

.site-footer .site-footer-license {
    font-size: 0.92rem;
    color: rgba(30, 39, 34, 0.74);
}

.footer-broker-logo {
    display: flex;
    align-items: center;
}

.footer-broker-logo-kw {
    justify-content: flex-start;
}

.footer-broker-logo-platinum {
    justify-content: flex-end;
}

.footer-broker-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.footer-broker-logo-kw img {
    max-height: 56px;
}

.footer-broker-logo-platinum img {
    max-height: 74px;
}

.site-footer-badge {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.site-footer-badge-realtor {
    max-width: 44px;
}

.site-footer-badge-housing {
    max-width: 44px;
}

.site-footer-disclaimer {
    text-align: center;
}

.site-footer-disclaimer p {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.55;
    color: rgba(30, 39, 34, 0.72);
    font-weight: 700;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@media (max-width: 1180px) {
    .home-showcase-header {
        grid-template-columns: 1fr;
    }

    .home-showcase-header-note {
        justify-self: start;
        max-width: none;
    }

    .home-showcase-about-layout,
    .home-showcase-support-grid {
        grid-template-columns: 1fr;
    }

    .home-showcase-about-top,
    .home-showcase-support-grid {
        grid-template-columns: 1fr;
    }

    .home-showcase-support-summary-grid {
        grid-template-columns: 1fr;
    }

    .home-showcase-about-top .about-photo-card {
        order: 1;
        justify-self: center;
        width: min(100%, 430px);
    }

    .home-showcase-about-copy {
        order: 2;
    }
}

@media (max-width: 980px) {
    .hero,
    .featured-listing-shell,
    .about-grid,
    .service-area-grid,
    .tool-grid,
    .journey-preview-grid,
    .service-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .review-stat-grid,
    .reviews-grid,
    .wealth-comparison-grid,
    .wealth-breakdown-grid,
    .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .wealth-card h3 {
        min-height: 0;
    }

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

    .brand-ribbon {
        grid-template-columns: 1fr;
    }

    .logo-row {
        justify-items: start;
        align-content: start;
    }

    .logo-stack {
        justify-items: start;
    }

    .ribbon-copy h2 {
        max-width: none;
    }

    .hero h1 {
        max-width: none;
    }

    .home-showcase-shell {
        padding: 20px;
        border-radius: 28px;
    }

    .home-showcase-header h2 {
        max-width: none;
    }

    .home-showcase-stage {
        grid-template-columns: 1fr;
        height: auto;
    }

    .home-showcase-rail {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .home-showcase-tab {
        min-width: 190px;
        flex-shrink: 0;
    }

    .home-showcase-panel-frame {
        padding: 18px;
    }

    .home-showcase-panel {
        height: auto;
        overflow: visible;
        padding-right: 0;
    }

    .hero-copy {
        border-radius: 28px;
    }

    .featured-listing-shell {
        padding: 22px;
    }

    .featured-listing-copy,
    .featured-media-card {
        gap: 12px;
        height: auto;
    }

    .featured-listing-actions,
    .featured-media-actions {
        margin-top: 0;
        padding-top: 0;
    }

    .featured-listing-note,
    .featured-media-note {
        min-height: 0;
    }

    .about-panel {
        justify-content: stretch;
    }

    .about-detail {
        flex-basis: calc(50% - 8px);
        max-width: none;
        min-height: 0;
    }

    .about-photo-card {
        grid-column: 1;
        order: 1;
        justify-self: center;
        width: min(100%, 430px);
    }

    .about-copy {
        grid-column: 1;
        order: 2;
    }

    .about-panel {
        grid-column: 1;
        order: 3;
    }

    .home-showcase-instagram-card {
        grid-column: 1;
        order: 4;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .home-showcase-instagram-link {
        min-width: 0;
        width: 100%;
    }

    .review-actions {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .reviews-banner h2 {
        max-width: 12ch;
    }

    .site-footer-band {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .site-footer-compliance {
        max-width: 420px;
    }

    .wealth-preview-actions {
        flex-direction: column;
    }

    .wealth-preview-actions .button {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: calc(100% - 20px);
        padding-top: 16px;
    }

    .site-header {
        flex-wrap: wrap;
        border-radius: 28px;
        padding: 16px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 8px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 34px;
    }

    .featured-listing-actions,
    .hero-actions,
    .hero-points {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .featured-photo-slide img {
        min-height: 220px;
    }

    .portrait-panel {
        min-height: 300px;
    }

    .featured-photo-viewport {
        border-radius: 22px;
    }

    .brand-ribbon,
    .featured-listing-shell,
    .service-card,
    .tool-card,
    .wealth-card,
    .wealth-chart-card,
    .wealth-breakdown-card,
    .wealth-takeaway,
    .wealth-disclaimer,
    .about-photo-card,
    .about-panel,
    .review-stat-card,
    .review-card,
    .story-card,
    .contact-card {
        border-radius: 24px;
    }

    .reviews-panel {
        border-radius: 28px;
    }

    .reviews-banner,
    .reviews-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .tools-section,
    .partner-team-section,
    .journey-preview-section,
    .wealth-section,
    .about-section,
    .service-area-section,
    .reviews-section,
    .story-section,
    .contact-section {
        padding-top: 52px;
    }

    .page-rent-vs-buy .rent-vs-buy-page > .wealth-section:first-child {
        padding-top: 18px;
    }

    .tools-shell {
        padding: 18px;
        border-radius: 24px;
    }

    .review-stat-grid,
    .reviews-grid,
    .wealth-comparison-grid,
    .wealth-breakdown-grid {
        grid-template-columns: 1fr;
    }

    .wealth-assumptions {
        grid-template-columns: 1fr;
    }

    .story-card img {
        height: 220px;
    }

    .service-area-map {
        min-height: 280px;
    }

    .about-detail {
        flex-basis: calc(50% - 6px);
        padding: 12px 12px 14px;
    }

    .about-copy p {
        max-width: none;
    }

    .about-panel {
        padding: 18px;
        gap: 10px;
    }

    .home-showcase-instagram-card {
        padding: 18px;
        gap: 14px;
        border-radius: 24px;
    }

    .home-showcase-instagram-copy h3 {
        font-size: 1.5rem;
    }

    .about-photo-card {
        width: 100%;
    }

    .home-showcase-about-top .about-photo-card {
        width: 100%;
    }

    .about-detail strong {
        font-size: 0.88rem;
        line-height: 1.3;
    }

    .home-showcase-panel-heading h3 {
        font-size: 1.7rem;
    }

    .wealth-banner,
    .wealth-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .wealth-banner h2 {
        max-width: none;
    }

    .wealth-card h3,
    .wealth-chart-header h3,
    .wealth-breakdown-card h3,
    .wealth-takeaway h3 {
        font-size: 1.36rem;
    }

    .wealth-move-grid {
        grid-template-columns: 1fr;
    }

    .wealth-move-card h4,
    .wealth-move-stats .wealth-stat-row {
        min-height: 0;
    }

    .wealth-chart-readout {
        min-width: 0;
        width: 100%;
    }

    .wealth-stat-row,
    .wealth-breakdown-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .wealth-stat-row strong,
    .wealth-breakdown-value {
        text-align: left;
    }

    .wealth-chart-shell {
        padding: 8px;
    }

    .wealth-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-area-map .leaflet-container,
    .service-area-map.leaflet-container {
        min-height: 280px;
    }
}

@media (max-width: 420px) {
    .about-detail {
        flex-basis: 100%;
    }
}

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

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .button,
    .contact-card {
        transition: none;
    }
}
