/* ===== VARIABLES ===== */
:root {
    --color-primary: #0a3d62;
    --color-primary-dark: #06283d;
    --color-accent: #f5af19;
    --color-accent-dark: #e09c0d;
    --color-secondary: #1e5f8b;
    --color-bg: #ffffff;
    --color-bg-alt: #f9f7f3;
    --color-bg-dark: #0a3d62;
    --color-text: #2c3e50;
    --color-text-light: #6c7a89;
    --color-white: #ffffff;
    --color-border: rgba(10, 61, 98, 0.1);

    --shadow-sm: 0 2px 8px rgba(10, 61, 98, 0.08);
    --shadow-md: 0 8px 24px rgba(10, 61, 98, 0.12);
    --shadow-lg: 0 20px 50px rgba(10, 61, 98, 0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== UTILIDADES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__header--light .section__title,
.section__header--light .section__pretitle {
    color: var(--color-white);
}

.section__pretitle {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.section__title em {
    color: var(--color-accent);
    font-style: italic;
}

.section__subtitle {
    color: var(--color-text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    box-shadow: 0 8px 20px rgba(245, 175, 25, 0.4);
}

.btn--primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 175, 25, 0.5);
}

.btn--ghost {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn--full {
    width: 100%;
}

/* ===== HEADER / NAVEGACIÓN ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: var(--transition);
    z-index: 1001;
}

.header.scrolled .nav__logo {
    color: var(--color-primary);
}

.logo__icon {
    font-size: 1.75rem;
}

.logo__text em {
    color: var(--color-accent);
    font-style: normal;
}

.nav__menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav__link {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.header.scrolled .nav__link {
    color: var(--color-text);
}

.nav__link:hover {
    color: var(--color-accent);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--color-accent);
    color: var(--color-primary-dark) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

.nav__link--cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
}

.nav__link--cta::after {
    display: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav__toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

.header.scrolled .nav__toggle span {
    background: var(--color-primary);
}

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

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

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(10, 61, 98, 0.7) 0%, rgba(6, 40, 61, 0.85) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--color-white);
    text-align: center;
    padding: 120px 24px 80px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(6, 40, 61, 0.3) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero__badge {
    display: inline-block;
    background: rgba(245, 175, 25, 0.15);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInDown 1s ease;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__title-accent {
    color: var(--color-accent);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent);
    opacity: 0.4;
    border-radius: 2px;
}

.hero__slogan {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero__countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.countdown__item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    min-width: 100px;
    transition: var(--transition);
}

.countdown__item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.countdown__number {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.countdown__label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 1;
}

.hero__scroll span {
    width: 4px;
    height: 8px;
    background: var(--color-white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ===== ABOUT ===== */
.about {
    background: var(--color-bg-alt);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.about__card {
    background: var(--color-white);
    padding: 40px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.about__card:hover::before {
    transform: scaleX(1);
}

.about__icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.about__card:hover .about__icon {
    transform: scale(1.2) rotate(-5deg);
}

.about__card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.about__card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== BENEFICIOS ===== */
.benefits {
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 175, 25, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
}

.benefit {
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
}

.benefit:hover {
    background: rgba(255, 255, 25, 0.05);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.benefit__number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
}

.benefit h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-white);
}

.benefit p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== GALERÍA ===== */
.gallery {
    background: var(--color-white);
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    color: var(--color-white);
    font-weight: 600;
    background: linear-gradient(to top, rgba(6, 40, 61, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery__item:hover figcaption {
    transform: translateY(0);
}

.gallery__item--tall {
    grid-row: span 2;
}

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

/* ===== MEMBRESÍA ===== */
.membership {
    background:
        linear-gradient(135deg, rgba(245, 175, 25, 0.05) 0%, rgba(10, 61, 98, 0.05) 100%),
        var(--color-bg-alt);
}

.membership__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.membership__info {
    padding: 20px 0;
}

.membership__info .section__title {
    text-align: left;
}

.membership__info > p {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

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

.membership__list li {
    padding: 14px 18px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-accent);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.membership__list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.membership__form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.membership__form h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.membership__form-sub {
    color: var(--color-text-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.form__group input,
.form__group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg-alt);
    transition: var(--transition);
    font-size: 0.95rem;
}

.form__group input:focus,
.form__group select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-white);
}

.form__group--check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form__group--check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.form__group--check label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
}

.form__message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    display: none;
}

.form__message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form__message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== CONTACTO ===== */
.contact {
    background: var(--color-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.contact__card {
    text-align: center;
    padding: 40px 28px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact__card:hover {
    background: var(--color-white);
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
}

.contact__card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.contact__card p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact__link {
    color: var(--color-accent-dark);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-block;
}

.contact__link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 30px;
    position: relative;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer__col--brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__col h4 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer__col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__col a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.badge-soon {
    display: inline-block;
    background: rgba(245, 175, 25, 0.15);
    color: var(--color-accent);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer__social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer__col--newsletter p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__newsletter {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.footer__newsletter:focus-within {
    border-color: var(--color-accent);
}

.footer__newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: var(--color-white);
    font-size: 0.875rem;
    outline: none;
}

.footer__newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__newsletter button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__newsletter button:hover {
    background: var(--color-accent-dark);
    transform: scale(1.05);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom a {
    color: var(--color-accent);
    font-weight: 500;
}

.footer__bottom a:hover {
    text-decoration: underline;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulse 2s infinite;
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(16px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .membership__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        align-items: flex-start;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__link {
        color: var(--color-text) !important;
        font-size: 1.1rem;
        width: 100%;
        padding: 8px 0;
    }

    .nav__link--cta {
        margin-top: 16px;
        text-align: center;
        width: 100%;
    }

    .hero__title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .countdown__item {
        min-width: 80px;
        padding: 16px 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .membership__form {
        padding: 28px 20px;
    }

    .membership__info .section__title {
        text-align: center;
    }

    .membership__info > p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery__item--tall,
    .gallery__item--wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .hero__countdown {
        gap: 8px;
    }

    .countdown__item {
        min-width: 70px;
        padding: 12px 14px;
    }

    .countdown__label {
        font-size: 0.625rem;
        letter-spacing: 1px;
    }
}
