:root {
    --bg-white: #FFFFFF;
    --navy: #111111;
    --accent-yellow: #fedd58;
    --accent-pink: #3B3B3B;
    --accent-green: #2B2B2B;
    --accent-purple: #444444;
    --accent-blue: #5A5A5A;
    --pastel-yellow: #FFF7DD;
    --pastel-pink: #F3F3F3;
    --pastel-green: #EFEFEF;
    --pastel-purple: #E8E8E8;
    --pastel-blue: #FAFAFA;
    --text-light: #616161;
    --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.06);
    --shadow-card: 0 18px 44px rgba(17, 17, 17, 0.08);
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --header-height-mobile: 4.35rem;
    --header-height-desktop: 5rem;
}

body.menu-open {
    overflow: hidden;
}

body.property-modal-open {
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
}

.blob-yellow {
    background: var(--accent-yellow);
}

.blob-pink {
    background: var(--accent-pink);
}

.blob-green {
    background: var(--accent-green);
}

.blob-purple {
    background: var(--accent-purple);
}

.blob-blue {
    background: var(--accent-blue);
}

.doodle-circle {
    display: inline-block;
    position: relative;
}

.doodle-circle::after {
    content: '';
    position: absolute;
    inset: -8px -12px;
    border: 3px solid var(--accent-pink);
    border-radius: 50%;
    transform: rotate(-3deg);
    pointer-events: none;
}

.doodle-circle--draw::after {
    display: none;
}

.doodle-circle__svg {
    position: absolute;
    left: calc(-18px - 1.5%);
    top: 50%;
    width: calc(103% + 36px);
    height: auto;
    color: var(--accent-pink);
    transform: translateY(-50%) rotate(-4deg);
    pointer-events: none;
}

.doodle-circle__svg path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: doodle-circle-draw 1.35s cubic-bezier(0.77, 0, 0.175, 1) 0.35s forwards;
}

@keyframes doodle-circle-draw {
    to {
        stroke-dashoffset: 0;
    }
}

.doodle-underline {
    display: inline-block;
    position: relative;
}

.doodle-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12'%3E%3Cpath d='M2 8 Q50 2 100 8 Q150 14 198 6' stroke='%23F2C65A' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--accent-yellow);
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--navy);
}

.btn-primary:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--navy);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid var(--navy);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--navy);
    color: #fff;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(34, 49, 79, 0.12);
}

.card-pastel-yellow {
    background: var(--pastel-yellow);
}

.card-pastel-pink {
    background: var(--pastel-pink);
}

.card-pastel-green {
    background: var(--pastel-green);
}

.card-pastel-purple {
    background: var(--pastel-purple);
}

.card-pastel-blue {
    background: var(--pastel-blue);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-soft);
}

.article-modal {
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease;
}

.article-modal__backdrop {
    opacity: 0;
    transition: opacity 0.26s ease;
}

.article-modal__panel {
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.article-modal.is-open,
.article-modal.is-closing {
    pointer-events: auto;
}

.article-modal.is-open {
    opacity: 1;
}

.article-modal.is-open .article-modal__backdrop {
    opacity: 1;
}

.article-modal.is-open .article-modal__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.property-modal {
    position: fixed;
    inset: 0;
    z-index: 1700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease;
}

.property-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(36, 50, 77, 0.56);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.26s ease;
}

.property-modal__panel {
    position: relative;
    z-index: 1;
    width: min(100%, 30rem);
    padding: 1rem;
    border-radius: 1.9rem;
    background: rgba(255, 248, 242, 0.96);
    border: 1px solid rgba(36, 50, 77, 0.08);
    box-shadow: 0 28px 60px rgba(36, 50, 77, 0.22);
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}

.property-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0.68rem 1rem;
    margin-left: auto;
    border-radius: 999px;
    border: 1px solid rgba(36, 50, 77, 0.1);
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(36, 50, 77, 0.1);
}

.property-modal__media {
    margin-top: 0.9rem;
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--pastel-yellow), var(--pastel-pink));
}

.property-modal__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.property-modal__title {
    margin: 0.85rem 0 0;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--navy);
    text-align: center;
}

.property-modal.is-open,
.property-modal.is-closing {
    pointer-events: auto;
}

.property-modal.is-open {
    opacity: 1;
}

.property-modal.is-open .property-modal__backdrop {
    opacity: 1;
}

.property-modal.is-open .property-modal__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.site-header__inner {
    position: relative;
}

.header-brand {
    min-width: 0;
}

.header-brand .logo-mark {
    line-height: 1;
}

.brand-name--mobile {
    display: none;
}

.brand-role {
    line-height: 1.15;
}

.header-desktop-talk {
    display: none;
}

.header-mobile-talk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    padding: 0.68rem 0.9rem;
    border-radius: 1.15rem;
    border: 2px solid var(--navy);
    background: var(--accent-yellow);
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 3px 3px 0 var(--navy);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-mobile-talk i,
.header-desktop-talk i {
    font-size: 1.12rem;
    line-height: 1;
}

.header-mobile-talk:hover,
.header-mobile-talk:focus-visible {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--navy);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-strip span {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.logo-strip span:hover {
    opacity: 1;
}

.listing-showcase-heading {
    max-width: 44rem;
    margin-inline: auto;
    margin-bottom: 2.25rem;
}

.section-slim {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.highlight-intro {
    max-width: 44rem;
    margin-inline: auto;
    text-align: center;
}

.highlight-intro__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-yellow);
}

.highlight-intro__title {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--navy);
    text-wrap: balance;
}

.highlight-intro__copy {
    margin: 1rem auto 0;
    max-width: 36rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(23, 23, 23, 0.66);
}

.trust-pillars,
.focus-grid,
.proof-band {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

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

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

.trust-pillar,
.focus-card,
.proof-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(23, 23, 23, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.trust-pillar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 1px solid rgba(23, 23, 23, 0.08);
    background: var(--pastel-yellow);
    color: var(--navy);
    font-size: 1.2rem;
}

.trust-pillar__title,
.focus-card__title,
.proof-card__title {
    margin: 1rem 0 0;
    font-family: 'Fraunces', serif;
    font-size: 1.45rem;
    line-height: 1.08;
    color: var(--navy);
}

.trust-pillar__copy,
.focus-card__copy,
.proof-card__copy {
    margin: 0.75rem 0 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(23, 23, 23, 0.64);
}

.proof-card__label {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-yellow);
}

.listing-showcase-heading .font-hand {
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.listing-showcase-heading h2 {
    margin-bottom: 1rem;
    line-height: 1.06;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.listing-showcase-heading .section-copy-soft {
    margin-top: 0;
    line-height: 1.72;
}

.property-showcase-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
}

.property-showcase-card {
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
}

.property-showcase-card__media {
    position: relative;
    aspect-ratio: 1 / 1.02;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, var(--pastel-yellow), #f2f2f2);
}

.property-showcase-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.property-showcase-card__zoom {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    font-size: 1.05rem;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.property-showcase-card__zoom:hover,
.property-showcase-card__zoom:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.14);
    background: rgba(255, 255, 255, 0.98);
}

.property-showcase-card__body {
    padding: 0.85rem 0.9rem 0.95rem;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.property-showcase-card__title {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--navy);
}

.property-showcase-card__meta {
    margin: 0.3rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(17, 17, 17, 0.55);
}

.service-card--client-highlight {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 245, 0.96));
    border: 1px solid rgba(34, 49, 79, 0.08);
    box-shadow: 0 16px 34px rgba(34, 49, 79, 0.08);
}

.service-card--client-highlight .service-card__title {
    margin-top: 0.1rem;
    color: var(--navy);
}

.service-card--client-highlight .service-card__copy {
    max-width: 13rem;
    color: rgba(34, 49, 79, 0.66);
}

.service-card__icon--client-highlight {
    background: rgba(34, 49, 79, 0.08);
    border: 1px solid rgba(34, 49, 79, 0.08);
}

.property-showcase-card__tag {
    position: absolute;
    left: 0.8rem;
    bottom: 0.8rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
}

.section {
    padding: 5rem 1.5rem;
    position: relative;
}

.hero-viewport {
    position: relative;
    min-height: calc(100svh - var(--header-height-mobile));
    padding: 2rem 1.5rem 3rem;
    display: flex;
    align-items: center;
}

.hero-viewport__inner {
    width: 100%;
}

.hero-grid {
    align-items: center;
    min-height: calc(100svh - var(--header-height-mobile) - 5rem);
}

.hero-copy {
    max-width: 42rem;
}

.hero-copy__panel {
    position: relative;
    max-width: 34rem;
}

.hero-copy__panel--intro {
    max-width: 40rem;
}

.hero-mobile-trust,
.hero-mobile-cred {
    display: none;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.hero-title {
    font-size: clamp(3rem, 4.3vw, 4.95rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-subline {
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-subline--intro {
    max-width: 34rem;
    line-height: 1.18;
}

.hero-lead {
    max-width: 31rem;
}

.hero-intro__body {
    display: grid;
    gap: 1rem;
    max-width: 39rem;
    margin-bottom: 1.75rem;
}

.hero-intro__body p {
    margin: 0;
    color: rgba(17, 17, 17, 0.72);
    font-size: 1rem;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-word;
}

.hero-intro__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 39rem;
    margin-bottom: 1.75rem;
}

.hero-intro__fact {
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.88);
    padding: 1rem 1.05rem;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
}

.hero-intro__fact-label {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.5);
}

.hero-intro__fact-copy {
    margin: 0;
    color: rgba(17, 17, 17, 0.72);
    font-size: 0.94rem;
    line-height: 1.7;
}

.hero-intro__timeline {
    display: grid;
    gap: 0.8rem;
}

.hero-intro__timeline-item {
    position: relative;
    padding-left: 1rem;
}

.hero-intro__timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--accent-yellow);
    box-shadow: 0 0 0 4px rgba(244, 201, 93, 0.16);
}

.hero-intro__timeline-year {
    margin: 0 0 0.25rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.48);
}

.hero-intro__timeline-copy {
    margin: 0;
    color: rgba(17, 17, 17, 0.72);
    font-size: 0.9rem;
    line-height: 1.65;
}

.hero-actions {
    align-items: center;
}

.hero-visual {
    align-self: center;
}

.hero-visual--intro {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-profile-card {
    position: relative;
    width: min(500px, 100%);
    border-radius: 2rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
    padding: 0.9rem;
}

.hero-profile-card__frame {
    position: relative;
    overflow: hidden;
    border-radius: 1.6rem;
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, rgba(255, 247, 221, 0.98), rgba(255, 255, 255, 0.95));
}

.hero-profile-card__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 2rem;
    }

    .listing-showcase-heading {
        margin-bottom: 2.75rem;
    }

    .section-slim {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .property-showcase-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 2rem;
    }

    .hero-viewport {
        min-height: calc(100svh - var(--header-height-desktop));
        padding: clamp(1.1rem, 1.9vw, 1.8rem) 2rem;
    }

    .hero-grid {
        min-height: calc(100svh - var(--header-height-desktop) - clamp(1.5rem, 2.2vw, 2.4rem));
        gap: clamp(1.35rem, 2.2vw, 2.35rem);
    }

    .hero-copy {
        max-width: 40rem;
        padding-top: 0;
    }

    .hero-title {
        max-width: 12.4ch;
    }

    .hero-title--intro {
        max-width: 9.5ch;
    }

    .hero-grid--intro {
        grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
        gap: clamp(2rem, 4vw, 4.5rem);
    }

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

    .hero-profile-card {
        width: min(560px, 100%);
        padding: 1rem;
    }

    .hero-profile-card__frame {
        border-radius: 1.75rem;
    }

    .hero-card-deck {
        width: min(495px, 100%);
        height: clamp(320px, 30vw, 410px);
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-card-deck {
    position: relative;
    width: min(620px, 100%);
    height: clamp(400px, 52vw, 520px);
    isolation: isolate;
}

.hero-visual-stage {
    position: absolute;
    inset: 9% 5% 12%;
    border-radius: 2.1rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
        linear-gradient(135deg, rgba(255, 247, 221, 0.72), rgba(245, 245, 245, 0.62) 52%, rgba(232, 232, 232, 0.58));
    border: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 0;
}

.hero-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.5rem;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 49, 79, 0.09);
    background: rgba(255, 255, 255, 0.72);
    color: rgba(34, 49, 79, 0.82);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 10px 24px rgba(34, 49, 79, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-proof-pill--accent {
    background: rgba(255, 241, 201, 0.92);
}

.hero-image-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(190px, 31vw, 260px);
    aspect-ratio: 3 / 4;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
    background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-blue));
    opacity: 0;
    cursor: pointer;
    scale: 1;
    transition: scale 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-image-card__visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 247, 221, 0.96), rgba(255, 255, 255, 0.96) 45%, rgba(238, 238, 238, 0.96));
}

.hero-image-card__visual--clean {
    padding: 0;
    background: none;
}

.hero-image-card__media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-card__media-img--portrait-main {
    object-position: center top;
}

.hero-image-card__media-img--interior {
    object-position: center center;
}

.hero-image-card__media-img--building {
    object-position: center center;
}

.hero-image-card__visual--profile {
    background: linear-gradient(160deg, rgba(255, 247, 221, 0.98), rgba(255, 255, 255, 0.92) 45%, rgba(238, 238, 238, 0.92));
}

.hero-image-card__visual--achievement {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(243, 243, 243, 0.92), rgba(255, 247, 221, 0.9));
}

.hero-image-card__visual--listing {
    background: linear-gradient(150deg, rgba(250, 250, 250, 0.96), rgba(255, 247, 221, 0.9), rgba(243, 243, 243, 0.92));
}

.hero-image-card__frame {
    width: 100%;
    border-radius: 1.3rem;
    border: 1.5px solid rgba(34, 49, 79, 0.1);
    background: rgba(255, 255, 255, 0.65);
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.hero-image-card__frame--tall {
    min-height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-image-card__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(34, 49, 79, 0.08);
    color: rgba(34, 49, 79, 0.58);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-image-card__title {
    margin-top: 1rem;
    font-family: 'Fraunces', serif;
    font-size: 2.1rem;
    line-height: 1;
    color: var(--navy);
}

.hero-image-card__pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hero-image-card__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 49, 79, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: rgba(34, 49, 79, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 49, 79, 0.06) 0%, rgba(34, 49, 79, 0.015) 38%, rgba(34, 49, 79, 0) 70%);
}

.hero-image-card__caption {
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.55rem;
    border-radius: 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: rgba(34, 49, 79, 0.55);
    backdrop-filter: blur(4px);
    transition: background 0.35s ease;
}

.hero-image-card__name-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 1.6rem);
}

.hero-image-card__name-badge span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 49, 79, 0.08);
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(34, 49, 79, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}

.hero-card-deck .hero-image-card__caption,
.hero-card-deck .hero-image-card__frame,
.hero-card-deck .hero-image-card__eyebrow,
.hero-card-deck .hero-image-card__title,
.hero-card-deck .hero-image-card__pill-row {
    display: none;
}

.visual-photo-frame {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    aspect-ratio: 4 / 3;
    border-radius: 1.4rem;
    border: 1px solid rgba(34, 49, 79, 0.1);
    padding: 1rem;
    background: linear-gradient(135deg, var(--pastel-yellow), var(--pastel-pink), var(--pastel-blue));
}

.visual-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 49, 79, 0.16), rgba(34, 49, 79, 0.02) 45%, rgba(34, 49, 79, 0));
}

.visual-photo-frame__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.visual-photo-frame > span {
    position: relative;
    z-index: 1;
}

.hero-image-card:hover,
.hero-image-card:focus-visible,
.hero-image-card.is-zoomed {
    scale: 1.06;
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 24px 52px rgba(34, 49, 79, 0.26);
}

.hero-image-card:hover .hero-image-card__caption,
.hero-image-card:focus-visible .hero-image-card__caption,
.hero-image-card.is-zoomed .hero-image-card__caption {
    background: rgba(34, 49, 79, 0.72);
}

.hero-image-card--left {
    z-index: 1;
    animation: hero-card-open-left 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.02s forwards;
}

.hero-image-card--center {
    z-index: 3;
    animation: hero-card-open-center 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.hero-image-card--right {
    z-index: 2;
    animation: hero-card-open-right 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.hero-doodle-arrow {
    top: 3.5rem;
    right: calc(100% - 0.75rem);
    width: 5rem;
    height: 5rem;
    color: rgba(34, 49, 79, 0.35);
    transform: rotate(-8deg);
    transform-origin: center;
    animation: hero-arrow-wiggle 3.4s ease-in-out 1.2s infinite;
}

.hero-doodle-arrow path:first-child {
    stroke-dasharray: 5 5;
}

.hero-float-badge {
    position: absolute;
    z-index: 20;
}

.hero-float-badge--top {
    top: 6%;
    right: -1%;
}

.hero-float-badge--mid {
    top: 56%;
    right: -7%;
}

.hero-float-badge--bottom {
    bottom: 5%;
    left: 1%;
}

.achievement-section {
    background:
        radial-gradient(circle at top right, rgba(224, 177, 61, 0.10), transparent 26%),
        radial-gradient(circle at bottom left, rgba(17, 17, 17, 0.04), transparent 24%);
}

.achievement-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.award-poster {
    position: relative;
    overflow: hidden;
    min-height: 18.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 1.5rem;
    color: #fff;
    box-shadow: 0 20px 45px rgba(34, 49, 79, 0.16);
    isolation: isolate;
}

.award-poster__media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
}

.award-poster__media-img--poster {
    object-fit: cover;
    object-position: center;
}

.award-poster__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 49, 79, 0.48), rgba(34, 49, 79, 0.12) 46%, rgba(34, 49, 79, 0.02) 74%);
    z-index: 0;
}

.award-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 22%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.18), transparent 18%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.award-poster--indigo {
    background: linear-gradient(145deg, #101010 0%, #2a2a2a 52%, #1a1a1a 100%);
}

.award-poster--gold {
    background: linear-gradient(145deg, #2a2a2a 0%, #4b4b4b 40%, #e0b13d 100%);
}

.award-poster--teal {
    background: linear-gradient(145deg, #1b1b1b 0%, #3d3d3d 42%, #5a5a5a 100%);
}

.award-poster__glow {
    position: absolute;
    width: 14rem;
    height: 14rem;
    right: -3rem;
    top: -3rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 60%);
    filter: blur(8px);
    z-index: 0;
}

.award-poster__topline,
.award-poster__summary,
.award-poster__content,
.award-poster__portrait-wrap {
    position: relative;
    z-index: 1;
}

.award-poster__eyebrow,
.award-poster__title-group,
.award-poster__profile,
.award-poster__badges {
    position: relative;
    z-index: 1;
}

.award-poster__topline {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    z-index: 2;
}

.award-poster__eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.award-poster__date {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.award-poster__title-group {
    margin-top: 2.2rem;
    max-width: 28rem;
}

.award-poster__kicker {
    margin: 0 0 0.7rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.88;
}

.award-poster__title {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.75rem, 2.6vw, 2.8rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.award-poster__meta {
    margin: 0.85rem 0 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}

.award-poster__summary {
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.35rem;
    padding: 1rem 1.1rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.award-poster__summary-title {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: -0.03em;
}

.award-poster__summary-meta {
    margin: 0.55rem 0 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.84);
}

.award-poster--feature {
    aspect-ratio: 16 / 10;
    min-height: 0;
}

.award-poster--spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
    align-items: stretch;
    padding: 0;
    min-height: 19rem;
}

.award-poster__content {
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.award-poster__portrait-wrap {
    position: relative;
    align-self: stretch;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    border-radius: 1.75rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.18));
}

.award-poster__portrait-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(15, 108, 114, 0.05), rgba(15, 108, 114, 0.24));
    z-index: 1;
}

.award-poster__portrait-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: inherit;
}

.award-poster__profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.award-poster__ring {
    width: 4.9rem;
    height: 4.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #fff, #ffe59e 58%, #f0b94f 100%);
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.5), 0 10px 20px rgba(0, 0, 0, 0.14);
}

.award-poster__ring span {
    font-family: 'Fraunces', serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy);
}

.award-poster__name {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.25;
}

.award-poster__role {
    margin: 0.28rem 0 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.award-poster__badges {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.award-poster__badges span {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 700;
}

.certificate-row {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}

.certificate-card {
    position: relative;
    overflow: hidden;
    min-height: 13rem;
    border-radius: 1.8rem;
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        linear-gradient(135deg, var(--pastel-yellow), var(--pastel-blue));
    border: 1px solid rgba(34, 49, 79, 0.08);
    box-shadow: var(--shadow-card);
}

.certificate-card__media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
}

.certificate-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.75rem;
    background: linear-gradient(180deg, var(--accent-green), var(--accent-yellow), var(--accent-pink));
}

.certificate-card__seal {
    position: absolute;
    right: 1.35rem;
    top: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff4c6, #f2c65a 60%, #d79a21 100%);
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 18px rgba(242, 198, 90, 0.28);
}

.certificate-card__label {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-green);
    position: relative;
    z-index: 1;
}

.certificate-card__title {
    margin: 1rem 0 0;
    max-width: 16rem;
    font-family: 'Fraunces', serif;
    font-size: 1.55rem;
    line-height: 1.08;
    color: var(--navy);
    position: relative;
    z-index: 1;
}

.certificate-card__meta {
    margin: 1rem 0 0;
    max-width: 18rem;
    color: rgba(34, 49, 79, 0.64);
    font-size: 0.96rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

    .award-poster--wide {
        grid-column: 1 / -1;
    }

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

@media (min-width: 1024px) {
    .award-poster--spotlight {
        min-height: clamp(24rem, 28vw, 29rem);
    }

    .award-poster__content {
        padding: 2rem 2.1rem;
    }

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

@keyframes hero-card-open-left {
    0% {
        transform: translate(-50%, -50%) scale(0.7) rotate(0deg);
        opacity: 0;
    }

    40% {
        transform: translate(calc(-50% - 220px), -55%) scale(0.98) rotate(-16deg);
        opacity: 1;
    }

    72% {
        transform: translate(calc(-50% - 184px), -48.5%) scale(0.9) rotate(-8deg);
        opacity: 1;
    }

    100% {
        transform: translate(calc(-50% - 195px), -49%) scale(0.92) rotate(-10deg);
        opacity: 1;
    }
}

@keyframes hero-card-open-center {
    0% {
        transform: translate(-50%, -50%) scale(0.68) rotate(0deg);
        opacity: 0;
    }

    45% {
        transform: translate(-50%, -54%) scale(1.12) rotate(-1.5deg);
        opacity: 1;
    }

    78% {
        transform: translate(-50%, -51.4%) scale(0.97) rotate(0.6deg);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -52%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes hero-card-open-right {
    0% {
        transform: translate(-50%, -50%) scale(0.7) rotate(0deg);
        opacity: 0;
    }

    40% {
        transform: translate(calc(-50% + 220px), -55%) scale(0.98) rotate(16deg);
        opacity: 1;
    }

    72% {
        transform: translate(calc(-50% + 184px), -48.5%) scale(0.9) rotate(8deg);
        opacity: 1;
    }

    100% {
        transform: translate(calc(-50% + 195px), -49%) scale(0.92) rotate(10deg);
        opacity: 1;
    }
}

@keyframes hero-arrow-wiggle {
    0%, 100% {
        transform: rotate(-8deg) translateY(0);
    }

    50% {
        transform: rotate(-1deg) translateY(-4px);
    }
}

@media (max-width: 1024px) {
    .hero-doodle-arrow {
        width: 4.5rem;
        height: 4.5rem;
    }

    .hero-float-badge--top {
        top: 7%;
        right: 1%;
    }

    .hero-float-badge--mid {
        top: 58%;
        right: -2%;
    }

    .hero-float-badge--bottom {
        bottom: 4%;
        left: 4%;
    }

    @keyframes hero-card-open-left {
        100% {
            transform: translate(calc(-50% - 160px), -49%) scale(0.92) rotate(-8deg);
            opacity: 1;
        }
    }

    @keyframes hero-card-open-right {
        100% {
            transform: translate(calc(-50% + 160px), -49%) scale(0.92) rotate(8deg);
            opacity: 1;
        }
    }
}

@media (max-width: 768px) {
    .achievement-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .achievement-heading {
        margin-bottom: 1.75rem;
    }

    .achievement-heading .font-hand {
        font-size: 1.65rem;
        line-height: 1.1;
    }

    .achievement-heading h2 {
        max-width: 11ch;
        margin-inline: auto;
        font-size: clamp(2.15rem, 8vw, 2.85rem);
        line-height: 1.03;
        letter-spacing: -0.04em;
        text-wrap: balance;
    }

    .achievement-heading__copy {
        max-width: 20rem;
        margin-top: 0.85rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .achievement-grid {
        gap: 1rem;
    }

    .award-poster {
        min-height: 0;
        border-radius: 1.7rem;
        padding: 1rem;
    }

    .award-poster--feature {
        aspect-ratio: 5 / 4;
    }

    .award-poster__glow {
        width: 9rem;
        height: 9rem;
        right: -2rem;
        top: -2rem;
    }

    .award-poster__topline {
        top: 0.85rem;
        right: 0.85rem;
        gap: 0.45rem;
    }

    .award-poster__eyebrow,
    .award-poster__date {
        padding: 0.35rem 0.65rem;
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .award-poster--spotlight {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .award-poster__portrait-wrap {
        min-height: 13.5rem;
    }

    .award-poster--spotlight .award-poster__portrait-wrap {
        order: -1;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0.75rem 0.55rem 0;
    }

    .award-poster--spotlight .award-poster__portrait-img {
        position: relative;
        inset: auto;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }

    .award-poster__content {
        padding: 1.05rem 1rem 1rem;
        justify-content: flex-start;
    }

    .award-poster__title-group {
        margin-top: 0.85rem;
    }

    .award-poster__kicker {
        margin-bottom: 0.45rem;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }

    .award-poster__title {
        max-width: 8ch;
        font-size: 1.85rem;
    }

    .award-poster__meta {
        margin-top: 0.55rem;
        max-width: 15rem;
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .award-poster__badges {
        gap: 0.4rem;
        margin-top: 0.85rem;
    }

    .award-poster__badges span {
        padding: 0.32rem 0.55rem;
        font-size: 0.64rem;
        letter-spacing: 0.11em;
    }

    .award-poster__summary {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
        padding: 0.85rem 0.95rem;
        border-radius: 1.2rem;
    }

    .award-poster__summary-title {
        font-size: 1.22rem;
        line-height: 1.02;
    }

    .award-poster__summary-meta {
        margin-top: 0.35rem;
        max-width: 15rem;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .hero-viewport {
        box-sizing: border-box;
        min-height: calc(100vh - var(--header-height-mobile));
        min-height: calc(100svh - var(--header-height-mobile));
        min-height: calc(100dvh - var(--header-height-mobile));
        padding: 0.9rem 0.95rem 1rem;
        align-items: center;
    }

    .hero-viewport__inner {
        display: flex;
        align-items: stretch;
        min-height: 100%;
    }

    .hero-grid {
        width: 100%;
        min-height: calc(100% - 0.05rem);
        gap: 0.85rem;
        align-content: stretch;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 0.42rem;
        max-width: 100%;
        min-width: 0;
    }

    .hero-copy__panel {
        padding: 0;
        border-radius: 0;
        background: none;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-mobile-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 0.42rem;
        margin-bottom: 0.62rem;
    }

    .hero-mobile-trust span {
        display: inline-flex;
        align-items: center;
        gap: 0.36rem;
        min-height: 1.9rem;
        padding: 0.35rem 0.62rem;
        border-radius: 999px;
        border: 1px solid rgba(34, 49, 79, 0.12);
        background: rgba(255, 255, 255, 0.92);
        color: rgba(34, 49, 79, 0.86);
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.02em;
    }

    .hero-kicker {
        margin-bottom: 10px;
        font-size: 0.98rem;
        line-height: 1.08;
    }

    .hero-title {
        max-width: 11.3ch;
        margin-bottom: 0;
        font-size: clamp(2.04rem, 8.4vw, 2.62rem);
        line-height: 0.92;
        letter-spacing: -0.04em;
        text-align: left;
        text-wrap: balance;
    }

    .hero-title--intro {
        max-width: 9.2ch;
    }

    .hero-title .doodle-circle::after,
    .hero-title .doodle-circle__svg,
    .hero-title .doodle-underline::after {
        display: none;
    }

    .hero-subline {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .hero-subline--intro {
        margin-top: 10px;
        margin-bottom: 12px;
        font-size: 1.18rem;
        line-height: 1.28;
    }

    .hero-lead {
        max-width: 24rem;
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 0.88rem;
        line-height: 1.42;
        color: rgba(34, 49, 79, 0.72);
    }

    .hero-intro__body {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-intro__body p {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .hero-intro__facts {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-intro__fact {
        padding: 0.9rem 0.95rem;
        border-radius: 1.2rem;
    }

    .hero-intro__fact-copy {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .hero-proof-strip {
        gap: 0.48rem;
        margin-bottom: 0.7rem;
    }

    .hero-proof-pill {
        min-height: 2.15rem;
        padding: 0.48rem 0.68rem;
        font-size: 0.72rem;
        letter-spacing: -0.01em;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 0.58rem;
        margin-top: 0.02rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        justify-content: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        min-height: 3.05rem;
        padding: 0.76rem 0.92rem;
        font-size: 0.9rem;
        line-height: 1.12;
        text-align: center;
    }

    .hero-actions .btn-primary {
        box-shadow: 4px 4px 0 var(--navy);
    }

    .hero-card-deck {
        width: min(370px, 94vw);
        height: clamp(214px, 33vh, 276px);
        margin-inline: auto;
    }

    .hero-visual {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        align-items: center;
    }

    .hero-profile-card {
        width: min(332px, 88vw);
        padding: 0.75rem;
        border-radius: 1.6rem;
    }

    .hero-profile-card__frame {
        border-radius: 1.25rem;
        aspect-ratio: 4 / 4.9;
    }

    .hero-visual-stage {
        display: none;
    }

    .hero-image-card {
        width: min(45vw, 172px);
        border-width: 2px;
        border-radius: 1.15rem;
    }

    .hero-image-card__name-badge {
        top: 0.65rem;
        left: 0.65rem;
    }

    .hero-image-card__name-badge span {
        min-height: 1.8rem;
        padding: 0.34rem 0.62rem;
        font-size: 0.68rem;
    }

    .hero-image-card--right {
        display: block;
    }

    .hero-image-card:hover,
    .hero-image-card:focus-visible,
    .hero-image-card.is-zoomed {
        scale: 1.02;
    }

    .hero-float-badge {
        transform: scale(0.88);
        transform-origin: center;
    }

    .hero-float-badge--top {
        top: 4%;
        right: 5%;
    }

    .hero-float-badge--mid {
        top: auto;
        bottom: 16%;
        right: 2%;
    }

    .hero-float-badge--bottom {
        bottom: 5%;
        left: 6%;
    }

    .hero-doodle-arrow {
        display: none;
    }

    .hero-mobile-cred {
        display: flex;
        flex-direction: column;
        gap: 0.12rem;
        margin-inline: 0.22rem;
        padding: 0.66rem 0.75rem;
        border-radius: 0.9rem;
        border: 1px solid rgba(34, 49, 79, 0.09);
        background: linear-gradient(130deg, rgba(255, 241, 201, 0.84), rgba(214, 244, 238, 0.68));
        box-shadow: 0 8px 20px rgba(34, 49, 79, 0.08);
        color: rgba(34, 49, 79, 0.88);
    }

    .hero-mobile-cred strong {
        display: inline-flex;
        align-items: center;
        gap: 0.36rem;
        font-size: 0.8rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .hero-mobile-cred span {
        font-size: 0.74rem;
        line-height: 1.35;
        color: rgba(34, 49, 79, 0.72);
    }

    @keyframes hero-card-open-left {
        100% {
            transform: translate(calc(-50% - 94px), -49%) scale(0.92) rotate(-7deg);
            opacity: 1;
        }
    }

    @keyframes hero-card-open-right {
        100% {
            transform: translate(calc(-50% + 94px), -49%) scale(0.92) rotate(7deg);
            opacity: 1;
        }
    }

    .site-header .site-header__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.65rem;
        padding-inline: 0.9rem;
        padding-block: 0.5rem;
        height: auto;
        min-height: 4.35rem;
    }

    .site-header .header-brand {
        min-width: 0;
        max-width: 100%;
        gap: 0.75rem;
    }

    .site-header .header-brand__copy {
        min-width: 0;
        max-width: 8.9rem;
    }

    .site-header .brand-name--desktop {
        display: none;
    }

    .site-header .brand-name--mobile {
        display: block;
    }

    .site-header .logo-mark {
        font-size: 1.05rem;
        line-height: 0.95;
        white-space: normal;
    }

    .site-header .brand-role {
        margin-top: 0.18rem;
        font-size: 0.72rem;
    }

    .site-header .header-actions {
        display: flex;
        align-items: center;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        gap: 0.55rem;
    }

    .site-header .nav-links {
        grid-column: 1 / -1;
    }

    .hamburger {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.4rem;
        padding: 0.28rem;
        border-radius: 0.8rem;
        border: 2px solid rgba(34, 49, 79, 0.16);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 3px 10px rgba(34, 49, 79, 0.08);
        z-index: 1100;
    }

    .header-mobile-talk {
        padding: 0.72rem 1rem;
        font-size: 0.92rem;
    }

    .site-nav {
        position: fixed;
        inset: 5.4rem 1rem auto;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        padding: 1rem;
        border-radius: 1.25rem;
        border: 1px solid rgba(34, 49, 79, 0.1);
        background: rgba(255, 247, 239, 0.98);
        box-shadow: var(--shadow-card);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px) scale(0.96);
        transform-origin: top right;
        transition: opacity 0.22s ease, transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.24s;
    }

    body.menu-open .site-nav,
    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition-delay: 0s;
    }
}

@media (max-width: 640px) {
    .section-slim {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .highlight-intro {
        max-width: 21rem;
    }

    .highlight-intro__eyebrow {
        font-size: 0.72rem;
    }

    .highlight-intro__title {
        font-size: clamp(2rem, 8.6vw, 2.7rem);
        line-height: 1.06;
    }

    .highlight-intro__copy {
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .trust-pillars,
    .focus-grid,
    .proof-band {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        margin-top: 1.4rem;
    }

    .trust-pillar,
    .focus-card,
    .proof-card {
        padding: 1.15rem;
        border-radius: 1.2rem;
    }

    .trust-pillar__title,
    .focus-card__title,
    .proof-card__title {
        margin-top: 0.85rem;
        font-size: 1.28rem;
    }

    .trust-pillar__copy,
    .focus-card__copy,
    .proof-card__copy {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .listing-showcase-heading {
        max-width: 22rem;
        margin-bottom: 1.5rem;
    }

    .listing-showcase-heading .font-hand {
        margin-bottom: 0.7rem;
        font-size: 1.9rem;
    }

    .listing-showcase-heading h2 {
        margin-bottom: 0.9rem;
        font-size: clamp(2.15rem, 8.3vw, 2.7rem);
        line-height: 1.08;
    }

    .listing-showcase-heading .section-copy-soft {
        max-width: 19.5rem;
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .property-showcase-grid {
        gap: 0.85rem;
    }

    .property-showcase-card {
        border-radius: 1.25rem;
    }

    .property-showcase-card__zoom {
        top: 0.55rem;
        right: 0.55rem;
        width: 2.08rem;
        height: 2.08rem;
        font-size: 0.96rem;
    }

    .property-showcase-card__body {
        padding: 0.72rem 0.75rem 0.82rem;
    }

    .property-showcase-card__title {
        font-size: 0.88rem;
    }

    .property-showcase-card__meta {
        font-size: 0.72rem;
    }

    .property-showcase-card__tag {
        left: 0.7rem;
        bottom: 0.7rem;
        min-height: 1.85rem;
        padding: 0.36rem 0.72rem;
        font-size: 0.64rem;
    }

    .property-modal__panel {
        width: min(100%, 22rem);
        padding: 0.85rem;
        border-radius: 1.55rem;
    }

    .property-modal__media {
        margin-top: 0.75rem;
        border-radius: 1.2rem;
    }

    .property-modal__close {
        min-height: 2.35rem;
        padding: 0.58rem 0.9rem;
        font-size: 0.8rem;
    }

    .property-modal__title {
        margin-top: 0.75rem;
        font-size: 0.9rem;
    }

    .site-header .header-brand__copy {
        max-width: 7.9rem;
    }

    .hero-card-deck {
        width: min(352px, 94vw);
        height: clamp(202px, 31vh, 250px);
    }

    .hero-image-card {
        width: min(46vw, 156px);
    }

    .hero-image-card__name-badge span {
        font-size: 0.64rem;
    }

    .hero-image-card__caption {
        font-size: 0.72rem;
    }

    .hero-image-card__title {
        font-size: 1.8rem;
    }

    .hero-float-badge span {
        font-size: 0.72rem;
    }

    .hero-float-badge--top {
        top: 5%;
        right: 4%;
    }

    .hero-float-badge--bottom {
        bottom: 5%;
        left: 5%;
    }

    .logo-strip {
        gap: 1.15rem;
    }

    .logo-strip span {
        font-size: 0.92rem;
    }

    @keyframes hero-card-open-left {
        100% {
            transform: translate(calc(-50% - 84px), -49%) scale(0.9) rotate(-6deg);
            opacity: 1;
        }
    }

    @keyframes hero-card-open-right {
        100% {
            transform: translate(calc(-50% + 84px), -49%) scale(0.9) rotate(6deg);
            opacity: 1;
        }
    }
}

@media (max-width: 390px) {
    .hero-kicker {
        max-width: 14.4ch;
        font-size: 0.92rem;
    }

    .hero-title {
        font-size: clamp(1.88rem, 8.35vw, 2.24rem);
        max-width: 10.9ch;
    }

    .hero-lead {
        max-width: 19.5rem;
        font-size: 0.8rem;
        line-height: 1.34;
    }

    .hero-proof-pill {
        font-size: 0.72rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        min-height: 2.92rem;
        padding-inline: 0.62rem;
        font-size: 0.82rem;
    }

    .hero-card-deck {
        width: min(324px, 93vw);
        height: clamp(186px, 30vh, 218px);
    }

    .hero-image-card {
        width: min(47vw, 140px);
    }
}

@media (min-width: 768px) {
    .header-desktop-talk {
        display: inline-flex;
    }

    .header-mobile-talk {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .site-header .header-brand__copy {
        max-width: 6.8rem;
    }

    .site-header .brand-role {
        display: none;
    }

    .header-mobile-talk {
        padding-inline: 0.85rem;
        font-size: 0.82rem;
    }
}

/* ---------- Floating social dock ---------- */
.social-float-dock {
    position: fixed;
    right: max(0.7rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    z-index: 220;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    transform: translateY(0);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-float-dock.dock-has-top {
    transform: translateY(-3.35rem);
}

.social-float-btn {
    width: 3.05rem;
    height: 3.05rem;
    border-radius: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.26rem;
    border: 1.5px solid rgba(27, 42, 74, 0.14);
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy);
    box-shadow: 0 9px 18px rgba(27, 42, 74, 0.12), 0 2px 0 rgba(27, 42, 74, 0.12);
    transform: translateZ(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    pointer-events: auto;
}

.social-float-btn:hover,
.social-float-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(27, 42, 74, 0.16), 0 2px 0 rgba(27, 42, 74, 0.16);
}

.social-float-btn--whatsapp {
    color: #25D366;
    background: linear-gradient(180deg, #f2fff7, #ddf9ea);
    border-color: rgba(37, 211, 102, 0.24);
}

.social-float-btn--facebook {
    color: #1877F2;
    background: linear-gradient(180deg, #f5f9ff, #e7f0ff);
    border-color: rgba(24, 119, 242, 0.22);
}

.social-float-btn--telegram {
    color: #229ED9;
    background: linear-gradient(180deg, #f2fbff, #e3f5ff);
    border-color: rgba(34, 158, 217, 0.22);
}

.social-float-btn--tiktok {
    color: #111111;
    background: linear-gradient(180deg, #f8f8f8, #ececec);
    border-color: rgba(17, 17, 17, 0.16);
}

.social-float-btn--top {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3.35rem;
    margin-inline: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px) scale(0.86);
    color: var(--navy);
    background: linear-gradient(180deg, #fff9ea, #fff2cf);
    border-color: rgba(255, 209, 102, 0.42);
    transition:
        opacity 0.24s ease,
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.24s ease;
}

.social-float-btn--top i {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.22s ease, transform 0.28s ease;
}

.social-float-btn--top.is-visible {
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 9px 18px rgba(27, 42, 74, 0.12), 0 2px 0 rgba(27, 42, 74, 0.12);
    transform: translateY(0) scale(1);
}

.social-float-btn--top.is-visible i {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .social-float-dock {
        right: 0.45rem;
        bottom: 0.7rem;
        gap: 0.42rem;
    }

    .social-float-dock.dock-has-top {
        transform: translateY(-3rem);
    }

    .social-float-btn {
        width: 2.73rem;
        height: 2.73rem;
        border-radius: 0.78rem;
        font-size: 1.1rem;
    }

    .social-float-btn--top {
        bottom: -3rem;
    }
}
