/* ===================================================
   bada.style - Coastal Fashion Editorial
   =================================================== */

/* --- Palette --- */
:root {
    --sand: #f5ede0;
    --seafoam: #dde8e6;
    --deep-water: #2c4a5e;
    --blush: #e8b4b4;
    --stone: #a09788;
    --white: #faf8f5;
    --navy: #1a2a3a;
    --gold: #c5a55a;

    --wave-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='6' viewBox='0 0 20 6'%3E%3Cpath d='M0 3 Q5 0 10 3 T20 3' stroke='%23e8b4b4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    --wave-svg-gold: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='6' viewBox='0 0 20 6'%3E%3Cpath d='M0 3 Q5 0 10 3 T20 3' stroke='%23c5a55a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', Georgia, serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--deep-water);
    background-color: var(--sand);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sand texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    mix-blend-mode: multiply;
}

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

/* --- Typography --- */
h1, h2, h3, .hero-title, .nav-logo, .footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    color: var(--navy);
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--deep-water);
    font-weight: 400;
}

.section-body {
    font-family: 'Lora', Georgia, serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--deep-water);
    margin-bottom: 1.25rem;
}

.section-body:last-of-type {
    margin-bottom: 1.5rem;
}

/* Navigation/Labels font */
.nav-links,
.lookbook-label,
.lookbook-caption,
.footer-copy,
.spread-eyebrow,
.lookbook-eyebrow,
.journal-eyebrow,
.about-eyebrow,
.hero-eyebrow,
.hero-meta,
.hero-floating-label,
.photo-caption,
.journal-meta,
.about-signature-text,
.material-list,
.footer-links {
    font-family: 'Josefin Sans', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* --- Wave Underline Motif --- */
.emphasis-link {
    display: inline-block;
    color: var(--navy);
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.2rem 0 8px;
    background-image: var(--wave-svg);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 20px 6px;
    transition: color 0.4s ease, letter-spacing 0.4s ease, background-image 0.4s ease;
    margin-top: 1rem;
}

.emphasis-link:hover {
    color: var(--deep-water);
    letter-spacing: 0.28em;
    background-image: var(--wave-svg-gold);
}

a {
    color: inherit;
}

/* --- Navigation --- */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(250, 248, 245, 0.78);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid rgba(160, 151, 136, 0.18);
    transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}

#main-nav.scrolled {
    background-color: rgba(250, 248, 245, 0.96);
    border-bottom-color: rgba(160, 151, 136, 0.32);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.1rem 3rem;
    transition: padding 0.4s ease;
}

#main-nav.scrolled .nav-inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.nav-logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.45rem;
    color: var(--navy);
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
}

.nav-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--gold);
    display: inline-block;
    margin: 0 0.18rem;
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
}

.nav-links a {
    color: var(--stone);
    text-decoration: none;
    padding-bottom: 6px;
    position: relative;
    transition: color 0.35s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background-image: var(--wave-svg);
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 20px 6px;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    opacity: 1;
    transform: translateY(0);
}

/* --- Hero / Cover Shot --- */
#hero {
    display: grid;
    grid-template-columns: 70% 30%;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--white);
}

.hero-gradient {
    position: relative;
    overflow: hidden;
    background-color: var(--seafoam);
}

.hero-gradient-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(245, 237, 224, 0.45) 100%);
    pointer-events: none;
}

.hero-floating-label {
    position: absolute;
    top: 2.2rem;
    left: 2.2rem;
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    padding: 0.5rem 0.9rem;
    background-color: rgba(26, 42, 58, 0.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 3rem;
    background-color: var(--white);
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1px;
    width: 1px;
    height: 35%;
    background-color: var(--stone);
    opacity: 0.35;
    transform: translateY(-50%);
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.hero-word {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    color: var(--navy);
    display: block;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 1200ms ease, transform 1200ms ease;
}

.hero-word.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-word:nth-child(3) {
    transition-delay: 240ms;
    font-style: italic;
    color: var(--deep-water);
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--gold);
    display: block;
    margin: 0.4rem 0;
    box-shadow: 0 2px 14px rgba(197, 165, 90, 0.5);
}

.hero-divider {
    width: 64px;
    height: 1px;
    background-color: var(--stone);
    margin: 2.2rem 0 1.5rem;
    position: relative;
}

.hero-divider::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gold);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    color: var(--stone);
    line-height: 1.5;
    max-width: 22ch;
}

.hero-tagline em {
    font-style: italic;
    color: var(--deep-water);
}

.hero-meta {
    margin-top: 2.5rem;
    color: var(--stone);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
}

.hero-meta-sep {
    color: var(--gold);
}

/* --- Editorial Spreads --- */
.editorial-spread {
    display: grid;
    max-width: 1400px;
    margin: 0 auto;
    padding: 7rem 3rem;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.spread-image-dominant {
    grid-template-columns: 65% 35%;
}

.spread-text-dominant {
    grid-template-columns: 60% 40%;
}

/* Alternate sections: flip the layout using direction */
.editorial-spread:nth-child(even) {
    direction: rtl;
}

.editorial-spread:nth-child(even) > * {
    direction: ltr;
}

/* --- Photo Mount --- */
.photo-mount {
    background-color: var(--white);
    padding: 32px 32px 56px;
    box-shadow:
        0 1px 2px rgba(26, 42, 58, 0.05),
        0 8px 28px rgba(26, 42, 58, 0.07);
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.6s ease;
    position: relative;
}

.photo-mount:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 2px rgba(26, 42, 58, 0.05),
        0 18px 40px rgba(26, 42, 58, 0.1);
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--seafoam);
}

.photo-placeholder svg {
    width: 100%;
    height: 100%;
    display: block;
}

.photo-caption {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    color: var(--stone);
    text-align: left;
}

/* --- Spread Text --- */
.spread-text {
    padding: 1.5rem 1rem;
    position: relative;
}

.spread-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

/* --- Color Block Accents --- */
.spread-accent {
    position: relative;
    min-height: 360px;
}

.color-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
}

.color-block-seafoam {
    background-color: var(--seafoam);
}

.color-block-blush {
    background-color: var(--blush);
    opacity: 0.55;
}

.color-block::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 1px solid var(--stone);
    opacity: 0.3;
    pointer-events: none;
}

.accent-marker {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif;
    text-align: right;
    line-height: 1;
}

.accent-marker > span:first-child {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--deep-water);
    margin-bottom: 0.4rem;
}

.accent-marker-num {
    font-size: 4.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--navy);
}

.accent-marker-light .accent-marker-num {
    color: var(--white);
}

/* Pull quote */
.pull-quote {
    position: relative;
    padding: 1.5rem 0 1.5rem 2.5rem;
    margin: 2rem 0 0;
    border-left: 1px solid var(--gold);
}

.pull-quote-mark {
    position: absolute;
    top: -0.5rem;
    left: -0.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--blush);
    font-style: italic;
}

.pull-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--deep-water);
}

/* Material list */
.material-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    border-top: 1px solid rgba(160, 151, 136, 0.35);
}

.material-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(160, 151, 136, 0.2);
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.material-name {
    color: var(--navy);
    font-weight: 500;
}

.material-origin {
    color: var(--stone);
    font-weight: 400;
}

/* --- Lookbook Strip --- */
.lookbook-section {
    padding: 7rem 0 6rem;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.lookbook-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--stone), transparent);
    opacity: 0.4;
}

.lookbook-header {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
    padding: 0 2rem;
}

.lookbook-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.lookbook-title {
    text-align: center;
    margin-bottom: 1rem;
}

.lookbook-intro {
    color: var(--stone);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.5;
}

.lookbook-strip {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 40px;
    padding: 0 3rem 2.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--stone) var(--seafoam);
}

.lookbook-strip::-webkit-scrollbar {
    height: 4px;
}

.lookbook-strip::-webkit-scrollbar-track {
    background: var(--seafoam);
}

.lookbook-strip::-webkit-scrollbar-thumb {
    background: var(--stone);
    border-radius: 2px;
}

.lookbook-item {
    flex: 0 0 auto;
    width: 340px;
    scroll-snap-align: center;
    transition: transform 0.6s ease;
}

.lookbook-item .photo-mount {
    padding: 24px 24px 24px;
    margin-bottom: 1rem;
}

.lookbook-visual {
    width: 100%;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.lookbook-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(26, 42, 58, 0.32) 100%);
    pointer-events: none;
}

.look-1 { background: linear-gradient(135deg, #dde8e6 0%, #f5ede0 55%, #e8b4b4 100%); }
.look-2 { background: linear-gradient(135deg, #f5ede0 0%, #c5a55a 100%); }
.look-3 { background: linear-gradient(155deg, #2c4a5e 0%, #a09788 60%, #dde8e6 100%); }
.look-4 { background: linear-gradient(135deg, #e8b4b4 0%, #faf8f5 70%, #f5ede0 100%); }
.look-5 { background: linear-gradient(135deg, #a09788 0%, #f5ede0 100%); }
.look-6 { background: linear-gradient(160deg, #1a2a3a 0%, #2c4a5e 50%, #dde8e6 100%); }

.lookbook-number {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(26, 42, 58, 0.25);
    z-index: 1;
}

.lookbook-label {
    color: var(--white);
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    background-color: rgba(26, 42, 58, 0.55);
    padding: 0.5rem 0.85rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}

.lookbook-caption {
    color: var(--stone);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-align: left;
    padding: 0 0.5rem;
}

.lookbook-controls {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lookbook-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--stone);
    background-color: transparent;
    color: var(--navy);
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
    flex-shrink: 0;
}

.lookbook-btn:hover {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.lookbook-btn-arrow {
    font-size: 1.1rem;
    line-height: 1;
}

.lookbook-progress {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(160, 151, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.lookbook-progress-bar {
    position: absolute;
    top: -1px;
    left: 0;
    height: 3px;
    width: 16%;
    background-color: var(--gold);
    transition: left 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.4s ease;
}

/* --- Journal Section --- */
.journal-section {
    padding: 7rem 3rem;
    background-color: var(--sand);
    position: relative;
}

.journal-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.journal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.journal-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.journal-card {
    background-color: var(--white);
    padding: 2.5rem 2rem 2.5rem;
    position: relative;
    box-shadow: 0 1px 2px rgba(26, 42, 58, 0.04), 0 8px 24px rgba(26, 42, 58, 0.06);
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.6s ease;
    overflow: hidden;
}

.journal-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1px 2px rgba(26, 42, 58, 0.05), 0 16px 36px rgba(26, 42, 58, 0.1);
}

.journal-card:hover::before {
    transform: scaleY(1);
}

.journal-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.4rem;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 1rem;
}

.journal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1rem;
}

.journal-excerpt {
    font-family: 'Lora', serif;
    color: var(--deep-water);
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.journal-meta {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    color: var(--stone);
}

/* --- About Section --- */
.about-section {
    padding: 9rem 3rem;
    background-color: var(--seafoam);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 100%;
    background-color: var(--blush);
    opacity: 0.18;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 4rem;
    left: 6rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0.4;
    z-index: 0;
}

.about-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.about-inner .section-title {
    margin-bottom: 2rem;
}

.about-inner .section-body {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.about-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.about-signature-line {
    flex: 0 0 60px;
    height: 1px;
    background-color: var(--stone);
    opacity: 0.5;
}

.about-signature-text {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--stone);
}

/* --- Footer --- */
#site-footer {
    background-color: var(--navy);
    padding: 5rem 3rem 3rem;
    text-align: center;
    color: var(--stone);
    position: relative;
    overflow: hidden;
}

#site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 700px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.footer-inner {
    max-width: 700px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2rem;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
    margin-bottom: 1rem;
}

.footer-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--gold);
    display: inline-block;
    margin: 0 0.18rem;
    transform: translateY(-3px);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--seafoam);
    margin-bottom: 1.8rem;
    opacity: 0.85;
}

.footer-tagline em {
    color: var(--blush);
}

.footer-divider {
    width: 60px;
    height: 1px;
    background-color: var(--stone);
    margin: 0 auto 1.8rem;
    opacity: 0.5;
    position: relative;
}

.footer-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -2px;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--gold);
    border-radius: 50%;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--seafoam);
    text-decoration: none;
    opacity: 0.65;
    transition: opacity 0.35s ease, color 0.35s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--blush);
}

.footer-copy {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    color: var(--stone);
    opacity: 0.6;
}

/* --- Fade In Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1200ms ease, transform 1200ms ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .journal-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    #hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-gradient {
        min-height: 55vh;
    }

    .hero-content {
        padding: 3.5rem 2rem;
    }

    .hero-content::before {
        display: none;
    }

    .editorial-spread {
        grid-template-columns: 1fr !important;
        padding: 4.5rem 2rem;
        gap: 2.5rem;
    }

    .editorial-spread:nth-child(even) {
        direction: ltr;
    }

    .spread-accent {
        min-height: 240px;
    }

    .color-block {
        width: 100%;
    }

    .nav-inner {
        padding: 0.9rem 1.5rem;
    }

    .nav-links {
        gap: 1.4rem;
    }

    .lookbook-item {
        width: 280px;
    }

    .lookbook-visual {
        height: 360px;
    }

    .lookbook-controls {
        padding: 0 2rem;
    }

    .about-section {
        padding: 6rem 2rem;
    }

    .about-section::after {
        display: none;
    }

    .journal-section {
        padding: 5rem 2rem;
    }

    .journal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journal-card {
        padding: 2rem 1.5rem;
    }

    .accent-marker-num {
        font-size: 3.2rem;
    }

    #site-footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-links {
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        gap: 0.9rem;
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .hero-word {
        font-size: clamp(2.5rem, 14vw, 4.5rem);
    }

    .hero-floating-label {
        top: 1.2rem;
        left: 1.2rem;
        font-size: 0.6rem;
        letter-spacing: 0.24em;
    }

    .lookbook-strip {
        padding: 0 1.5rem 2rem;
        gap: 1.5rem;
    }

    .lookbook-item {
        width: 240px;
    }

    .lookbook-visual {
        height: 320px;
    }

    .photo-mount {
        padding: 20px 20px 44px;
    }

    .photo-caption {
        left: 20px;
        right: 20px;
        bottom: 14px;
    }

    .pull-quote p {
        font-size: 1.15rem;
    }
}
