@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin-300-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin-500-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin-italic-500.woff2") format("woff2");
    font-style: italic;
    font-weight: 500;
    font-display: swap;
}

:root {
    --sow-container-max: 80rem;
    /* Standalone figures/charts: keep readable width on wide main column */
    --sow-media-single-max: 48rem;
    --sow-white: #ffffff;
    --sow-slate-50: #f8fafc;
    --sow-slate-100: #f1f5f9;
    --sow-slate-200: #e2e8f0;
    --sow-slate-300: #cbd5e1;
    --sow-slate-400: #94a3b8;
    --sow-slate-500: #64748b;
    --sow-slate-600: #475569;
    --sow-slate-700: #334155;
    --sow-slate-800: #1e293b;
    --sow-slate-900: #0f172a;
    --sow-blue-50: #eff6ff;
    --sow-blue-100: #dbeafe;
    --sow-blue-500: #3b82f6;
    --sow-blue-600: #2563eb;
    --sow-blue-700: #1d4ed8;
    --sow-blue-900: #1e3a8a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.sow-page {
    margin: 0;
    background: var(--sow-slate-50);
    color: var(--sow-slate-700);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.sow-page h1,
.sow-page h2,
.sow-page h3,
.sow-page h4 {
    margin: 0;
    color: var(--sow-slate-900);
    font-family: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
    font-feature-settings: "kern" 1, "liga" 1;
    letter-spacing: -0.012em;
}

.sow-page p {
    margin: 0;
}

.sow-page a {
    color: inherit;
    text-decoration: none;
}

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

.sow-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--sow-slate-200);
    backdrop-filter: blur(12px);
}

.sow-nav__inner,
.sow-footer__inner,
.sow-footer__copyright {
    width: min(100% - 2rem, var(--sow-container-max));
    margin: 0 auto;
}

.sow-nav__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 4rem;
    gap: 1rem;
}

.sow-nav__brand {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    line-height: 0;
    color: inherit;
}

.sow-nav__brand-img {
    display: block;
    height: 1.875rem;
    width: auto;
    max-width: 7.75rem;
    object-fit: contain;
}

.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;
}

.sow-skip-link {
    position: absolute;
    left: -9999px;
    z-index: 100;
    padding: 0.5rem 1rem;
    background: var(--sow-white);
    color: var(--sow-slate-900);
    font-weight: 600;
}

.sow-skip-link:focus {
    left: 0.5rem;
    top: 0.5rem;
}

.sow-nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0.5rem;
    border: 0;
    border-radius: 0.375rem;
    background: transparent;
    cursor: pointer;
    color: var(--sow-slate-900);
}

.sow-nav__toggle-bar {
    display: block;
    width: 1.35rem;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
}

.sow-nav__drawer {
    display: none;
    width: 100%;
    flex-basis: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 0 0;
    border-top: 1px solid var(--sow-slate-200);
    margin-top: 0.75rem;
}

.sow-nav__drawer.is-open {
    display: flex;
}

@media (max-width: 767px) {
    .sow-nav {
        padding: 0.35rem 0 0.15rem;
    }

    .sow-nav__bar {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: 3.5rem;
        grid-template-areas: "brand spacer toggle";
        align-items: center;
        gap: 0.75rem;
    }

    .sow-nav__brand {
        grid-area: brand;
    }

    .sow-nav__toggle {
        grid-area: toggle;
        margin-left: 0;
        justify-self: end;
    }

    .sow-nav__drawer {
        grid-column: 1 / -1;
        padding: 0.85rem 0 0.3rem;
    }
}

.sow-nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.sow-nav__link.is-active {
    color: var(--sow-blue-600);
}

.sow-nav__cta--inline {
    text-align: center;
    align-self: stretch;
}

.sow-nav__link,
.sow-footer__link,
.sow-button,
.sow-button-secondary,
.sow-form__button,
.sow-cta__button {
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sow-nav__link:hover {
    color: var(--sow-blue-600);
}

.sow-nav__cta,
.sow-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
}

/* Beat .sow-page a { color: inherit } so CTA label stays white on blue (nav + e.g. 404) */
.sow-page a.sow-nav__cta {
    background: var(--sow-blue-600);
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.sow-page a.sow-nav__cta:hover {
    background: var(--sow-blue-700);
    color: #ffffff;
}

.sow-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    overflow: hidden;
    background: var(--sow-slate-900);
    text-align: center;
}

.sow-hero__overlay,
.sow-hero__image {
    position: absolute;
    inset: 0;
}

.sow-hero__overlay {
    z-index: 1;
    background: rgba(0, 0, 0, 0.62);
}

.sow-hero__image {
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sow-hero__content {
    position: relative;
    z-index: 2;
    width: min(100% - 2rem, 48rem);
}

/* .sow-page h1 would override a lone .sow-hero__title; keep hero headline white */
.sow-hero .sow-hero__title {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: clamp(2.25rem, 8vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.55),
        0 4px 24px rgba(0, 0, 0, 0.45),
        0 2px 12px rgba(0, 0, 0, 0.35);
}

.sow-hero .sow-hero__subtitle {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 2px 16px rgba(0, 0, 0, 0.35);
}

.sow-hero__content .sow-hero-inner__meta {
    margin: 0.25rem 0 1.35rem;
}

.sow-hero__button {
    background: var(--sow-white);
    color: var(--sow-slate-900);
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px rgba(15, 23, 42, 0.18);
}

.sow-hero__button:hover {
    background: var(--sow-slate-100);
}

.sow-hero-inner {
    position: relative;
    padding: 3.5rem 1rem 3rem;
    background: linear-gradient(135deg, var(--sow-slate-900) 0%, #1e3a5f 100%);
    color: var(--sow-slate-200);
    text-align: center;
}

.sow-hero-inner__inner {
    width: min(100% - 2rem, 48rem);
    margin: 0 auto;
}

/* Beat .sow-page h1/h2 default dark heading color */
.sow-hero-inner .sow-hero-inner__title {
    margin: 0.5rem 0 1rem;
    color: var(--sow-white);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
}

.sow-hero-inner__lead {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    font-weight: 300;
}

.sow-hero-inner__meta {
    margin: 1.25rem 0 0;
    font-size: 0.8125rem;
    color: var(--sow-slate-400);
}

.sow-hero-inner__lead + .sow-hero-inner__meta {
    margin-top: 1.6rem;
}

.sow-page--inner .sow-main {
    padding-top: 2.5rem;
}

.sow-explore-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.sow-explore-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    border: 1px solid var(--sow-slate-200);
    border-radius: 0.75rem;
    background: var(--sow-white);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    transition: box-shadow 160ms ease, border-color 160ms ease;
    text-decoration: none;
}

.sow-explore-card:hover {
    border-color: var(--sow-blue-200);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.sow-explore-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    background: var(--sow-blue-50);
    color: var(--sow-blue-600);
}

.sow-explore-card__icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.sow-explore-card__title {
    margin: 0 0 0.35rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sow-slate-900);
}

.sow-explore-card__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--sow-slate-600);
}

.sow-contact-form .sow-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
}

.sow-contact-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sow-slate-800);
}

.sow-contact-form .sow-form__hint {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--sow-slate-500);
}

.sow-contact-form select,
.sow-contact-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--sow-slate-300);
    border-radius: 0.25rem;
    color: var(--sow-slate-900);
    font: inherit;
    padding: 0.75rem 1rem;
}

.sow-contact-form textarea {
    min-height: 6rem;
    resize: vertical;
}

.sow-contact-form select:focus,
.sow-contact-form textarea:focus {
    border-color: var(--sow-blue-500);
    box-shadow: 0 0 0 1px var(--sow-blue-500);
    outline: none;
}

#form-message[hidden] {
    display: none !important;
}

.staging-banner {
    padding: 0.5rem 1rem;
    background: #7c2d12;
    color: #ffedd5;
    font-size: 0.875rem;
    text-align: center;
}

body.has-staging-banner .sow-nav {
    top: 0;
}

.sow-main {
    width: min(100% - 2rem, var(--sow-container-max));
    margin: 0 auto;
    padding: 3rem 0;
}

.sow-section {
    scroll-margin-top: 6rem;
}

.sow-section + .sow-section {
    margin-top: 6rem;
}

.sow-section__title {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--sow-slate-200);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.25;
}

.sow-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sow-slate-200);
}

.sow-section__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.35rem;
    border-radius: 999px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        background-color 160ms ease,
        color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.sow-section__action--primary {
    background: var(--sow-blue-600);
    color: var(--sow-white);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.sow-section__action--primary:hover {
    background: var(--sow-blue-700);
    color: var(--sow-white);
}

.sow-section__action--primary:focus-visible {
    outline: 2px solid var(--sow-blue-600);
    outline-offset: 2px;
}

.sow-section__action--secondary {
    background: var(--sow-white);
    color: var(--sow-slate-700);
    border-color: var(--sow-slate-300);
}

.sow-section__action--secondary:hover {
    background: var(--sow-slate-50);
    border-color: var(--sow-slate-400);
    color: var(--sow-slate-900);
}

.sow-section__action--secondary:focus-visible {
    outline: 2px solid var(--sow-blue-600);
    outline-offset: 2px;
}

/* Beat .sow-page a { color: inherit } */
.sow-page a.sow-section__action--primary {
    color: var(--sow-white);
}

.sow-rich-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.sow-rich-text p + p {
    margin-top: 1rem;
}

.sow-rich-text a,
.sow-copy a,
.sow-advisory-card a,
.sow-note a {
    color: var(--sow-blue-700);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
    overflow-wrap: anywhere;
}

.sow-text-block {
    margin-top: 1.5rem;
}

.sow-stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.sow-stat-card {
    padding: 1rem;
    border: 1px solid var(--sow-slate-200);
    border-radius: 0.75rem;
    background: var(--sow-white);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.sow-stat-card__label,
.sow-stat-card__note {
    display: block;
    color: var(--sow-slate-500);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.sow-stat-card__value {
    display: block;
    margin: 0.25rem 0;
    color: var(--sow-slate-900);
    font-size: 1.5rem;
    line-height: 1.2;
}

.sow-copy {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.sow-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 16rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 0.75rem;
    background: var(--sow-slate-200);
    box-shadow: inset 0 2px 8px rgba(15, 23, 42, 0.08);
}

.sow-map-placeholder__text {
    color: var(--sow-slate-500);
    font-weight: 500;
}

.sow-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.sow-media-frame {
    margin: 1.5rem auto;
    width: 100%;
    max-width: var(--sow-media-single-max);
    overflow: hidden;
    border: 1px solid var(--sow-slate-200);
    border-radius: 0.75rem;
    background: var(--sow-white);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.sow-media-grid .sow-media-frame {
    margin: 0;
    max-width: none;
}

.sow-media-frame img {
    width: 100%;
    height: auto;
}

.sow-media-frame figcaption {
    padding: 0.875rem 1rem;
    color: var(--sow-slate-600);
    font-size: 0.875rem;
    line-height: 1.55;
}

.sow-advisory-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.sow-advisory-card,
.sow-callout {
    border: 1px solid var(--sow-slate-200);
    border-radius: 0.75rem;
    background: var(--sow-white);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.sow-advisory-card {
    padding: 1.25rem;
}

.sow-advisory-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.sow-advisory-card__head h3 {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.3;
    padding-top: 0.2rem;
}

.sow-advisory-card__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--sow-blue-50);
    color: var(--sow-blue-600);
}

.sow-advisory-card__icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.sow-advisory-card__icon--fit {
    background: #ecfdf5;
    color: #059669;
}

.sow-advisory-card__icon--caution {
    background: #fffbeb;
    color: #d97706;
}

.sow-advisory-card__icon--growth {
    background: #eff6ff;
    color: var(--sow-blue-600);
}

.sow-advisory-card p {
    margin: 0;
    color: var(--sow-slate-600);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.sow-callout {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-left: 4px solid var(--sow-blue-600);
    color: var(--sow-slate-700);
    line-height: 1.7;
}

.sow-checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.sow-source-section {
    padding: 1.25rem;
    border: 1px solid var(--sow-slate-200);
    border-radius: 0.75rem;
    background: var(--sow-white);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.sow-source-section .sow-section__title {
    margin-bottom: 0.75rem;
    font-size: 1.45rem;
}

.sow-source-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.sow-source-list a {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--sow-blue-700);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
    overflow-wrap: anywhere;
}

.sow-check-card {
    padding: 1.25rem;
    border: 1px solid var(--sow-slate-200);
    border-radius: 0.75rem;
    background: var(--sow-white);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.sow-check-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.sow-check-card__head h3 {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.3;
    padding-top: 0.2rem;
}

.sow-check-card__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--sow-blue-50);
    color: var(--sow-blue-600);
}

.sow-check-card__icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.sow-check-card p {
    margin: 0;
    color: var(--sow-slate-600);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.sow-feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    list-style: none;
}

.sow-feature-list__item {
    display: flex;
    align-items: center;
}

.sow-feature-list__icon {
    margin-right: 0.5rem;
    color: var(--sow-blue-600);
}

.sow-image-frame {
    overflow: hidden;
    border: 1px solid var(--sow-slate-200);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(15, 23, 42, 0.1);
}

.sow-plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

.sow-plan-card,
.sow-amenity-card,
.sow-developer-card,
.sow-faq-item {
    background: var(--sow-white);
    border: 1px solid var(--sow-slate-200);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.sow-plan-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.sow-plan-card:hover {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.sow-plan-card__title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.sow-plan-card__meta {
    margin-bottom: 1rem;
    color: var(--sow-slate-500);
    font-size: 0.875rem;
}

.sow-plan-card__image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border: 1px solid var(--sow-slate-200);
    border-radius: 0.5rem;
    background: var(--sow-slate-100);
}

.sow-plan-card__copy {
    color: var(--sow-slate-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.sow-plan-card__preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
    background: var(--sow-slate-100);
}

.sow-plan-card__placeholder {
    color: var(--sow-slate-400);
    font-size: 0.75rem;
}

.sow-button-secondary {
    width: 100%;
    border: 0;
    border-radius: 0.375rem;
    background: var(--sow-slate-100);
    color: var(--sow-slate-700);
    cursor: pointer;
    font: inherit;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.sow-button-secondary:hover {
    background: var(--sow-slate-200);
}

.sow-amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.sow-amenity-card {
    padding: 1rem;
    border-color: var(--sow-slate-100);
    border-radius: 0.75rem;
}

.sow-amenity-card__icon {
    margin-bottom: 0.5rem;
    font-size: 1.875rem;
    line-height: 1;
}

.sow-amenity-card__label {
    font-weight: 500;
}

.sow-table-wrap {
    overflow-x: auto;
}

.sow-pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.sow-pricing-table thead {
    background: var(--sow-slate-100);
    color: var(--sow-slate-700);
}

.sow-pricing-table th,
.sow-pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--sow-slate-200);
}

.sow-pricing-table th {
    font-weight: 600;
}

.sow-pricing-table th:first-child {
    border-top-left-radius: 0.5rem;
}

.sow-pricing-table th:last-child {
    border-top-right-radius: 0.5rem;
}

.sow-pricing-table tbody {
    background: var(--sow-white);
}

.sow-pricing-table__price {
    color: var(--sow-blue-600);
    font-weight: 500;
}

.sow-note {
    margin-top: 1rem;
    color: var(--sow-slate-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.sow-image-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

.sow-image-card {
    overflow: hidden;
    border: 1px solid var(--sow-slate-200);
    border-radius: 0.75rem;
    background: var(--sow-white);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

/* Explicit height: intrinsic square assets + width/height attrs were stretching the band past aspect-ratio. */
.sow-image-card > img {
    display: block;
    width: 100%;
    height: clamp(10rem, 32vw, 13.5rem);
    object-fit: cover;
    object-position: center;
}

.sow-image-card h3 {
    padding: 1rem 1rem 0;
    font-size: 1.125rem;
}

.sow-image-card p {
    padding: 0.5rem 1rem 1rem;
    color: var(--sow-slate-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.sow-developer-card {
    padding: 2rem;
    border-radius: 1rem;
}

.sow-developer-card__heading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.sow-developer-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    background: var(--sow-white);
    border: 1px solid var(--sow-slate-200);
}

.sow-developer-card__logo img {
    display: block;
    height: 2.375rem;
    width: auto;
    max-width: 8.5rem;
    object-fit: contain;
}

.sow-developer-card__title {
    margin: 0;
    flex: 1 1 12rem;
    min-width: min(100%, 16rem);
    font-size: 1.5rem;
    font-weight: 700;
}

.sow-developer-card__body {
    color: var(--sow-slate-600);
    line-height: 1.75;
    font-size: 1.0625rem;
}

.sow-developer-card__body p {
    margin: 0;
}

.sow-developer-card__body p + p {
    margin-top: 1rem;
}

.sow-developer-card__highlights {
    margin: 1.25rem 0 0;
    padding: 0 0 0 1.25rem;
    color: var(--sow-slate-600);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.sow-developer-card__highlights li + li {
    margin-top: 0.35rem;
}

.sow-faq-list {
    display: grid;
    gap: 1rem;
}

.sow-faq-item {
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.sow-faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--sow-slate-900);
    font-size: 1.125rem;
    font-weight: 600;
    list-style: none;
    outline: none;
}

.sow-faq-item__summary::-webkit-details-marker {
    display: none;
}

.sow-faq-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sow-blue-600);
    transition: transform 180ms ease;
}

.sow-faq-item__icon svg {
    display: block;
    width: 1.375rem;
    height: 1.375rem;
}

.sow-faq-item[open] .sow-faq-item__icon {
    transform: rotate(180deg);
}

.sow-faq-item__answer {
    margin-top: 1rem;
    color: var(--sow-slate-600);
    line-height: 1.75;
}

.sow-faq-item__answer--rich p {
    margin: 0;
}

.sow-faq-item__answer--rich p + p {
    margin-top: 0.75rem;
}

.sow-cta {
    margin-top: 3rem;
    padding: 5rem 0;
    background: var(--sow-blue-600);
}

.sow-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
    width: min(100% - 2rem, 48rem);
    margin: 0 auto;
    text-align: center;
}

/* Beat .sow-page h2 / .sow-page p (margin + color) */
.sow-cta h2.sow-cta__title {
    margin: 0;
    max-width: 36rem;
    color: var(--sow-white);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.25;
}

.sow-cta p.sow-cta__copy {
    margin: 0;
    max-width: 40rem;
    color: var(--sow-blue-100);
    font-size: 1.125rem;
    line-height: 1.65;
}

.sow-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    background: var(--sow-white);
    color: var(--sow-blue-700);
    font: inherit;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
    transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sow-cta__button:hover {
    background: var(--sow-blue-50);
    color: var(--sow-blue-900);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.28);
}

.sow-cta__button:focus-visible {
    outline: 2px solid var(--sow-white);
    outline-offset: 3px;
}

/* Beat .sow-page a { color: inherit } */
.sow-page a.sow-cta__button {
    color: var(--sow-blue-700);
}

.sow-page a.sow-cta__button:hover {
    color: var(--sow-blue-900);
}

.sow-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(100%, 42rem);
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--sow-white);
    box-shadow: 0 20px 25px rgba(15, 23, 42, 0.15);
}

.sow-form__input {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--sow-slate-300);
    border-radius: 0.25rem;
    color: var(--sow-slate-900);
    font: inherit;
    padding: 0.75rem 1rem;
}

.sow-form__input:focus {
    border-color: var(--sow-blue-500);
    box-shadow: 0 0 0 1px var(--sow-blue-500);
    outline: none;
}

.sow-form__button {
    border: 0;
    border-radius: 0.25rem;
    background: var(--sow-slate-900);
    color: var(--sow-white);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    padding: 0.75rem 2rem;
    white-space: nowrap;
}

.sow-form__button:hover {
    background: var(--sow-slate-800);
}

.sow-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--sow-slate-800);
    background: var(--sow-slate-900);
    color: var(--sow-slate-400);
}

.sow-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.sow-footer__brand-col {
    min-width: 0;
}

.sow-footer a.sow-footer__wordmark {
    text-decoration: none;
}

.sow-footer__wordmark {
    display: inline-block;
    margin-bottom: 0.75rem;
    line-height: 0;
}

.sow-footer__wordmark-img {
    display: block;
    height: 1.875rem;
    width: auto;
    max-width: 8rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.sow-footer__title--snap {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.sow-footer__title {
    margin-bottom: 1rem;
    color: var(--sow-white);
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
}

.sow-footer__text,
.sow-footer__list {
    font-size: 0.875rem;
}

.sow-footer__brand-col .sow-footer__text + .sow-footer__text {
    margin-top: 0.65rem;
}

.sow-footer__brand-col .sow-footer__list + .sow-footer__text {
    margin-top: 1.1rem;
}

.sow-footer__text--fine {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--sow-slate-500);
}

.sow-footer__list {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Beat .sow-page a { color: inherit }; make footer links visibly clickable */
.sow-footer a.sow-footer__link {
    color: var(--sow-blue-100);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
}

.sow-footer a.sow-footer__link:hover,
.sow-footer a.sow-footer__link:focus-visible {
    color: var(--sow-white);
}

.sow-footer__copyright {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sow-slate-800);
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 640px) {
    .sow-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .sow-media-grid--two,
    .sow-image-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .sow-form {
        flex-direction: row;
    }

    .sow-form__input {
        flex: 1 1 0;
    }
}

@media (min-width: 768px) {
    .sow-nav__toggle {
        display: none;
    }

    .sow-nav__bar {
        flex-wrap: nowrap;
    }

    .sow-nav__drawer {
        display: flex !important;
        width: auto;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        border: 0;
    }

    .sow-nav__links {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .sow-nav__cta--inline {
        align-self: center;
        width: auto;
    }

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

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

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

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

    .sow-advisory-grid,
    .sow-media-grid--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sow-footer__inner {
        /* Brand + disclaimer use remaining width; Explore stays only as wide as the link stack */
        grid-template-columns: minmax(0, 1fr) minmax(12rem, max-content);
        column-gap: 2.5rem;
    }
}

/* Between tablet and full desktop, tighten nav typography/spacing to prevent overflow */
@media (min-width: 768px) and (max-width: 1150px) {
    .sow-nav__bar {
        gap: 0.65rem;
    }

    .sow-nav__brand-img {
        max-width: 6.9rem;
    }

    .sow-nav__drawer {
        gap: 0.75rem;
    }

    .sow-nav__links {
        gap: 0.9rem;
        font-size: 0.78rem;
    }

    .sow-page a.sow-nav__cta {
        padding: 0.42rem 0.82rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 900px) {
    .sow-plan-grid--wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

/* --- Motion: hero / inner-hero load stagger + section scroll stagger --- */
@keyframes sow-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 1.1rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes sow-rise-soft {
    from {
        opacity: 0;
        transform: translate3d(0, 0.85rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: no-preference) {
    html.sow-motion .sow-hero__content > *,
    html.sow-motion .sow-hero-inner__inner > * {
        opacity: 0;
        animation: sow-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        will-change: opacity, transform;
    }

    html.sow-motion .sow-hero__content > *:nth-child(1),
    html.sow-motion .sow-hero-inner__inner > *:nth-child(1) {
        animation-delay: 0.06s;
    }

    html.sow-motion .sow-hero__content > *:nth-child(2),
    html.sow-motion .sow-hero-inner__inner > *:nth-child(2) {
        animation-delay: 0.18s;
    }

    html.sow-motion .sow-hero__content > *:nth-child(3),
    html.sow-motion .sow-hero-inner__inner > *:nth-child(3) {
        animation-delay: 0.3s;
    }

    html.sow-motion .sow-hero__content > *:nth-child(4),
    html.sow-motion .sow-hero-inner__inner > *:nth-child(4) {
        animation-delay: 0.42s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > * {
        animation: sow-rise-soft 0.62s cubic-bezier(0.22, 1, 0.36, 1) backwards;
        will-change: opacity, transform;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(1) {
        animation-delay: 0.04s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(2) {
        animation-delay: 0.1s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(3) {
        animation-delay: 0.16s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(4) {
        animation-delay: 0.22s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(5) {
        animation-delay: 0.28s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(6) {
        animation-delay: 0.34s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(7) {
        animation-delay: 0.4s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(8) {
        animation-delay: 0.46s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(9) {
        animation-delay: 0.52s;
    }

    html.sow-motion main.sow-main .sow-section.sow-inview > *:nth-child(10) {
        animation-delay: 0.58s;
    }

    html.sow-motion .sow-cta__inner.sow-inview > * {
        animation: sow-rise-soft 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
        will-change: opacity, transform;
    }

    html.sow-motion .sow-cta__inner.sow-inview > *:nth-child(1) {
        animation-delay: 0.06s;
    }

    html.sow-motion .sow-cta__inner.sow-inview > *:nth-child(2) {
        animation-delay: 0.14s;
    }

    html.sow-motion .sow-cta__inner.sow-inview > *:nth-child(3) {
        animation-delay: 0.22s;
    }

    /* Skip motion when block was already on-screen at first observe (avoids flash) */
    html.sow-motion main.sow-main .sow-section.sow-inview--instant > *,
    html.sow-motion .sow-cta__inner.sow-inview--instant > * {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html.sow-motion .sow-hero__content > *,
    html.sow-motion .sow-hero-inner__inner > *,
    html.sow-motion main.sow-main .sow-section.sow-inview > *,
    html.sow-motion .sow-cta__inner.sow-inview > * {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
