/* ═══════════ SCROLLBAR ═══════════ */
html, body {
    overflow-y: auto;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

html {
    scrollbar-width: none;
}

/* ═══════════ KEN BURNS HERO ═══════════ */
@keyframes kenburns {
    0%   { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.flagship-banner__img img {
    animation: kenburns 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: center center;
    will-change: transform;
}

/* ═══════════ FONT OVERRIDE ═══════════ */
@font-face {
    font-family: 'Chor';
    src: url('wp-content/fonts/Chor.woff2') format('woff2'),
         url('wp-content/fonts/Chor.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.header__logo-link,
.flagship-banner__title span {
    font-family: 'Chor', sans-serif !important;
}

/* ═══════════ MISC GLOBAL ═══════════ */
.section-colorway-pastel-turquoise {
    background-color: #2a6b61;
}

/* ── Hero: centred about block ───────────────────── */
.flagship-banner__about {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 680px;
    padding: 0 32px;
    text-align: center;
    z-index: 2;
}

.flagship-banner__about-copy {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 400;                        /* was 300 */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);        /* was 0.6 */
    letter-spacing: 0.01em;
    opacity: 0;
    transform: translateY(16px);
    animation: heroCopyIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.flagship-banner__about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);        /* was 0.7 */
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); /* was 0.2 */
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
    opacity: 0;
    animation: heroCopyIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

.flagship-banner__about-cta:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}
.flagship-banner__about-cta svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.flagship-banner__about-cta:hover svg {
    transform: translate(3px, -3px);
}

@keyframes heroCopyIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .flagship-banner__about {
        bottom: 8%;
        padding: 0 24px;
    }
    .flagship-banner__about-copy {
        font-size: 0.9rem;
    }
}

.flagship-banner__about-copy,
.flagship-banner__about-cta {
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.6);
}

/* ── Blog Minimal ────────────────────────────────── */
.blog-minimal {
    padding: 120px 0 100px;
    background: #ffffff;
}

.blog-minimal__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 6vw;
}

/* Header row */
.blog-minimal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 72px;
}
.blog-minimal__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(15, 13, 10, 0.35);
    font-weight: 400;
}
.blog-minimal__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(15, 13, 10, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-minimal__all:hover { color: #0f0d0a; }
.blog-minimal__all svg {
    width: 12px; height: 12px;
    transition: transform 0.25s ease;
}
.blog-minimal__all:hover svg { transform: translate(3px, -3px); }

/* List */
.blog-minimal__list {
    list-style: none;
}

/* Each row */
.blog-minimal__item {
    /* stagger set by JS */
    opacity: 0;
    transform: translateY(28px);
}

.blog-minimal__link {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 28px 0;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

/* Hover underline sweep */
.blog-minimal__line {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: rgba(15, 13, 10, 0.08);
}
.blog-minimal__line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 13, 10, 0.55);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-minimal__item:hover .blog-minimal__line::after {
    transform: scaleX(1);
}
/* Top border on first item */
.blog-minimal__item:first-child .blog-minimal__link::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: rgba(15, 13, 10, 0.08);
}

/* Index number */
.blog-minimal__index {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: color: rgba(15, 13, 10, 0.15);
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
    user-select: none;
}
.blog-minimal__item:hover .blog-minimal__index {
    color: rgba(15, 13, 10, 0.45);
}

/* Body */
.blog-minimal__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.blog-minimal__tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 13, 10, 0.28);
    transition: color 0.3s ease;
}
.blog-minimal__item:hover .blog-minimal__tag {
    color: rgba(15, 13, 10, 0.6);
}
.blog-minimal__title {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 400;
    color: rgba(15, 13, 10, 0.55);
    line-height: 1.45;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}
.blog-minimal__item:hover .blog-minimal__title {
    color: #0f0d0a;
}

/* Right col */
.blog-minimal__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
.blog-minimal__date,
.blog-minimal__read {
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(15, 13, 10, 0.22);
    white-space: nowrap;
    transition: color 0.3s ease;
}
.blog-minimal__item:hover .blog-minimal__date,
.blog-minimal__item:hover .blog-minimal__read {
    color: rgba(15, 13, 10, 0.45);
}

/* Responsive */
@media (max-width: 640px) {
    .blog-minimal__link {
        grid-template-columns: 36px 1fr;
        grid-template-rows: auto auto;
        gap: 16px;
    }
    .blog-minimal__right {
        grid-column: 2;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        margin-top: -4px;
    }
}
