:root {
    --navy: #17255b;
    --navy-dark: #10183e;
    --blue: #2f56a6;
    --sky: #54c5df;
    --yellow: #ffd522;
    --orange: #f47b20;
    --purple: #8e258d;
    --green: #148a4b;
    --ink: #202849;
    --muted: #626a82;
    --cream: #fff9ec;
    --soft: #f4f6fb;
    --white: #fff;
    --line: #e5e8f1;
    --shadow: 0 22px 60px rgba(23, 37, 91, .13);
    --radius-lg: 34px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 96px 0;
}

.section-shell {
    position: relative;
    overflow: hidden;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy);
    border-radius: 10px;
    transform: translateY(-160%);
}

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(23, 37, 91, .08);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    position: relative;
    z-index: 2;
    width: 94px;
    height: 76px;
    display: grid;
    place-items: center;
    background: var(--white);
    border-radius: 0 0 22px 22px;
}

.brand img {
    width: 82px;
    height: 72px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--navy);
    font-size: .94rem;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.main-nav a:not(.nav-cta):hover {
    color: var(--orange);
}

.main-nav .nav-cta {
    padding: 12px 19px;
    color: var(--white);
    background: var(--navy);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(23, 37, 91, .18);
}

.main-nav .nav-cta:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    background: var(--navy);
    border: 0;
    border-radius: 14px;
    cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 82px 0 122px;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 16%, rgba(84, 197, 223, .22), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(142, 37, 141, .24), transparent 30%),
        linear-gradient(135deg, var(--navy-dark), var(--navy) 52%, #243d7f);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 72px;
}

.hero-copy {
    max-width: 590px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange);
    font-size: .79rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--yellow);
}

.eyebrow span {
    font-size: .65rem;
}

.hero h1 {
    margin: 18px 0 24px;
    font-size: clamp(3.4rem, 6.5vw, 6.7rem);
    line-height: .91;
    letter-spacing: -.065em;
}

.hero h1 em {
    position: relative;
    display: inline-block;
    color: var(--yellow);
    font-style: normal;
}

.hero h1 em::after {
    content: "";
    position: absolute;
    left: 4%;
    bottom: -7px;
    width: 80%;
    height: 8px;
    background: var(--orange);
    border-radius: 100%;
    transform: rotate(-2deg);
}

.hero-copy > p {
    max-width: 540px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 1.16rem;
}

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

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--navy-dark);
    background: var(--yellow);
    box-shadow: 0 13px 28px rgba(255, 213, 34, .23);
}

.button-ghost {
    color: var(--white);
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(255,255,255,.3);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: rgba(255,255,255,.78);
    font-size: .86rem;
    font-weight: 700;
}

.hero-trust span {
    display: inline-grid;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    place-items: center;
    color: var(--navy-dark);
    background: var(--sky);
    border-radius: 50%;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-photo {
    position: absolute;
    inset: 16px 0 30px 28px;
    overflow: hidden;
    border: 10px solid rgba(255,255,255,.96);
    border-radius: 44% 56% 46% 54% / 55% 40% 60% 45%;
    box-shadow: 0 35px 90px rgba(4, 9, 28, .42);
    transform: rotate(2deg);
}

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

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--ink);
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    line-height: 1.25;
}

.floating-card-top {
    top: 2px;
    right: -20px;
}

.floating-card-top strong {
    color: var(--purple);
    font-size: 2.5rem;
    line-height: 1;
}

.floating-card-top span,
.floating-card-bottom span {
    font-size: .83rem;
}

.floating-card-bottom {
    bottom: 7px;
    left: -12px;
}

.floating-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 50%;
    font-size: 1.3rem !important;
}

.hero-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: .75;
}

.bubble-one {
    right: 3%;
    bottom: 15%;
    width: 44px;
    height: 44px;
    background: var(--orange);
}

.bubble-two {
    top: 18%;
    left: 47%;
    width: 24px;
    height: 24px;
    background: var(--yellow);
}

.wave {
    position: absolute;
    z-index: 1;
    right: -5%;
    bottom: -88px;
    left: -5%;
    height: 150px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 45% 45% 0 0;
}

.section-heading h2,
.faq-intro h2,
.party-copy h2 {
    margin: 12px 0 18px;
    color: var(--navy);
    font-size: clamp(2.25rem, 4.4vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.section-heading > p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading.centered {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading.centered > p {
    margin-inline: auto;
}

.intro {
    padding-top: 60px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.intro .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.35rem, 4.5vw, 4.6rem);
}

.intro-copy {
    padding: 24px 0 0 36px;
    border-left: 5px solid var(--yellow);
}

.intro-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.08rem;
}

.experiences {
    background: var(--cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.experience-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(23,37,91,.08);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 42px rgba(23,37,91,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.experience-card::before {
    content: "";
    position: absolute;
    top: -52px;
    right: -52px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    opacity: .13;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.experience-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 20px;
    font-size: 2rem;
    font-weight: 900;
    transform: rotate(-4deg);
}

.experience-card h3 {
    margin: 0 0 11px;
    color: var(--navy);
    font-size: 1.28rem;
}

.experience-card p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: .95rem;
}

.experience-card a {
    position: absolute;
    right: 30px;
    bottom: 25px;
    left: 30px;
    color: var(--navy);
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
}

.experience-card a span {
    float: right;
    font-size: 1.25rem;
}

.card-yellow .experience-icon { background: rgba(255,213,34,.28); color: #b88700; }
.card-yellow::before { background: var(--yellow); }
.card-orange .experience-icon { background: rgba(244,123,32,.17); color: var(--orange); }
.card-orange::before { background: var(--orange); }
.card-purple .experience-icon { background: rgba(142,37,141,.14); color: var(--purple); }
.card-purple::before { background: var(--purple); }
.card-green .experience-icon { background: rgba(20,138,75,.14); color: var(--green); }
.card-green::before { background: var(--green); }

.section-note {
    margin: 28px auto 0;
    color: var(--muted);
    font-size: .82rem;
    text-align: center;
}

.party {
    padding: 110px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 5%, rgba(255,213,34,.22), transparent 22%),
        linear-gradient(120deg, var(--purple), #63216e);
}

.party::before,
.party::after {
    content: "";
    position: absolute;
    border: 3px solid rgba(255,255,255,.14);
    border-radius: 50%;
}

.party::before {
    width: 360px;
    height: 360px;
    top: -180px;
    left: -120px;
}

.party::after {
    width: 230px;
    height: 230px;
    right: -70px;
    bottom: -120px;
}

.party-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 95px;
}

.party-gallery {
    position: relative;
    min-height: 540px;
}

.party-gallery figure {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 28px 70px rgba(36,4,42,.28);
}

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

.party-main {
    inset: 0 80px 40px 0;
    border-radius: 90px 28px 70px 30px;
    transform: rotate(-2deg);
}

.party-small {
    right: 0;
    bottom: 0;
    width: 47%;
    height: 48%;
    border-radius: 28px 60px 28px 60px;
    transform: rotate(4deg);
}

.party-spark {
    position: absolute;
    z-index: 3;
    color: var(--yellow);
    font-size: 3rem;
}

.spark-one { top: -18px; right: 55px; }
.spark-two { bottom: 25px; left: -28px; font-size: 2rem; }

.section-kicker-light {
    color: var(--yellow);
}

.party-copy h2 {
    color: var(--white);
}

.party-copy > p {
    color: rgba(255,255,255,.82);
    font-size: 1.07rem;
}

.check-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 25px 0 32px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
}

.check-list span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: var(--purple);
    background: var(--yellow);
    border-radius: 50%;
}

.party-contact {
    padding: 22px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
}

.party-contact label {
    display: block;
    margin-bottom: 9px;
    font-size: .86rem;
    font-weight: 900;
}

.party-select-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.party-select-row select {
    min-width: 0;
    padding: 0 16px;
    color: var(--ink);
    background: var(--white);
    border: 0;
    border-radius: 999px;
    outline: none;
}

.button-yellow {
    color: var(--navy);
    background: var(--yellow);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: var(--navy);
    border: 0;
    border-radius: 24px;
    cursor: zoom-in;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, opacity .3s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(6,12,36,.8));
}

.gallery-item span {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 17px;
    left: 20px;
    color: var(--white);
    font-weight: 900;
    text-align: left;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    opacity: .88;
    transform: scale(1.06);
}

.units {
    background: var(--soft);
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.unit-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 45px rgba(23,37,91,.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.unit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.unit-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--navy);
}

.unit-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.unit-card:hover .unit-image > img:not([alt=""]) {
    transform: scale(1.045);
}

.unit-image::after {
    content: "";
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(transparent, rgba(10,17,48,.68));
}

.unit-image > span {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 14px;
    padding: 6px 11px;
    color: var(--navy);
    background: var(--yellow);
    border-radius: 999px;
    font-size: .77rem;
    font-weight: 900;
}

.unit-placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,213,34,.9) 0 11%, transparent 12%),
        radial-gradient(circle at 85% 78%, rgba(84,197,223,.9) 0 12%, transparent 13%),
        linear-gradient(135deg, var(--purple), var(--navy));
}

.unit-placeholder-vitoria {
    background:
        radial-gradient(circle at 18% 75%, rgba(244,123,32,.9) 0 11%, transparent 12%),
        radial-gradient(circle at 80% 20%, rgba(255,213,34,.9) 0 12%, transparent 13%),
        linear-gradient(135deg, var(--green), var(--navy));
}

.unit-placeholder img {
    width: 148px;
    height: 148px;
    padding: 10px;
    object-fit: contain;
    background: var(--white);
    border-radius: 50%;
}

.unit-content {
    padding: 24px;
}

.unit-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.unit-title-row h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.18rem;
    line-height: 1.2;
}

.floor-tag {
    flex: 0 0 auto;
    padding: 4px 8px;
    color: var(--purple);
    background: rgba(142,37,141,.1);
    border-radius: 8px;
    font-size: .7rem;
    font-weight: 900;
}

.unit-address {
    min-height: 70px;
    margin: 14px 0 10px;
    color: var(--muted);
    font-size: .89rem;
}

.unit-hours {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: .78rem;
}

.unit-hours span {
    color: var(--orange);
    font-weight: 900;
}

.unit-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.button-whatsapp {
    width: 100%;
    min-height: 46px;
    padding: 10px 16px;
    color: var(--white);
    background: #159447;
    font-size: .9rem;
}

.button-whatsapp span {
    color: #71ef9c;
    font-size: 1.3rem;
}

.map-link {
    color: var(--navy);
    font-size: .84rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.map-link:hover {
    color: var(--orange);
}

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro p {
    color: var(--muted);
}

.text-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--purple);
    font-weight: 900;
    text-decoration: none;
}

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

.accordion details {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 4px;
    color: var(--navy);
    font-size: 1.03rem;
    font-weight: 900;
    list-style: none;
    cursor: pointer;
}

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

.accordion summary span {
    width: 30px;
    height: 30px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--purple);
    background: rgba(142,37,141,.09);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform .2s ease;
}

.accordion details[open] summary span {
    transform: rotate(45deg);
}

.accordion details p {
    padding: 0 50px 24px 4px;
    margin: 0;
    color: var(--muted);
}

.instagram {
    padding: 65px 0;
    color: var(--white);
    background: linear-gradient(120deg, var(--orange), #ea526f 50%, var(--purple));
}

.instagram::after {
    content: "@";
    position: absolute;
    right: 5%;
    bottom: -90px;
    color: rgba(255,255,255,.08);
    font-size: 20rem;
    font-weight: 900;
    line-height: 1;
}

.instagram-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.instagram-handle {
    color: var(--yellow);
    font-weight: 900;
}

.instagram h2 {
    margin: 6px 0 8px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.instagram p {
    margin: 0;
    color: rgba(255,255,255,.85);
}

.button-white {
    flex: 0 0 auto;
    color: var(--purple);
    background: var(--white);
}

.site-footer {
    padding: 70px 0 24px;
    color: rgba(255,255,255,.72);
    background: var(--navy-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .75fr .95fr .95fr;
    gap: 55px;
}

.footer-brand img {
    width: 120px;
    height: 105px;
    padding: 5px;
    object-fit: contain;
    background: var(--white);
    border-radius: 20px;
}

.footer-brand p {
    max-width: 310px;
    font-size: .9rem;
}

.site-footer h2 {
    margin: 5px 0 16px;
    color: var(--white);
    font-size: .95rem;
}

.site-footer a {
    display: block;
    margin: 9px 0;
    color: rgba(255,255,255,.72);
    font-size: .86rem;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--yellow);
}

.footer-small {
    margin: 0 0 10px;
    font-size: .78rem;
}

.team-access {
    color: var(--yellow) !important;
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    margin-top: 45px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    font-size: .76rem;
}

.floating-whatsapp {
    position: fixed;
    z-index: 800;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    color: var(--white);
    background: #159447;
    border: 3px solid var(--white);
    border-radius: 999px;
    box-shadow: 0 14px 35px rgba(8,74,35,.28);
    font-size: .86rem;
    font-weight: 900;
    text-decoration: none;
}

.floating-whatsapp > span:first-child {
    color: #77f5a2;
    font-size: 1.25rem;
}

.lightbox {
    position: fixed;
    z-index: 5000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 50px 28px 28px;
    background: rgba(5,10,30,.92);
    backdrop-filter: blur(10px);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: min(1100px, 95vw);
    max-height: 86vh;
    border: 6px solid var(--white);
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0,0,0,.5);
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 20px;
    width: 46px;
    height: 46px;
    color: var(--white);
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-delay,
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
    .main-nav { gap: 18px; }
    .main-nav a { font-size: .86rem; }
    .hero-grid { gap: 38px; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .unit-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.25fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 820px) {
    .section { padding: 76px 0; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 82px;
        right: 16px;
        left: 16px;
        max-height: calc(100vh - 102px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px;
        overflow: auto;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }
    .nav-open .main-nav { opacity: 1; pointer-events: auto; transform: none; }
    .main-nav a { padding: 13px 14px; }
    .main-nav .nav-cta { margin-top: 8px; text-align: center; }
    .nav-open .nav-toggle > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .nav-toggle > span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { min-height: auto; padding: 70px 0 120px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 680px; }
    .hero-visual { min-height: 470px; }
    .hero-photo { inset: 20px 30px 30px; }
    .floating-card-top { right: 10px; }
    .floating-card-bottom { left: 10px; }
    .intro-grid { grid-template-columns: 1fr; gap: 30px; }
    .intro-copy { padding-top: 5px; }
    .party-grid { grid-template-columns: 1fr; gap: 65px; }
    .party-gallery { min-height: 500px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; gap: 42px; }
    .faq-intro { position: static; }
    .instagram-inner { align-items: flex-start; flex-direction: column; gap: 28px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 76px; }
    .brand { width: 80px; height: 66px; }
    .brand img { width: 70px; height: 61px; }
    .main-nav { top: 74px; }
    .hero { padding-top: 52px; }
    .hero h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
    .hero-copy > p { font-size: 1.02rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-trust { display: grid; }
    .hero-visual { min-height: 360px; }
    .hero-photo { inset: 20px 10px 25px; border-width: 7px; }
    .floating-card-top { top: 0; right: -5px; padding: 10px 12px; }
    .floating-card-top strong { font-size: 2rem; }
    .floating-card-bottom { bottom: 2px; left: -4px; padding: 10px 12px; }
    .section-heading h2,
    .faq-intro h2,
    .party-copy h2 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
    .intro-copy { padding-left: 20px; }
    .experience-grid { grid-template-columns: 1fr; }
    .experience-card { min-height: 290px; }
    .party { padding: 80px 0; }
    .party-gallery { min-height: 400px; }
    .party-main { inset: 0 45px 32px 0; border-radius: 62px 22px 50px 24px; }
    .party-small { width: 46%; height: 44%; border-width: 5px; }
    .party-select-row { grid-template-columns: 1fr; }
    .party-select-row select { min-height: 50px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .gallery-wide { grid-column: auto; }
    .unit-grid { grid-template-columns: 1fr; }
    .unit-address { min-height: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; }
    .floating-whatsapp { right: 12px; bottom: 12px; padding: 11px 14px; }
    .floating-whatsapp span:last-child { display: none; }
}
