
:root {
    --teal: #023024;
    --teal-soft: #0E4A36;
    --teal-deep: #001B12;
    --cream: #F7F2E6;
    --cream-warm: #EFE7D2;
    --paper: #FBF8EF;
    --ink: #14201A;
    --ink-soft: #3D4A40;
    --muted: #6D7770;
    --gold: #C99A3F;
    --gold-soft: #E0B05A;
    --harbour: #4A89AA;
    --line: rgba(20, 32, 26, 0.14);
    --shadow: 0 30px 70px -40px rgba(2, 27, 18, 0.4);
    --serif: "EB Garamond", "Noto Serif SC", "Noto Serif TC", "Songti SC", "Songti TC", Georgia, "Times New Roman", serif;
    --sans: "Source Sans 3", "Noto Sans SC", "Noto Sans TC", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html[lang^="zh"] body { letter-spacing: 0; }

a { color: var(--teal); text-decoration: none; transition: color .2s ease, border-color .2s ease; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--teal-deep);
    letter-spacing: -0.01em;
    line-height: 1.18;
    margin: 0 0 .6em;
}
html[lang^="zh"] h1, html[lang^="zh"] h2, html[lang^="zh"] h3, html[lang^="zh"] h4 {
    letter-spacing: 0;
    font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 2.5vw, 2.4rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1.1em; }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2em;
}
html[lang^="zh"] .eyebrow { letter-spacing: 0.18em; text-transform: none; font-weight: 600; }

.divider {
    width: 56px;
    height: 1px;
    background: var(--gold);
    margin: 1.6em 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* === Info banner (sticky under topbar) === */
.info-banner {
    background: var(--cream-warm);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
    position: relative;
    z-index: 25;
}
.info-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}
.info-banner__text { line-height: 1.5; }
.info-banner__text strong { color: var(--teal); font-weight: 600; }
.info-banner__close {
    background: none;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 999px;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
html[lang^="zh"] .info-banner__close { letter-spacing: 0.05em; text-transform: none; }
.info-banner__close:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* === Top bar === */
.topbar {
    background: var(--teal);
    color: var(--cream);
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.brand {
    display: flex;
    align-items: baseline;
    gap: 12px;
    color: var(--cream);
    text-decoration: none;
}
.brand__name {
    font-family: var(--serif);
    font-size: 1.42rem;
    letter-spacing: 0.02em;
    color: var(--cream);
}
.brand__tagline {
    font-family: var(--sans);
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
}
html[lang^="zh"] .brand__tagline { letter-spacing: 0.15em; text-transform: uppercase; }

.nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav a {
    color: var(--cream);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    padding: 6px 2px;
    border-bottom: 1px solid transparent;
}
.nav a:hover { color: #fff; border-bottom-color: var(--gold); }

.lang-switch {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 4px 12px;
    color: var(--cream);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    transition: background .2s ease, border-color .2s ease;
}
.lang-switch:hover { background: rgba(255, 255, 255, 0.07); border-color: var(--gold); color: #fff; }

/* === Hero === */
.hero {
    position: relative;
    min-height: 88vh;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(180deg, rgba(2, 27, 18, 0) 0%, rgba(2, 27, 18, 0.05) 35%, rgba(2, 27, 18, 0.55) 90%, rgba(2, 27, 18, 0.75) 100%),
        url('/assets/img/ferry-skyline.jpg') center 30% / cover no-repeat;
}
.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 28px 80px;
}
.hero__eyebrow {
    font-family: var(--sans);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 28px;
    display: block;
}
html[lang^="zh"] .hero__eyebrow { letter-spacing: 0.15em; text-transform: uppercase; }
.hero__h1 {
    font-family: var(--serif);
    color: #fff;
    font-weight: 500;
    font-size: clamp(2.6rem, 6vw, 5rem);
    max-width: 920px;
    margin: 0 0 28px;
}
html[lang^="zh"] .hero__h1 { font-weight: 500; }
.hero__h1 em {
    font-style: italic;
    color: var(--gold-soft);
}
.hero__lead {
    font-size: 1.12rem;
    line-height: 1.7;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.92);
}

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--sans);
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
html[lang^="zh"] .hero__scroll { letter-spacing: 0.15em; text-transform: uppercase; }
.hero__scroll::after {
    content: "";
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.78);
}

/* === Sections === */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.dark { background: var(--teal-deep); color: var(--cream); }
section.dark h2, section.dark h3, section.dark p { color: var(--cream); }
section.dark .eyebrow { color: var(--gold-soft); }

.section__head { max-width: 720px; margin-bottom: 64px; }
.section__head h2 { margin-top: .2em; }
.section__head p { color: var(--ink-soft); font-size: 1.04rem; }

/* === Intro (two-column) === */
.intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 80px;
    align-items: flex-start;
}
.intro__copy h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.intro__copy p { color: var(--ink-soft); font-size: 1.04rem; }
.intro__number {
    font-family: var(--serif);
    font-size: clamp(6rem, 12vw, 11rem);
    line-height: 0.9;
    color: var(--teal);
    margin: 0 0 .15em;
    letter-spacing: -0.04em;
}
.intro__numbersub {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.82rem;
    color: var(--muted);
}
html[lang^="zh"] .intro__numbersub { letter-spacing: 0.12em; text-transform: none; }

/* === Tiles (3-up cards) === */
.tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}
.tile {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile__img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.tile__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.tile:hover .tile__img img { transform: scale(1.04); }
.tile__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.tile__eyebrow {
    font-family: var(--sans);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
html[lang^="zh"] .tile__eyebrow { letter-spacing: 0.1em; text-transform: none; }
.tile__title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--teal-deep);
    margin: 0 0 .6em;
}
.tile__copy { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.tile__cta {
    margin-top: 20px;
    align-self: flex-start;
    font-family: var(--sans);
    font-size: 0.84rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
}
html[lang^="zh"] .tile__cta { letter-spacing: 0.08em; text-transform: none; }
.tile__cta:hover { color: var(--gold); }

/* === Quote (parallax) === */
.quote {
    position: relative;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0, 27, 18, 0.55), rgba(0, 27, 18, 0.7)),
        url('/assets/img/zoo-overview.jpg') center / cover no-repeat;
    background-attachment: scroll, fixed;
    padding: 140px 0;
}
.quote__inner { max-width: 820px; margin: 0 auto; padding: 0 28px; text-align: center; }
.quote__eyebrow {
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 20px;
}
html[lang^="zh"] .quote__eyebrow { letter-spacing: 0.15em; text-transform: uppercase; }
.quote__text {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.5rem, 2.4vw, 2.05rem);
    line-height: 1.5;
    color: #fff;
    margin-bottom: 24px;
}
.quote__cite {
    font-family: var(--sans);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.78);
}

/* === Split (image + text) === */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center;
}
.split.reverse .split__media { order: 2; }
.split__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
}
.split__copy h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.split__copy p, .split__copy li { color: var(--ink-soft); font-size: 1.02rem; }
.split__copy ul { padding: 0; margin: 16px 0; list-style: none; }
.split__copy ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 16px;
    align-items: baseline;
}
.split__copy ul li::before {
    content: "—";
    color: var(--gold);
    flex-shrink: 0;
}

/* === Stats === */
.stats {
    background: var(--teal-deep);
    color: var(--cream);
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}
.stat__num {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    color: var(--gold-soft);
    margin: 0 0 .15em;
    letter-spacing: -0.02em;
}
.stat__label {
    font-family: var(--sans);
    font-size: 0.86rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
}
html[lang^="zh"] .stat__label { letter-spacing: 0.08em; text-transform: none; font-size: 0.94rem; }

/* === Plan CTA === */
.plan {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.plan h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.plan p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2em; }
.btn {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    padding: 16px 38px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}
html[lang^="zh"] .btn { letter-spacing: 0.1em; text-transform: none; }
.btn:hover { background: var(--gold); color: var(--teal-deep); }

/* === Sub-page hero === */
.subhero {
    position: relative;
    color: #fff;
    isolation: isolate;
    padding: 160px 0 110px;
    background:
        linear-gradient(180deg, rgba(2, 27, 18, 0.4) 0%, rgba(2, 27, 18, 0.7) 100%),
        url('/assets/img/ferry-skyline.jpg') center 40% / cover no-repeat;
    background-attachment: scroll, fixed;
}
.subhero__inner { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.subhero__eyebrow {
    font-family: var(--sans);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 24px;
    display: block;
}
html[lang^="zh"] .subhero__eyebrow { letter-spacing: 0.15em; }
.subhero__h1 {
    font-family: var(--serif);
    color: #fff;
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin: 0 0 22px;
}
.subhero__lede {
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.92);
}

/* === Article === */
.article { padding: 84px 0 110px; }
.article__inner { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.article h2 {
    margin-top: 2em;
    padding-top: 1.2em;
    border-top: 1px solid var(--line);
    color: var(--teal-deep);
}
.article h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.article p, .article li { color: var(--ink); font-size: 1.05rem; }
.article ul { padding: 0; margin: 1em 0 1.6em; list-style: none; }
.article ul li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
}
.article ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 1px;
    background: var(--gold);
}
.article code {
    background: var(--cream-warm);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: "SF Mono", Consolas, Menlo, monospace;
    font-size: 0.92em;
}
.pull {
    border-left: 2px solid var(--gold);
    padding: 14px 0 14px 24px;
    margin: 2em 0;
    font-family: var(--serif);
    font-style: italic;
    color: var(--teal-deep);
    font-size: 1.18rem;
    line-height: 1.55;
}

/* === Footer === */
.footer {
    background: var(--teal-deep);
    color: var(--cream);
    padding: 80px 0 32px;
    border-top: 4px solid var(--gold);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}
.footer__brand h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--cream);
    margin: 0 0 .3em;
}
.footer__brand p { color: rgba(247, 242, 230, 0.7); font-size: 0.96rem; line-height: 1.65; }
.footer__col h4 {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--gold-soft);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 1.4em;
    font-weight: 600;
}
html[lang^="zh"] .footer__col h4 { letter-spacing: 0.08em; text-transform: none; font-size: 0.92rem; }
.footer__col ul { padding: 0; margin: 0; list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a { color: var(--cream); font-size: 0.95rem; opacity: 0.85; }
.footer__col a:hover { opacity: 1; color: var(--gold-soft); }
.footer__col p { color: rgba(247, 242, 230, 0.75); font-size: 0.95rem; line-height: 1.55; }
.footer__col p strong { color: var(--cream); font-weight: 500; }

.footer__cookiebtn {
    background: none;
    border: 1px solid rgba(247, 242, 230, 0.25);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
html[lang^="zh"] .footer__cookiebtn { letter-spacing: 0.06em; text-transform: none; }
.footer__cookiebtn:hover { background: var(--gold); color: var(--teal-deep); border-color: var(--gold); }

.colophon {
    border-top: 1px solid rgba(247, 242, 230, 0.12);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    color: rgba(247, 242, 230, 0.55);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}
.colophon a { color: rgba(247, 242, 230, 0.7); }
.colophon a:hover { color: var(--gold-soft); }

/* === Cookie banner === */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 460px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 30px 60px -20px rgba(2, 27, 18, 0.35);
    padding: 28px 28px 24px;
    z-index: 200;
    display: none;
    font-size: 0.92rem;
    line-height: 1.55;
}
.cookie-banner.visible { display: block; }
.cookie-banner h3 {
    font-family: var(--serif);
    font-size: 1.32rem;
    color: var(--teal-deep);
    margin: 0 0 .6em;
}
.cookie-banner p { color: var(--ink-soft); margin: 0 0 1em; font-size: 0.92rem; }
.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.cookie-btn {
    font-family: var(--sans);
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--teal);
    background: var(--teal);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
html[lang^="zh"] .cookie-btn { letter-spacing: 0.04em; text-transform: none; }
.cookie-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--teal-deep); }
.cookie-btn.cookie-btn--ghost {
    background: transparent;
    color: var(--teal);
}
.cookie-btn.cookie-btn--ghost:hover { background: var(--cream-warm); border-color: var(--teal-soft); color: var(--teal-deep); }
.cookie-btn.cookie-btn--link {
    background: transparent;
    color: var(--ink-soft);
    border-color: transparent;
    padding: 10px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
}
.cookie-btn.cookie-btn--link:hover { color: var(--teal); border-bottom-color: var(--gold); background: transparent; }

.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 12, 8, 0.55);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.cookie-modal.visible { display: flex; }
.cookie-modal__inner {
    background: var(--paper);
    border-radius: 6px;
    max-width: 560px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 36px;
    box-shadow: 0 40px 80px -20px rgba(0, 12, 8, 0.45);
}
.cookie-modal h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--teal-deep);
    margin: 0 0 .4em;
}
.cookie-modal__intro { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.6em; }
.cookie-cat {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: flex-start;
}
.cookie-cat:last-of-type { border-bottom: 1px solid var(--line); }
.cookie-cat h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--teal-deep);
    margin: 0 0 .3em;
}
.cookie-cat p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }
.toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--line);
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s ease;
    flex-shrink: 0;
    margin-top: 4px;
}
.toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.toggle.on { background: var(--teal); }
.toggle.on::after { transform: translateX(20px); }
.toggle.locked { background: var(--gold); cursor: not-allowed; opacity: 0.85; }
.toggle.locked::after { transform: translateX(20px); }
.cookie-modal__actions {
    margin-top: 2em;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* === Responsive === */
@media (max-width: 960px) {
    .nav { display: none; }
    .topbar__inner { padding: 14px 24px; gap: 16px; justify-content: space-between; }
    .hero__inner { padding: 70px 24px 70px; }
    .info-banner__inner { padding: 12px 24px; flex-direction: column; align-items: flex-start; gap: 10px; }
    .info-banner__close { align-self: flex-end; }
    .intro, .split { grid-template-columns: 1fr; gap: 50px; }
    .split.reverse .split__media { order: 0; }
    .tiles { grid-template-columns: 1fr; gap: 28px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    section { padding: 70px 0; }
    .cookie-banner { left: 14px; right: 14px; max-width: none; bottom: 14px; padding: 22px 22px 20px; }
    .quote, .subhero { background-attachment: scroll, scroll; }
}
@media (max-width: 540px) {
    body { font-size: 16px; }
    .brand__tagline { display: none; }
    .stats__grid { grid-template-columns: 1fr; }
}
