/* ─── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
    --navy:      #1B2A4A;
    --navy-mid:  #243560;
    --navy-dk:   #111D36;
    --gold:      #B8965A;
    --gold-lt:   #D4B896;
    --gold-pale: #F0E8D6;
    --cream:     #F8F6F0;
    --sand:      #EDEAE0;
    --ink:       #1A1A2E;
    --body:      #3D3D50;
    --subtle:    #7A7A90;
    --line:      #DDD9CF;
    --line-lt:   #EEEADF;
    --white:     #FFFFFF;

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Inter', system-ui, Arial, sans-serif;

    --max:  1140px;
    --pad:  44px;
    --ease: 0.25s ease;
    --ease-out: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    color: var(--body);
    background: var(--white);
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

h1, h2, h3 {
    font-family: var(--serif);
    color: var(--ink);
    line-height: 1.15;
}

/* ─── LAYOUT ──────────────────────────────────────────────────────────────── */
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ─── REVEAL ──────────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: none; }

/* ─── GOLD HEADING ACCENT ─────────────────────────────────────────────────── */
.heading-rule {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0 26px;
    flex-shrink: 0;
}

/* ─── LABELS ──────────────────────────────────────────────────────────────── */
.label {
    display: block;
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background var(--ease), color var(--ease),
                border-color var(--ease), transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover { background: #a07840; border-color: #a07840; }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-full { width: 100%; }

/* ─── NAVBAR ──────────────────────────────────────────────────────────────── */
#navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
#navbar.at-top {
    background: transparent;
    border-bottom: 1px solid transparent;
}
#navbar.scrolled {
    background: var(--navy-dk);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 32px rgba(0,0,0,0.28);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: clamp(88px, 9vw, 112px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo { flex-shrink: 0; }

.logo {
    height: clamp(64px, 7vw, 96px);
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity var(--ease);
}
.logo:hover { opacity: 0.8; }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.72);
    padding: 8px 16px;
    transition: color var(--ease);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.cta {
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 9px 22px;
    margin-left: 10px;
    border: 1.5px solid var(--gold);
}
.nav-link.cta::after { display: none; }
.nav-link.cta:hover  { background: #a07840; border-color: #a07840; }

/* Language toggle */
.lang-toggle {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.55);
    background: none;
    border: 1px solid rgba(255,255,255,0.22);
    padding: 5px 11px;
    cursor: pointer;
    transition: color var(--ease), border-color var(--ease), background var(--ease);
    flex-shrink: 0;
    margin-left: 6px;
}
.lang-toggle:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    border-radius: 1px;
    transition: all var(--ease);
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
}

.hero-panel {
    background: var(--navy-dk);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--pad) 80px calc(max(var(--pad), (100vw - var(--max)) / 2 + var(--pad)));
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Large ghost letters behind hero text */
.hero-panel::before {
    content: 'BNK';
    position: absolute;
    bottom: -60px;
    left: -10px;
    font-family: var(--serif);
    font-size: clamp(180px, 22vw, 300px);
    font-weight: 600;
    color: rgba(255,255,255,0.022);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
}

.hero-content {
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0;
    animation: up 0.8s ease 0.2s forwards;
}

#hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 5vw, 5.8rem);
    font-weight: 600;
    margin-bottom: 28px;
    opacity: 0;
    animation: up 0.8s ease 0.35s forwards;
    line-height: 1.08;
}
#hero h1 span { display: block; color: var(--white); }
#hero h1 em {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--gold-lt);
    font-size: 0.88em;
}

.tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 44px;
    font-weight: 300;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: up 0.8s ease 0.5s forwards;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: up 0.8s ease 0.65s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 44px;
    left: calc(max(var(--pad), (100vw - var(--max)) / 2 + var(--pad)));
    opacity: 0;
    animation: fadeIn 1s ease 1.3s forwards;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
}

.hero-visual {
    position: relative;
    background-image: url('../../Pictures/bg2.jpg');
    background-size: cover;
    background-position: center 30%;
    overflow: hidden;
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--navy-dk) 0%,
        rgba(17,29,54,0.35) 55%,
        rgba(17,29,54,0.05) 100%
    );
}

@keyframes up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ─── SERVICES ────────────────────────────────────────────────────────────── */
#services {
    padding: 108px 0;
    background: var(--cream);
}

.section-intro {
    max-width: 680px;
    margin-bottom: 68px;
}
.section-intro h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 600;
}

.lead {
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.85;
    margin-bottom: 16px;
}
.note {
    font-size: 0.875rem;
    color: var(--body);
    line-height: 1.9;
}
.note a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.note a:hover { color: var(--gold); }

/* Service grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--line);
    border: 1.5px solid var(--line);
}

.service-card {
    background: var(--cream);
    padding: 40px 36px 48px;
    position: relative;
    transition: background var(--ease), transform var(--ease-out), box-shadow var(--ease-out);
    overflow: hidden;
}

/* Gold left-border slide-in on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height var(--ease-out);
}
.service-card:hover {
    background: var(--white);
    z-index: 1;
    box-shadow: 0 12px 48px rgba(27,42,74,0.11);
    transform: translateY(-4px);
}
.service-card:hover::before { height: 100%; }

.card-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Large watermark number — decorative background */
.card-num {
    position: absolute;
    top: -4px;
    right: 18px;
    font-family: var(--serif);
    font-size: clamp(5rem, 8vw, 7rem);
    font-weight: 600;
    color: rgba(27,42,74,0.055);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.03em;
    z-index: 0;
    transition: color var(--ease);
}
.service-card:hover .card-num { color: rgba(184,150,90,0.1); }

.card-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    opacity: 0.7;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: opacity var(--ease), transform var(--ease);
}
.service-card:hover .card-icon { opacity: 1; transform: scale(1.1); }

/* Large serif title — key service name at a glance */
.service-card h3 {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

/* Expanding gold underline on title */
.service-card h3::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-top: 14px;
    margin-bottom: 16px;
    transition: width var(--ease-out);
}
.service-card:hover h3::after { width: 56px; }

.service-card p {
    font-size: 0.86rem;
    color: var(--body);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

/* ─── ABOUT ───────────────────────────────────────────────────────────────── */
#about {
    background: var(--white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: start;
    max-width: 100%;
}

.about-text-col {
    padding: 104px 60px 104px calc(max(var(--pad), (100vw - var(--max)) / 2 + var(--pad)));
    min-width: 0;
}

.about-header { margin-bottom: 8px; }
.about-header h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 600; }

.about-text-col > p,
.about-text-col .about-header ~ p {
    font-size: 0.925rem;
    color: var(--body);
    line-height: 1.95;
    margin-bottom: 22px;
    max-width: 640px;
}
.about-text-col > p.lead {
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 400;
}

/* Founders */
.founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 44px 0 32px;
}

.founder {
    position: relative;
    border: 1px solid var(--line);
    background: var(--cream);
    overflow: hidden;
    transition: border-color var(--ease), box-shadow var(--ease);
}
.founder:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(27,42,74,0.08);
}

/* Gold left accent bar */
.founder::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.founder-inner {
    padding: 28px 28px 28px 36px;
}

.founder h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.founder .role {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.founder p:not(.role) {
    font-size: 0.86rem;
    color: var(--body);
    line-height: 1.9;
}

/* SRA notice */
.sra-notice {
    margin-top: 32px;
    padding: 20px 24px;
    border-left: 3px solid var(--gold-pale);
    background: var(--cream);
    max-width: 640px;
}
.sra-notice p {
    font-size: 0.78rem;
    color: var(--subtle);
    line-height: 1.85;
    margin: 0;
}

/* About image column */
.about-image-col {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.about-img-wrap {
    position: relative;
    height: 100%;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Offset gold frame decoration */
.about-img-frame {
    position: absolute;
    top: 40px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    border: 2px solid var(--gold);
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
#contact {
    background: var(--cream);
}

.contact-banner {
    height: 280px;
    background-image: url('../../Pictures/bg6.jpg');
    background-size: cover;
    background-position: center 55%;
    position: relative;
}

.contact-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17,29,54,0.55) 0%,
        rgba(248,246,240,0.95) 100%
    );
}

#contact .wrap {
    padding-top: 64px;
    padding-bottom: 104px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 88px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 600;
}
.contact-info > p {
    font-size: 0.9rem;
    color: var(--body);
    line-height: 1.9;
    margin-bottom: 44px;
    max-width: 380px;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.details > div { display: flex; flex-direction: column; gap: 6px; }

.details dt {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.details dd {
    font-size: 0.9rem;
    color: var(--ink);
    line-height: 1.75;
}
.details dd a { color: var(--ink); transition: color var(--ease); }
.details dd a:hover { color: var(--gold); }

/* Contact form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 44px 40px;
    box-shadow: 0 4px 40px rgba(27,42,74,0.07);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--subtle);
}

.field input,
.field textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0;
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease);
    -webkit-appearance: none;
}
.field input:focus,
.field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,150,90,0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: #b0b0c0; }
.field textarea { min-height: 130px; resize: vertical; }

/* iOS zoom fix */
@media (max-width: 768px) {
    .field input, .field textarea, .field select { font-size: 1rem; }
}

.form-note {
    font-size: 0.7rem;
    color: var(--subtle);
    text-align: center;
    letter-spacing: 0.02em;
    margin-top: -4px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 24px;
}

.success-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    color: var(--gold);
}
.success-icon svg { width: 100%; height: 100%; }

.form-success h3 {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.form-success p { color: var(--body); font-size: 0.9rem; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
#footer {
    background: var(--navy-dk);
    padding: 64px 0 52px;
    position: relative;
}

/* Gold shimmer line at top of footer */
.footer-glow {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--gold) 40%, var(--gold-lt) 60%, transparent 100%);
    opacity: 0.6;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-footer {
    height: 46px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-top nav {
    display: flex;
    gap: 28px;
}
.footer-top nav a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    transition: color var(--ease);
}
.footer-top nav a:hover { color: var(--gold-lt); }

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 900px;
}
.footer-legal p {
    font-size: 0.73rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.38);
}
.footer-legal p:first-child {
    color: rgba(255,255,255,0.62);
    margin-bottom: 4px;
    font-size: 0.8rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    :root { --pad: 36px; }
    .hero-panel  { padding-left: var(--pad); }
    .hero-scroll { left: var(--pad); }
    .about-text-col { padding-left: var(--pad); }
    .about-layout { grid-template-columns: 1fr 340px; }
    .service-grid  { grid-template-columns: repeat(2, 1fr); }
    .contact-grid  { gap: 56px; }
}

@media (max-width: 900px) {
    .about-layout { grid-template-columns: 1fr; }
    .about-image-col {
        position: relative;
        height: 360px;
        order: -1;
    }
    .about-text-col { padding-top: 72px; padding-bottom: 72px; }
    .about-img-frame { display: none; }
}

@media (max-width: 768px) {
    :root { --pad: 24px; }
    html { scroll-padding-top: 72px; }

    /* Navbar */
    .burger { display: flex; }
    .nav-inner { height: 72px; }
    .logo { height: 52px; }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--navy-dk);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 12px 16px 24px;
        gap: 2px;
        z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-link {
        padding: 13px 16px;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.82);
    }
    .nav-link.cta { margin-left: 0; margin-top: 10px; text-align: center; }
    .nav-link::after { display: none; }

    .lang-toggle { margin-left: auto; }

    /* Hero — full-bleed on mobile */
    #hero {
        display: block;
        position: relative;
        min-height: 100svh;
    }
    .hero-visual {
        position: absolute;
        inset: 0;
        height: 100%;
    }
    .hero-visual-overlay {
        background: linear-gradient(
            160deg,
            rgba(17,29,54,0.7) 0%,
            rgba(17,29,54,0.92) 55%,
            var(--navy-dk) 100%
        );
    }
    .hero-panel {
        position: relative;
        z-index: 1;
        background: transparent;
        min-height: 100svh;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    .hero-panel::before { display: none; }
    .hero-content { max-width: 100%; text-align: center; }
    .tagline { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-scroll { display: none; }

    /* Services */
    .service-grid { grid-template-columns: 1fr; }
    #services { padding: 72px 0; }
    .section-intro { margin-bottom: 44px; }

    /* About */
    .about-image-col { height: 300px; }
    .founders { grid-template-columns: 1fr; }
    .about-text-col {
        padding: 56px var(--pad);
    }

    /* Service cards — mobile */
    .card-num { font-size: 4.5rem; top: 2px; right: 14px; }
    .service-card { padding: 32px 28px 40px; }

    /* Contact */
    .contact-banner { height: 200px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 32px 28px; }
    #contact .wrap { padding-top: 48px; padding-bottom: 72px; }
    .contact-info > p { max-width: none; }

    /* Footer */
    .footer-top { flex-direction: column; align-items: flex-start; gap: 22px; }
    .footer-top nav { flex-wrap: wrap; gap: 12px 22px; }
    #footer { padding: 52px 0 44px; }
}

@media (max-width: 500px) {
    :root { --pad: 18px; }

    #hero h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .tagline { font-size: 0.92rem; }

    #services, #contact { padding: 52px 0; }
    .service-card { padding: 28px 22px 36px; }
    .card-num { font-size: 3.8rem; }
    .service-card h3 { font-size: 1.3rem; }
    .contact-form-wrap { padding: 24px 20px; }

    .footer-legal p { font-size: 0.68rem; }
}
