@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/cormorant-garamond-latin-300-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/cormorant-garamond-latin-500-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/cormorant-garamond-latin-600-italic.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url('fonts/outfit-latin-200-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/outfit-latin-300-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/outfit-latin-400-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/outfit-latin-500-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/outfit-latin-600-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/outfit-latin-700-normal.woff2') format('woff2');
}

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

:root {
    --black: #050505;
    --black-soft: #0d0d0d;
    --black-card: #141414;
    --line: #1f1f1f;
    --line-soft: #2a2a2a;
    --text: #f0ede8;
    --text-muted: #8a857d;
    --text-dim: #5a554f;
    --gold: #c9a961;
    --gold-bright: #e0c178;
    --gold-soft: #a08948;
    --rose: #c2856a;
    --sage: #87a07a;
    --ivory: #e8e2d5;
    --ember: #b85c3a;
    --crimson: #8b2a2a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--black);
    color: var(--text);
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

/* Default link color (scoped link styles below override this) */
a { color: var(--text); }

body::before {
    content: '';
    position: fixed;
    inset: 0;
    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.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 100;
    mix-blend-mode: overlay;
}

/* === NAVIGATION === */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 1.8rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--line);
    padding: 1.2rem 4rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    z-index: 60;
    position: relative;
}

.logo img {
    display: block;
    height: 44px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 3rem;
    list-style: none;
}

nav ul a {
    color: var(--text);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul a:hover { color: var(--gold); }

.nav-cta {
    font-family: 'Outfit', sans-serif;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text);
    padding: 0.7rem 1.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

@media (max-width: 968px) {
    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled { padding: 1rem 1.5rem; }
    nav ul { display: none; }
}

/* === HERO === */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle,
    rgba(201, 169, 97, 0.18) 0%,
    rgba(184, 92, 58, 0.08) 25%,
    rgba(139, 42, 42, 0.04) 45%,
    transparent 65%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse at 20% 80%, rgba(184, 92, 58, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse at 85% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 45%),
            radial-gradient(ellipse at 50% 50%, transparent 30%, var(--black) 90%);
}

.hero-deco {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.deco-item {
    position: absolute;
    border-radius: 8px;
    opacity: 0.15;
    filter: blur(2px);
}

.deco-1 {
    top: 15%;
    left: 8%;
    width: 90px;
    height: 130px;
    background: linear-gradient(135deg, var(--ember) 0%, transparent 70%);
    transform: rotate(-15deg);
    animation: float1 12s ease-in-out infinite;
}

.deco-2 {
    bottom: 18%;
    right: 10%;
    width: 110px;
    height: 160px;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 70%);
    transform: rotate(20deg);
    animation: float2 14s ease-in-out infinite;
}

.deco-3 {
    top: 25%;
    right: 15%;
    width: 70px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage) 0%, transparent 70%);
    transform: rotate(-8deg);
    animation: float3 10s ease-in-out infinite;
    opacity: 0.1;
}

.deco-4 {
    bottom: 25%;
    left: 12%;
    width: 80px;
    height: 115px;
    background: linear-gradient(135deg, var(--crimson) 0%, transparent 70%);
    transform: rotate(12deg);
    animation: float1 16s ease-in-out infinite reverse;
    opacity: 0.12;
}

@keyframes float1 {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-12deg) translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: rotate(20deg) translateY(0); }
    50% { transform: rotate(23deg) translateY(-25px); }
}

@keyframes float3 {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-15px); }
}

.hero-line-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1100px;
    z-index: 3;
    pointer-events: none;
}

.hero-line-top::before,
.hero-line-top::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
    opacity: 0.4;
}

.hero-line-top::before { top: -200px; }
.hero-line-top::after { bottom: -200px; }

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
    animation: heroIn 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
    font-weight: 400;
    opacity: 0;
    animation: fadeIn 1s 0.3s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

@keyframes fadeIn { to { opacity: 1; } }

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.5rem, 11vw, 9rem);
    line-height: 1;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    color: var(--text);
    position: relative;
}

.hero h1 .line-1,
.hero h1 .line-2 {
    display: block;
    opacity: 0;
    animation: lineIn 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.hero h1 .line-1 { animation-delay: 0.4s; }
.hero h1 .line-2 {
    animation-delay: 0.7s;
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--ember) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 0.15em;
}

@keyframes lineIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--text);
    font-weight: 400;
    margin: 2rem 0 1rem;
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
}

.hero-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s 1.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
}

.btn {
    font-family: 'Outfit', sans-serif;
    padding: 1.2rem 2.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
    border: 1px solid;
    position: relative;
    overflow: hidden;
}

.btn-light {
    background: var(--text);
    color: var(--black);
    border-color: var(--text);
    box-shadow: 0 10px 40px rgba(240, 237, 232, 0.15);
}

.btn-light:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: var(--gold-soft);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 97, 0.08);
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeIn 1s 1.8s forwards;
}

.scroll-hint span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.2em;
}

.scroll-hint .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.6); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

/* === VALUES STRIP === */
.values-strip {
    background: var(--black-soft);
    padding: 3rem 4rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 5;
}

.values-strip-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

@media (max-width: 768px) {
    .values-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .values-strip { padding: 2.5rem 1.5rem; }
}

.value-item {
    text-align: center;
    position: relative;
}

.value-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: var(--line-soft);
}

@media (max-width: 768px) {
    .value-item::after { display: none !important; }
}

.value-symbol {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.value-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 400;
}

.value-meta {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* === SECTIONS === */
section {
    padding: 8rem 4rem;
    position: relative;
}

@media (max-width: 768px) {
    section { padding: 5rem 1.5rem; }
}

.section-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 5rem;
    line-height: 1.8;
}

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

.section-header .section-intro {
    margin-left: auto;
    margin-right: auto;
}

/* === SORTEN === */
.sorten {
    background: var(--black);
    border-top: 1px solid var(--line);
}

.sorten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 4rem;
}

.sorte {
    background: var(--black-soft);
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.5s;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sorte::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--sorte-color, var(--gold));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s ease;
}

.sorte:hover { background: var(--black-card); }
.sorte:hover::before { transform: scaleX(1); }

.sorte-mark {
    width: 50px;
    height: 50px;
    border: 1px solid var(--sorte-color, var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--sorte-color, var(--gold));
    transition: all 0.4s;
}

.sorte:hover .sorte-mark {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--sorte-color);
}

.sorte-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.sorte-flavor {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.sorte-description {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.sorte-tagline {
    font-size: 0.75rem;
    color: var(--sorte-color, var(--gold));
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
}

.sorte.liebestoeter { --sorte-color: #2f9140; }
.sorte.onenight { --sorte-color: #d76b8a; }

/* Liebestöter bag hover reveal */
.sorte.liebestoeter { overflow: hidden; }

.sorte.liebestoeter > div,
.sorte.liebestoeter .sorte-tagline {
    position: relative;
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* On hover the copy lifts away so the bag has the stage to itself */
.sorte.liebestoeter:hover > div,
.sorte.liebestoeter:hover .sorte-tagline {
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
}

.sorte-bag {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    width: 270px;
    height: auto;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, 60px) rotate(6deg);
    transform-origin: bottom center;
    transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.65));
}

.sorte.liebestoeter:hover .sorte-bag {
    opacity: 1;
    transform: translate(-50%, 0) rotate(0);
}
.sorte.sorry { --sorte-color: var(--sage); }
.sorte.drama { --sorte-color: var(--ember); }
.sorte.ghosting { --sorte-color: #6b8caf; }

/* === EDITIONS === */
.editions {
    background: var(--black-soft);
    border-top: 1px solid var(--line);
}

.editions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.edition {
    padding: 2.5rem;
    border: 1px solid var(--line);
    background: var(--black);
    position: relative;
    transition: all 0.4s;
}

.edition:hover {
    border-color: var(--gold-soft);
    transform: translateY(-4px);
}

.edition-status {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--gold-soft);
}

.edition-status.soon { color: var(--text-dim); border-color: var(--line-soft); }

.edition-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.edition-claim {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === ZIELGRUPPEN === */
.audiences {
    background: var(--black);
    border-top: 1px solid var(--line);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.audience {
    padding: 3.5rem 3rem;
    border: 1px solid var(--line);
    background: var(--black-soft);
    position: relative;
    transition: all 0.5s;
}

.audience:hover {
    background: var(--black-card);
    border-color: var(--gold-soft);
    transform: translateY(-4px);
}

.audience-number {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.audience-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.audience-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.audience-features {
    list-style: none;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
}

.audience-features li {
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: var(--text);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.audience-features li::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold);
}

.audience-cta {
    color: var(--text);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s;
}

.audience-cta:hover {
    gap: 1.5rem;
    color: var(--gold);
}

/* === STORY === */
.story {
    background: var(--black-soft);
    border-top: 1px solid var(--line);
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 900px) {
    .story-container { grid-template-columns: 1fr; gap: 3rem; }
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.9;
}

.story-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.story-text p strong {
    color: var(--text);
    font-weight: 400;
}

.story-pullquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--text);
    border-left: 2px solid var(--gold);
    padding: 0.5rem 0 0.5rem 2rem;
    margin: 2rem 0;
}

.story-visual {
    aspect-ratio: 4/5;
    background:
            linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(184, 92, 58, 0.1) 0%, transparent 60%),
            var(--black);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.story-visual::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border: 1px solid var(--gold-soft);
    pointer-events: none;
}

.story-visual-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.story-visual-mark {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 1rem;
}

.story-visual-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

/* === B2B CTA === */
.cta-banner {
    background:
            linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
    padding: 8rem 4rem;
    text-align: center;
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content .section-title {
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* === FOOTER === */
footer {
    background: var(--black);
    padding: 5rem 4rem 2rem;
    border-top: 1px solid var(--line);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo img {
    height: 72px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.8;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* === SCROLL ANIMATIONS === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === SUBPAGES === */
.subpage {
    padding: 10rem 4rem 6rem;
    max-width: 880px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .subpage { padding: 8rem 1.5rem 4rem; }
}

.subpage-header {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--line);
}

.subpage-header .section-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.subpage-header .section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.subpage-header .section-intro {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
    margin-bottom: 0;
}

/* === DOCUMENT === */
.document {
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.doc-section {
    padding: 2.5rem 0;
    border-top: 1px solid var(--line-soft);
}

.doc-section:first-child {
    border-top: none;
    padding-top: 0;
}

.doc-section h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.doc-section p,
.doc-section address {
    margin-bottom: 1rem;
    font-style: normal;
}

.doc-section p:last-child,
.doc-section address:last-child {
    margin-bottom: 0;
}

.doc-section strong {
    color: var(--text);
    font-weight: 400;
}

.doc-section a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-soft);
    transition: color 0.3s, border-color 0.3s;
}

.doc-section a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.doc-placeholder {
    color: var(--ember);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* === FAQ === */
.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-group {
    margin-bottom: 3rem;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line-soft);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.6rem 3rem 1.6rem 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
    position: relative;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--gold); }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 0 1.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 0.8rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-soft);
    transition: color 0.3s, border-color 0.3s;
}

.faq-answer a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* === FORM === */
.form {
    max-width: 580px;
    margin: 0 auto;
}

.form-status {
    padding: 1.2rem 1.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--line-soft);
    font-size: 0.9rem;
    line-height: 1.6;
    display: none;
}

.form-status.is-visible { display: block; }

.form-status--ok {
    border-color: var(--sage);
    color: var(--text);
    background: rgba(135, 160, 122, 0.08);
}

.form-status--error {
    border-color: var(--ember);
    color: var(--text);
    background: rgba(184, 92, 58, 0.08);
}

.form-status em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
}

.form-field {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.7rem;
    font-weight: 400;
}

.form-label .required {
    color: var(--gold);
    margin-left: 0.2rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: var(--black-soft);
    border: 1px solid var(--line-soft);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    padding: 1rem 1.2rem;
    letter-spacing: 0.02em;
    transition: border-color 0.3s, background 0.3s;
}

.form-textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.7;
}

.form-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position: calc(100% - 20px) center, calc(100% - 14px) center;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--black-card);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dim);
}

.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.form-submit {
    font-family: 'Outfit', sans-serif;
    background: var(--text);
    color: var(--black);
    border: 1px solid var(--text);
    padding: 1.2rem 2.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s ease;
}

.form-submit:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.4);
    transform: translateY(-2px);
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}