/* goomimi.com - Minimalist Reverie in Gold */

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

:root {
    --ink: #0D0C0A;
    --gold: #C9A84C;
    --light-gold: #E8D5A3;
    --cream: #F5EDD6;
    --umber: #3A2F1E;
    --rose: #C4A18A;
    --shimmer: #DBBE6F;
}

body {
    font-family: 'Cormorant Infant', serif;
    background: var(--ink);
    color: var(--light-gold);
    overflow-x: hidden;
    line-height: 1.75;
    background-image: radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.04) 0%, transparent 60%);
}

/* Golden Thread */
.golden-thread {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Nav */
.nav-word {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 100;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold);
    cursor: pointer;
}

/* Icon Clusters */
.icon-cluster {
    position: fixed;
    z-index: 5;
    pointer-events: none;
    display: flex;
    gap: 12px;
    color: var(--gold);
}

.cluster-1 {
    top: 20%;
    right: 8%;
    animation: clusterDrift1 75s ease-in-out infinite;
}

.cluster-2 {
    top: 55%;
    left: 5%;
    animation: clusterDrift2 90s ease-in-out infinite;
}

.line-icon {
    width: 32px;
    height: 32px;
    opacity: 0.3;
}

@keyframes clusterDrift1 {
    0%, 100% { transform: translate(0,0); }
    25% { transform: translate(8px, -5px); }
    50% { transform: translate(-3px, 7px); }
    75% { transform: translate(5px, 3px); }
}

@keyframes clusterDrift2 {
    0%, 100% { transform: translate(0,0); }
    25% { transform: translate(-6px, 4px); }
    50% { transform: translate(5px, -8px); }
    75% { transform: translate(-4px, -3px); }
}

/* Sections */
.section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 48px;
}

.hero-section {
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background-image: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.05) 0%, transparent 50%);
}

.content-left {
    justify-content: flex-start;
    padding-left: 15%;
}

.content-right {
    justify-content: flex-end;
    padding-right: 15%;
}

.closing-section {
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    background-image: radial-gradient(ellipse at 50% 60%, rgba(196,161,138,0.06) 0%, transparent 50%);
}

/* Float In Animation */
.float-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1200ms cubic-bezier(0.23, 1, 0.32, 1), transform 1200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.float-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero */
.hero-content {
    position: relative;
}

.pinyon-accent {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(4rem, 10vw, 12rem);
    color: var(--gold);
    display: block;
    line-height: 1;
    opacity: 0.3;
}

.large-pinyon {
    font-size: clamp(6rem, 14vw, 16rem);
    opacity: 0.2;
}

.hero-title {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 9rem);
    color: var(--gold);
    line-height: 1.1;
}

.hero-sub {
    font-family: 'Cormorant Infant', serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    color: var(--light-gold);
    margin-top: 16px;
    letter-spacing: 0.02em;
}

/* Content Islands */
.content-island {
    max-width: 480px;
}

.section-title {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 4rem);
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 20px;
}

.body-text {
    font-family: 'Cormorant Infant', serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.75;
    letter-spacing: 0.02em;
    color: var(--light-gold);
    margin-bottom: 16px;
}

/* Pinyon Floats */
.pinyon-float {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(8rem, 15vw, 14rem);
    color: var(--gold);
    opacity: 0.08;
    text-align: center;
    line-height: 1;
    padding: 40px 0;
    position: relative;
    z-index: 5;
}

/* Closing */
.closing-island {
    max-width: 540px;
}

.closing-text {
    font-family: 'Cormorant Infant', serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.closing-mark {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 60px 24px;
    }

    .content-left,
    .content-right {
        justify-content: center;
        padding-left: 24px;
        padding-right: 24px;
    }

    .icon-cluster { display: none; }

    .pinyon-float { padding: 20px 0; }
}
