/* =============================================
   AZUL SPARKS — style.css
   Full responsive, designer-grade
   ============================================= */

/* ── CSS Custom Properties ──────────────────── */
:root {
    --cream:        #F4EDE3;
    --cream-mid:    #EDE3D4;
    --navy:         #1C2B4A;
    --navy-deep:    #12203A;
    --gold:         #C9A84C;
    --gold-light:   #D4B86A;
    --text-body:    #2C3A52;
    --text-muted:   #6B7A8D;

    --font-serif:   'Cormorant Garamond', Georgia, serif;
    --font-sans:    'Montserrat', sans-serif;

    --nav-h:        80px;
    --radius:       0px;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--cream);
    color: var(--text-body);
    font-family: var(--font-sans);
    font-weight: 300;
    overflow-x: hidden;
    min-height: 100vh;
}

img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--nav-h);
    padding: 0 52px;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* left nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--navy);
    transition: color 0.25s;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover          { color: var(--navy-deep); }

/* center star */
.nav-center-star {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.nav-star-svg {
    width: 17px;
    height: 17px;
    color: var(--navy);
}

/* right social icons */
.nav-social {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-end;
}

.nav-social-link {
    font-size: 15px;
    color: var(--navy);
    transition: color 0.25s, transform 0.25s;
    display: flex;
    align-items: center;
}

.nav-social-link:hover {
    color: var(--gold);
    transform: translateY(-1px);
}

.nav-social-sep {
    color: var(--navy);
    opacity: 0.35;
    font-weight: 200;
    font-size: 15px;
    line-height: 1;
}

/* mobile hamburger — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 210;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: calc(100vh - 0px);
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

/* ── Hero Left ── */
.hero-left {
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 48px) 0 72px 52px;
    background: var(--cream);
    position: relative;
}

.hero-content {
    max-width: 500px;
    width: 100%;
}

/* sparkle */
.sparkle-group {
    margin-bottom: 12px;
}

.sparkle-main-wrap {
    position: relative;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sparkle-main {
    width: 54px;
    height: 54px;
    color: var(--navy);
    animation: sparkle-pulse 3.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes sparkle-pulse {
    0%, 100% { transform: scale(1) rotate(0deg);   opacity: 1; }
    50%       { transform: scale(1.06) rotate(5deg); opacity: 0.82; }
}

.sp-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--navy);
}
.sp-dot-tl { width: 5px; height: 5px; top: -7px;  left: -7px; }
.sp-dot-br { width: 4px; height: 4px; bottom: -5px; right: -5px; opacity: 0.55; }
.sp-dot-bl { width: 3px; height: 3px; bottom: 3px;  left: -11px; opacity: 0.4; }

/* brand name */
.brand-name {
    font-family: var(--font-serif);
    font-size: clamp(52px, 7.5vw, 102px);
    font-weight: 300;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

/* gold rule */
.gold-line {
    width: 115px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 18px;
    transform-origin: left;
}

/* tagline */
.tagline {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: var(--navy);
    margin-bottom: 20px;
}

/* description */
.hero-desc {
    font-family: var(--font-serif);
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 38px;
    letter-spacing: 0.01em;
}

/* CTA */
.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: var(--navy);
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--navy);
    transition: color 0.3s, border-color 0.3s, gap 0.3s;
}

.cta-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    gap: 12px;
}

/* ── Hero Right ── */
.hero-right {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.7s ease;
}

.hero-right:hover .hero-img {
    transform: scale(1.02);
}

/* =============================================
   BOTTOM SECTION
   ============================================= */
.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    min-height: 280px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* divider */
.bottom-divider {
    width: 1px;
    background: rgba(28, 43, 74, 0.14);
    align-self: stretch;
    margin: 28px 0;
}

/* ── Bottom Left ── */
.bottom-left {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.wc-blob {
    position: absolute;
    bottom: -20px;
    left: -80px;
    width: 115%;
    height: 115%;
    pointer-events: none;
}

.wc-svg {
    width: 100%;
    height: 100%;
}

.wc-gold-accent {
    position: absolute;
    bottom: 22px;
    left: 55px;
    width: 180px;
    height: 50px;
    pointer-events: none;
    z-index: 1;
}

.wc-gold-accent::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 130px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    opacity: 0.5;
    transform: rotate(-7deg);
    transform-origin: left center;
}

/* quote */
.quote-block {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 28px 32px;
}

.quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.38;
}

.quote-star-mini {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.quote-star-mini svg {
    width: 13px;
    height: 13px;
    color: var(--gold);
}

/* ── Bottom Right ── */
.bottom-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 44px 40px 48px;
    overflow: hidden;
}

.brand-info {
    position: relative;
    z-index: 2;
}

.brand-info-title {
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--navy);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.brand-info-text {
    font-family: var(--font-serif);
    font-size: clamp(15px, 1.25vw, 17px);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 340px;
}

/* botanical */
.botanical-wrap {
    position: absolute;
    right: -8px;
    top: -8px;
    width: 195px;
    height: 235px;
    pointer-events: none;
    opacity: 0.82;
}

.botanical-svg {
    width: 100%;
    height: 100%;
}

/* br sparkle */
.br-sparkle {
    position: absolute;
    bottom: 26px;
    right: 115px;
    z-index: 2;
}

.br-sparkle svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
    opacity: 0.7;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--navy);
    padding: 20px 24px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-star {
    width: 13px;
    height: 13px;
    color: var(--gold);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.05em;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* ── 1280px: slight tighten ── */
@media (max-width: 1280px) {
    .navbar { padding: 0 40px; }
    .hero-left { padding-left: 40px; }
}

/* ── 1100px ── */
@media (max-width: 1100px) {
    .hero-section { grid-template-columns: 54% 46%; }
    .brand-name   { font-size: clamp(46px, 6.5vw, 82px); }
    .nav-links    { gap: 26px; }
}

/* ── 900px: tablet landscape ── */
@media (max-width: 900px) {
    :root { --nav-h: 68px; }

    .navbar {
        padding: 0 28px;
        grid-template-columns: auto 1fr auto;
        gap: 0;
    }

    /* hide center star on tablet */
    .nav-center-star { display: none; }

    .nav-links { gap: 20px; }
    .nav-link  { font-size: 10px; letter-spacing: 0.14em; }

    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: calc(var(--nav-h) + 40px) 28px 48px;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        max-width: 520px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gold-line { margin-left: auto; margin-right: auto; }

    .hero-right {
        min-height: 46vw;
        max-height: 520px;
    }

    .bottom-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .bottom-divider {
        width: 55%;
        height: 1px;
        margin: 0 auto;
        align-self: unset;
    }

    .bottom-left  { min-height: 240px; }

    .bottom-right {
        padding: 36px 28px 44px;
        align-items: center;
        text-align: center;
    }

    .brand-info-text { max-width: 460px; }

    .botanical-wrap {
        width: 150px;
        height: 185px;
        opacity: 0.3;
    }

    .br-sparkle { right: auto; left: 50%; transform: translateX(-50%); }
}

/* ── 680px: mobile ── */
@media (max-width: 680px) {
    :root { --nav-h: 62px; }

    .navbar {
        padding: 0 20px;
        grid-template-columns: 1fr auto;
        position: fixed;
    }

    /* show hamburger */
    .nav-toggle { display: flex; }

    /* collapsible mobile menu */
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 36px;
        transform: translateX(-100%);
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 205;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 13px;
        letter-spacing: 0.2em;
    }

    .nav-social { display: none; }

    .hero-left {
        padding: calc(var(--nav-h) + 32px) 20px 40px;
    }

    .brand-name { font-size: clamp(42px, 11vw, 68px); }

    .hero-desc  { font-size: 16px; }

    .hero-right {
        min-height: 56vw;
        max-height: 380px;
    }

    .bottom-left  { min-height: 220px; }
    .quote-text   { font-size: clamp(22px, 6vw, 30px); }

    .bottom-right { padding: 32px 20px 40px; }

    .botanical-wrap { display: none; }

    .footer-logo-text { font-size: 19px; }
}

/* ── 420px: small mobile ── */
@media (max-width: 420px) {
    .brand-name  { font-size: clamp(36px, 10vw, 52px); }
    .tagline     { font-size: 9.5px; letter-spacing: 0.2em; }
    .hero-desc   { font-size: 15px; }
    .cta-link    { font-size: 9px; }

    .quote-text  { font-size: clamp(20px, 6.5vw, 26px); }

    .bottom-left { min-height: 200px; }
}

/* ── 320px: very small ── */
@media (max-width: 360px) {
    .brand-name { font-size: 34px; }
    .navbar { padding: 0 14px; }
}