/* ==========================================================================
   GGLOTY — PREMIUM EDITORIAL REDESIGN v2
   Dark couture hero + light editorial mid-page + dark finale.
   Brand palette preserved exactly from the original stylesheet.
   ========================================================================== */

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

:root {
    /* ---- brand colors (unchanged) ---- */
    --luxury-black: #08050E;
    --luxury-white: #FAF9FC;
    --deep-brand-purple: #4A2E80;
    --amethyst-glow: #8B5CF6;
    --light-amethyst: #E7D5FF;
    --slate-muted: #645C72;
    --soft-cream-bg: #FDFCFF;

    /* ---- derived tints of the same hues (no new colors) ---- */
    --ink-soft: #14101E;
    --lilac-veil: rgba(231, 213, 255, 0.85);
    --lilac-dim: rgba(231, 213, 255, 0.55);
    --plum-10: rgba(74, 46, 128, 0.10);
    --plum-16: rgba(74, 46, 128, 0.16);
    --amethyst-30: rgba(139, 92, 246, 0.5);
    --white-04: rgba(250, 249, 252, 0.04);
    --white-08: rgba(250, 249, 252, 0.08);

    --font-display: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --edge: 7vw;
    --nav-h: 92px;
    --ticker-h: 46px;
}

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

body {
    font-family: var(--font-body);
    background: var(--soft-cream-bg);
    color: var(--luxury-black);
    line-height: 1.5;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 500;
}

p {
    color: var(--slate-muted);
}

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

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

::selection {
    background: var(--amethyst-glow);
    color: #fff;
}

main>section {
    padding-left: var(--edge);
    padding-right: var(--edge);
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MASTHEAD / NAV
   ========================================================================== */
.masthead {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #F4ECFF;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--plum-10);
}

.masthead-bar {
    max-width: 1440px;
    margin: 0 auto;
    height: var(--nav-h);
    padding: 0 var(--edge);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.8rem;
}

.nav-item {
    position: relative;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--luxury-black);
    opacity: 0.55;
    padding-bottom: 6px;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--amethyst-glow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.nav-item:hover,
.nav-item.active {
    opacity: 1;
    color: var(--deep-brand-purple);
}

.nav-item:hover::after,
.nav-item.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--deep-brand-purple);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 1200;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.menu-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO — DARK COUTURE
   ========================================================================== */
.hero {
    background: var(--luxury-black);
    min-height: calc(100vh - var(--nav-h) - var(--ticker-h));
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.55;
    animation: driftGlow 15s ease-in-out infinite alternate;
}

.glow-a {
    width: 520px;
    height: 520px;
    background: #4a2e80;
    ;
    top: -15%;
    right: -9%;
}

.glow-b {
    width: 460px;
    height: 460px;
    background: #8B5CF6;
    bottom: -14%;
    left: -8%;
    animation-delay: 3s;
    opacity: 0.35;
}

.glow-c {
    width: 520px;
    height: 520px;
    background: #4A2E80;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

@keyframes driftGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(25px, -25px) scale(1.1);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-amethyst);
    background: var(--white-08);
    border: 1px solid var(--amethyst-30);
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    margin-bottom: 1.6rem;
}

.eyebrow-plum {
    color: var(--deep-brand-purple);
    background: var(--light-amethyst);
    border: none;
}

.hero-title {
    font-size: clamp(2.6rem, 4.4vw, 4.1rem);
    line-height: 1.05;
    letter-spacing: -1.8px;
    color: var(--luxury-white);
    margin-bottom: 1.4rem;
    margin-top: 7rem;
}

p.hero-text {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #c8bfe1;
    max-width: 540px;
    margin-bottom: 1.2rem;
}

.brand-highlight {
    font-weight: 700;                     
    font-size: 1.6rem;                    
    color:  #f0e0ff; 
    letter-spacing: -0.1px;
}

.accent-ital {
    font-style: italic;
    background: linear-gradient(100deg, var(--light-amethyst), var(--amethyst-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-plum {
    font-style: italic;
    color: var(--deep-brand-purple);
}

.hero-text {
    font-size: 1.12rem;
    line-height: 1.75;
    color: var(--lilac-dim);
    max-width: 540px;
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(105deg, var(--deep-brand-purple), var(--amethyst-glow));
    color: #fff;
    padding: 0.95rem 2.3rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.3px;
    box-shadow: 0 16px 40px var(--amethyst-30);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(139, 92, 246, 0.5);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--light-amethyst);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.link-arrow:hover {
    opacity: 1;
}

.arrow-bob {
    display: inline-block;
    animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ---- HERO PHOTO STACK (signature element) ---- */
.hero-visual {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-stack {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 5rem;
}

.photo-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 270px;
    height: 350px;
    background: #fff;
    padding: 12px 12px 34px;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    transition: transform 0.85s var(--ease), opacity 0.85s var(--ease);
}

.photo-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.photo-tag {
    position: absolute;
    bottom: 8px;
    left: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--luxury-black);
    font-family: var(--font-display);
    font-style: italic;
}

.photo-card.pos-center {
    transform: translate(-50%, -50%) rotate(-2deg) scale(1);
    opacity: 1;
    z-index: 5;
}

.photo-card.pos-left {
    transform: translate(-50%, -50%) translate(-88px, 16px) rotate(-11deg) scale(0.9);
    opacity: 0.85;
    z-index: 3;
}

.photo-card.pos-right {
    transform: translate(-50%, -50%) translate(88px, 20px) rotate(10deg) scale(0.88);
    opacity: 0.8;
    z-index: 2;
}

.photo-card.pos-hidden {
    transform: translate(-50%, -50%) translateY(50px) rotate(5deg) scale(0.75);
    opacity: 0;
    z-index: 1;
}

/* ==========================================================================
   VISION — LIGHT EDITORIAL
   ========================================================================== */
.vision {
    background: var(--soft-cream-bg);
    padding-top: 7rem;
    padding-bottom: 6rem;
    text-align: center;
}

.vision-inner {
    max-width: 980px;
    margin: 0 auto;
}

.quote-mark {
    display: block;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--light-amethyst);
    margin-bottom: -1.4rem;
}

.lede {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    line-height: 1.5;
    color: var(--deep-brand-purple);
    margin-bottom: 3rem;
}

.vision-heading h2 {
    font-size: clamp(2.2rem, 3vw, 2.9rem);
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin-bottom: 3.5rem;
}

.perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    text-align: left;
}

.perk {
    border-top: 2px solid var(--deep-brand-purple);
    padding-top: 1.6rem;
    transition: transform 0.5s var(--ease);
}

.perk:hover {
    transform: translateY(-6px);
}

.perk-tag {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-brand-purple);
    margin-bottom: 0.9rem;
}

.perk h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.perk p {
    font-size: 1.15rem;
    line-height: 1.65;
}

/* ==========================================================================
   FEED — LILAC TINT
   ========================================================================== */
.feed {
    background: #F4ECFF;
    padding-top: 6rem;
    padding-bottom: 6rem;
    border-radius: 46px;
    margin: 0 3vw 2vw;
    width: 94vw;
}

.feed-heading {
    max-width: 700px;
    margin-bottom: 4rem;
}

.feed-heading h2 {
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    letter-spacing: -1.2px;
    margin-top: 0.7rem;
}

.feed-sub {
    font-size: 1.1rem;
    margin-top: 0.8rem;
    font-weight: 300;
}

.feed-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.feed-copy {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feed-item {
    position: relative;
    padding-left: 4.6rem;
}

.ghost-num {
    position: absolute;
    left: 0;
    top: -0.6rem;
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--amethyst-glow);
    opacity: 0.5;
}

.feed-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

.feed-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
    color: #494254;
}

.feed-media {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    height: 540px;
    background: #201b28;
    border-radius: 42px;
    padding: 9px;
    border: 3px solid #16101f;
    box-shadow: 0 40px 70px var(--plum-16);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 38px 18px 20px;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 18px;
    background: #000;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 3;
}

.phone-tag {
    align-self: flex-start;
    background: var(--white-08);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    position: relative;
    z-index: 2;
}

.phone-credit {
    color: #fff;
    position: relative;
    z-index: 2;
}

.phone-credit h5 {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.phone-credit p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* ==========================================================================
   GALLERY / LOOKBOOK — OFFSET WALL
   ========================================================================== */
.gallery {
    background: var(--soft-cream-bg);
    padding-top: 6rem;
    padding-bottom: 5rem;
}

.gallery-heading {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.gallery-heading h2 {
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    letter-spacing: -1.2px;
    margin-top: 0.7rem;
}

.gallery-sub {
    font-size: 1.1rem;
    margin-top: 0.8rem;
    font-weight: 300;
}

.wall {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.frame {
    position: relative;
    height: 380px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--plum-10);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.wall .frame:nth-child(2),
.wall .frame:nth-child(5) {
    transform: translateY(-26px);
}

.wall .frame:nth-child(2):hover,
.wall .frame:nth-child(5):hover {
    transform: translateY(-34px);
}

.frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 46px var(--plum-16);
}

.frame-veil {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.4rem 1.4rem 1.5rem;
    background: linear-gradient(to top, rgba(8, 5, 14, 0.88) 0%, rgba(8, 5, 14, 0.35) 65%, transparent 100%);
    transform: translateY(6px);
    transition: transform 0.5s var(--ease);
}

.frame:hover .frame-veil {
    transform: translateY(0);
}

.frame-pill {
    display: inline-block;
    background: var(--white-08);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
}

.frame-veil h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.2px;
}

/* ==========================================================================
   FINALE / DOWNLOAD — DARK
   ========================================================================== */
.finale {
    background: var(--luxury-black);
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    border-radius: 46px;
    margin: 1rem 3vw 3rem;
    width: 94vw;
}

.finale-inner {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.finale-copy h2 {
    font-size: clamp(2.1rem, 3.2vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -1.4px;
    color: var(--luxury-white);
    margin: 1.2rem 0 1.2rem;
}

.finale-copy p {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--lilac-dim);
    max-width: 520px;
}

.finale-badges {
    display: flex;
    justify-content: flex-end;
    gap: 1.1rem;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #4A2E80;
    border: 1.5px solid var(--white-08);
    color: #fff;
    padding: 0 1.3rem;
    height: 56px;
    border-radius: 14px;
    transition: transform 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease;
}

.store-badge:hover {
    transform: translateY(-4px);
    background: var(--white-08);
    border-color: var(--amethyst-30);
}

.store-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.store-text {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
}

.store-text small {
    font-weight: 500;
    font-size: 0.9rem;
    color: rgb(244, 244, 244);
}


/* ==========================================================================
   CONTACT SECTION 
   ========================================================================== */


.contact-page-wrapper {
    padding-top: 80px;
    min-height: 85vh;
}

.contact-section-wrapper {
    background: var(--soft-cream-bg, #FAF8FF);
    padding: 3.5rem 0 5rem;
    width: 100%;
}

.contact-purple-card {
    background: #311c4f;
    border-radius: 46px;
    padding: 3.5rem;
    max-width: 1360px;
    width: 94vw;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(74, 46, 128, 0.08);
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
    align-items: start; /* PULLS FORM FLUSH TO TOP EDGE */
    background: #ffffff;
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid rgba(74, 46, 128, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.contact-visual-col {
    position: relative;
    height: auto;          /* Adjusted from 100% to let height collapse naturally */
    min-height: 380px;
}

.contact-img-frame {
    width: 100%;
    aspect-ratio: 4 / 3.8;
    border-radius: 24px;
    background-size: cover;
    background-position: center 20%;
    position: relative;
    overflow: visible;
}

.contact-floating-info {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background: #ffffff;
    border: 1px solid rgba(74, 46, 128, 0.15);
    border-radius: 20px;
    padding: 1rem 1.8rem;
    width: 280px;
    box-shadow: 0 20px 40px rgba(8, 5, 14, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 5;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: auto;
}

.info-icon {
    font-size: 1.2rem;
    background: #F4ECFF;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--luxury-black);
    margin: 0;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--slate-muted);
    margin: 0;
}

.contact-form-col {
    padding: 0 0.5rem 1rem 0.5rem;
    margin-top: 0; /* REMOVES TOP MARGIN BUFFER */
}

.form-header {
    margin-top: 0;
    padding-top: 0;
}

.form-header h2 {
    font-size: 2.8rem;
    letter-spacing: -1px;
    color: var(--luxury-black);
    margin-top: 0;        /* FLUSH WITH CONTAINER TOP */
    margin-bottom: 1.2rem;
    line-height: 1.05;   /* TIGHTENS LINE HEIGHT */
}

.contact-form-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.luxury-input {
    width: 100%;
    padding: 0.95rem 1.2rem;
    background: #F8F6FC;
    border: 1px solid rgba(74, 46, 128, 0.15);
    border-radius: 12px;
    color: var(--luxury-black);
    font-family: var(--font-body);
    font-size: 0.98rem;
    outline: none;
    transition: all 0.3s ease;
}

.luxury-input:focus {
    background: #ffffff;
    border-color: var(--amethyst-glow);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

textarea.luxury-input {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    cursor: pointer;
    border: none;
    margin-top: 0.5rem;
}

/* ==========================================================================
   FAQ PAGE / SECTION 
   ========================================================================== */


.faq-section-wrapper,
.faq-container {
    background: var(--soft-cream-bg);
    padding: 9rem 0 5rem; 
    width: 100%;
    min-height: 80vh;
    box-sizing: border-box;
}

.light-purple-card {
    background: #d9c0fa;
    border-radius: 46px;
    padding: 4.5rem 4rem;
    max-width: 1280px;
    width: 94vw;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(74, 46, 128, 0.06);
    border: 1px solid rgba(74, 46, 128, 0.08);
}

.card-head {
    max-width: 750px;
    margin: 0 auto 3.2rem auto; /* Centers the head container horizontally */
    text-align: center;         /* Centers all text inside it */
}

.card-head h2 {
    font-size: clamp(2.4rem, 3.2vw, 3rem);
    letter-spacing: -1.2px;
    margin-top: 0.6rem;
    color: var(--luxury-black, #1a0b2e);
    line-height: 1.15;
    text-align: center;
    font-weight: 700;
}

.card-sub {
    font-size: 1.1rem;
    margin-top: 0.6rem;
    font-weight: 300;
    color: #494254;
    line-height: 1.6;
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    width: 100%;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid rgba(74, 46, 128, 0.12);
    border-radius: 20px;
    padding: 1.4rem 2rem;
    transition: all 0.35s var(--ease, ease);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-accordion-item:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 25px rgba(74, 46, 128, 0.08);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    padding: 0.2rem 0;
    gap: 1rem;
}

.faq-accordion-header h3 {
    font-family: var(--font-body, inherit);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--luxury-black, #1a0b2e);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(74, 46, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    transition: all 0.35s var(--ease, ease);
}

.arrow-icon {
    width: 18px;
    height: 18px;
    stroke: var(--deep-brand-purple, #6e44ff);
    transition: transform 0.4s var(--ease, ease);
}

.faq-accordion-item.active {
    background: #ffffff;
    border-color: var(--amethyst-glow, #8b5cf6);
    box-shadow: 0 14px 30px rgba(139, 92, 246, 0.12);
}

.faq-accordion-item.active .faq-accordion-header h3 {
    color: var(--deep-brand-purple, #6e44ff);
}

.faq-accordion-item.active .faq-arrow-btn {
    background: var(--deep-brand-purple, #6e44ff);
    border-color: var(--deep-brand-purple, #6e44ff);
}

.faq-accordion-item.active .arrow-icon {
    stroke: #ffffff;
    transform: rotate(180deg);
}

.faq-accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease, ease), opacity 0.3s ease, margin-top 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(74, 46, 128, 0.08);
}

.faq-accordion-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #494254;
    margin: 0;
}

/* Responsive Overrides for Mobile / Tablet */
@media (max-width: 640px) {
    #faq,
    .faq-section-wrapper,
    .faq-container {
        padding: 5.5rem 0 3rem;
    }

    .light-purple-card {
        padding: 2rem 1.2rem;
        border-radius: 24px;
        width: 92vw;
    }

    .faq-accordion-item {
        padding: 1.2rem 1.2rem;
    }
}


/* ==========================================================================
   FOOTER — premium three-column masthead + divider + statement strip
   ========================================================================== */
.site-footer {
    background: var(--luxury-black);
    padding: 4rem var(--edge) 0;
}

.footer-main {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2.6rem;
    border-bottom: 1px solid var(--white-08);
}

.footer-brand {
    justify-self: start;
    opacity: 0.92;
    transition: opacity 0.3s ease;
}

.footer-brand:hover {
    opacity: 1;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-nav {
    justify-self: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.4rem;
}

.footer-nav a {
    color: var(--lilac-veil);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.75;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: #fff;
}

.footer-social {
    justify-self: end;
    display: flex;
    gap: 0.9rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--white-08);
    background: #503492;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lilac-veil);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--amethyst-glow);
    border-color: var(--amethyst-glow);
    color: #fff;
    transform: translateY(-3px);
}

.footer-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1360px;
    margin: 0 auto;
    padding: 1.8rem var(--edge);
}

.strip-tagline {
    color: var(--lilac-veil);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;

}

.strip-copy {
    color: var(--lilac-veil);
    font-size: 1rem;
    ;
    white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE — TIER 1: LAPTOP (max-width: 1280px)
   ========================================================================== */
@media (max-width: 1280px) {
    :root {
        --edge: 5vw;
    }

    .hero-inner,
    .feed-inner,
    .finale-inner {
        gap: 2.6rem;
    }
}

/* ==========================================================================
   RESPONSIVE — TIER 2: SMALL LAPTOP / LANDSCAPE TABLET (max-width: 1080px)
   ========================================================================== */
@media (max-width: 1080px) {
    .wall {
        grid-template-columns: repeat(2, 1fr);
    }

    .wall .frame:nth-child(2),
    .wall .frame:nth-child(5) {
        transform: none;
    }

    .wall .frame:nth-child(2):hover,
    .wall .frame:nth-child(5):hover {
        transform: translateY(-10px);
    }

    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Stack order: Contact Form on Top, Image + Info on Bottom */
    .contact-form-col {
        order: 1;
    }

    .contact-visual-col {
        order: 2;
        min-height: auto;
    }

    .contact-img-frame {
        min-height: 320px;
        border-radius: 20px;
    }

    .contact-floating-info {
        position: relative;
        bottom: 20;
        top: 20;
        left: auto;
        width: 100%;
        margin-top: 1.5rem;
        padding: 1.2rem;
        box-shadow: 0 8px 24px rgba(74, 46, 128, 0.08);
    }
}

/* ==========================================================================
   RESPONSIVE — TIER 3: TABLET (max-width: 960px) — hamburger drawer kicks in
   ========================================================================== */
@media (max-width: 960px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(340px, 84vw);
        background: var(--luxury-black);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 2.2rem;
        padding: 2rem 2.4rem;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
        z-index: 1100;
    }

    .nav-list.mobile-active {
        transform: translateX(0);
    }

    .nav-item {
        color: var(--luxury-white);
        font-size: 1.15rem;
        opacity: 0.75;
    }

    .nav-item.active,
    .nav-item:hover {
        color: var(--light-amethyst);
        opacity: 1;
    }

    .nav-item::after {
        display: none;
    }

    .hero-inner,
    .feed-inner,
    .finale-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .feed-media {
        order: -1;
    }

    .finale-badges {
        justify-content: flex-start;
    }

    .perks {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 1.8rem;
    }

    .footer-brand,
    .footer-nav,
    .footer-social {
        justify-self: center;
    }

    .light-purple-card {
        padding: 3.5rem 2.5rem;
        border-radius: 36px;
    }

    .contact-purple-card {
        width: 92vw;
        margin: 0 auto;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .contact-layout-grid {
        width: 100%;
        margin: 0 auto;
        padding: 1.4rem;
        box-sizing: border-box;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-visual-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .contact-img-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        min-height: auto;
        border-radius: 20px;
        background-size: cover;
        background-position: center 20%;
        position: relative;
        overflow: visible;
    }

    .contact-floating-info {
        position: absolute;
        top: auto;
        bottom: 15px;
        left: 30%;
        transform: translateX(-50%);
        width: 50%;
        box-sizing: border-box;
        padding: 1.2rem 1.6rem;
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(74, 46, 128, 0.12);
        z-index: 10;
    }
}

/* ==========================================================================
   RESPONSIVE — TIER 4: MOBILE (max-width: 640px)
   ========================================================================== */
@media (max-width: 640px) {
    html {
        scroll-padding-top: 90px;
    }

    :root {
        --edge: 6vw;
        --nav-h: 76px;
        --ticker-h: 40px;
    }

    .logo-img {
        height: 32px;
    }

    .hero {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
        min-height: auto;
    }

    .hero-inner {
        display: flex;
        flex-direction: column;
    }


    .hero-copy {
        display: contents;
    }


    .eyebrow {
        order: 1;
        margin-bottom: 0.5rem;
        font-size: 1rem;
        text-align: center;
    }

    .hero-title {
        order: 2;
        margin-bottom: 0.8rem
        font-size: 2.8rem;
        text-align: center;
    }


    .hero-visual {
        order: 3;
        height: 310px;
        margin-top: -0.5rem;
        margin-bottom: -0.3rem;
    }


    .hero-text {
        order: 4;
        margin-bottom: 1rem;
        margin-top: -0.4rem;
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-actions {
        order: 5;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.1rem;
    }

    .photo-card {
        width: 195px;
        height: 260px;
    }
    .photo-stack {
       margin-top: -4.5rem !important;  /* Pulls photo stack up toward title */
        margin-bottom: -1rem !important;/* PULLS THE PARAGRAPH UPWARD */
        position: relative;
        top: 0;
    }


    .photo-card.pos-left {
        transform: translate(-50%, -50%) translate(-58px, 12px) rotate(-9deg) scale(0.86);
    }

    .photo-card.pos-right {
        transform: translate(-50%, -50%) translate(58px, 14px) rotate(8deg) scale(0.84);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.1rem;
    }

    .btn-glow {
        width: 100%;
        justify-content: center;
    }

    .link-arrow {
        justify-content: center;
        margin-top: 0.9rem;

    }

    .quote-mark {
        font-size: 4rem;
    }

    .perk-tag {
        font-size: 1rem;
    }

    .perk p {
        font-size: 1.05rem;
    }


    .vision,
    .feed,
    .gallery,
    .finale {
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
    }

    .feed,
    .finale {
        border-radius: 26px;
        margin: 0 3vw 1.4rem;
        width: 94vw;
    }

    .feed-item {
        padding-left: 3.6rem;
    }

    .ghost-num {
        font-size: 2.8rem;
    }

    .phone-frame {
        width: 230px;
        height: 450px;
    }

    .wall {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .frame {
        height: 320px;
    }

    .finale-badges {
        flex-direction: column;
    }

    .store-badge {
        width: 100%;
        justify-content: center;
    }

    .footer-nav {
        gap: 1.2rem 1.6rem;
    }

    .footer-strip {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }

    .strip-copy {
        white-space: normal;
    }


    .light-purple-card {
        border-radius: 26px;
        padding: 2.2rem 1.4rem;
        width: 94vw;
        margin: 0 3vw;
    }

    .card-head {
        margin-bottom: 2rem;
    }

    .faq-accordion-item {
        padding: 1.1rem 1.2rem;
        border-radius: 16px;
    }

    .faq-accordion-header h3 {
        font-size: 1.08rem;
    }

    .faq-arrow-btn {
        width: 34px;
        height: 34px;
    }

    .arrow-icon {
        width: 16px;
        height: 16px;
    }

    .faq-accordion-content p {
        font-size: 0.98rem;
    }

    /* ---- Contact Section Mobile Adjustments ---- */

    .contact-purple-card {
        border-radius: 26px;
        padding: 1.2rem;
    }

    .contact-layout-grid {
        padding: 1.2rem;
        border-radius: 20px;
        gap: 1.8rem;
    }

    .info-icon {
        width: 30px;
        height: 30px;
    }

    .contact-img-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        min-height: auto;
        border-radius: 16px;
        background-size: cover;
        background-position: center 20%;
        position: relative;
        overflow: visible;
    
    }

    .contact-floating-info {
        position: absolute !important;
        bottom: 12px !important;
        top: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 24px) !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0.9rem 1rem !important;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        box-sizing: border-box !important;
        background: #ffffff;
        z-index: 5;
    }
}

.info-item h4 {
    font-size: 0.9rem;
}

.info-item p {
    font-size: 0.78rem;
}

.info-item {
    gap: 8px;
}



/* ==========================================================================
   RESPONSIVE — TIER 5: SMALL MOBILE (max-width: 400px)
   ========================================================================== */
@media (max-width: 400px) {
    :root {
        --edge: 5vw;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-text {
        font-size: 1.2rem;
    }

    .vision-heading h2,
    .feed-heading h2,
    .gallery-heading h2 {
        font-size: 2rem;
    }

    .photo-card {
        width: 145px;
        height: 200px;
    }

    .photo-card.pos-left {
        transform: translate(-50%, -50%) translate(-46px, 10px) rotate(-8deg) scale(0.84);
    }

    .photo-card.pos-right {
        transform: translate(-50%, -50%) translate(46px, 12px) rotate(7deg) scale(0.82);
    }

    .phone-frame {
        width: 200px;
        height: 400px;
    }

    .eyebrow {
        font-size: 0.9rem;
        padding: 0.45rem 1rem;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.1rem;
        justify-items: center;
    }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}



/* ==========================================================================
   TERMS & CONDITIONS MASTER PAGE STYLES
   ========================================================================== */

.legal-page-container {
    width: 100%;
    min-height: 100vh;
    padding: 8rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

.legal-card {
    width: 100%;
    max-width: 960px;
    background: #ffffff;
    border-radius: 28px;
    padding: 4rem 3.5rem;
    box-shadow: 0 15px 40px rgba(74, 46, 128, 0.08);
    border: 1px solid rgba(74, 46, 128, 0.1);
    box-sizing: border-box;
}

.legal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(110, 68, 255, 0.1);
    color: #6e44ff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-title {
    font-size: 2.5rem;
    color: #1a0b2e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.legal-subtitle {
    font-size: 1rem;
    color: #6c757d;
}

.legal-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 68, 255, 0.25), transparent);
    margin: 3rem 0;
}

/* Document Block Headers */
.doc-main-title {
    font-size: 1.6rem;
    color: #2b114d;
    background: #f7f4ff;
    padding: 1rem 1.5rem;
    border-left: 5px solid #6e44ff;
    border-radius: 6px 12px 12px 6px;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.doc-intro {
    font-size: 1.02rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-style: italic;
}

/* Legal Sections & Lists */
.legal-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    color: #1a0b2e;
    margin-bottom: 0.6rem;
    margin-top: 1.2rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 0.98rem;
    color: #4a4a4a;
    line-height: 1.75;
    margin-bottom: 0.6rem;
}

.legal-section ul {
    margin: 0.6rem 0 0.8rem 1.5rem;
    padding: 0;
}

.legal-section li {
    font-size: 0.96rem;
    color: #4a4a4a;
    line-height: 1.65;
    margin-bottom: 0.4rem;
}

.legal-contact-box {
    background: #f9f7ff;
    border: 1px solid rgba(110, 68, 255, 0.2);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-top: 0.8rem;
}

.legal-contact-box p {
    margin-bottom: 0.4rem !important;
    color: #2b114d;
}

.legal-contact-box a {
    color: #6e44ff;
    text-decoration: none;
    font-weight: 600;
}

.legal-contact-box a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 960px) {
    .legal-card {
        padding: 3rem 2rem;
        border-radius: 22px;
    }

    .legal-title {
        font-size: 2.1rem;
    }

    .doc-main-title {
        font-size: 1.35rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 640px) {
    .legal-page-container {
        padding: 6rem 0.8rem;
    }

    .legal-card {
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
    }

    .legal-title {
        font-size: 1.6rem;
    }

    .doc-main-title {
        font-size: 1.15rem;
    }

    .legal-section h3 {
        font-size: 1.05rem;
    }

    .legal-section p, 
    .legal-section li {
        font-size: 0.9rem;
    }
}