/* Beer Boom–specific fonts (Helvetica comes from global.css) */
@font-face {
    font-family: 'Rockwell Std';
    src: url('../_globalAssets/fonts/RockwellStd.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Rockwell Std';
    src: url('../_globalAssets/fonts/RockwellStd-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Univers LT Std';
    src: url('../_globalAssets/fonts/UniversLTStd.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* ── Trailer ── */
.trailer video {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Sections list ── */
.sections-list {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Section heading outside card ── */
.section-heading-outer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

/* 128px visual gap before Map and Brewing Process headings
   (flex gap is already 20px, so we add 108px more) */
.section-heading-outer.section-gap {
    margin-top: 108px;
}

/* Override global margin-bottom so gap is controlled by flex gap */
.section-label { margin-bottom: 4px; }
.section-head  { margin-bottom: 0; }

/* Override global section-body (no max-width or color clamp here) */
.section-body {
    font-size: 1.05rem;
    line-height: 1.6;
    color: inherit;
    max-width: 75ch;
}

/* ── White card ── */
.card {
    background: #fff;
    padding: 64px;
}

/* ── Branding: 2-col media on gray ── */
.branding-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.branding-media-grid img,
.branding-media-grid video {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Type specimen cards row (two side-by-side white boxes) ── */
.type-cards-row {
    display: flex;
    gap: 20px;
}

.type-cards-row .card {
    flex: 1;
}

/* Override global .type-label (beer boom uses larger 24px version) */
.type-label {
    font-family: 'Helvetica Neue LT Std', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    color: var(--textColor02, #6B6B6B);
    margin-bottom: 4px;
}

/* Override global .type-meta (slightly different margin) */
.type-meta {
    font-family: 'Helvetica Neue LT Std', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #bbb;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.type-rockwell {
    font-family: 'Rockwell Std', 'Rockwell', serif;
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
}

.type-univers {
    font-family: 'Univers LT Std', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 96px;
    font-weight: 400;
    line-height: 1;
}

/* ── Color palette ── */
.palette-row {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.palette-group {
    flex: 0 0 auto;
}

.palette-secondary {
    border-left: 1px solid #d4d4d4;
    padding-left: 48px;
}

/* Override global palette-group-label (beer boom uses 14px) */
.palette-group-label {
    font-family: 'Helvetica Neue LT Std', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
}

/* ── Media on gray ── */
.media-on-gray {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Split layout ── */
.section-split {
    display: flex;
    gap: 64px;
    align-items: center;
}

.split-media { flex: 1.72; }

.split-media video,
.split-media img {
    width: 100%;
    height: auto;
    display: block;
}

.split-text { flex: 1; }

.execution-head {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
}

/* ── CTA on gray (no white box) ── */
.cta-outer {
    padding: 48px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Beer Boom lightbox (image + video, uses .active not .is-open) ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.active { display: flex; }

.lightbox img,
.lightbox video {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #fff;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    background: none;
    border: none;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-trigger { cursor: zoom-in; }

/* ── Responsive ── */
@media (max-width: 1200px) {
    .type-cards-row { flex-direction: column; }
    .palette-row { flex-direction: column; gap: 32px; }
    .palette-secondary { border-left: none; padding-left: 0; border-top: 1px solid #d4d4d4; padding-top: 32px; }
}

@media (max-width: 768px) {
    .card { padding: 32px 24px; }
    .section-heading-outer.section-gap { margin-top: 64px; }
    .branding-media-grid { grid-template-columns: 1fr; }
    .type-cards-row { flex-direction: column; }
    .section-split { flex-direction: column; gap: 24px; }
    .section-split--media-first { flex-direction: column-reverse; }
    .type-rockwell, .type-univers { font-size: 56px; }
    .swatch-color { width: 64px; height: 64px; }
    .swatch-name { font-size: 0.6rem; }
    .type-label { font-size: 16px; }
    .palette-row { flex-direction: column; gap: 32px; }
    .palette-secondary { border-left: none; padding-left: 0; border-top: 1px solid #d4d4d4; padding-top: 32px; }
}
