:root {
    --bg: #f7f3ea;
    --surface: #fffefa;
    --surface-strong: #0c2629;
    --surface-soft: #edf5f0;
    --surface-soft-2: #d8e8df;
    --text: #0a1e21;
    --text-soft: #314a4f;
    --text-inverse: #f8f6ef;
    --teal-950: #081c1f;
    --teal-900: #0c2d31;
    --teal-850: #10383b;
    --teal-800: #12484a;
    --teal-700: #17615e;
    --teal-600: #1f7a73;
    --gold-500: #c59b42;
    --gold-400: #d8ba73;
    --gold-300: #efddb0;
    --border: rgba(12, 45, 49, 0.2);
    --border-strong: rgba(12, 45, 49, 0.36);
    --shadow-lg: 0 30px 70px rgba(8, 28, 31, 0.2);
    --shadow-md: 0 20px 44px rgba(8, 28, 31, 0.15);
    --shadow-sm: 0 14px 30px rgba(8, 28, 31, 0.11);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
    --transition: 220ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(31, 122, 115, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(197, 155, 66, 0.12), transparent 24%),
        linear-gradient(180deg, #fbf8f1 0%, #f7f3ea 48%, #f3eee3 100%);
    color: var(--text);
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(197, 155, 66, 0.72);
    outline-offset: 3px;
}

::selection {
    background: rgba(197, 155, 66, 0.28);
    color: var(--teal-950);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--teal-900);
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-wrap {
    overflow: clip;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.utility-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(90deg, #061719, #102f31);
    color: rgba(248, 246, 239, 0.88);
}

.utility-bar .container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.utility-bar strong {
    color: var(--gold-300);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(8, 28, 31, 0.82);
    border-bottom: 1px solid rgba(240, 221, 176, 0.08);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.brand-mark {
    width: 92px;
    height: 92px;
    border-radius: 28px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.home-brand .brand-mark {
    width: 164px;
    height: 164px;
    border-radius: 40px;
    box-shadow: 0 32px 68px rgba(0, 0, 0, 0.38);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(240, 221, 176, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-inverse);
    align-items: center;
    justify-content: center;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-left: auto;
}

.site-nav a {
    color: rgba(248, 246, 239, 0.76);
    padding: 0.85rem 1rem;
    border-radius: 999px;
    transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--surface);
    background: rgba(255, 255, 255, 0.08);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 3.25rem;
    padding: 0.85rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--teal-950);
    box-shadow: 0 16px 28px rgba(197, 155, 66, 0.28);
}

.button-primary:hover {
    box-shadow: 0 20px 34px rgba(197, 155, 66, 0.34);
}

.button-secondary {
    border-color: rgba(248, 246, 239, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-inverse);
}

.button-secondary:hover {
    border-color: rgba(248, 246, 239, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.button-outline {
    border-color: var(--border-strong);
    background: transparent;
    color: var(--teal-900);
}

.button-outline:hover {
    border-color: var(--teal-700);
    color: var(--teal-700);
}

.button-nav {
    margin-left: 0.5rem;
}

.site-nav .button-primary {
    color: var(--teal-950);
}

.site-nav .button-primary:hover {
    color: var(--teal-950);
}

.hero {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    color: var(--text-inverse);
}

.hero::before,
.page-hero::before,
.cta-band::before,
.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(216, 186, 115, 0.16), transparent 25%),
        radial-gradient(circle at 88% 12%, rgba(31, 122, 115, 0.24), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 48%);
    pointer-events: none;
}

.hero-shell,
.page-hero-shell,
.dark-shell {
    position: relative;
    border: 1px solid rgba(240, 221, 176, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(18, 72, 74, 0.94) 0%, rgba(8, 28, 31, 0.98) 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    box-shadow: var(--shadow-lg);
}

.hero-shell {
    padding: 4rem;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: stretch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    color: var(--gold-300);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 2.4rem;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-400), transparent);
}

.display-title {
    max-width: 12ch;
    color: var(--surface);
    font-size: clamp(3.2rem, 7.4vw, 5.8rem);
}

.page-title {
    color: var(--surface);
    font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.hero-copy p,
.page-hero-copy p {
    max-width: 62ch;
    color: rgba(248, 246, 239, 0.82);
    font-size: 1.06rem;
}

.hero-copy .display-title + p,
.page-title + p {
    margin-top: 1.3rem;
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 2rem;
}

.pill-row,
.micro-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.pill-row {
    margin-top: 1.7rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(240, 221, 176, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(248, 246, 239, 0.92);
    font-size: 0.85rem;
    font-weight: 700;
}

.pill::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 0 0.3rem rgba(216, 186, 115, 0.16);
}

.hero-card,
.panel,
.card,
.contact-panel,
.faq-card,
.process-step {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 254, 250, 0.96);
    box-shadow: var(--shadow-sm);
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(240, 221, 176, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
        rgba(255, 255, 255, 0.08);
    color: var(--text-inverse);
    padding: 1.9rem;
}

.hero-card::after,
.cta-band-panel::after {
    content: "";
    position: absolute;
    inset: auto -12% -35% auto;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 186, 115, 0.32), transparent 68%);
}

.hero-card h2,
.hero-card h3 {
    color: var(--surface);
}

.hero-card p,
.hero-card li {
    color: rgba(248, 246, 239, 0.88);
}

.hero-card-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-bottom: 1.25rem;
}

.hero-card-header img {
    width: 124px;
    height: auto;
    opacity: 1;
}

.feature-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.feature-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
}

.feature-list li::before,
.check-list li::before {
    content: "◆";
    color: var(--gold-400);
    font-size: 0.82rem;
    line-height: 1.7;
}

.metric-grid,
.trust-grid,
.card-grid,
.process-grid,
.category-grid,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 1.4rem;
}

.metric-grid {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
}

.metric {
    padding: 1.05rem 1.15rem;
    border: 1px solid rgba(240, 221, 176, 0.22);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
}

.metric strong {
    display: block;
    color: var(--surface);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.metric span {
    color: rgba(248, 246, 239, 0.82);
    font-size: 0.88rem;
}

.trust-strip {
    padding: 1rem 0 0.4rem;
}

.trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section {
    padding: 5rem 0;
}

.section-alt {
    padding: 5rem 0;
}

.section-alt .panel,
.section-alt .card {
    background: rgba(255, 254, 250, 0.98);
}

.section-dark {
    position: relative;
    padding: 5rem 0;
    color: var(--text-inverse);
}

.dark-shell {
    padding: 3rem;
    border: 1px solid rgba(240, 221, 176, 0.12);
}

.section-heading {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 2.3rem;
}

.section-kicker {
    color: var(--teal-700);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-dark .section-kicker {
    color: var(--gold-300);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.section-dark .section-title,
.section-dark p,
.section-dark li,
.cta-band h2,
.cta-band p {
    color: var(--surface);
}

.section-lead {
    max-width: 64ch;
    color: var(--text-soft);
    font-size: 1.03rem;
}

.section-dark .section-lead {
    color: rgba(248, 246, 239, 0.78);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1.6rem;
    align-items: start;
}

.panel,
.card,
.contact-panel,
.faq-card,
.process-step {
    padding: 1.7rem;
    position: relative;
}

.panel {
    overflow: hidden;
}

.panel::before,
.card::before,
.contact-panel::before,
.faq-card::before,
.process-step::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-400), rgba(31, 122, 115, 0.8));
}

.panel h3,
.card h3,
.card h4,
.contact-panel h3,
.faq-card h3,
.process-step h3 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.panel p + p,
.card p + p {
    margin-top: 1rem;
}

.micro-list {
    margin-top: 1rem;
}

.micro-list span {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--teal-900);
    font-size: 0.84rem;
    font-weight: 700;
}

.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card,
.category-card,
.insight-card,
.check-card {
    height: 100%;
}

.card h4 {
    font-size: 1.45rem;
}

.card p,
.panel p,
.faq-card p,
.process-step p,
.contact-panel p,
.contact-list a,
.contact-list span {
    color: var(--text-soft);
}

.category-card .card-meta,
.trust-card .card-meta,
.process-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    color: var(--teal-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.card-meta::before,
.process-label::before {
    content: "";
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--gold-400);
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.stat-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(239, 221, 176, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 34px rgba(3, 13, 15, 0.18);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--surface);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
}

.stat-card p {
    color: rgba(248, 246, 239, 0.86);
}

.check-list {
    display: grid;
    gap: 0.95rem;
    margin-top: 1rem;
}

.check-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    color: var(--text-soft);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    position: relative;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--teal-950);
    font-weight: 800;
}

.process-step h3 {
    font-size: 1.45rem;
}

.category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-hero {
    position: relative;
    padding: 4.6rem 0 3rem;
    color: var(--text-inverse);
}

.page-hero-shell {
    padding: 3.2rem 3rem;
}

.page-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1.6rem;
    align-items: center;
}

.page-hero-card {
    padding: 1.45rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(240, 221, 176, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.page-hero-card h2,
.page-hero-card h3 {
    color: var(--surface);
}

.page-hero-card p,
.page-hero-card li {
    color: rgba(248, 246, 239, 0.8);
}

.callout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.cta-band {
    position: relative;
    padding: 0 0 5rem;
}

.cta-band-shell {
    position: relative;
    padding: 2.8rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18, 72, 74, 0.96), rgba(8, 28, 31, 1)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    box-shadow: var(--shadow-lg);
}

.cta-band-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.82fr);
    gap: 1.5rem;
    align-items: center;
}

.cta-band .section-kicker {
    color: var(--gold-300);
}

.cta-band p {
    max-width: 52ch;
    color: rgba(248, 246, 239, 0.82);
}

.quote-mark {
    color: var(--gold-400);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 4rem;
    line-height: 0.8;
}

.contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: start;
}

.stacked-panels {
    display: grid;
    gap: 1.4rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field label {
    color: var(--teal-800);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(16, 56, 59, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: rgba(16, 56, 59, 0.28);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(197, 155, 66, 0.14);
}

.field textarea {
    min-height: 168px;
    resize: vertical;
}

.form-note,
.status-note {
    font-size: 0.92rem;
}

.space-top {
    margin-top: 1rem;
}

.form-note {
    color: var(--text-soft);
}

.status-note {
    display: none;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(31, 122, 115, 0.18);
    background: rgba(31, 122, 115, 0.08);
    color: var(--teal-900);
}

.status-note.is-visible {
    display: block;
}

.contact-list {
    display: grid;
    gap: 0.95rem;
}

.contact-list a {
    color: var(--teal-700);
    font-weight: 700;
}

.contact-list a:hover {
    color: var(--teal-900);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 254, 250, 0.98);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
    color: var(--teal-900);
    font-weight: 800;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    color: var(--gold-500);
    font-size: 1.4rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 1.25rem 1.2rem;
    color: var(--text-soft);
}

.footer {
    padding: 0 0 2rem;
}

.footer-shell {
    border-radius: var(--radius-xl);
    background:
        linear-gradient(140deg, rgba(18, 72, 74, 0.96), rgba(8, 28, 31, 1)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    color: var(--text-inverse);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.footer-main {
    padding: 2.5rem 2rem 1.6rem;
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
}

.footer h3,
.footer h4,
.footer p,
.footer li,
.footer a {
    color: var(--surface);
}

.footer h3 {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
}

.footer h4 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.footer p,
.footer a,
.footer li {
    color: rgba(248, 246, 239, 0.8);
}

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

.footer-nav {
    display: grid;
    gap: 0.7rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 2rem 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(248, 246, 239, 0.65);
    font-size: 0.88rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .page-hero-grid,
    .split-layout,
    .cta-band-panel,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .card-grid,
    .category-grid,
    .process-grid,
    .stat-band,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .hero-shell,
    .page-hero-shell,
    .cta-band-shell,
    .dark-shell {
        padding: 2.4rem;
    }
}

@media (max-width: 860px) {
    .utility-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-header .container {
        flex-wrap: wrap;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 0.4rem;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a,
    .button-nav {
        width: 100%;
        margin: 0;
    }

    .hero-shell {
        padding: 2.2rem;
    }

    .display-title,
    .page-title {
        max-width: 100%;
    }

    .trust-grid,
    .card-grid,
    .card-grid.two-up,
    .category-grid,
    .process-grid,
    .footer-grid,
    .callout-grid,
    .stat-band,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 1.2rem));
    }

    .hero,
    .page-hero,
    .section,
    .section-alt,
    .section-dark {
        padding-top: 3.4rem;
        padding-bottom: 3.4rem;
    }

    .hero-shell,
    .page-hero-shell,
    .cta-band-shell,
    .dark-shell,
    .footer-main {
        padding: 1.6rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.6rem 1.4rem;
    }

    .display-title {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .page-title {
        font-size: clamp(2.3rem, 10vw, 3.2rem);
    }

    .brand-mark {
        width: 78px;
        height: 78px;
    }

    .home-brand .brand-mark {
        width: 132px;
        height: 132px;
        border-radius: 34px;
    }
}
