@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --color-navy: #0F2747;
    --color-navy-soft: #1A3A63;
    --color-gold: #D4AF37;
    --color-gold-light: #F2D27B;
    --color-primary: #D4AF37;
    --color-ink: #223244;
    --color-muted: #607083;
    --color-bg: #FFFFFF;
    --color-white: #FFFFFF;
    --color-border: #E6E0D2;
    --color-warning-bg: #fff1e5;
    --color-warning-border: #d7702d;
    --color-warning-text: #9a4314;
    --shadow-soft: 0 14px 28px rgba(12, 35, 64, 0.08);
    --radius-md: 10px;
    --radius-lg: 18px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-ink);
    background: linear-gradient(180deg, rgba(15, 39, 71, 0.04) 0%, var(--color-white) 18%, var(--color-white) 100%);
    line-height: 1.65;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: var(--color-navy);
    letter-spacing: 0.01em;
}

p {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding-left: 1.15rem;
}

a {
    color: inherit;
}

.container {
    width: min(var(--max-width), calc(100% - 2.75rem));
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(105deg, #0B1F38 0%, #0F2747 55%, #17365C 100%);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(4px);
}

.site-header-inner {
    width: min(var(--max-width), calc(100% - 2.75rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-copy {
    min-width: 0;
}

.brand h1 {
    color: var(--color-white);
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    line-height: 1.2;
}

.brand p {
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.1rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    flex-wrap: wrap;
    row-gap: 0.45rem;
}

nav a {
    text-decoration: none;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

nav a.active {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
    font-weight: 700;
}

/* Honeypot: visually hidden from real users, bots fill it in */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.admin-hover-zone {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 3.25rem;
    height: 3.25rem;
    z-index: 26;
}

.admin-hover-target {
    position: absolute;
    left: 0.45rem;
    bottom: 0.45rem;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    opacity: 0;
}

.admin-hover-link {
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
    text-decoration: none;
    background: rgba(15, 39, 71, 0.95);
    color: var(--color-white);
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(12, 35, 64, 0.22);
}

.admin-hover-zone:hover .admin-hover-link,
.admin-hover-zone:focus-within .admin-hover-link {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.admin-hover-link:hover,
.admin-hover-link:focus-visible {
    color: var(--color-gold-light);
}

main {
    overflow: hidden;
}

.hero {
    position: relative;
    padding: 4.75rem 0 4rem;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0) 72%);
    right: -100px;
    top: -80px;
}

.hero::after {
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(15, 39, 71, 0.16) 0%, rgba(15, 39, 71, 0) 72%);
    left: -180px;
    bottom: -220px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.2rem;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.hero-copy h2 {
    font-size: clamp(2rem, 4.3vw, 3.25rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}

.hero-copy p {
    color: var(--color-muted);
    max-width: 58ch;
    margin-bottom: 1.6rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.7rem 1.25rem;
    min-height: 42px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(15, 33, 55, 0.15);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.18);
}

.btn-primary:hover {
    background: #C59B24;
    color: var(--color-navy);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.hero-panel {
    background: linear-gradient(150deg, var(--color-white) 0%, rgba(15, 39, 71, 0.04) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.3rem;
    box-shadow: var(--shadow-soft);
}

.hero-panel h3 {
    font-size: 1.18rem;
    margin-bottom: 0.7rem;
}

.hero-panel p {
    color: var(--color-muted);
    margin-bottom: 0.95rem;
}

.hero-list {
    margin: 0;
    padding-left: 1.05rem;
    color: var(--color-ink);
    font-size: 0.95rem;
}

.hero-list li {
    margin-bottom: 0.4rem;
}

.stats {
    padding: 1.4rem 0 2.6rem;
}

.stats-grid {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.stat {
    padding: 1.4rem 1rem;
    text-align: center;
    border-right: 1px solid var(--color-border);
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;
    color: var(--color-navy);
    font-size: 1.45rem;
    margin-bottom: 0.2rem;
}

.stat-link {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.stat-link:hover,
.stat-link:focus-visible {
    color: var(--color-navy-soft);
    border-color: var(--color-gold);
}

.section {
    padding: 3.8rem 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h3 {
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    margin-bottom: 0.55rem;
}

.section-heading p {
    color: var(--color-muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-card {
    display: block;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.1rem;
    box-shadow: var(--shadow-soft);
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.service-card h4 {
    font-size: 1.08rem;
    margin-bottom: 0.45rem;
}

.service-card p {
    color: var(--color-muted);
    font-size: 0.93rem;
}

.service-card-link {
    display: inline-block;
    margin-top: 0.7rem;
    color: var(--color-navy);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.service-card:hover,
.service-card:focus-within {
    background: #F6E7B0;
    border-color: #E4C968;
    transform: translateY(-2px);
}

.service-card-link:hover,
.service-card-link:focus-visible {
    color: #7E6112;
    border-bottom-color: #7E6112;
}

.process {
    background: linear-gradient(180deg, rgba(15, 39, 71, 0.04) 0%, rgba(212, 175, 55, 0.06) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.step {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.step-heading-inline {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.75rem;
}

.step-heading-inline h3 {
    margin: 0;
}

.step-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 0.7rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-bottom: 0.9rem;
    background: #f7f9fc;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-badge {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 0.83rem;
    font-weight: 700;
    margin-bottom: 0;
}

.step p {
    color: var(--color-muted);
}

.cta-band {
    padding: 3.4rem 0 4.2rem;
}

.cta-panel {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-navy) 0%, rgba(15, 39, 71, 0.92) 100%);
    color: var(--color-white);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 16px 36px rgba(12, 35, 64, 0.24);
}

.cta-panel h3 {
    color: var(--color-white);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin-bottom: 0.55rem;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 1.2rem;
}

footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.84);
    padding: 1.4rem 0;
    font-size: 0.9rem;
    text-align: center;
}

.footer-main,
.footer-links,
footer p {
    width: min(var(--max-width), calc(100% - 2.75rem));
    margin: 0 auto;
    text-align: center;
}

.footer-main {
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.footer-links {
    line-height: 1.7;
}

.footer-main a,
.footer-links a {
    color: var(--color-gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-main a:hover,
.footer-links a:hover {
    color: var(--color-white);
}

.disclaimer-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 220;
    align-items: flex-end;
    justify-content: center;
    padding: 0.9rem;
}

body.disclaimer-modal-open .disclaimer-modal {
    display: flex;
}

body.disclaimer-modal-open {
    overflow: hidden;
}

.disclaimer-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 71, 0.62);
}

body.disclaimer-required .disclaimer-modal-backdrop {
    background: rgba(15, 39, 71, 0.9);
}

body.disclaimer-required .disclaimer-modal {
    align-items: center;
}

.disclaimer-modal-content {
    position: relative;
    width: min(820px, calc(100% - 2rem));
    max-height: min(72vh, 700px);
    overflow: auto;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 12px;
    background: var(--color-navy);
    box-shadow: 0 28px 56px rgba(6, 16, 27, 0.5);
    padding: 1rem;
}

.disclaimer-modal-content h4 {
    color: var(--color-gold-light);
    margin-bottom: 0.55rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.disclaimer-modal-content p {
    margin: 0 0 0.55rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    line-height: 1.55;
}

.footer-disclaimer-close {
    float: right;
    border: 1px solid rgba(242, 210, 123, 0.55);
    border-radius: 999px;
    background: transparent;
    color: var(--color-gold-light);
    padding: 0.2rem 0.6rem;
    font-size: 0.78rem;
    cursor: pointer;
}

.footer-disclaimer-close:hover {
    background: rgba(242, 210, 123, 0.14);
}

.disclaimer-actions {
    margin-top: 0.85rem;
    display: flex;
    justify-content: flex-end;
}

body.disclaimer-required .footer-disclaimer-close {
    display: none;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(980px, calc(100% - 1.5rem));
    z-index: 130;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    background: var(--color-navy);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 22px 42px rgba(7, 16, 28, 0.38);
    border-radius: 12px;
    padding: 0.9rem;
    color: rgba(255, 255, 255, 0.84);
}

.cookie-banner-content p {
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
    line-height: 1.45;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-policy-link {
    display: inline-block;
    margin-top: 0.65rem;
    color: var(--color-gold-light);
    font-size: 0.84rem;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

body.cookie-modal-open .cookie-modal {
    display: flex;
}

body.cookie-modal-open {
    overflow: hidden;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 71, 0.62);
}

.cookie-modal-content {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100% - 1.5rem));
    max-height: min(84vh, 780px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    background: var(--color-navy);
    box-shadow: 0 28px 56px rgba(6, 16, 27, 0.45);
    padding: 1rem;
}

.cookie-modal-content h4 {
    color: var(--color-gold-light);
    margin-bottom: 0.55rem;
    font-family: 'Montserrat', sans-serif;
}

.cookie-modal-content p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    margin-bottom: 0.9rem;
}

.cookie-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.6rem;
}

.cookie-toggle-row strong {
    color: var(--color-white);
    display: block;
}

.cookie-toggle-row small {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    font-size: 0.8rem;
}

.cookie-toggle-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-gold);
}

.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.cookie-state-note {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
}

.cookie-modal-close {
    float: right;
    border: 1px solid rgba(242, 210, 123, 0.55);
    border-radius: 999px;
    background: transparent;
    color: var(--color-gold-light);
    padding: 0.2rem 0.6rem;
    font-size: 0.78rem;
    cursor: pointer;
}

.cookie-modal-close:hover {
    background: rgba(242, 210, 123, 0.14);
}

.session-warning-modal {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

body.session-warning-open .session-warning-modal {
    display: flex;
}

.session-warning-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 71, 0.75);
}

.session-warning-content {
    position: relative;
    z-index: 1;
    width: min(520px, calc(100% - 1.5rem));
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    background: var(--color-navy);
    box-shadow: 0 24px 48px rgba(7, 16, 28, 0.42);
    padding: 1rem;
}

.session-warning-content h4 {
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.session-warning-content p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.session-warning-countdown {
    color: var(--color-gold-light);
    font-weight: 700;
}

.session-warning-actions {
    margin-top: 0.8rem;
    display: flex;
    justify-content: flex-end;
}

.inline-actions {
    margin-top: 0.7rem;
}

.booking-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.booking-actions .btn {
    flex: 1 1 0;
    min-height: 44px;
    white-space: nowrap;
}

.status-note {
    margin-top: 0.45rem;
    color: var(--color-muted);
    font-size: 0.82rem;
}

.booking-status-note {
    text-align: center;
}

/* Utility style for pages that include inline sections */
.page-hero h2,
.about-section h2,
.resources-section h2,
.service-card h3,
.event-card h3 {
    color: var(--color-navy);
}

.page-hero {
    background: linear-gradient(130deg, var(--color-navy) 0%, rgba(15, 39, 71, 0.92) 100%);
    color: var(--color-white);
    padding: 3.2rem 0 2.6rem;
}

.page-hero h2 {
    color: var(--color-white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.18;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.84);
    max-width: 76ch;
}

.content-wrap {
    padding: 3rem 0;
}

.content-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.section-stack > h2 {
    margin-bottom: 0.15rem;
}

.content-card h2 {
    margin-bottom: 0.55rem;
}

.content-card h3 {
    margin-bottom: 0.4rem;
}

.content-card p + p {
    margin-top: 0.75rem;
}

.content-card ul,
.content-card ol {
    margin: 0.6rem 0 0;
    padding-left: 1.15rem;
}

.content-card li + li {
    margin-top: 0.3rem;
}

.narrow {
    width: min(860px, calc(100% - 2.75rem));
    margin: 0 auto;
}

.values-grid,
.resource-grid,
.events-list,
.services-grid {
    display: grid;
    gap: 1rem;
}

.values-grid,
.resource-grid,
.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.value-card,
.resource-card,
.event-card,
.service-tile {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.resource-card,
.event-card,
.service-tile {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.resource-card .btn,
.event-card .btn,
.service-tile .btn {
    margin-top: auto;
    align-self: flex-start;
}

.value-card h3,
.resource-card h3,
.event-card h3,
.service-tile h3 {
    margin-bottom: 0.35rem;
}

.value-card h3 a {
    color: inherit;
    text-decoration: none;
}

.value-card h3 a:hover,
.value-card h3 a:focus-visible {
    color: var(--color-primary);
    text-decoration: underline;
}

.provider-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.provider-card-clickable {
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.provider-card-clickable:hover,
.provider-card-clickable:focus-visible {
    background: #F6E7B0;
    border-color: #E4C968;
    transform: translateY(-2px);
}

.provider-logo-wrap {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.provider-logo {
    max-height: 64px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.muted {
    color: var(--color-muted);
}

.section-stack {
    display: grid;
    gap: 2.1rem;
}

.about-values-section {
    justify-items: center;
}

.about-values-grid {
    grid-template-columns: repeat(2, minmax(220px, 280px));
    justify-content: center;
}

.about-values-grid .value-card {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.resource-card .tag {
    display: inline-block;
    margin-bottom: 0.45rem;
    background: var(--color-gold);
    color: var(--color-navy);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.events-list {
    grid-template-columns: 1fr;
}

.event-card {
    border-left: 4px solid var(--color-gold);
}

.event-date {
    color: var(--color-gold);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.resource-list {
    margin: 0.35rem 0 0;
    padding-left: 1.15rem;
}

.resource-list li + li {
    margin-top: 0.32rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
}

.contact-info-card {
    align-self: start;
}

.contact-info-stack {
    display: grid;
    gap: 1.35rem;
}

.contact-info-block {
    display: grid;
    gap: 0.35rem;
}

.contact-info-block p {
    margin: 0;
}

.form-card label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-ink);
}

.form-card input,
.form-card select,
.form-card textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.62rem 0.75rem;
    margin-bottom: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.93rem;
    color: var(--color-ink);
    background: rgba(15, 39, 71, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-card input:hover,
.form-card select:hover,
.form-card textarea:hover {
    border-color: rgba(15, 39, 71, 0.34);
}

.form-card textarea {
    min-height: 110px;
    resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    outline: none;
    border-color: var(--color-navy-soft);
    box-shadow: 0 0 0 4px rgba(15, 39, 71, 0.12);
}

.form-card input.is-invalid,
.form-card select.is-invalid,
.form-card textarea.is-invalid {
    background: var(--color-warning-bg);
    border-color: var(--color-warning-border);
    color: var(--color-warning-text);
    box-shadow: 0 0 0 4px rgba(215, 112, 45, 0.14);
}

.form-card input.is-invalid::placeholder,
.form-card textarea.is-invalid::placeholder {
    color: rgba(154, 67, 20, 0.72);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.form-msg {
    display: none;
    border-radius: 8px;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
}

.form-msg.success {
    display: block;
    background: #e8f6ea;
    color: #2f7d41;
}

.form-msg.error {
    display: block;
    background: #fbecec;
    color: #b32f2f;
}

.privacy-link-list {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.privacy-link-list a {
    text-decoration: none;
    border: 1px solid var(--color-border);
    color: var(--color-navy);
    background: rgba(15, 39, 71, 0.04);
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
    font-size: 0.86rem;
    font-weight: 600;
}

.privacy-alt-contact {
    margin-top: 0.85rem;
}

/* Motion */
@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy,
.hero-panel,
.stats-grid,
.service-card,
.step,
.cta-panel {
    animation: riseIn 0.55s ease both;
}

.hero-panel {
    animation-delay: 0.08s;
}

.service-card:nth-child(2),
.step:nth-child(2) {
    animation-delay: 0.06s;
}

.service-card:nth-child(3),
.step:nth-child(3) {
    animation-delay: 0.12s;
}

@media (max-width: 1060px) {
    .site-header-inner {
        display: block;
    }

    .brand {
        margin-bottom: 0.65rem;
    }

    nav {
        gap: 0.7rem 0.95rem;
    }

    .content-wrap {
        padding: 2.7rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid var(--color-border);
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .container,
    .site-header-inner,
    footer p {
        width: calc(100% - 1.5rem);
    }

    .brand {
        gap: 0.7rem;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .hero {
        padding-top: 3rem;
    }

    .page-hero {
        padding: 2.6rem 0 2.15rem;
    }

    .page-hero h2 {
        margin-bottom: 0.42rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1;
        min-width: 170px;
    }

    .service-grid,
    .process-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .resource-grid,
    .services-grid,
    .split-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .section {
        padding: 2.8rem 0;
    }

    .content-wrap {
        padding: 2.15rem 0;
    }

    .content-card {
        padding: 1.15rem;
    }

    .section-stack {
        gap: 1.5rem;
    }

    .footer-main,
    .footer-links {
        line-height: 1.55;
    }

    .cookie-banner-actions,
    .cookie-modal-actions {
        flex-direction: column;
    }

    .booking-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions .btn,
    .cookie-modal-actions .btn,
    .booking-actions .btn {
        width: 100%;
    }
}