:root {
    --color-bg: #111111;
    --color-text: #f0f0f0;
    --color-muted: #888888;
    --color-accent: #ffffff;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

body {
    margin: 0;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

a:hover ~ .cursor-dot {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    border: 1px solid #fff;
}

/* Masthead */
.masthead {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 2rem 4rem;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.masthead-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-muted);
    display: flex;
    gap: 2rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
}

.nav-minimal {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.nav-minimal a {
    color: var(--color-text);
    text-decoration: none;
}

/* Hero Editorial */
.hero-editorial {
    display: grid;
    grid-template-columns: 4fr 5fr;
    min-height: 80vh;
}

.hero-text-col {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-col h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 0.9;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
}

.intro-p {
    font-size: 1.5rem;
    max-width: 400px;
    color: var(--color-muted);
    margin-bottom: 4rem;
}

.cta-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 0.5rem;
    align-self: flex-start;
}

.hero-image-col {
    position: relative;
    padding: 2rem 4rem 2rem 0;
}

.full-bleed-img {
    margin: 0;
    height: 100%;
    position: relative;
}

.full-bleed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.1);
}

.full-bleed-img figcaption {
    position: absolute;
    bottom: -2rem;
    right: 0;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-muted);
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    padding: 12rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-muted);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.story-text h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 0 0 2rem 0;
}

.story-text p {
    color: var(--color-muted);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.stat-num {
    display: block;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-muted);
}

/* Video Teaser */
.video-teaser {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.video-teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(50%);
    transition: transform 10s ease;
}

.video-teaser:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    text-align: center;
}

.video-overlay h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 300;
    margin: 0;
}

.video-overlay p {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 3rem;
}

.play-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.3s, color 0.3s;
}

.play-btn:hover {
    background: #fff;
    color: #000;
}

/* Shop Editorial Styles */
.shop-editorial {
    padding: 6rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.shop-title-area {
    margin-bottom: 8rem;
}

.shop-title-area h1 {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 300;
    line-height: 0.9;
    margin: 0 0 2rem 0;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 6rem;
    align-items: start;
}

.product-img-container {
    background-color: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.product-img-container img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen; /* Strips white bg from product shots if needed */
    filter: grayscale(100%) contrast(1.2);
    transition: transform 0.5s ease;
}

.product-img-container:hover img {
    transform: scale(1.05);
}

.product-meta h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0 0 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.tech-specs {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.product-secondary-group {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.mt-xl {
    margin-top: 4rem;
}

/* Mission Editorial Styles */
.mission-editorial {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-title-area {
    margin-bottom: 8rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4rem;
}

.mission-title-area h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 0.9;
    margin: 1rem 0 2rem 0;
}

.editorial-log-grid {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.log-entry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.log-entry.alt-layout {
    grid-template-columns: 4fr 6fr;
}

.log-image {
    margin: 0;
    position: relative;
}

.log-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(80%) contrast(1.1);
}

.log-image figcaption {
    position: absolute;
    bottom: -2.5rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-muted);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 0.5rem;
}

.log-text h2 {
    font-size: 3rem;
    font-weight: 300;
    margin: 0 0 2rem 0;
    line-height: 1.1;
}

.impact-cta {
    margin-top: 10rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 6rem;
}

/* Diaries Editorial Styles */
.diaries-editorial {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.diary-list {
    display: flex;
    flex-direction: column;
    gap: 10rem;
}

.diary-entry {
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 6rem;
    align-items: center;
}

.diary-entry.alt-layout {
    grid-template-columns: 5fr 6fr;
    direction: rtl;
}

.diary-entry.alt-layout > * {
    direction: ltr;
}

.diary-image {
    margin: 0;
    position: relative;
}

.diary-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.diary-entry:hover .diary-image img {
    filter: grayscale(0%) contrast(1.0);
}

.diary-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-muted);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.diary-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

.diary-text p {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .hero-editorial, .story-grid, .masthead, .editorial-grid {
        grid-template-columns: 1fr;
    }
    .masthead-meta { display: none; }
    .hero-text-col, .hero-image-col { padding: 2rem; }
    .story-grid { gap: 4rem; padding: 4rem 2rem; }
}
