:root {
    --bg: #040302;
    --bg-soft: #0b0705;
    --panel: rgba(14, 9, 6, 0.84);
    --panel-strong: rgba(10, 7, 5, 0.94);
    --panel-soft: rgba(255, 220, 145, 0.045);
    --line: rgba(244, 197, 89, 0.18);
    --line-strong: rgba(244, 197, 89, 0.35);
    --text: #fff2da;
    --muted: #dabf8f;
    --gold: #efb64b;
    --gold-soft: #ffd97c;
    --gold-dark: #9a6216;
    --shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
    --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.28);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --max-width: 1220px;
    --nav-height: 92px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 4%, rgba(240, 182, 75, 0.18), transparent 22%),
        radial-gradient(circle at 92% 12%, rgba(240, 182, 75, 0.08), transparent 18%),
        radial-gradient(circle at 50% 105%, rgba(173, 90, 23, 0.14), transparent 30%),
        linear-gradient(180deg, #080503 0%, #050303 42%, #090503 100%);
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.014) 0,
            rgba(255, 255, 255, 0.014) 1px,
            transparent 1px,
            transparent 5px
        );
    opacity: 0.58;
    mix-blend-mode: soft-light;
    animation: driftNoise 28s linear infinite;
}

body::after {
    background:
        radial-gradient(circle at 50% 15%, transparent 0, transparent 48%, rgba(0, 0, 0, 0.3) 100%);
}

.page-shell {
    position: fixed;
    inset: 12px;
    border-radius: 36px;
    border: 1px solid rgba(244, 197, 89, 0.08);
    pointer-events: none;
    z-index: 0;
}

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

button,
a {
    color: inherit;
    font: inherit;
}

a {
    text-decoration: none;
}

.container {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

h1,
h2,
h3,
.brand strong,
.footer-grid strong,
.hero-stats strong,
.scene-chip strong,
.step-number,
.step-card h3,
.rule-card h3 {
    font-family: "Cinzel", serif;
}

h1,
h2,
h3,
p,
ul,
figure {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.95rem, 5vw, 5.6rem);
    line-height: 0.97;
    margin: 18px 0 18px;
    text-wrap: balance;
    max-width: 13ch;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.08;
    margin-bottom: 16px;
    text-wrap: balance;
}

h3 {
    font-size: 1.28rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

p,
li,
span,
small {
    line-height: 1.7;
}

p {
    color: var(--muted);
    font-size: 1.04rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    padding-top: 16px;
}

.nav-bar {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 22px;
    border-radius: 26px;
    background: rgba(6, 4, 3, 0.76);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo-shell {
    width: 66px;
    height: 66px;
    flex: none;
    padding: 6px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(10, 7, 4, 0.98)),
        linear-gradient(135deg, rgba(255, 230, 162, 0.16), rgba(255, 194, 73, 0.06));
    border: 1px solid rgba(244, 198, 92, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 24px rgba(0, 0, 0, 0.34);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1.08rem;
    letter-spacing: 0.04em;
}

.brand small {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--muted);
    border: 1px solid transparent;
    transition:
        transform 180ms ease,
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
    background: rgba(255, 223, 144, 0.05);
    border-color: rgba(244, 198, 92, 0.18);
    transform: translateY(-1px);
}

.site-nav .nav-cta {
    color: #1d1105;
    font-weight: 800;
    background: linear-gradient(135deg, #ffe08c, #e0a131 52%, #9b610f);
    border-color: rgba(255, 236, 176, 0.2);
    box-shadow: 0 10px 24px rgba(214, 151, 45, 0.22);
}

.site-nav .nav-cta:hover {
    color: #140b03;
    background: linear-gradient(135deg, #ffe8a4, #e9ad39 52%, #a96a12);
}

.menu-toggle {
    width: 48px;
    height: 48px;
    display: none;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    border-radius: 999px;
    background: var(--text);
}

.eyebrow,
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(244, 198, 92, 0.18);
    background: rgba(255, 223, 144, 0.05);
    color: var(--gold-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.card-kicker {
    padding: 0;
    background: transparent;
    border: 0;
}

.glass-card,
.hero-stats article,
.scene-chip,
.bullet-item,
.feature-panel,
.step-card,
.cta-box,
.rule-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
        var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero {
    position: relative;
    min-height: min(1060px, 100vh);
    display: grid;
    align-items: center;
    padding: clamp(84px, 10vw, 122px) 0 54px;
    overflow: hidden;
    isolation: isolate;
}

.hero-media,
.subhero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-media img,
.subhero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.04);
    animation: heroDrift 24s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.25) 100%),
        linear-gradient(180deg, rgba(4, 3, 2, 0.08) 0%, rgba(4, 3, 2, 0.48) 52%, rgba(4, 3, 2, 0.88) 100%),
        radial-gradient(circle at 80% 16%, rgba(242, 184, 74, 0.18), transparent 16%),
        radial-gradient(circle at 18% 10%, rgba(242, 184, 74, 0.08), transparent 18%);
}

.hero::after,
.subhero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 300px;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(6, 4, 3, 0.95));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    align-items: center;
    gap: 34px;
}

.hero-copy {
    max-width: 700px;
}

.hero-copy > p {
    max-width: 660px;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-actions.center {
    justify-content: center;
}

.btn {
    min-height: 56px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.btn-primary {
    color: #180c04;
    background: linear-gradient(135deg, #ffd771, #efb240 52%, #a46812);
    border-color: rgba(255, 240, 191, 0.24);
    box-shadow: 0 14px 28px rgba(222, 168, 68, 0.18);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffe18d, #f3ba4c 52%, #b87213);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 223, 144, 0.05);
    border-color: rgba(244, 198, 92, 0.18);
}

.btn-secondary:hover {
    background: rgba(255, 223, 144, 0.09);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.hero-stats article {
    padding: 18px;
    border-radius: 20px;
    min-height: 144px;
}

.hero-stats strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--gold-soft);
}

.hero-stats span {
    display: block;
    color: var(--muted);
    font-size: 0.93rem;
}

.hero-side {
    display: grid;
    gap: 18px;
}

.hero-logo-card,
.hero-note-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-logo-card {
    min-height: 430px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 34%, rgba(255, 215, 115, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 223, 144, 0.04), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(10, 7, 5, 0.94));
}

.hero-logo-card img {
    position: relative;
    z-index: 1;
    width: min(84%, 460px);
    height: auto;
    filter: drop-shadow(0 18px 46px rgba(240, 184, 74, 0.16));
}

.hero-logo-glow {
    position: absolute;
    inset: auto 50% 10% auto;
    width: 340px;
    height: 340px;
    transform: translateX(50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(243, 188, 74, 0.24), rgba(243, 188, 74, 0.04) 56%, transparent 72%);
    filter: blur(12px);
}

.hero-note-card {
    padding: 28px;
    background:
        radial-gradient(circle at 85% 10%, rgba(244, 198, 92, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        var(--panel);
}

.hero-note-card h2 {
    font-size: clamp(1.65rem, 2.2vw, 2.35rem);
    margin: 12px 0;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag-pill {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(244, 198, 92, 0.18);
    background: rgba(255, 223, 144, 0.05);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-strip {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.scene-chip {
    overflow: hidden;
    border-radius: 22px;
}

.scene-chip img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-bottom: 1px solid rgba(244, 198, 92, 0.14);
}

.scene-chip div {
    padding: 16px 18px 18px;
}

.scene-chip strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-soft);
}

.scene-chip span {
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    position: relative;
    padding: 96px 0;
}

.section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(100%, var(--max-width));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 198, 92, 0.18), transparent);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.intro-grid,
.gallery-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 34px;
    align-items: center;
}

.photo-frame {
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--panel-strong);
}

.photo-frame img,
.mosaic-card img,
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tall-frame {
    min-height: 640px;
}

.bullet-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.bullet-item {
    padding: 22px;
    border-radius: 24px;
}

.bullet-item strong {
    display: block;
    color: var(--gold-soft);
    margin-bottom: 8px;
}

.feature-grid-large {
    display: grid;
    gap: 22px;
}

.feature-panel {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.feature-panel:nth-child(even) {
    grid-template-columns: 1.04fr 0.96fr;
}

.feature-panel:nth-child(even) .feature-image {
    order: 2;
}

.feature-image {
    min-height: 330px;
}

.feature-copy {
    padding: 34px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background:
        radial-gradient(circle at 90% 10%, rgba(244, 198, 92, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
        rgba(10, 7, 5, 0.84);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 16px;
}

.mosaic-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--panel-strong);
}

.mosaic-wide {
    grid-column: span 2;
}

.mosaic-tall {
    grid-row: span 2;
}

.onboarding-section .section-head {
    text-align: center;
    margin-inline: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.step-card {
    padding: 28px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: auto -30% -54% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 198, 92, 0.16), transparent 68%);
    pointer-events: none;
}

.step-number {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--gold-soft);
    font-size: 2rem;
}

.step-card p {
    margin-bottom: 18px;
}

.step-card a {
    color: var(--gold-soft);
    font-weight: 800;
}

.cta-box {
    padding: clamp(34px, 5vw, 58px);
    text-align: center;
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 0%, rgba(244, 198, 92, 0.12), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        var(--panel);
}

.cta-box h2 {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto;
}

.subhero {
    position: relative;
    min-height: 68vh;
    display: grid;
    align-items: center;
    padding: 132px 0 86px;
    overflow: hidden;
    isolation: isolate;
}

.subhero-content {
    max-width: 760px;
}

.subpage-copy {
    max-width: 680px;
    font-size: 1.08rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rule-card {
    padding: 24px;
    border-radius: 24px;
}

.rule-card h3 {
    color: var(--gold-soft);
}

.site-footer {
    padding: 0 0 34px;
}

.footer-grid {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding: 28px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 20px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(6, 4, 3, 0.72);
    box-shadow: var(--shadow-soft);
}

.footer-grid strong {
    display: block;
    font-size: 1.08rem;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.footer-grid a,
.footer-grid span {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.footer-grid a:hover {
    color: var(--gold-soft);
}

.background-ambience {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.42;
    mix-blend-mode: screen;
}

.orb-a {
    top: 8%;
    left: -5%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 198, 86, 0.26), transparent 66%);
    animation: floatOrb 24s ease-in-out infinite alternate;
}

.orb-b {
    top: 24%;
    right: 4%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 223, 134, 0.18), transparent 66%);
    animation: floatOrb 18s ease-in-out infinite alternate-reverse;
}

.orb-c {
    bottom: 8%;
    left: 44%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(173, 90, 23, 0.22), transparent 68%);
    animation: floatOrb 20s ease-in-out infinite alternate;
}

.dust-particle,
.spark-particle {
    position: absolute;
    border-radius: 50%;
}

.dust-particle {
    width: var(--size);
    height: var(--size);
    left: var(--left);
    top: var(--top);
    background: radial-gradient(circle, rgba(255, 233, 176, 0.75), rgba(255, 203, 96, 0.2) 55%, transparent 72%);
    box-shadow: 0 0 14px rgba(255, 196, 75, 0.14);
    opacity: 0.34;
    animation: driftDust var(--duration) linear infinite;
    animation-delay: var(--delay);
}

.spark-particle {
    bottom: -20px;
    left: var(--left);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle, rgba(255, 220, 145, 0.95), rgba(255, 165, 70, 0.28) 62%, transparent 72%);
    opacity: 0.42;
    animation: riseSpark var(--duration) linear infinite;
    animation-delay: var(--delay);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 600ms ease,
        transform 700ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.delay-1 {
    transition-delay: 100ms;
}

.delay-2 {
    transition-delay: 180ms;
}

.delay-3 {
    transition-delay: 260ms;
}

@keyframes driftNoise {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(0, 18px, 0); }
}

@keyframes heroDrift {
    0% { transform: scale(1.04) translate3d(0, 0, 0); }
    100% { transform: scale(1.09) translate3d(-1.5%, -1.2%, 0); }
}

@keyframes floatOrb {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(28px, -20px, 0); }
}

@keyframes driftDust {
    0% {
        transform: translate3d(0, 0, 0) scale(0.9);
        opacity: 0;
    }
    15% {
        opacity: 0.28;
    }
    50% {
        transform: translate3d(18px, -30px, 0) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: translate3d(-12px, -68px, 0) scale(1.08);
        opacity: 0;
    }
}

@keyframes riseSpark {
    0% {
        transform: translate3d(0, 0, 0) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 0.46;
    }
    70% {
        opacity: 0.26;
    }
    100% {
        transform: translate3d(18px, -460px, 0) scale(1.1);
        opacity: 0;
    }
}

@media (max-width: 1120px) {
    .hero-grid,
    .intro-grid,
    .gallery-layout,
    .feature-panel,
    .feature-panel:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .feature-panel:nth-child(even) .feature-image {
        order: 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy,
    .subhero-content {
        max-width: none;
    }

    .hero-stats,
    .steps-grid,
    .rules-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: grid;
        gap: 10px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(8, 5, 4, 0.97);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: 180ms ease;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        width: 100%;
        text-align: center;
    }

    .hero-stats,
    .hero-strip,
    .bullet-grid,
    .steps-grid,
    .rules-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .mosaic-wide,
    .mosaic-tall {
        grid-column: auto;
        grid-row: auto;
    }

    .tall-frame {
        min-height: 440px;
    }

    .hero-logo-card {
        min-height: 320px;
    }

    .feature-copy,
    .rule-card,
    .step-card,
    .cta-box {
        padding: 24px;
    }

    h1 {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .page-shell {
        inset: 8px;
        border-radius: 26px;
    }

    .container,
    .footer-grid {
        width: min(calc(100% - 18px), var(--max-width));
    }

    .nav-bar {
        padding: 12px 14px;
    }

    .brand-copy small {
        display: none;
    }

    .hero,
    .subhero {
        padding-top: 118px;
    }

    .hero-actions {
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .hero-copy > p,
    .subpage-copy,
    p {
        font-size: 1rem;
    }

    h1 {
        font-size: clamp(2.35rem, 10vw, 3.3rem);
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.3rem);
    }

    .section {
        padding: 78px 0;
    }
}
