/* GrowthDock Pro — light growth marketing theme */
:root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --teal-light: #ccfbf1;
    --teal-muted: #99f6e4;
    --ink: #0f172a;
    --ink-soft: #334155;
    --ink-muted: #64748b;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-muted: #f1f5f9;
    --border: #e2e8f0;
    --border-strong: #cbd5e1;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Sora', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --max-width: 1180px;
    --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-soft);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.2;
    margin-top: 0;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); font-weight: 600; margin-bottom: 0.75rem; }
h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.35rem; }

.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--ink);
    color: var(--surface);
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* Top bar */
.top-bar {
    background: var(--ink);
    color: #94a3b8;
    font-size: 0.8125rem;
}
.top-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: center;
    padding: 0.5rem 0;
}
.top-bar a { color: #e2e8f0; text-decoration: none; }
.top-bar a:hover { color: var(--teal-muted); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--ink);
}
.brand__icon { color: var(--teal); flex-shrink: 0; }
.brand__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    cursor: pointer;
}
.menu-btn__line {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: var(--ink);
    transition: transform 0.25s, opacity 0.25s;
}
.menu-btn[aria-expanded="true"] .menu-btn__line:first-child {
    transform: translateY(4px) rotate(45deg);
}
.menu-btn[aria-expanded="true"] .menu-btn__line:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.site-nav__list a {
    display: block;
    padding: 0.625rem 0;
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
}
.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
    color: var(--teal);
}
.site-nav__list a[aria-current="page"] { font-weight: 600; }

@media (min-width: 900px) {
    .menu-btn { display: none; }
    .site-nav__list {
        flex-direction: row;
        align-items: center;
        gap: 0.25rem 1.75rem;
    }
    .site-nav__list a { padding: 0; }
}

@media (max-width: 899px) {
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        padding: 1rem 1.5rem 1.5rem;
        display: none;
    }
    .site-nav.is-open { display: block; }
    .site-header { position: relative; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
    background: var(--teal);
    color: var(--surface);
    border-color: var(--teal);
}
.btn--primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--surface); }
.btn--outline {
    background: transparent;
    color: var(--teal-dark);
    border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--teal); color: var(--teal); }
.btn--ghost {
    background: transparent;
    color: var(--ink-soft);
    border-color: var(--border);
}
.btn--ghost:hover { background: var(--surface-muted); }
.btn--block { width: 100%; }

/* Hero */
.hero {
    padding: 3.5rem 0 4rem;
    background: linear-gradient(160deg, var(--surface-alt) 0%, var(--teal-light) 100%);
    overflow: hidden;
}
.hero__layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .hero__layout { grid-template-columns: 1.05fr 0.95fr; }
}
.hero__badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 1rem;
}
.hero__lead {
    font-size: 1.125rem;
    color: var(--ink-soft);
    max-width: 540px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}
.hero__visual {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero__visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Metrics strip */
.metrics-strip {
    background: var(--ink);
    color: #e2e8f0;
    padding: 1.75rem 0;
}
.metrics-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}
@media (min-width: 640px) {
    .metrics-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
.metrics-strip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-muted);
}
.metrics-strip span { font-size: 0.8125rem; color: #94a3b8; }

/* Sections */
.section { padding: 4rem 0; }
.section--alt { background: var(--surface-alt); }
.section--teal { background: var(--teal-light); }

.section-header { max-width: 680px; margin-bottom: 2.5rem; }
.section-header--center { margin-inline: auto; text-align: center; }

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin: 0 0 0.5rem;
}

.lead { font-size: 1.125rem; color: var(--ink-soft); }

/* Bento grid */
.bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .bento { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, auto); }
    .bento__item--wide { grid-column: span 2; }
    .bento__item--tall { grid-row: span 2; }
}
.bento__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.bento__item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--teal-muted);
}
.bento__item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.bento__item p { font-size: 0.9375rem; flex-grow: 1; }
.bento__item a {
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    margin-top: 0.75rem;
}
.bento__item a:hover { text-decoration: underline; }
.bento__icon {
    width: 40px;
    height: 40px;
    background: var(--teal-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

/* Horizontal cards */
.h-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--teal-muted) var(--surface-muted);
}
.h-card {
    flex: 0 0 min(85vw, 320px);
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.h-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--teal-dark);
    background: var(--teal-light);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

/* Split layout */
.split {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .split { grid-template-columns: 1fr 1fr; }
}
.split__figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.split__figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* Solution cards horizontal */
.solution-row {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .solution-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .solution-row { grid-template-columns: repeat(4, 1fr); }
}
.solution-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.solution-card:hover { box-shadow: var(--shadow-md); }
.solution-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.solution-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.solution-card__body p { font-size: 0.9375rem; margin-bottom: 0.75rem; }
.solution-card__body a { font-weight: 600; font-size: 0.875rem; text-decoration: none; }

/* Page hero */
.page-hero {
    padding: 3rem 0 2.5rem;
    background: var(--surface-alt);
    border-bottom: 1px solid var(--border);
}
.page-hero .lead { max-width: 640px; }

/* Prose */
.prose { max-width: 720px; }
.prose h2 { margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; }

/* Approach steps */
.steps {
    display: grid;
    gap: 1.5rem;
    counter-reset: step;
}
@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
    position: relative;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    counter-increment: step;
}
.step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

/* Insights */
.insight-list { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
    .insight-list { grid-template-columns: repeat(2, 1fr); }
}
.insight-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.insight-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--teal-muted);
}
.insight-card__meta {
    padding: 1rem 1.5rem 0;
    font-size: 0.8125rem;
    color: var(--ink-muted);
}
.insight-card__body { padding: 0.75rem 1.5rem 1.5rem; flex-grow: 1; }
.insight-card__body h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.insight-card__body p { font-size: 0.9375rem; margin: 0; color: var(--ink-muted); }
.insight-card__read {
    padding: 0 1.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--teal-dark);
}

/* Article detail (insights inline) */
.article-detail {
    max-width: 720px;
    margin-inline: auto;
}
.article-detail__meta {
    font-size: 0.875rem;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}
.article-detail h2 { margin-top: 2rem; }

/* CTA panel */
.cta-panel {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.cta-panel h2 { margin-bottom: 0.75rem; }
.cta-panel p { max-width: 520px; margin-inline: auto 1.5rem; }

.text-center { text-align: center; }

/* Contact */
.contact-layout {
    display: grid;
    gap: 2.5rem;
}
@media (min-width: 900px) {
    .contact-layout { grid-template-columns: 1.4fr 0.6fr; }
}

.enquiry-form { display: grid; gap: 1.25rem; }
.field label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
    color: var(--ink);
}
.field input,
.field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.field--invalid input,
.field--invalid textarea { border-color: #dc2626; }
.req { color: #dc2626; }
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-disclaimer {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    margin: 0;
}

.form-notice {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.form-notice--ok {
    background: var(--teal-light);
    border-color: var(--teal-muted);
}
.form-notice strong { color: var(--teal-dark); }

.sidebar-contact {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.sidebar-contact h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.sidebar-contact dl { margin: 0; }
.sidebar-contact dt {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    margin-top: 1rem;
}
.sidebar-contact dt:first-child { margin-top: 0; }
.sidebar-contact dd { margin: 0.25rem 0 0; }
.sidebar-contact address { font-style: normal; }

/* Map */
.map-block {
    position: relative;
    min-height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface-muted);
}
.map-block iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}
.map-block__consent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 2rem;
    text-align: center;
}
.map-block__consent p { max-width: 400px; }

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__panel {
    max-width: var(--max-width);
    margin-inline: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .cookie-banner__panel { grid-template-columns: 1fr auto; align-items: center; }
}
.cookie-banner__text h2 { font-size: 1.125rem; margin-bottom: 0.375rem; }
.cookie-banner__text p { font-size: 0.875rem; margin: 0; color: var(--ink-muted); }
.cookie-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.cookie-banner__policy {
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: #94a3b8;
    padding: 3.5rem 0 2rem;
    margin-top: auto;
}
.footer-columns {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
    .footer-columns { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-col__title {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--surface);
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #cbd5e1; text-decoration: none; }
.footer-col a:hover { color: var(--teal-muted); }
.footer-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: 1rem;
}
.footer-address a { color: #cbd5e1; text-decoration: none; }
.footer-address a:hover { color: var(--teal-muted); }
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    font-size: 0.8125rem;
}
.footer-note { margin-top: 0.75rem; font-size: 0.75rem; color: #64748b; }

/* 404 */
.error-page {
    text-align: center;
    padding: 5rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}
.error-page__code {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Legal pages */
.legal-prose { max-width: 760px; }
.legal-prose h2 { font-size: 1.375rem; margin-top: 2.5rem; }
.legal-prose h3 { font-size: 1.0625rem; margin-top: 1.75rem; }
.legal-prose ul { margin-bottom: 1.25rem; }
.legal-prose li { margin-bottom: 0.375rem; }

/* Premium polish */
html { color-scheme: light; }
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(1200px 600px at 100% -10%, rgba(13, 148, 136, 0.08), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(15, 118, 110, 0.06), transparent 55%),
        var(--surface);
}
body > .skip-link { position: fixed; }
body > .cookie-banner { position: fixed; }
body > .top-bar,
body > .site-header,
body > main,
body > .site-footer { width: 100%; }
main { flex: 1; }

::selection {
    background: rgba(13, 148, 136, 0.18);
    color: var(--ink);
}

.hero {
    position: relative;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.12), transparent 45%);
    pointer-events: none;
    z-index: -1;
}

.hero__visual,
.split__figure,
.solution-card,
.bento__item,
.h-card,
.insight-card,
.cta-panel,
.sidebar-contact {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero__visual:hover,
.split__figure:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.page-hero {
    background:
        linear-gradient(180deg, var(--surface-alt) 0%, rgba(248, 250, 252, 0.6) 100%);
}

.section-header h2 {
    letter-spacing: -0.02em;
}

.btn {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.btn--primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}
.btn--primary:hover {
    box-shadow: 0 10px 24px rgba(13, 148, 136, 0.25);
}

.metrics-strip {
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%);
}

.insight-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.form-notice--ok {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.form-notice--ok p { margin-bottom: 0; color: var(--ink-soft); }

.h-card {
    padding: 0;
    overflow: hidden;
}
.h-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}
.h-card__tag {
    margin: 1.15rem 1.5rem 0.5rem;
}
.h-card h3 {
    margin: 0 1.5rem 0.5rem;
}
.h-card p {
    margin: 0 1.5rem 1.5rem;
    font-size: 0.9375rem;
}

.sidebar-contact {
    overflow: hidden;
    padding: 0;
}
.sidebar-contact img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}
.sidebar-contact h2,
.sidebar-contact address {
    padding-inline: 1.75rem;
}
.sidebar-contact h2 {
    margin: 1.35rem 0 0.75rem;
    padding-inline: 1.75rem;
}
.sidebar-contact address {
    padding: 0 1.75rem 1.75rem;
}

.bento__item img {
    margin: -1.5rem -1.5rem 1rem;
    width: calc(100% + 3rem);
    max-width: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    aspect-ratio: 16 / 10;
}

.site-header {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.cta-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
    border-color: var(--teal-muted);
}
.contact-layout__form h2 {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
