/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* scroll-behavior handled by scroll_center.js for centered positioning */
body {
    background-color: #faf9f8;
    overflow-x: hidden;
}
.blur {
    filter: blur(5px);
}

/* ============================================================
   PAGE WRAPPER  — fluid, no hard cap on mobile
   ============================================================ */
.page_wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(14px, 5vw, 28px);
}

/* ============================================================
   HERO  — mobile first, column layout
   ============================================================ */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 24px;
    animation: hero_appear 0.55s ease;
}

@keyframes hero_appear {
    from { opacity: 0; transform: translateY(48px) scale(0.94); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* ---------- PROFILE VIDEO ---------- */
.hero .profile_wrapper {
    position: relative;
    width: min(280px, 74vw);
    margin: 40px auto 32px;
    flex-shrink: 0;
}

.hero video.profile {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

.hero .profile_wrapper::after {
    content: "";
    position: absolute;
    top: clamp(20px, 5vw, 30px);
    left: clamp(-22px, -6vw, -30px);
    width: 100%;
    height: 100%;
    background-color: #f3eadd;
    z-index: -1;
}

/* ---------- TEXT BOX ---------- */
.hero .hero_text_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero .hero_text_box p.hero_txt {
    text-align: center;
    letter-spacing: 2px;
    font-family: TheSeasonsBold, serif;
    font-size: clamp(22pt, 7.5vw, 28pt);
}

.hero .hero_text_box .hero_hook {
    font-family: TheSeasonsBold, serif;
    font-size: clamp(15pt, 5.5vw, 20pt);
    text-align: center;
    color: #1a1a1a;
    margin-top: 8px;
    line-height: 1.4;
    background-color: #d4bdad;
    padding: 8px clamp(14px, 5vw, 22px);
    border-radius: 4px;
}

.hero .hero_text_box .hero_tagline {
    font-family: CormorantGaramond, serif;
    font-size: clamp(8.5pt, 2.5vw, 10pt);
    letter-spacing: clamp(1px, 0.8vw, 3px);
    color: #7b6853;
    margin-top: 14px;
    text-align: center;
}

.hero .hero_text_box p.description_txt {
    text-align: center;
    margin: 16px 0 24px;
    font-size: clamp(12pt, 3.5vw, 13pt);
    letter-spacing: 0.5px;
    font-family: CormorantGaramond, serif;
    line-height: 1.55;
}

/* ---------- BENEFITS ---------- */
.hero_benefits {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-bottom: 20px;
    background-color: #f3eadd;
    padding: 8px;
    border-radius: 10px;
}

.hero_benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
}

.hero_benefit img {
    width: clamp(28px, 8vw, 35px);
    height: clamp(28px, 8vw, 35px);
    flex-shrink: 0;
}

.hero_benefit .benefit_title {
    font-family: TheSeasonsBold, serif;
    font-size: clamp(11pt, 3.2vw, 13pt);
    color: #1a1a1a;
    line-height: 1.3;
}

.hero_benefit .benefit_desc {
    font-family: CormorantGaramond, serif;
    font-size: clamp(10pt, 2.8vw, 11pt);
    color: #7b6853;
    margin-top: 2px;
    line-height: 1.3;
}

/* ---------- CTA BOX ---------- */
.hero_cta_box {
    width: 100%;
    background-color: #f3eadd;
    border-radius: 16px;
    padding: clamp(18px, 5vw, 24px) clamp(16px, 5vw, 28px);
    text-align: center;
    margin-bottom: 20px;
}

.hero_cta_box .cta_headline {
    font-family: TheSeasonsBold, serif;
    font-size: clamp(13pt, 4vw, 15pt);
    color: #000;
    margin-bottom: 4px;
}

.hero_cta_box .cta_sub {
    font-family: CormorantGaramond, serif;
    font-size: clamp(10pt, 3vw, 11pt);
    color: #000;
    margin-bottom: 16px;
}

.hero_cta_box .cta_button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: TheSeasonsBold, serif;
    font-size: clamp(9pt, 2.8vw, 10.5pt);
    letter-spacing: 2px;
    color: #fff;
    background-color: #d4bdad;
    padding: 12px clamp(20px, 5vw, 30px);
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero_cta_box .cta_button:hover {
    background-color: #3e2f1b;
    transform: translateY(-1px);
}

.hero_cta_box .cta_button:active {
    transform: translateY(0);
}

/* ---------- CONTACT GROUP — full-width strip outside page_wrapper ---------- */
.contact_group {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e8ddd4;
    border-bottom: 1px solid #e8ddd4;
    border-radius: 0;
    box-shadow: 0 -2px 14px rgba(87, 67, 42, 0.06), 0 2px 14px rgba(87, 67, 42, 0.06);
    overflow: hidden;
}

.contact_group .contact_me {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #57432a;
    font-family: CormorantGaramond, serif;
    padding: 22px 10px;
    position: relative;
    transition: background 0.25s ease, color 0.25s ease;
}

/* vertical separator */
.contact_group .contact_me + .contact_me::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #e8ddd4;
}

.contact_group .contact_me img {
    width: 36px;
    height: 36px;
    opacity: 0.75;
    flex-shrink: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact_group .contact_me p {
    margin: 0;
    font-size: 8pt;
    color: inherit;
    font-family: CormorantGaramond, serif;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 4px;
}

.contact_group a.contact_me:hover {
    background: #faf6f1;
    color: #3e2f1b;
}

.contact_group a.contact_me:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* ---------- ARROW (decorative) ---------- */
.arrow-to-highlight {
    display: none;
}

/* ---------- INSTAGRAM HIGHLIGHTS ---------- */
.hero .instagram_highlights {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin: 16px auto 0;
    background: #fff;
    border: 1px solid #e8ddd4;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(87, 67, 42, 0.07);
    padding: 18px clamp(10px, 4vw, 20px) 14px;
}

.hero .instagram_highlights .highlights {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
}

.hero .instagram_highlights .highlights a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #1a1a1a;
    font-family: CormorantGaramond, serif;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .instagram_highlights .highlights a:hover {
    transform: translateY(-2px) scale(1.01);
}

.hero .instagram_highlights .highlights a .highlight_circle {
    width: clamp(54px, 15vw, 68px);
    height: clamp(54px, 15vw, 68px);
    border-radius: 50%;
    background-color: #f3eadd;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2.5px #e8ddd4;
    transition: box-shadow 0.35s ease, background-color 0.35s ease;
}

.hero .instagram_highlights .highlights a:hover .highlight_circle {
    box-shadow: 0 0 0 3px #c4a57a, 0 6px 18px rgba(87, 67, 42, 0.14);
    background-color: #ede3d5;
}

.hero .instagram_highlights .highlights a .highlight_circle img {
    width: clamp(24px, 6.5vw, 32px);
    height: clamp(24px, 6.5vw, 32px);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .instagram_highlights .highlights a:hover .highlight_circle img {
    transform: scale(1.12);
}

.hero .instagram_highlights .highlights a p {
    font-family: CormorantGaramond, serif;
    font-size: clamp(0.8rem, 2.4vw, 0.95rem);
    color: #57432a;
    letter-spacing: 0.03em;
}

.hero .instagram_highlights .typewriter {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ede8e2;
    width: 100%;
    padding-top: 12px;
}

.hero .instagram_highlights p.highlight_desc {
    text-align: center;
    font-family: CormorantGaramond, serif;
    font-size: clamp(9pt, 2.6vw, 10.5pt);
    color: #9b8b78;
    letter-spacing: 0.04em;
}

/* ============================================================
   TABLET  (768px+)
   ============================================================ */
@media (min-width: 768px) {
    .page_wrapper {
        max-width: 750px;
    }

    .hero .profile_wrapper {
        width: 300px;
    }

    .hero .hero_text_box {
        max-width: 560px;
    }

    .hero .hero_text_box p.hero_txt {
        font-size: 30pt;
    }

    .hero .hero_text_box .hero_hook {
        font-size: 22pt;
    }

    .hero .hero_text_box .hero_tagline {
        font-size: 11pt;
    }

    .hero_benefits {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .hero_benefit {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        flex: 1;
    }

    /* contained card on tablet */
    .contact_group {
        max-width: 700px;
        margin: 28px auto 0;
        border: 1px solid #e8ddd4;
        border-top: 1px solid #e8ddd4;
        border-bottom: 1px solid #e8ddd4;
        border-radius: 14px;
        box-shadow: 0 2px 16px rgba(87, 67, 42, 0.07);
    }

    .contact_group .contact_me p {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        font-size: 11pt;
    }

    .hero .instagram_highlights .highlights {
        justify-content: center;
        gap: 28px;
    }

    .hero .instagram_highlights .highlights a .highlight_circle {
        width: 72px;
        height: 72px;
    }

    .hero .instagram_highlights .highlights a .highlight_circle img {
        width: 34px;
        height: 34px;
    }
}

/* ============================================================
   DESKTOP  (1200px+)  — profile left, text right
   ============================================================ */
@media (min-width: 1200px) {
    .page_wrapper {
        max-width: 1100px;
    }

    .hero {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        gap: 40px;
        padding: 20px 0 0;
    }

    .hero .profile_wrapper {
        width: 420px;
        margin: 80px 50px;
    }

    .hero .profile_wrapper::after {
        top: 50px;
        left: -50px;
    }

    .hero .hero_text_box {
        flex: 1;
        max-width: 600px;
        align-items: center;
    }

    .hero .hero_text_box p.hero_txt {
        font-size: 38pt;
        letter-spacing: 5px;
    }

    .hero .hero_text_box .hero_hook {
        font-size: 24pt;
        padding: 10px 28px;
    }

    .hero .hero_text_box .hero_tagline {
        font-size: 11pt;
        letter-spacing: 4px;
    }

    .hero .hero_text_box p.description_txt {
        font-size: 14pt;
        max-width: 480px;
    }

    .hero_benefits {
        flex-direction: row;
        gap: 24px;
        justify-content: center;
    }

    .hero_cta_box {
        padding: 24px 30px;
    }

    .hero_cta_box .cta_button {
        font-size: 11pt;
        padding: 14px 34px;
    }

    /* contact_group on desktop — centered below hero */
    .contact_group {
        max-width: 1000px;
        margin: 20px auto 0;
        border-radius: 16px;
    }

    .contact_group .contact_me {
        padding: 20px 20px;
        gap: 8px;
    }

    .contact_group .contact_me img {
        width: 28px;
        height: 28px;
    }

    .contact_group .contact_me p {
        font-size: 12pt;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .hero .instagram_highlights {
        padding: 22px 20px 18px;
        gap: 16px;
    }

    .hero .instagram_highlights .highlights {
        gap: 32px;
        justify-content: center;
    }

    .hero .instagram_highlights .highlights a .highlight_circle {
        width: 78px;
        height: 78px;
    }

    .hero .instagram_highlights .highlights a .highlight_circle img {
        width: 36px;
        height: 36px;
    }

    .hero .instagram_highlights .highlights a p {
        font-size: 1.05rem;
    }

    .hero .instagram_highlights p.highlight_desc {
        font-size: 11pt;
    }
}
