/* ============================================================
   magazine-home.css — Front page editorial layout
   ============================================================ */

/* ── Hero ── */
.db-mag-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 0;
}

.db-mag-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: scale(1.04);
    transition: transform 6s ease-out;
}

.db-mag-hero:hover .db-mag-hero__bg {
    transform: scale(1.0);
}

.db-mag-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,5,12,0.92) 0%,
        rgba(5,5,12,0.55) 45%,
        rgba(5,5,12,0.10) 100%
    );
}

.db-mag-hero__inner {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem 2.5rem;
    max-width: 820px;
}

.db-mag-hero__title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0.5rem 0 0.75rem;
    color: #fff;
}

.db-mag-hero__title a {
    color: inherit;
    text-decoration: none;
}

.db-mag-hero__title a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.db-mag-hero__byline {
    color: rgba(255,255,255,0.72);
    font-size: 0.875rem;
    margin: 0;
}

/* ── Breaking bar ── */
.db-breaking-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f59e0b;
    padding: 0.55rem 1.5rem;
    overflow: hidden;
}

.db-breaking-bar__label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
    flex-shrink: 0;
}

.db-breaking-bar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
    overflow: hidden;
}

.db-breaking-bar__list li {
    white-space: nowrap;
    flex-shrink: 0;
}

.db-breaking-bar__list li::before {
    content: '·';
    margin: 0 0.75rem;
    color: rgba(0,0,0,0.4);
}

.db-breaking-bar__list li:first-child::before {
    display: none;
}

.db-breaking-bar__list a {
    color: #000;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

.db-breaking-bar__list a:hover {
    text-decoration: underline;
}

/* ── Section common ── */
.db-section {
    padding: 3rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.db-mag-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.db-mag-section-head h2 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
    position: relative;
}

.db-mag-section-head h2::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 3px;
    background: #f59e0b;
    margin-top: 6px;
}

.db-mag-more-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f59e0b;
    text-decoration: none;
    white-space: nowrap;
}

.db-mag-more-link:hover {
    text-decoration: underline;
}

/* ── Card grid ── */
.db-card-grid {
    display: grid;
    gap: 1.5rem;
}

.db-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .db-card-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .db-card-grid--3 {
        grid-template-columns: 1fr;
    }
}

/* ── Mag card ── */
.db-mag-card {
    display: flex;
    flex-direction: column;
}

.db-mag-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.db-mag-card__img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 6px;
    background: #1a1a2e;
    margin-bottom: 0.75rem;
}

.db-mag-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.db-mag-card__link:hover .db-mag-card__img {
    transform: scale(1.04);
}

.db-mag-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: #12121e;
}

.db-mag-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0.25rem 0 0.35rem;
}

.db-mag-card__link:hover .db-mag-card__title {
    color: #f59e0b;
}

.db-mag-card__meta {
    font-size: 0.775rem;
    color: #888;
    margin: 0 0 0.35rem;
}

.db-mag-card__excerpt {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
    margin: 0;
}

/* ── Category badge ── */
.db-cat-badge {
    display: inline-block;
    padding: 0.2em 0.6em;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background: rgba(245,158,11,0.15);
    color: #f59e0b;
    border-radius: 3px;
    text-decoration: none;
    margin-bottom: 0.4rem;
}

.db-cat-badge--small {
    font-size: 0.65rem;
    padding: 0.15em 0.5em;
}

/* ── Review card ── */
.db-review-card {
    display: flex;
    flex-direction: column;
}

.db-review-card a {
    text-decoration: none;
    color: inherit;
}

.db-review-card__score {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #f59e0b;
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ── Category columns ── */
.db-mag-cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .db-mag-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .db-mag-cats-grid {
        grid-template-columns: 1fr;
    }
}

.db-mag-cat-col__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid;
    margin-bottom: 0.75rem;
}

.db-mag-cat-col__head h3 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.db-mag-cat-col__list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.db-mag-cat-col__list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 0.65rem;
}

.db-mag-cat-col__list a {
    font-weight: 600;
    text-decoration: none;
    line-height: 1.35;
    flex: 1;
}

.db-mag-cat-col__list a:hover {
    color: #f59e0b;
}

.db-mag-cat-col__date {
    font-size: 0.7rem;
    color: #666;
    white-space: nowrap;
    flex-shrink: 0;
}

.db-mag-cat-col__more {
    display: inline-block;
    font-size: 0.775rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: #f59e0b;
}

.db-mag-cat-col__more:hover {
    text-decoration: underline;
}

/* ── Newsletter CTA ── */
.db-mag-newsletter {
    background: linear-gradient(135deg, #0d0d1a 0%, #12122a 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 4rem 1.5rem;
    text-align: center;
}

.db-mag-newsletter__inner {
    max-width: 520px;
    margin: 0 auto;
}

.db-mag-newsletter__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.db-mag-newsletter__sub {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.db-mag-newsletter__form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.db-mag-newsletter__input {
    flex: 1;
    min-width: 220px;
    padding: 0.65rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.9rem;
}

.db-mag-newsletter__input:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
    border-color: transparent;
}

/* ── Mobile hero tweaks ── */
@media (max-width: 600px) {
    .db-mag-hero {
        min-height: 360px;
    }
    .db-mag-hero__inner {
        padding: 1.5rem 1rem 2rem;
    }
    .db-section {
        padding: 2rem 1rem;
    }
    .db-breaking-bar {
        padding: 0.55rem 1rem;
    }
}

/* ── Article hero variant (below brand sections) ── */
.db-lp-article-hero .db-mag-hero__title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

/* ============================================================
   LANDING PAGE SECTIONS
   ============================================================ */

/* ── Shared container + utilities ── */
.db-lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.db-lp-section-label {
    font-family: var(--db-font-heading, 'Syne', sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c47a25;
    margin-bottom: 1rem;
}

.db-lp-section-label--light {
    color: rgba(196,122,37,0.85);
}

.db-lp-grad-text {
    background: linear-gradient(135deg, #c47a25 0%, #d4a853 60%, #f0c87a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.db-lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.db-lp-btn--primary {
    background: linear-gradient(135deg, #c47a25 0%, #d4a853 100%);
    color: #0d0906;
}
.db-lp-btn--primary:hover {
    background: linear-gradient(135deg, #d4a853 0%, #f0c87a 100%);
    color: #0d0906;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196,122,37,0.35);
}

.db-lp-btn--ghost {
    background: transparent;
    color: rgba(240,236,228,0.8);
    border: 1px solid rgba(240,236,228,0.2);
}
.db-lp-btn--ghost:hover {
    border-color: rgba(196,122,37,0.5);
    color: #e8a94d;
}

.db-lp-btn--outline {
    background: transparent;
    color: #c47a25;
    border: 1px solid rgba(196,122,37,0.4);
    padding: 0.6rem 1.25rem;
    font-size: 0.825rem;
}
.db-lp-btn--outline:hover {
    background: rgba(196,122,37,0.1);
    border-color: #c47a25;
    color: #e8a94d;
}

/* ── Section 1: Brand Hero ── */
.db-lp-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse 120% 80% at 50% 0%, #1f1008 0%, #0d0906 55%, #070402 100%);
}

.db-lp-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
    background-size: 256px;
    pointer-events: none;
}

.db-lp-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(196,122,37,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.db-lp-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem clamp(1rem, 5vw, 3rem) 8rem;
    max-width: 860px;
}

.db-lp-eyebrow-pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c47a25;
    background: rgba(196,122,37,0.1);
    border: 1px solid rgba(196,122,37,0.25);
    padding: 0.3em 0.85em;
    border-radius: 100px;
}

.db-lp-eyebrow-sep {
    color: rgba(196,122,37,0.4);
    font-size: 0.75rem;
}

.db-lp-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.db-lp-hero__headline {
    font-family: var(--db-font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 1.5rem;
    color: #f0ece4;
}

.db-lp-hero__headline em {
    background: linear-gradient(135deg, #c47a25 0%, #d4a853 50%, #f0c87a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.db-lp-hero__sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #b8a890;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.db-lp-hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.db-lp-hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.db-lp-stat {
    text-align: center;
}

.db-lp-stat__number {
    display: block;
    font-family: var(--db-font-heading, 'Syne', sans-serif);
    font-size: 1.3rem;
    font-weight: 800;
    color: #e8a94d;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.db-lp-stat__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a6850;
    margin-top: 0.2rem;
}

.db-lp-stat__div {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.1);
}

.db-lp-hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #7a6850;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.db-lp-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(196,122,37,0.5), transparent);
    animation: db-lp-scroll-pulse 2s ease-in-out infinite;
}

@keyframes db-lp-scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── Section 2: Pillars ── */
.db-lp-pillars {
    padding: 5rem 0;
    background: #0d0906;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.db-lp-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 0.5rem;
}

.db-lp-pillar {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    transition: background 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.db-lp-pillar:hover {
    background: rgba(196,122,37,0.04);
    border-color: rgba(196,122,37,0.2);
}

.db-lp-pillar--accent {
    background: rgba(196,122,37,0.05);
    border-color: rgba(196,122,37,0.2);
}

.db-lp-pillar--accent:hover {
    background: rgba(196,122,37,0.09);
    border-color: rgba(196,122,37,0.35);
}

.db-lp-pillar__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(196,122,37,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c47a25;
    margin-bottom: 1.25rem;
}

.db-lp-pillar__title {
    font-family: var(--db-font-heading, 'Syne', sans-serif);
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
    color: #f0ece4;
}

.db-lp-pillar__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b8a890;
    flex: 1;
    margin: 0 0 1.25rem;
}

.db-lp-pillar__link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #c47a25;
    text-decoration: none;
    letter-spacing: 0.03em;
    margin-top: auto;
}

.db-lp-pillar__link:hover {
    color: #e8a94d;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Section 3: The Experiment ── */
.db-lp-experiment {
    padding: 6rem 0;
    background: linear-gradient(160deg, #120a03 0%, #0d0906 60%);
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.db-lp-experiment__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.db-lp-experiment__quote-col {
    position: relative;
}

.db-lp-experiment__quote-mark {
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 0.7;
    color: rgba(196,122,37,0.15);
    margin-bottom: 1rem;
    display: block;
    pointer-events: none;
}

.db-lp-experiment__quote {
    font-family: var(--db-font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-style: italic;
    line-height: 1.45;
    color: #f0ece4;
    margin: 0 0 1rem;
    border: none;
    padding: 0;
}

.db-lp-experiment__cite {
    font-size: 0.78rem;
    color: #7a6850;
    letter-spacing: 0.05em;
    font-style: normal;
}

.db-lp-experiment__body .db-lp-section-label {
    margin-bottom: 0.75rem;
}

.db-lp-experiment__title {
    font-family: var(--db-font-heading, 'Syne', sans-serif);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.db-lp-experiment__body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #b8a890;
    margin: 0 0 1rem;
}

.db-lp-experiment__body .db-lp-btn--outline {
    margin-top: 0.5rem;
}

/* ── Section 4: Our Story (timeline) ── */
.db-lp-story {
    padding: 6rem 0;
    background: #0d0906;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.db-lp-story__title {
    font-family: var(--db-font-heading, 'Syne', sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.db-lp-story__sub {
    font-size: 1rem;
    color: #b8a890;
    max-width: 560px;
    margin: 0 0 3.5rem;
    line-height: 1.65;
}

.db-lp-story__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.db-lp-story__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 2rem;
    padding-bottom: 3rem;
}

.db-lp-story__item--last {
    padding-bottom: 0;
}

.db-lp-story__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.db-lp-story__gen {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(196,122,37,0.1);
    border: 1px solid rgba(196,122,37,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
}

.db-lp-story__gen--amber {
    background: rgba(196,122,37,0.2);
    border-color: rgba(196,122,37,0.5);
}

.db-lp-story__line {
    width: 1px;
    flex: 1;
    margin-top: 0.75rem;
    background: linear-gradient(to bottom, rgba(196,122,37,0.3), rgba(196,122,37,0.05));
    min-height: 2rem;
}

.db-lp-story__content {
    padding-top: 0.6rem;
}

.db-lp-story__era {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c47a25;
    margin-bottom: 0.35rem;
}

.db-lp-story__step-title {
    font-family: var(--db-font-heading, 'Syne', sans-serif);
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.6rem;
    color: #f0ece4;
}

.db-lp-story__step-text {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #b8a890;
    margin: 0 0 0.75rem;
    max-width: 660px;
}

.db-lp-story__step-text em {
    color: #d4a853;
    font-style: italic;
}

/* ── Responsive: pillars & experiment ── */
@media (max-width: 900px) {
    .db-lp-pillars__grid {
        grid-template-columns: 1fr 1fr;
    }
    .db-lp-experiment__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .db-lp-experiment__quote-mark {
        font-size: 5rem;
    }
}

@media (max-width: 640px) {
    .db-lp-pillars__grid {
        grid-template-columns: 1fr;
    }
    .db-lp-hero__stats {
        gap: 1.25rem;
    }
    .db-lp-stat__div {
        display: none;
    }
    .db-lp-hero__headline {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    .db-lp-hero__inner {
        padding: 4rem 1.25rem 6rem;
    }
    .db-lp-pillars,
    .db-lp-experiment,
    .db-lp-story {
        padding: 4rem 0;
    }
    .db-lp-story__item {
        grid-template-columns: 44px 1fr;
        gap: 0 1.25rem;
    }
    .db-lp-story__gen {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}
