/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables ── */
:root {
    --navy: #003688;
    --blue: #0072CE;
    --blue-light: #e8f1fb;
    --blue-pale: #f3f7fc;
    --slate: #1a2a3a;
    --grey-700: #374151;
    --grey-500: #6b7280;
    --grey-300: #d1d5db;
    --grey-100: #f3f4f6;
    --white: #ffffff;
    --bg: #fafbfd;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-width: 1200px;
    --section-pad: clamp(4rem, 8vw, 7rem);
}

/* ── Dark Mode Variables ── */
@media (prefers-color-scheme: dark) {
    :root:not(.light) {
        --navy: #4d9fff;
        --blue: #3da1ff;
        --blue-light: #0d2240;
        --blue-pale: #0f1923;
        --slate: #e8edf2;
        --grey-700: #c8d0da;
        --grey-500: #8a95a5;
        --grey-300: #2a3a4a;
        --grey-100: #1a2a3a;
        --white: #162230;
        --bg: #0f1923;
    }
}

html.dark {
    --navy: #4d9fff;
    --blue: #3da1ff;
    --blue-light: #0d2240;
    --blue-pale: #0f1923;
    --slate: #e8edf2;
    --grey-700: #c8d0da;
    --grey-500: #8a95a5;
    --grey-300: #2a3a4a;
    --grey-100: #1a2a3a;
    --white: #162230;
    --bg: #0f1923;
}

/* ── Dark Mode Hardcoded Overrides ── */
@media (prefers-color-scheme: dark) {
    :root:not(.light) .nav {
        background: var(--bg);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom-color: transparent;
    }
    :root:not(.light) .nav.scrolled {
        box-shadow: 0 1px 24px rgba(0, 0, 0, 0.3);
    }
    :root:not(.light) .nav-logo img {
        filter: brightness(0) invert(1);
    }
    :root:not(.light) .nav-toggle span {
        background: var(--slate);
    }
    :root:not(.light) .hero-bg::before {
        border-color: rgba(77, 159, 255, 0.06);
    }
    :root:not(.light) .hero-bg::after {
        border-color: rgba(77, 159, 255, 0.04);
    }
    :root:not(.light) .hero-geometric {
        border-color: rgba(61, 161, 255, 0.06);
    }
    :root:not(.light) .page-header .hero-bg::before {
        border-color: rgba(77, 159, 255, 0.06);
    }
    :root:not(.light) .page-header .hero-bg::after {
        border-color: rgba(77, 159, 255, 0.04);
    }
    :root:not(.light) .services::before,
    :root:not(.light) .contact::before {
        background: linear-gradient(90deg, transparent, rgba(77, 159, 255, 0.1), transparent);
    }
    :root:not(.light) .service-card {
        border-color: rgba(77, 159, 255, 0.08);
    }
    :root:not(.light) .service-card::after {
        background: var(--navy);
    }
    :root:not(.light) .service-card:hover {
        border-color: rgba(77, 159, 255, 0.15);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }
    :root:not(.light) .stat-card {
        border-color: rgba(77, 159, 255, 0.08);
    }
    :root:not(.light) .btn-primary:hover {
        box-shadow: 0 8px 24px rgba(77, 159, 255, 0.3);
    }
    :root:not(.light) .btn-outline {
        border-color: rgba(77, 159, 255, 0.25);
    }
    :root:not(.light) .btn-outline:hover {
        border-color: var(--navy);
        background: rgba(77, 159, 255, 0.08);
    }
    :root:not(.light) .contact-method {
        border-color: rgba(77, 159, 255, 0.08);
    }
    :root:not(.light) .contact-method:hover {
        border-color: rgba(77, 159, 255, 0.18);
        background: rgba(77, 159, 255, 0.05);
    }
    :root:not(.light) .contact-visual {
        border-color: rgba(77, 159, 255, 0.08);
    }
    :root:not(.light) .contact-visual::before {
        background: linear-gradient(180deg, var(--navy), var(--blue));
    }
    :root:not(.light) .nav-links .nav-cta,
    :root:not(.light) .nav-links .nav-cta.active {
        color: #ffffff;
    }
    :root:not(.light) .btn-primary {
        color: #ffffff;
    }
    :root:not(.light) .footer {
        background: #0a1018;
    }
    :root:not(.light) .nav-links.open {
        background: var(--white);
        border-bottom-color: var(--grey-300);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }
}

html.dark .nav {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
}
html.dark .nav.scrolled {
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.3);
}
html.dark .nav-logo img {
    filter: brightness(0) invert(1);
}
html.dark .nav-toggle span {
    background: var(--slate);
}
html.dark .hero-bg::before {
    border-color: rgba(77, 159, 255, 0.06);
}
html.dark .hero-bg::after {
    border-color: rgba(77, 159, 255, 0.04);
}
html.dark .hero-geometric {
    border-color: rgba(61, 161, 255, 0.06);
}
html.dark .page-header .hero-bg::before {
    border-color: rgba(77, 159, 255, 0.06);
}
html.dark .page-header .hero-bg::after {
    border-color: rgba(77, 159, 255, 0.04);
}
html.dark .services::before,
html.dark .contact::before {
    background: linear-gradient(90deg, transparent, rgba(77, 159, 255, 0.1), transparent);
}
html.dark .service-card {
    border-color: rgba(77, 159, 255, 0.08);
}
html.dark .service-card::after {
    background: var(--navy);
}
html.dark .service-card:hover {
    border-color: rgba(77, 159, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
html.dark .stat-card {
    border-color: rgba(77, 159, 255, 0.08);
}
html.dark .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(77, 159, 255, 0.3);
}
html.dark .btn-outline {
    border-color: rgba(77, 159, 255, 0.25);
}
html.dark .btn-outline:hover {
    border-color: var(--navy);
    background: rgba(77, 159, 255, 0.08);
}
html.dark .contact-method {
    border-color: rgba(77, 159, 255, 0.08);
}
html.dark .contact-method:hover {
    border-color: rgba(77, 159, 255, 0.18);
    background: rgba(77, 159, 255, 0.05);
}
html.dark .contact-visual {
    border-color: rgba(77, 159, 255, 0.08);
}
html.dark .contact-visual::before {
    background: linear-gradient(180deg, var(--navy), var(--blue));
}
html.dark .nav-links .nav-cta,
html.dark .nav-links .nav-cta.active {
    color: #ffffff;
}
html.dark .btn-primary {
    color: #ffffff;
}
html.dark .footer {
    background: #0a1018;
}
html.dark .nav-links.open {
    background: var(--white);
    border-bottom-color: var(--grey-300);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--grey-700);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 251, 253, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 54, 136, 0.06);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 24px rgba(0, 54, 136, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--grey-500);
    transition: color 0.25s ease;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
}

.nav-links .nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.nav-links .nav-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
}

.nav-links .nav-cta.active {
    color: var(--white);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: calc(72px + var(--section-pad)) 0 var(--section-pad);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(135deg, var(--bg) 0%, var(--blue-pale) 50%, var(--bg) 100%);
}

/* Geometric accent lines echoing the angular Baker logo */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    border: 1px solid rgba(0, 54, 136, 0.04);
    transform: rotate(-12deg);
    border-radius: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 120%;
    border: 1px solid rgba(0, 54, 136, 0.03);
    transform: rotate(-8deg);
}

.hero-geometric {
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 40%;
    height: 60%;
    border-top: 1px solid rgba(0, 114, 206, 0.06);
    border-right: 1px solid rgba(0, 114, 206, 0.06);
    transform: rotate(15deg);
}

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

.hero-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--blue);
    display: block;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--slate);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--navy);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--grey-500);
    max-width: 560px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 54, 136, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(0, 54, 136, 0.2);
}

.btn-outline:hover {
    border-color: var(--navy);
    background: rgba(0, 54, 136, 0.03);
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ── Page Header (for inner pages) ── */
.page-header {
    position: relative;
    padding: calc(72px + 3rem) 0 3rem;
    overflow: hidden;
}

.page-header .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(135deg, var(--bg) 0%, var(--blue-pale) 50%, var(--bg) 100%);
}

.page-header .hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    border: 1px solid rgba(0, 54, 136, 0.04);
    transform: rotate(-12deg);
    border-radius: 0;
}

.page-header .hero-bg::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 120%;
    border: 1px solid rgba(0, 54, 136, 0.03);
    transform: rotate(-8deg);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.page-header-content .section-label {
    text-align: left;
}

.page-header-content .section-title {
    text-align: left;
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-header-content .hero-description {
    margin-bottom: 0;
}

/* ── Sections ── */
.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--slate);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--grey-500);
    max-width: 580px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.7;
}

/* ── Services ── */
.services {
    padding: var(--section-pad) 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 54, 136, 0.08), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--bg);
    border: 1px solid rgba(0, 54, 136, 0.05);
    border-radius: 3px;
    transition: all 0.35s ease;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    border-color: rgba(0, 54, 136, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 54, 136, 0.06);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    border-radius: 3px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--navy);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.925rem;
    line-height: 1.7;
    color: var(--grey-500);
    font-weight: 300;
}

/* ── About ── */
.about {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--grey-500);
    font-weight: 300;
}

.about-text + .about-text {
    margin-top: 1.25rem;
}

.about-visual {
    position: relative;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem 1.75rem;
    background: var(--white);
    border: 1px solid rgba(0, 54, 136, 0.06);
    border-radius: 3px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-500);
}

/* ── Contact ── */
.contact {
    padding: var(--section-pad) 0;
    background: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 54, 136, 0.08), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.contact-content .section-label,
.contact-content .section-title {
    text-align: left;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--grey-500);
    font-weight: 300;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    border: 1px solid rgba(0, 54, 136, 0.05);
    border-radius: 3px;
    transition: all 0.25s ease;
}

.contact-method:hover {
    border-color: rgba(0, 54, 136, 0.15);
    background: var(--blue-pale);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    border-radius: 3px;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 20px;
    height: 20px;
    color: var(--navy);
}

.contact-method-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 0.15rem;
}

.contact-method-value {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
}

.contact-visual {
    position: relative;
    padding: 3rem;
    background: var(--bg);
    border: 1px solid rgba(0, 54, 136, 0.05);
    border-radius: 3px;
}

.contact-visual-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--slate);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.contact-visual-sub {
    font-size: 0.95rem;
    color: var(--grey-500);
    font-weight: 300;
    line-height: 1.7;
}

.contact-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--navy), var(--blue));
    border-radius: 3px 0 0 3px;
}

/* ── Footer ── */
.footer {
    padding: 2.5rem 0;
    background: var(--slate);
    color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer p {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.footer-logo img {
    height: 24px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.25s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    cursor: pointer;
    transition: background 0.25s ease;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.theme-icon { display: none; }

/* Auto mode (no class on html, or neither .light nor .dark) */
html:not(.light):not(.dark) .theme-icon--auto { display: block; }

/* Light forced */
html.light .theme-icon--light { display: block; }

/* Dark forced */
html.dark .theme-icon--dark { display: block; }

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--grey-100);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        min-height: auto;
        padding-top: calc(72px + 3rem);
        padding-bottom: 3rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .service-card {
        padding: 2rem 1.75rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .nav-links a {
        padding: 0.75rem 0;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .btn {
        min-height: 48px;
        padding: 0.85rem 2rem;
    }

    .contact-method {
        min-height: 48px;
    }

    .footer-social a {
        width: 48px;
        height: 48px;
    }

    .theme-toggle {
        width: 48px;
        height: 48px;
    }
}