@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rakkas&display=swap');

/* ================================== */
/* CONFIGURAÇÕES GLOBAIS E VARIÁVEIS */
/* ================================== */
:root {
    --dark-blue: #0a193c;
    --gold: #d4a32e;
    --white: #ffffff;
    --off-white: #d4d4d4;
    --whatsapp-green: #25D366;
    --base-bg: #efede8;
}

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

body {
    font-family: "Host Grotesk", sans-serif;
    background-color: var(--base-bg);
}

html {
    scroll-behavior: smooth;
}

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

li {
    list-style: none;
}

/* ================================== */
/* BARRA DE NAVEGAÇÃO (NAVBAR)        */
/* ================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-blue);
    padding: 0.5rem 2rem;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.nav-logo {
    line-height: 0; /* Alinha a imagem perfeitamente */
}

.nav-logo img {
    height: 25px;
    margin: 5px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease-out;
}

.nav-link:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.25rem;
    line-height: 0;
    border-radius: 6px;
}

.hamburger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}

/* ================================== */
/* SEÇÃO HOME HERO                    */
/* ================================== */
.home-hero {
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    gap: 4rem;
    min-height: 100vh;
    width: 100%;
    padding: 0 2rem;
    padding-top: 51px; 
    overflow: hidden; /* Importante para o gradiente não vazar */

    /* --- NOVO FUNDO GRADIENTE INTERATIVO --- */
    
    /* Posições padrão (centro) que o JS vai atualizar */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --gradient-radius: 600px;

    /* Camadas do gradiente:
      1. O "brilho" dourado que segue o mouse (com transparência)
      2. Ponto de "poeira" cinza
      3. Ponto de "poeira" cinza mais escuro
      4. A cor de fundo base
    */
    background: 
        radial-gradient(
            circle var(--gradient-radius) at var(--mouse-x) var(--mouse-y),
            var(--gold), /* Sua cor dourada, mas suave (40 = ~25% opacidade) */
            transparent 80%
        ),

        var(--base-bg); /* Sua cor de fundo base */
    
    background-repeat: no-repeat;
    /* --- FIM DO NOVO FUNDO --- */
}
.hero-content {
    z-index: 2;
    flex-shrink: 0;
    /* Exceção: O texto se auto-alinha ao centro */
    align-self: center; 
}

.hero-title {
    font-family: "Rakkas", serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-top: 3rem;
    margin-bottom: 1rem;
    margin-left: 10rem;
    max-width: 600px;
    transition: 1s color;
}

.hero-title:hover {
    color: var(--white);
    cursor:default;
}


.hero-stars {
    width: 120px;
    height: auto;
    margin-top: 1.5rem;
    margin-left: 10rem;
    display: block;
}

.hero-cta,
.story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
}

.hero-cta {
    margin-left: 10rem;
    margin-top: 4.5rem;
}

.hero-cta:hover,
.hero-cta:focus-visible,
.story-btn:hover,
.story-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 163, 46, 0.35);
    outline: none;
}

/* Cursor de Digitação */
.cursor {
    display: inline-block;
    background-color: var(--dark-blue);
    width: 3px;
    height: 1.2em;
    margin-left: 5px;
    vertical-align: middle;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-image {
    z-index: 1;
}

.model-img {
    max-height: 100vh; /* Permite que a imagem toque a base */
    max-width: 1300px;
    height: auto;
    width: 100%;
    display: block;
}

/* ================================== */
/* SEÇÃO DESTAQUE COM SLIDER + ACORDEÃO */
/* ================================== */
.care-highlight {
    display: flex;
    gap: 0;
    padding: 0;
    background-color: #f4f2ee;
    color: var(--dark-blue);
    align-items: stretch;
}

.care-slider,
.care-accordion {
    flex: 0 0 50%;
    max-width: 50%;
}

.care-slider {
    background: var(--white);
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.slider-frame {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.story-slider .slide {
    position: absolute;
    inset: 0;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    position: absolute;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: none;
    background-color: rgba(10, 25, 60, 0.2);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.slider-dot.active {
    width: 40px;
    background-color: var(--gold);
}

.care-accordion {
    background: #e7e4dd;
    border-radius: 0;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-title {
    font-family: "Rakkas", serif;
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 300;
    color: var(--gold);
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(10, 25, 60, 0.15);
}

.accordion-trigger {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    color: var(--dark-blue);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.accordion-icon {
    font-size: 1.6rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    color: #4b4b4b;
}

.accordion-panel p {
    padding-bottom: 1rem;
}

.accordion-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.accordion-panel ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.accordion-panel li {
    list-style: disc;
    margin-bottom: 0.35rem;
}

.accordion-item.open .accordion-panel {
    max-height: 200px;
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}

.story-section {
    display: flex;
    gap: 0;
    background-color: #dcd9d1;
    color: var(--dark-blue);
    padding: 0;
    align-items: stretch;
    min-height: 100vh;
}

.story-content {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 4rem;
    background: #dcd9d1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.story-content h2 {
    line-height: 1;
    font-size: 3rem;
    font-family: "Rakkas", serif;
}

.story-title-line {
    display: block;
}

.story-title-line--gold {
    font-family: "Rakkas", serif;
    color: var(--gold);
    font-weight: 50;
    line-height: 1;
}

.story-title-line--blue {
    font-family: "Rakkas", serif;
    color: var(--dark-blue);
    font-weight: 900;
}

.story-content p {
    color: rgba(10, 25, 60, 0.85);
    line-height: 1.6;
    padding-right: 0;
    max-width: 520px;
    text-align: left;
}

.story-btn {
    margin-top: 1.25rem;
}

.story-content .story-btn {
    display: none;
    pointer-events: none;
}

.story-slider {
    flex: 1 1 50%;
    max-width: 50%;
    position: relative;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
}

.story-slider .slider-frame {
    min-height: 760px;
    height: 100%;
}

.story-slider .slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.story-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--dark-blue);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.story-slider .slider-arrow:hover,
.story-slider .slider-arrow:focus-visible {
    color: var(--gold);
    outline: none;
}

.story-slider .slider-arrow--prev {
    left: 24px;
}

.story-slider .slider-arrow--next {
    right: 24px;
}

.story-slider .slider-arrow span {
    line-height: 1;
}

.arrow-icon {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-block;
    background-color: currentColor;
    mask: url("src/circle-chevron-right.svg") no-repeat center / contain;
    -webkit-mask: url("src/circle-chevron-right.svg") no-repeat center / contain;
}

.slider-arrow--prev .arrow-icon,
.club-arrow--prev .arrow-icon {
    transform: rotate(180deg);
}

.bio-card {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 110px;
    padding: 1.75rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark-blue);
    box-shadow: 0 20px 45px rgba(10, 25, 60, 0.25);
    z-index: 2;
}

.bio-header {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.bio-title {
    font-size: 1.4rem;
}

.bio-role {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

.bio-text {
    line-height: 1.5;
    color: rgba(10, 25, 60, 0.9);
}

.club-section {
    display: flex;
    min-height: 90vh;
    background: #f4f2ed;
    align-items: stretch;
}

.club-media {
    flex: 1 1 50%;
    min-height: 90vh;
    display: flex;
    overflow: hidden;
    position: relative;
}

.club-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex: 1;
}

.club-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    background: #f4f2ed;
}

.club-text {
    flex: 0 0 70%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.club-text h2 {
    font-size: 2.8rem;
}

.club-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(10, 25, 60, 0.85);
}

.club-text p {
    color: rgba(10, 25, 60, 0.85);
    line-height: 1.6;
}

.club-info {
    flex: 1;
    padding: 2rem 4rem;
    background: #e9e4dc;
    /* position: relative; */
    display: flex;
    align-items: center;
}

.club-info .slider-frame {
    width: 100%;
    min-height: 260px;
    height: auto;
    position: relative;
    padding: 0 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.club-info .slide {
    position: relative;
    display: none;
    opacity: 0;
    transform: none;
    width: 100%;
    height: 100%;
}

.club-info .slide.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 220px;
    opacity: 1;
}

.club-info-text {
    font-size: 1.05rem;
    color: var(--dark-blue);
    /* margin-top: 3.5rem; */
    line-height: 1.5;
}

.join-section {
    display: flex;
    min-height: 70vh;
    background: #dcd9d1;
}

.join-text,
.join-media {
    flex: 1 1 50%;
}

.join-text {
    padding: 4rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    background: #dcd9d1;
}

.join-text h2 {
    font-family: "Rakkas", serif;
    font-weight: 300;
    font-size: 3rem;
    color: var(--gold);
}

.join-subtitle {
    font-size: 1.15rem;
    color: rgba(10, 25, 60, 0.9);
}

.join-phone {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
}

.join-btn {
    align-self: flex-start;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.join-media {
    overflow: hidden;
}

.join-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-footer {
    position: relative;
    padding: 3.5rem 4rem 2.5rem;
    color: var(--dark-blue);
    --footer-mouse-x: 50%;
    --footer-mouse-y: 50%;
    --footer-gradient-radius: 520px;
    background:
        radial-gradient(
            circle var(--footer-gradient-radius) at var(--footer-mouse-x) var(--footer-mouse-y),
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.05)
        ),
        var(--gold);
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 180px;
}

.footer-question {
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-help {
    color: rgba(10, 25, 60, 0.9);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
    color: var(--gold);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img,
.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.footer-hours h3,
.footer-location h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-subtitle {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: rgba(10, 25, 60, 0.85);
}

.footer-hours li span {
    font-weight: 600;
    margin-right: 0.5rem;
}

.footer-address {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-weight: 600;
}

.footer-map iframe {
    width: 100%;
    min-height: 200px;
    border: none;
    border-radius: 12px;
    filter: grayscale(0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(10, 25, 60, 0.15);
}

.club-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--dark-blue);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease;
}

.club-arrow:hover,
.club-arrow:focus-visible {
    color: var(--gold);
}

.club-arrow--prev {
    left: 10px;
}

.club-arrow--next {
    right: 10px;
}

.club-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    transform: none;
    display: flex;
    justify-content: center;
    background: transparent;
    padding: 0;
    gap: 0.5rem;
}

.club-dots .slider-dot {
    background-color: rgba(10, 25, 60, 0.2);
}

.club-dots .slider-dot.active {
    background-color: var(--gold);
}

/* ================================== */
/* BOTÃO FLUTUANTE WHATSAPP           */
/* ================================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: var(--dark-blue);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-button.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.9);
    pointer-events: none;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin: 15px;
}

.whatsapp-text {
    font-family: "Host Grotesk", sans-serif;
    max-width: 0;
    opacity: 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

/* Efeito Hover do WhatsApp (controlado por JS) */
.whatsapp-button.hover-active {
    background-color: var(--whatsapp-green);
    width: 260px;
    border-radius: 40px;
    justify-content: flex-start;
    transition: all 0.3s ease-out;
}

.whatsapp-button.hover-active .whatsapp-text {
    max-width: 200px;
    opacity: 1;
    margin-right: 15px;
}

/* ================================== */
/* RESPONSIVIDADE (MOBILE)            */
/* ================================== */
@media (max-width: 768px) {

    /* --- Navbar Mobile --- */
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 51px; /* Altura correta da navbar */
        flex-direction: column;
        background-color: var(--dark-blue);
        width: 100%;
        text-align: center;
        transition: left 0.4s ease;
        gap: 0;
    }
    
    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        font-size: 1.2rem;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* --- Home Hero Mobile --- */
    .home-hero {
        flex-direction: column;
        justify-content: center;
        max-height: 100vh;
        padding-left: 0;     /* <--- ADICIONE ESTA LINHA */
        padding-right: 0;    /* <--- ADICIONE ESTA LINHA */
        padding-top: 0; 
        gap: 1rem;
        align-items: center;
        --mouse-x: 50%;
        --mouse-y: 40%;
        --gradient-radius: 420px;
    }

    .hero-content {
        align-self: auto;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        text-align: center;
        width: 100%;
        padding: 0 1.25rem;
        height: 100%;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        gap: 0.75rem;
        padding-bottom: 8vh;
    }

    .hero-title {
        /* Remove o posicionamento absoluto para o flexbox funcionar */
        position: static;
        font-size: 2.5rem;
        margin: 0; /* Remove margens desnecessárias */
    }
    
    
    .hero-cta {
        position: static;
        margin-top: 0.35rem;
        width: auto;
        min-width: 180px;
        padding: 0.6rem 1.1rem;
        font-size: 0.9rem;
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stars {
        position:absolute;
        width: 100px;
        margin: 1rem auto 0;
        bottom: 260px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        display: none;
    }

    .hero-image {
        position: relative;   /* <-- MUDANÇA 1: Precisa ser 'relative' */
        width: 100%;
        height: 100vh;        /* <-- MUDANÇA 2: Precisa de uma altura definida */
        display: block;
        overflow: hidden;     /* <-- Correto: Isso vai cortar o excesso */
    }

    .model-img {
        position: absolute;
        width: auto;
        max-height: 800px; 
        height: auto;
        display: block;
        bottom: 0;
        left: 35%;
        transform: translateX(-50%);
    }

    .care-highlight {
        flex-direction: column;
        padding: 0;
    }

    .care-slider,
    .care-accordion {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .slider-frame {
        min-height: 260px;
    }

    .care-accordion {
        padding: 2rem;
    }

    .accordion-trigger {
        font-size: 1rem;
    }

    .accordion-title {
        font-size: 2rem;
    }

    .story-section {
        flex-direction: column;
        padding: 3.5rem 1.5rem;
        min-height: unset;
    }

    .story-content,
    .story-slider {
        flex: 1 1 100%;
        max-width: none;
        width: 100%;
    }

    .story-content {
        padding: 2.5rem 1.5rem;
    }

    .story-content h2 {
        font-size: 2.2rem;
    }

    .story-content p {
        padding-right: 0;
    }

    .story-slider {
        border-radius: 16px;
        overflow: hidden;
    }

    .story-slider .slider-frame {
        min-height: 0;
        height: auto;
        padding-bottom: 0;
    }

    .story-slider .slide {
        position: relative;
        display: none;
        opacity: 0;
        transform: none;
    }

    .story-slider .slide.active {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        opacity: 1;
        position: relative;
        transform: none;
    }

    .story-slider .slide img {
        position: relative;
        inset: unset;
        width: 100%;
        aspect-ratio: 4 / 3;
        height: auto;
        object-fit: cover;
        border-radius: 12px;
    }

    .bio-card {
        position: static;
        margin: 1.5rem 1.5rem 3.5rem;
    }

    .story-slider .slider-arrow {
        display: none;
    }

    .story-dots {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.25rem 0.75rem;
        background: rgba(10, 25, 60, 0.4);
        border-radius: 999px;
        backdrop-filter: blur(6px);
    }

    .club-section {
        flex-direction: column;
    }

    .club-media {
        min-height: 260px;
    }

    .club-text {
        padding: 2.5rem 1.5rem;
    }

    .club-info {
        padding: 2rem 1.5rem;
    }

    .club-info .slider-frame {
        padding: 0 1rem 3rem;
        min-height: 220px;
    }

    .club-info .slide.active {
        min-height: 200px;
    }

    .club-arrow {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 0;
        transform: none;
    }

    .club-arrow--prev {
        left: calc(50% - 60px);
    }

    .club-arrow--next {
        right: calc(50% - 60px);
    }

    .club-info .club-arrow {
        display: none;
    }

    .join-section {
        flex-direction: column;
    }

    .join-text {
        padding: 2.5rem 1.5rem;
    }

    .join-phone {
        font-size: 1.5rem;
    }

    .join-media {
        min-height: 260px;
    }

    .site-footer {
        padding: 2.5rem 1.5rem;
        --footer-gradient-radius: 360px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
    }

    .footer-map iframe {
        min-height: 220px;
    }
}
