/* True Legal Advice — premium navy legal theme */
:root {
    --bg: #081321;
    --bg-elevated: #0d1b30;
    --bg-card: #12243c;
    --bg-soft: #16304d;
    --text: #f4f1e8;
    --text-muted: #c4cdd8;
    --gold: #c9a227;
    --gold-light: #e3c86a;
    --gold-deep: #9e7c16;
    --border: rgba(201, 162, 39, 0.22);
    --line: rgba(244, 241, 232, 0.08);
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
    --max-width: 1180px;
    --radius: 6px;
    --focus: #e3c86a;
    --error-bg: rgba(200, 80, 80, 0.12);
    --error-border: #c85050;
    --error-text: #f0b8b8;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    --pad: clamp(1rem, 3vw, 1.75rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-wrap: anywhere;
    word-break: break-word;
    text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe { max-width: 100%; border: 0; }

a {
    color: var(--gold-light);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
a:hover { color: var(--gold); }
a:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--gold);
    color: var(--bg);
    font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 19, 33, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.9rem var(--pad);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    min-width: 0;
    flex-shrink: 1;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    flex-shrink: 0;
    border: 1px solid var(--gold);
    background: linear-gradient(180deg, #16304d 0%, #0a1628 100%);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.primary-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 1.35rem;
    margin-left: auto;
}

.primary-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 0.35rem 0;
}
.primary-nav a:hover:not(.header-cta),
.primary-nav a.is-active:not(.header-cta) { color: var(--gold); }

.header-cta {
    padding: 0.62rem 1.15rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.header-cta:hover,
.primary-nav a.header-cta:hover {
    background: var(--gold);
    color: var(--bg);
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--gold);
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; }

/* Layout */
main { min-height: 60vh; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--bg-elevated); }

.section-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.22;
    color: var(--text);
    overflow-wrap: anywhere;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.6rem); margin: 0 0 1.15rem; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.35rem); margin: 0 0 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.32rem); margin: 0 0 0.7rem; }

p, li { overflow-wrap: anywhere; }

.lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 44rem;
}

/* Media */
.media-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--bg-card);
}
.media-frame img,
.media-frame iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.media-frame--portrait { min-height: 280px; }
.media-frame--portrait img { aspect-ratio: 4 / 5; }
.media-frame--wide img { aspect-ratio: 16 / 10; min-height: 220px; }

/* Hero */
.hero {
    position: relative;
    min-height: min(88vh, 820px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 19, 33, 0.92) 0%, rgba(8, 19, 33, 0.72) 48%, rgba(8, 19, 33, 0.45) 100%),
        linear-gradient(180deg, rgba(8, 19, 33, 0.28) 0%, rgba(8, 19, 33, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(4.5rem, 10vw, 7rem) var(--pad) clamp(3.2rem, 7vw, 5rem);
    animation: fadeUp 0.8s ease both;
}

.hero-content h1,
.hero-content .lead { max-width: 38rem; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.88rem 1.55rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    min-height: 48px;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn-primary {
    background: var(--gold);
    color: var(--bg);
    box-shadow: 0 8px 22px rgba(201, 162, 39, 0.28);
}
.btn-primary:hover {
    background: var(--gold-light);
    color: var(--bg);
}
.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(227, 200, 106, 0.45);
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; }

/* Grids */
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.img-card-grid > *,
.trust-grid > *,
.contact-layout > *,
.footer-grid > * { min-width: 0; }

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 4vw, 3.2rem);
    align-items: center;
}
.grid-2.is-start { align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.mt-2 { margin-top: 2rem; }
.mt-25 { margin-top: 2.5rem; }
.note { margin-top: 2rem; color: var(--text-muted); }

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.65rem 1.55rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    height: 100%;
}
.card p { color: var(--text-muted); margin: 0; }

.card-visual {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.card-visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.card-visual .card-body { padding: 1.4rem 1.35rem 1.5rem; }
.card-visual .card-body p { margin: 0; }

/* Service cards */
.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.service-card:hover img { transform: scale(1.04); }
.service-card-body {
    padding: 1.4rem 1.35rem 1.55rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body h3 { margin-bottom: 0.5rem; }
.service-card-body p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin: 0 0 1.1rem;
    flex: 1;
}
.service-card-body a {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
}

/* Process */
.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}
.process-list li {
    position: relative;
    padding: 0 0 2.1rem 3.8rem;
    border-left: 1px solid var(--border);
    margin-left: 1.15rem;
}
.process-list li:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}
.process-list li::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: -1.2rem;
    top: 0;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
}
.process-list h3 { margin-bottom: 0.35rem; }
.process-list p { color: var(--text-muted); margin: 0; }

/* Stats */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 2.4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; padding: 0.4rem; }
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
}
.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}

/* Page headers */
.page-header {
    padding: clamp(3rem, 7vw, 4.4rem) 0 2.6rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.page-header-banner {
    position: relative;
    min-height: clamp(280px, 42vw, 420px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-header-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-header-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 19, 33, 0.25) 0%, rgba(8, 19, 33, 0.78) 52%, #081321 100%);
}
.page-header-banner .container {
    position: relative;
    z-index: 1;
    padding-top: clamp(3.4rem, 8vw, 5.2rem);
    padding-bottom: clamp(2.2rem, 5vw, 3.2rem);
}
.page-header-banner h1,
.page-header-banner .lead { max-width: 44rem; }

/* Prose */
.prose { max-width: 48rem; }
.prose p { color: var(--text-muted); margin: 0 0 1.2rem; }
.prose ul, .prose ol {
    color: var(--text-muted);
    margin: 0 0 1.2rem;
    padding-left: 1.25rem;
}
.prose li { margin-bottom: 0.45rem; }
.prose h2 { margin-top: 2.1rem; }

.legal-content { max-width: 52rem; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.3rem; }
.legal-content h3 { font-size: 1.12rem; margin-top: 1.5rem; }
.legal-content p, .legal-content li { color: var(--text-muted); }

.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.trust-item {
    padding: 1.5rem 1.35rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.trust-item h3 { font-size: 1.12rem; }
.trust-item p { color: var(--text-muted); margin: 0; font-size: 0.97rem; }

.img-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.img-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.img-card-body { padding: 1.35rem 1.3rem 1.5rem; flex: 1; }
.img-card-body h3 { margin-bottom: 0.5rem; }
.img-card-body p {
    color: var(--text-muted);
    font-size: 0.97rem;
    margin: 0;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: start;
}
.contact-form label {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1.15rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    border-radius: 2px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.contact-details address { font-style: normal; }
.contact-details p {
    margin: 0 0 0.7rem;
    color: var(--text-muted);
}

.contact-photo {
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 1.35rem;
    box-shadow: var(--shadow);
}
.contact-photo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.form-success {
    padding: 1.6rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--gold);
    margin-bottom: 1.6rem;
}
.form-success h2 { font-size: 1.3rem; color: var(--gold); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); margin: 0; }

.form-error {
    padding: 1rem 1.2rem;
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error-text);
    margin-bottom: 1.4rem;
}

/* Map */
.map-wrapper {
    margin-top: 1.4rem;
    width: 100%;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--bg-card);
    min-height: 320px;
}
.map-wrapper iframe {
    width: 100%;
    height: 420px;
    display: block;
    background: #0d1b30;
}
.map-fallback {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.location-copy p { color: var(--text-muted); margin: 0 0 1rem; }

/* CTA */
.cta-band {
    text-align: center;
    padding: clamp(2.4rem, 6vw, 4rem) clamp(1.2rem, 4vw, 2rem);
    background:
        linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent 42%),
        linear-gradient(180deg, var(--bg-card), var(--bg-elevated));
    border: 1px solid var(--border);
}
.cta-band h2 { margin-bottom: 0.7rem; }
.cta-band p {
    color: var(--text-muted);
    max-width: 38rem;
    margin: 0 auto 1.4rem;
}

/* Footer */
.site-footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 3.4rem 0 0;
    margin-top: 0;
}
.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad) 2.6rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.9fr 1.2fr;
    gap: 2rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}
.footer-tagline { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.footer-nav h2, .footer-legal h2, .footer-contact h2 {
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.9rem;
}
.footer-nav ul, .footer-legal ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li, .footer-legal li { margin-bottom: 0.45rem; }
.footer-nav a, .footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
}
.footer-nav a:hover, .footer-legal a:hover { color: var(--gold); }
.footer-contact address p {
    margin: 0 0 0.4rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}
.footer-contact a { color: var(--text-muted); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.15rem var(--pad);
    text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.86rem; color: var(--text-muted); }

/* Cookie */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 1.15rem var(--pad);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.4);
}
.cookie-inner { max-width: var(--max-width); margin: 0 auto; }
.cookie-banner h2 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.cookie-banner p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0 0 0.95rem;
    max-width: 52rem;
}
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* 404 */
.error-page { text-align: center; padding: clamp(4rem, 10vw, 6.5rem) var(--pad); }
.error-page h1 {
    font-size: clamp(4rem, 12vw, 6rem);
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.error-page p { color: var(--text-muted); max-width: 32rem; margin: 0 auto; }
.error-page .hero-actions { justify-content: center; }

/* Responsive */
@media (max-width: 1100px) {
    .nav-toggle { display: flex; }
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1;
        background: rgba(8, 19, 33, 0.5);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .nav-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .primary-nav {
        display: none;
        position: relative;
        z-index: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0.4rem 0 0;
        width: 100%;
        background: #10233d;
        padding: 0.4rem 0.9rem 1rem;
        border: 1px solid rgba(201, 162, 39, 0.35);
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav a {
        display: block;
        width: 100%;
        padding: 0.95rem 0.2rem;
        font-size: 1.02rem;
        color: var(--text);
        border-bottom: 1px solid var(--line);
    }
    .primary-nav .header-cta {
        display: inline-flex;
        width: fit-content;
        margin-top: 0.95rem;
        border-bottom: 1px solid var(--gold);
    }
}

@media (max-width: 960px) {
    .grid-2,
    .contact-layout,
    .footer-grid,
    .trust-grid { grid-template-columns: 1fr; }
    .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero { min-height: min(78vh, 700px); }
    .hero-bg::after {
        background:
            linear-gradient(180deg, rgba(8, 19, 33, 0.35) 0%, rgba(8, 19, 33, 0.88) 70%, #081321 100%);
    }
}

@media (max-width: 680px) {
    .section { padding: 2.6rem 0; }
    .grid-3, .grid-4, .stats-bar { grid-template-columns: 1fr; }
    .logo-text { white-space: normal; }
    .page-header { padding: 2.4rem 0 1.8rem; }
    .map-wrapper iframe { height: 280px; }
    .map-wrapper { min-height: 280px; }
    .process-list li { padding-left: 3.1rem; }
    .hero { min-height: auto; }
    .hero-content { padding-top: 5.2rem; }
    .cta-band { padding: 2.1rem 1.1rem; }
    .cookie-banner { padding-bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 420px) {
    body { font-size: 1rem; }
    h1 { font-size: 1.85rem; }
    .btn { width: 100%; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .header-inner { padding-top: 0.75rem; padding-bottom: 0.75rem; }
}

@media (hover: none) {
    .service-card:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-content { animation: none; }
}
