:root {
    --bg: #f6f0e6;
    --bg-soft: #fbf8f1;
    --surface: rgba(255, 250, 242, 0.86);
    --surface-strong: #fffdf8;
    --ink: #261c12;
    --muted: #685742;
    --line: rgba(130, 99, 59, 0.18);
    --line-strong: rgba(130, 99, 59, 0.35);
    --primary: #82633b;
    --primary-soft: #c1a66d;
    --primary-deep: #60472a;
    --shadow: 0 30px 70px rgba(72, 48, 21, 0.12);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --container: min(1180px, calc(100vw - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    scroll-padding-top: calc(var(--header-offset, 0px) + 12px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(193, 166, 109, 0.18), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(130, 99, 59, 0.16), transparent 22%),
        linear-gradient(180deg, #fbf7ef 0%, #f4ede0 40%, #f8f3eb 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

.page-shell {
    position: relative;
    overflow: visible;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    pointer-events: none;
}

.page-shell::before {
    width: 28rem;
    height: 28rem;
    top: -8rem;
    right: -12rem;
    background: radial-gradient(circle, rgba(193, 166, 109, 0.32), transparent 70%);
}

.page-shell::after {
    width: 24rem;
    height: 24rem;
    bottom: 16rem;
    left: -10rem;
    background: radial-gradient(circle, rgba(130, 99, 59, 0.18), transparent 72%);
}

.container {
    width: var(--container);
    max-width: 100%;
    margin: 0 auto;
}

.header-inner,
.hero-grid,
.intro-grid,
.content-grid,
.founder-grid,
.form-grid,
.gallery-grid,
.schedule-grid,
.feature-grid,
.payment-options,
.hero-copy,
.hero-visual,
.visual-stack,
.section-heading,
.content-list,
.gallery-mosaic,
.form-shell,
.schedule-shell,
.site-nav {
    min-width: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 30;
    padding: 18px 0;
    backdrop-filter: blur(22px);
    background: rgba(250, 245, 236, 0.72);
    border-bottom: 1px solid rgba(130, 99, 59, 0.08);
    transition: padding 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

main {
    padding-top: var(--header-offset, 0px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: gap 220ms ease;
}

.brand {
    flex-shrink: 0;
}

.brand img {
    width: 154px;
    transition: width 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--muted);
    transition: gap 220ms ease, font-size 220ms ease, padding 220ms ease, opacity 220ms ease;
}

.site-nav a {
    position: relative;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 30px rgba(130, 99, 59, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(130, 99, 59, 0.28);
}

.button-small {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
    transition: min-height 220ms ease, padding 220ms ease, font-size 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.header-cta {
    flex-shrink: 0;
}

.button-outline {
    background: rgba(255, 255, 255, 0.62);
    color: var(--primary-deep);
    border-color: rgba(130, 99, 59, 0.16);
    box-shadow: none;
}

.button-ghost {
    background: transparent;
    color: var(--primary-deep);
    border-color: rgba(130, 99, 59, 0.22);
    box-shadow: none;
}

.button-full {
    width: 100%;
}

.button[hidden],
[hidden] {
    display: none !important;
}

.site-header.is-condensed {
    padding: 6px 0;
    background: rgba(250, 245, 236, 0.94);
    border-bottom-color: rgba(130, 99, 59, 0.14);
    box-shadow: 0 16px 34px rgba(72, 48, 21, 0.08);
}

.site-header.is-condensed .header-inner {
    gap: 14px;
}

.site-header.is-condensed .brand img {
    width: 72px;
}

.site-header.is-condensed .site-nav {
    gap: 16px;
    font-size: 0.88rem;
}

.site-header.is-condensed .button-small {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
}

.hero {
    position: relative;
    padding: 64px 0 7px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 46px;
    align-items: center;
}

.eyebrow,
.section-label {
    /* margin: 69px 0 14px; */
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero h1,
.section-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5vw, 4.9rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero-lead {
    max-width: 62ch;
    margin: 24px 0 0;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 0;
}

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

.hero-highlights article {
    min-height: 132px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-highlights strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hero-highlights span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.7fr);
    gap: 18px;
    align-items: end;
}

.visual-panel,
.visual-card {
    overflow: hidden;
    border: 1px solid rgba(130, 99, 59, 0.12);
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

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

.visual-panel-main {
    height: 640px;
}

.visual-panel-secondary {
    height: 280px;
    border-radius: var(--radius-md);
}

.visual-stack {
    display: grid;
    gap: 18px;
}

.visual-card {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(244, 233, 209, 0.92));
}

.visual-card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.visual-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.visual-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(130, 99, 59, 0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.floating-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(96, 71, 42, 0.84);
    color: #fff;
    font-size: 0.92rem;
    box-shadow: 0 14px 40px rgba(59, 36, 11, 0.24);
}

.floating-chip-top {
    top: 36px;
    left: -24px;
}

.floating-chip-bottom {
    right: 39px;
    bottom: -21px;
}

.section {
    padding: 54px 0;
}

.section-intro {
    padding-top: 30px;
}

.intro-grid,
.content-grid,
.founder-grid,
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: start;
}

.intro-copy,
.content-copy p,
.gallery-copy p,
.founder-copy p,
.form-copy p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1rem;
}

.intro-grid {
    align-items: center;
}

.intro-copy {
    /* display: grid;
    gap: 18px; */
}

.section-heading {
    max-width: 815px;
    margin-bottom: 34px;
}

.feature-video-shell {
    max-width: 980px;
    margin: 0 auto 32px;
    padding: 24px;
    border: 1px solid rgba(130, 99, 59, 0.12);
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(193, 166, 109, 0.18), transparent 28%),
        rgba(255, 251, 245, 0.88);
    box-shadow: var(--shadow);
}

.feature-video {
    overflow: hidden;
    border-radius: 28px;
    background: #000;
}

.feature-video video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    background: #000;
}

.feature-grid,
.schedule-grid {
    display: grid;
    gap: 20px;
}

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

.feature-card,
.schedule-card,
.investment-card,
.content-list article,
.form-shell,
.form-notes article {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 246, 0.88);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 26px;
}

.feature-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(130, 99, 59, 0.08);
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 800;
}

.feature-card h3,
.content-list h3,
.schedule-card h3,
.investment-card h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.feature-card p,
.schedule-card li,
.content-list li,
.investment-card p,
.form-notes p {
    color: var(--muted);
    line-height: 1.75;
}

.content-grid {
    align-items: center;
}

.content-list {
    display: grid;
    gap: 18px;
}

.content-list article {
    padding: 26px;
}

.content-list ul,
.schedule-card ul {
    padding-left: 18px;
    margin: 0;
}

.content-list li + li,
.schedule-card li + li {
    margin-top: 10px;
}

.schedule-shell {
    padding: 48px;
    border: 1px solid rgba(130, 99, 59, 0.12);
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(193, 166, 109, 0.18), transparent 28%),
        rgba(255, 251, 245, 0.88);
    box-shadow: var(--shadow);
}

.schedule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.schedule-card,
.investment-card {
    padding: 30px;
}

.schedule-card-accent {
    background: linear-gradient(180deg, rgba(193, 166, 109, 0.18), rgba(255, 251, 245, 0.92));
}

.schedule-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    margin: 0 0 14px;
    border-radius: 999px;
    background: rgba(130, 99, 59, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.investment-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, rgba(130, 99, 59, 0.98), rgba(96, 71, 42, 0.98));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.investment-card .section-label,
.investment-card p,
.investment-card strong {
    color: rgba(255, 255, 255, 0.86);
}

.investment-card h3 {
    color: #fff;
    font-size: 2rem;
}

.investment-divider {
    margin: 8px 0;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.investment-card strong {
    font-size: 1.3rem;
}

.payment-summary {
    display: grid;
    gap: 12px;
    margin: 22px 0 4px;
}

.payment-summary article {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.payment-summary span {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.payment-summary strong {
    font-size: 1rem;
    color: #fff;
}

.investment-card .button {
    margin-top: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #ead9b5 100%);
    color: var(--primary-deep);
    box-shadow: none;
}

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

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 3;
}

.founder-grid {
    align-items: center;
}

.founder-photo {
    overflow: hidden;
    border-radius: 38px;
    box-shadow: var(--shadow);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-meta {
    margin: 12px 0 16px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 251, 245, 0.86);
    color: var(--primary-deep);
    font-weight: 700;
}

.contact-list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.section-form {
    padding-bottom: 112px;
}

.form-copy {
    position: sticky;
    top: 110px;
}

.form-mobile-photo {
    display: none;
    margin: 0 0 18px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.form-mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.form-notes {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.form-notes article {
    padding: 22px;
}

.form-notes strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-deep);
}

.form-shell {
    padding: 30px;
}

.enrollment-form {
    display: grid;
    gap: 18px;
}

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

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

.field-group label {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--primary-deep);
}

.field-label {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--primary-deep);
}

.field-group input,
.field-group select {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(130, 99, 59, 0.18);
    border-radius: 18px;
    background: #fffdfa;
    color: var(--ink);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-group input:focus,
.field-group select:focus {
    border-color: rgba(130, 99, 59, 0.62);
    box-shadow: 0 0 0 4px rgba(193, 166, 109, 0.14);
    background: #fff;
}

.field-group input::placeholder {
    color: rgba(104, 87, 66, 0.7);
}

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

.payment-option {
    position: relative;
    display: grid;
    gap: 6px;
    min-height: 128px;
    padding: 20px;
    border: 1px solid rgba(130, 99, 59, 0.16);
    border-radius: 20px;
    background: #fffdfa;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.payment-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(130, 99, 59, 0.08);
}

.payment-option input {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary);
}

.payment-option-title {
    display: block;
    max-width: calc(100% - 34px);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-deep);
}

.payment-option small {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

.payment-option.is-selected {
    border-color: rgba(130, 99, 59, 0.48);
    box-shadow: 0 0 0 4px rgba(193, 166, 109, 0.14);
    background: linear-gradient(180deg, #fffdfa 0%, #f5ecdb 100%);
}

.pix-panel {
    margin-top: 22px;
    padding: 24px;
    border: 1px dashed rgba(130, 99, 59, 0.34);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(193, 166, 109, 0.14), rgba(255, 251, 245, 0.95));
}

.pix-panel[hidden] {
    display: none;
}

.pix-panel-header h3 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.pix-panel-copy {
    margin: 16px 0 18px;
    color: var(--muted);
    line-height: 1.75;
}

.pix-code {
    width: 100%;
    min-height: 170px;
    padding: 16px 18px;
    border: 1px solid rgba(130, 99, 59, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    resize: vertical;
    line-height: 1.65;
}

.pix-next-step {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(130, 99, 59, 0.16);
}

.pix-note {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.95rem;
}

.pix-status {
    min-height: 24px;
    margin: 14px 0 0;
    color: var(--primary-deep);
    font-weight: 700;
}

.form-disclaimer,
.form-status {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--muted);
}

.form-status {
    min-height: 24px;
    color: var(--primary-deep);
    font-weight: 700;
}

.site-footer {
    padding: 42px 0;
    background: linear-gradient(180deg, #4e3922 0%, #2e2114 100%);
    color: rgba(255, 255, 255, 0.86);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand img {
    width: 110px;
    flex-shrink: 0;
}

.footer-brand p {
    max-width: 32ch;
    margin: 0;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
    .hero-grid,
    .intro-grid,
    .content-grid,
    .founder-grid,
    .form-grid,
    .gallery-grid,
    .schedule-grid,
    .feature-grid,
    .payment-options {
        grid-template-columns: 1fr;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-copy {
        position: static;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 1080px) {
    .gallery-grid,
    .founder-grid {
        gap: 20px;
    }

    .gallery-mosaic {
        display: grid !important;
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-item {
        display: none;
    }

    .gallery-item-large {
        display: block;
        grid-column: auto;
        grid-row: auto;
    }

    .founder-photo {
        display: none !important;
    }
}

@media (max-width: 820px) {
    :root {
        --container: calc(100vw - 32px);
    }

    .feature-video-shell {
        padding: 18px;
        border-radius: 30px;
        margin-bottom: 28px;
    }

    .feature-video {
        border-radius: 22px;
    }

    .gallery-mosaic {
        max-width: 420px;
        margin: 0 auto;
    }

    .gallery-item-large {
        min-height: 360px;
        aspect-ratio: 4 / 5;
    }

    .gallery-item-large img {
        object-position: center top;
    }

    .site-header {
        padding: 14px 0;
    }

    .header-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "brand . cta"
            "nav nav nav";
        align-items: center;
        gap: 12px 18px;
    }

    .brand {
        grid-area: brand;
    }

    .brand img {
        width: 108px;
    }

    .form-mobile-photo {
        display: block;
    }

    .header-cta {
        grid-area: cta;
        justify-self: end;
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.84rem;
    }

    .site-nav {
        grid-area: nav;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 14px;
        font-size: 0.92rem;
        padding-top: 12px;
        padding-bottom: 2px;
        border-top: 1px solid rgba(130, 99, 59, 0.1);
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        flex: 0 0 auto;
    }

    .hero {
        padding-top: 38px;
    }

    .hero-visual {
        grid-template-columns: 1fr;
    }

    .visual-panel-main {
        height: 480px;
    }

    .visual-panel-secondary {
        display: none;
    }

    .floating-chip {
        position: static;
        margin-top: 12px;
        width: fit-content;
    }

    .floating-chip-top {
        margin-top: 16px;
    }

    .floating-chip-bottom {
        margin-top: 0;
    }

    .schedule-shell {
        padding: 28px;
        border-radius: 30px;
    }

    .site-header.is-mobile-nav-only {
        padding: 6px 0;
    }

    .site-header.is-mobile-nav-only .header-inner {
        grid-template-columns: 1fr;
        grid-template-areas: "nav";
        gap: 0;
    }

    .site-header.is-mobile-nav-only .brand,
    .site-header.is-mobile-nav-only .header-cta {
        display: none;
    }

    .site-header.is-mobile-nav-only .site-nav {
        display: flex;
        padding-top: 0;
        border-top: 0;
        justify-content: center;
        gap: 10px 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 640px) {
    .section-gallery{
        margin-top: -71px;
    }
    .section-content {
    margin-top: -66px;
}
    .section-features{
        margin-top: -86px;
    }
    .section {
        padding: 48px 0;
    }

    .section-founder {
        padding-top: 88px;
    }

    .feature-video-shell {
        padding: 14px;
        border-radius: 26px;
    }

    .feature-video {
        border-radius: 18px;
    }

    .founder-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-top: 38px;
    }

    .founder-copy {
        order: 2;
    }

    .founder-photo {
        order: 1;
    }

    .hero h1,
    .section-title {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .hero-lead,
    .intro-copy p,
    .content-copy p,
    .gallery-copy p,
    .founder-copy p,
    .form-copy p {
        font-size: 0.98rem;
    }

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

    .hero-actions,
    .contact-list {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button,
    .form-shell .button,
    .investment-card .button,
    .contact-list a {
        width: 100%;
    }

    .hero-actions .button {
        justify-content: center;
    }

    .form-shell {
        padding: 22px;
    }

    .gallery-mosaic {
        grid-auto-rows: 170px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    :root {
        --container: calc(100vw - 24px);
    }

    .site-header {
        padding: 10px 0;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 10px 12px;
    }

    .brand img {
        width: 86px;
    }

    .header-cta {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .site-nav {
        gap: 10px 12px;
        font-size: 0.82rem;
    }

    .hero {
        padding-top: 42px;
    }

    .form-mobile-photo {
        border-radius: 26px;
         margin-top: -64px;
    }

    .gallery-item-large {
        min-height: 320px;
    }
}
