:root {
    --home-ink: #111315;
    --home-coal: #171a1d;
    --home-surface: #202428;
    --home-line: #d9d8d2;
    --home-paper: #f3f2ed;
    --home-white: #fbfaf7;
    --home-muted: #777a7c;
    --home-yellow: #e4b62d;
    --home-yellow-soft: #f0ce65;
}

body.home,
body.blog {
    background: var(--home-paper);
    color: var(--home-ink);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.home a,
body.blog a { color: inherit; text-decoration: none; }
body.home a:hover,
body.blog a:hover { text-decoration: none; }
body.home img,
body.blog img { display: block; width: 100%; max-width: 100%; object-fit: cover; }

body.home .container,
body.blog .container {
    width: min(1240px, calc(100% - 48px));
    max-width: none;
    margin-inline: auto;
    padding-right: 0;
    padding-left: 0;
    overflow: visible;
}

.edition-bar {
    background: var(--home-yellow);
    color: var(--home-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.edition-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 31px;
}

.edition-date { opacity: .65; }

#site-header.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0;
    background: rgba(17, 19, 21, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    color: var(--home-white);
    backdrop-filter: blur(14px);
    box-shadow: none;
}

#site-header.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    min-height: 0;
    padding: 0;
    gap: 0;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    width: max-content;
}

.brand-word {
    color: var(--home-white);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1;
}

.brand-progress {
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 8px;
    background: rgba(255, 255, 255, .16);
}

.brand-progress i {
    display: block;
    width: 37%;
    height: 100%;
    background: var(--home-yellow);
}

#site-header.site-header .main-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    width: auto;
    margin-right: 44px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

#site-header.site-header .main-nav a {
    position: relative;
    padding: 0;
    color: #c8c9c7;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease;
}

#site-header.site-header .main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    background: var(--home-yellow);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

#site-header.site-header .main-nav a:hover,
#site-header.site-header .main-nav a:focus-visible { color: var(--home-yellow-soft); }
#site-header.site-header .main-nav a:hover::after,
#site-header.site-header .main-nav a:focus-visible::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 22px; }

.search-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #c8c9c7;
    box-shadow: none;
    font-size: 12px;
    cursor: pointer;
}

.search-button:hover,
#site-header.site-header .menu-button:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
}

.search-circle {
    position: relative;
    width: 15px;
    height: 15px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
}

.search-circle::after {
    position: absolute;
    right: -4px;
    bottom: -2px;
    width: 6px;
    height: 1.5px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
}

#site-header.site-header .menu-button {
    display: none;
    padding: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}

#site-header.site-header .menu-button span {
    display: block;
    width: 23px;
    height: 1px;
    margin: 6px 0;
    background: #fff;
    transition: transform .2s ease;
}

#site-header.site-header .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
#site-header.site-header .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.header-search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 20px 0;
    background: var(--home-ink);
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.header-search-panel[hidden] { display: none; }
.header-search-panel .search-form { display: grid; grid-template-columns: 1fr auto; gap: 14px; }
.header-search-panel .search-field {
    width: 100%;
    padding: 13px 2px;
    border: 0;
    border-bottom: 1px solid #515457;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--home-white);
    font-size: 16px;
}
.header-search-panel .search-field:focus { border-color: var(--home-yellow); box-shadow: none; transform: none; }
.header-search-panel .search-field::placeholder { color: #747779; }
.header-search-panel .search-form button {
    padding: 0 20px;
    border: 1px solid #42474a;
    border-radius: 0;
    background: transparent;
    color: #d6d7d5;
    box-shadow: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}
.header-search-panel .search-form button:hover {
    border-color: var(--home-yellow);
    background: transparent;
    color: var(--home-yellow-soft);
    box-shadow: none;
    transform: none;
}

.home-editorial { background: var(--home-paper); }
.home-editorial section[id],
.editorial-footer[id] { scroll-margin-top: 84px; }
.home-editorial h1,
.home-editorial h2,
.home-editorial h3,
.home-editorial h4,
.home-editorial h5,
.home-editorial h6 { color: inherit; }

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(310px, .8fr);
    gap: 42px;
    min-height: 610px;
    padding-top: 34px !important;
    padding-bottom: 34px !important;
}

.hero-feature {
    position: relative;
    min-height: 542px;
    overflow: hidden;
    background: var(--home-coal);
}

.hero-media { position: absolute; inset: 0; }
.hero-feature img {
    position: absolute;
    inset: 0;
    height: 100%;
    filter: saturate(.78) contrast(1.05);
    transition: transform .7s ease;
}
.hero-feature:hover img { transform: scale(1.02); }
.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10,11,12,.18) 32%, rgba(10,11,12,.94) 97%), linear-gradient(90deg, rgba(10,11,12,.35), transparent 62%);
    pointer-events: none;
}

.hero-copy {
    position: absolute;
    right: 44px;
    bottom: 42px;
    left: 44px;
    z-index: 1;
    max-width: 720px;
    color: var(--home-white);
}

.eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #6f7274;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow.yellow { color: var(--home-yellow-soft); }
.hero-copy h1 {
    max-width: 690px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.2vw, 60px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
}
.hero-copy p { max-width: 600px; margin: 22px 0; color: #c7c8c6; font-size: 14px; line-height: 1.65; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.text-link.light { color: var(--home-white); }
.text-link:hover { color: #9a780f; }

.hero-side { display: flex; flex-direction: column; padding-top: 2px; }
.section-kicker { margin: 0 0 19px; color: #76787a; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.side-story { position: relative; display: flex; justify-content: space-between; padding: 25px 0 27px; border-top: 1px solid var(--home-line); }
.side-story:last-child { border-bottom: 1px solid var(--home-line); }
.side-story-copy { padding-right: 30px; }
.side-story h2 { margin: 0 0 23px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 400; line-height: 1.16; }
.side-story h2 a:hover { color: #8a6b10; }
.side-story .eyebrow { margin-bottom: 10px; color: #8a6b10; }
.meta { color: #8a8b89; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.story-number { color: #bebdb7; font-family: Georgia, serif; font-size: 12px; }

.latest-strip { border-top: 1px solid var(--home-line); border-bottom: 1px solid var(--home-line); }
.latest-inner { display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 26px; min-height: 62px; font-size: 12px; }
.latest-inner p { overflow: hidden; margin: 0; color: #46494a; text-overflow: ellipsis; white-space: nowrap; }
.latest-inner strong { margin-right: 16px; color: #90918e; font-size: 10px; }
.latest-label { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.latest-label i { display: inline-block; width: 6px; height: 6px; margin-right: 10px; border-radius: 50%; background: var(--home-yellow); box-shadow: 0 0 0 4px rgba(228,182,45,.16); }
.latest-inner a { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.home-editorial .section { padding-top: 112px; padding-bottom: 122px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; padding-bottom: 31px; border-bottom: 1px solid #c9c8c3; }
.section-heading > div { display: flex; align-items: flex-end; gap: 20px; }
.section-index { padding-bottom: 8px; color: #a5a49e; font-family: Georgia, serif; font-size: 12px; }
.section-index.dark { color: #777b7d; }
.section-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 5vw, 58px); font-weight: 400; letter-spacing: -.035em; line-height: .9; }

.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; padding-top: 35px; }
.news-card { min-width: 0; }
.card-image { position: relative; display: block; aspect-ratio: 1.45; overflow: hidden; background: #d7d7d4; }
.card-image img { height: 100%; filter: saturate(.72); transition: transform .5s ease, filter .4s ease; }
.news-card:hover .card-image img { filter: saturate(.9); transform: scale(1.025); }
.card-arrow { position: absolute; right: 0; bottom: 0; display: grid; place-items: center; width: 44px; height: 44px; background: var(--home-yellow); font-size: 18px; }
.card-body { padding-top: 20px; }
.card-meta { display: flex; justify-content: space-between; gap: 15px; color: #858682; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.card-meta span { color: #8b6a0d; font-weight: 800; }
.card-body h3 { margin: 15px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 400; line-height: 1.12; }
.card-body h3 a:hover { color: #8a6b10; }
.card-body p { margin: 0; color: #6d7071; font-size: 12px; line-height: 1.65; }

.builds-section { position: relative; overflow: hidden; padding: 106px 0 94px; background: var(--home-ink); color: var(--home-white); }
.builds-section::before { position: absolute; top: -62px; left: -22px; color: rgba(255,255,255,.024); content: "BUILD"; font-size: 250px; font-weight: 900; letter-spacing: -.08em; pointer-events: none; }
.builds-glow { position: absolute; top: -180px; right: -180px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(228,182,45,.10), transparent 66%); }
.builds-heading { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; align-items: end; gap: 80px; margin-bottom: 42px; }
.builds-heading > div { position: relative; padding-left: 58px; }
.builds-heading .section-index { position: absolute; top: 8px; left: 0; }
.light-kicker { margin-bottom: 14px; color: var(--home-yellow); }
.builds-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 6vw, 72px); font-weight: 400; letter-spacing: -.045em; line-height: .88; }
.builds-intro { max-width: 420px; margin: 0 0 5px; padding-left: 30px; border-left: 1px solid rgba(255,255,255,.2); color: #9da0a1; font-size: 13px; line-height: 1.75; }
.builds-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr; gap: 15px; }
.build-card { position: relative; min-height: 390px; overflow: hidden; background: var(--home-surface); }
.build-card > img { position: absolute; inset: 0; height: 100%; filter: saturate(.45) brightness(.63); transition: transform .6s ease, filter .4s ease; }
.build-card:hover > img { filter: saturate(.65) brightness(.69); transform: scale(1.025); }
.build-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(10,11,12,.02) 25%, rgba(10,11,12,.94)); }
.build-tag { position: absolute; top: 18px; left: 18px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.13); background: rgba(17,19,21,.78); color: #d6d7d5; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.build-copy { position: absolute; right: 25px; bottom: 25px; left: 25px; }
.build-copy > span { color: var(--home-yellow-soft); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.build-copy h3 { margin: 8px 0; font-family: Georgia, "Times New Roman", serif; font-size: 32px; font-weight: 400; line-height: 1; }
.build-card.featured .build-copy h3 { font-size: 42px; }
.build-copy p { margin: 0; color: #a4a6a6; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.play-button { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; background: var(--home-yellow); }
.play-button i, .large-play i { display: block; width: 0; height: 0; margin-left: 2px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid var(--home-ink); }
.builds-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 31px; color: #777a7b; font-family: Georgia, serif; font-size: 13px; font-style: italic; }
.outline-button { display: inline-flex; align-items: center; gap: 16px; padding: 13px 17px; border: 1px solid #42474a; color: #d6d7d5; font-family: Arial, sans-serif; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: border-color .2s ease, color .2s ease; }
.outline-button:hover { border-color: var(--home-yellow); color: var(--home-yellow-soft); }

.home-editorial .more-news-section { padding-bottom: 95px; }
.more-news-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 38px; }
.compact-news { display: grid; grid-template-columns: 180px 1fr; gap: 23px; padding: 30px 0; border-bottom: 1px solid #c9c8c3; }
.compact-image { display: block; aspect-ratio: 1.35; overflow: hidden; background: #d7d7d4; }
.compact-image img { height: 100%; filter: saturate(.68); transition: transform .45s ease, filter .3s ease; }
.compact-news:hover .compact-image img { filter: saturate(.88); transform: scale(1.025); }
.compact-copy { position: relative; padding-right: 28px; }
.compact-copy h3 { margin: 14px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 400; line-height: 1.15; }
.compact-copy h3 a:hover { color: #8a6b10; }
.compact-link { position: absolute; right: 0; bottom: 0; color: #9a780f; font-size: 17px; }

.video-section { padding-bottom: 115px; }
.video-frame { position: relative; min-height: 520px; overflow: hidden; background: var(--home-coal); color: var(--home-white); }
.video-frame > img { position: absolute; inset: 0; height: 100%; filter: saturate(.5) brightness(.68); }
.video-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,11,12,.9), rgba(10,11,12,.12) 70%), linear-gradient(transparent 35%, rgba(10,11,12,.56)); }
.video-copy { position: absolute; bottom: 50px; left: 54px; width: min(620px, calc(100% - 150px)); }
.video-copy h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(36px, 5vw, 58px); font-weight: 400; letter-spacing: -.035em; line-height: .96; }
.video-copy p { max-width: 460px; margin: 21px 0 0; color: #b5b6b5; font-size: 12px; line-height: 1.65; }
.large-play { position: absolute; top: 50%; right: 60px; display: grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: var(--home-yellow); box-shadow: 0 0 0 13px rgba(228,182,45,.12); transform: translateY(-50%); }
.large-play i { border-top-width: 7px; border-bottom-width: 7px; border-left-width: 11px; }

.image-fallback { display: grid; place-items: center; width: 100%; height: 100%; min-height: inherit; background: linear-gradient(135deg, #d4d2ca, #aaa9a4); color: rgba(17,19,21,.25); font-size: clamp(12px, 1.5vw, 20px); font-weight: 900; letter-spacing: .16em; }
.image-fallback.dark { position: absolute; inset: 0; background: linear-gradient(135deg, #2c3034, #171a1d); color: rgba(255,255,255,.16); }

.editorial-footer { margin: 0; padding: 0; border: 0; background: var(--home-ink); color: var(--home-white); text-align: left; box-shadow: none; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; padding-top: 74px !important; padding-bottom: 75px !important; }
.footer-brand p { max-width: 370px; margin: 28px 0 0; color: #828586; font-family: Georgia, serif; font-size: 17px; line-height: 1.55; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-links div { display: flex; flex-direction: column; gap: 12px; }
.footer-links span { margin-bottom: 8px; color: var(--home-yellow); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { color: #b3b5b4; font-size: 12px; }
.footer-links a:hover { color: var(--home-white); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 18px !important; padding-bottom: 22px !important; border-top: 1px solid rgba(255,255,255,.09); color: #606465; font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

@media (max-width: 900px) {
    #site-header.site-header .main-nav {
        position: absolute;
        top: 84px;
        right: 0;
        left: 0;
        display: none !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        margin: 0;
        padding: 20px 24px 28px;
        border-top: 1px solid rgba(255,255,255,.08);
        background: var(--home-ink);
    }
    #site-header.site-header .main-nav.is-open,
    #site-header.site-header .main-nav.active { display: flex !important; }
    #site-header.site-header .menu-button { display: block; }
    .search-label { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-side { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .hero-side > .section-kicker { grid-column: 1 / -1; margin-bottom: 0; }
    .side-story { border-bottom: 1px solid var(--home-line); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .news-card:last-child { display: none; }
    .builds-grid { grid-template-columns: 1.35fr 1fr; }
    .build-card:last-child { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    body.home .container,
    body.blog .container {
        width: min(1240px, calc(100% - 48px)) !important;
        max-width: none !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        overflow: visible !important;
    }
}

@media (max-width: 640px) {
    body.home .container,
    body.blog .container { width: min(calc(100% - 30px), 1240px) !important; }
    .edition-date { display: none; }
    #site-header.site-header .header-inner { height: 70px; }
    .brand-word { font-size: 13px; }
    #site-header.site-header .main-nav { top: 70px; }
    .header-search-panel .search-form { grid-template-columns: 1fr; }
    .header-search-panel .search-form button { min-height: 42px; }
    .hero { gap: 26px; padding-top: 15px !important; }
    .hero-feature { min-height: 485px; }
    .hero-copy { right: 23px; bottom: 25px; left: 23px; }
    .hero-copy h1 { font-size: 39px; }
    .hero-copy p { font-size: 12px; }
    .hero-side { grid-template-columns: 1fr; gap: 0; }
    .side-story { padding: 21px 0; }
    .side-story h2 { margin-bottom: 14px; font-size: 20px; }
    .latest-inner { grid-template-columns: 83px 1fr; gap: 12px; }
    .latest-inner > a { display: none; }
    .home-editorial .section { padding-top: 76px; padding-bottom: 82px; }
    .section-heading { align-items: flex-start; }
    .section-heading > div { gap: 12px; }
    .section-heading h2 { font-size: 40px; }
    .section-heading .text-link { display: none; }
    .news-grid { grid-template-columns: 1fr; gap: 45px; }
    .news-card:last-child { display: block; }
    .card-body h3 { font-size: 25px; }
    .builds-section { padding: 78px 0 70px; }
    .builds-heading { grid-template-columns: 1fr; gap: 25px; }
    .builds-heading > div { padding-left: 0; }
    .builds-heading .section-index { display: none; }
    .builds-heading h2 { font-size: 49px; }
    .builds-intro { padding-left: 20px; }
    .builds-grid { grid-template-columns: 1fr; }
    .build-card { min-height: 390px; }
    .build-card:last-child { display: block; }
    .build-card.featured .build-copy h3 { font-size: 35px; }
    .builds-footer { flex-direction: column; align-items: flex-start; gap: 22px; }
    .more-news-grid { grid-template-columns: 1fr; }
    .compact-news { grid-template-columns: 115px 1fr; gap: 17px; padding: 22px 0; }
    .compact-copy h3 { margin-top: 10px; font-size: 18px; }
    .video-frame { min-height: 520px; }
    .video-copy { bottom: 28px; left: 24px; width: calc(100% - 48px); }
    .video-copy h2 { font-size: 37px; }
    .large-play { top: 35px; right: 24px; width: 58px; height: 58px; transform: none; }
    .footer-top { grid-template-columns: 1fr; gap: 55px; }
    .footer-bottom { gap: 20px; line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
