/* ═══════════════════════════════════════════════════════════
   Paul's Precision Paint & Body – Design System
   Color palette extracted from the original localsearch site
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
    /* Primary palette (from original site) */
    --clr-dark: #222222;
    --clr-dark-mid: #333333;
    --clr-dark-soft: #474747;
    --clr-text: #313131;
    --clr-text-muted: #6f6f6f;
    --clr-light: #ffffff;
    --clr-cream: #eef6fc;

    /* Accent – blue from the original site */
    --clr-accent: #00adef;
    --clr-accent-hover: #0090cc;
    --clr-accent-soft: #4dc4f5;

    /* Functional */
    --clr-border: #e2e2e2;
    --clr-bg: #f9f9f9;

    /* Typography */
    --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Layout */
    --max-width: 1200px;
    --radius: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--clr-text);
    background: var(--clr-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    border: 0;
}

a {
    color: var(--clr-accent-hover);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--clr-accent);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ── Utility: Container ── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.section {
    padding-block: var(--space-2xl);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: var(--space-xs);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn-accent {
    background: var(--clr-accent);
    color: var(--clr-light);
    border-color: var(--clr-accent);
}

.btn-accent:hover {
    background: var(--clr-accent-hover);
    border-color: var(--clr-accent-hover);
    color: var(--clr-light);
}

.btn-dark {
    background: var(--clr-dark);
    color: var(--clr-light);
    border-color: var(--clr-dark);
}

.btn-dark:hover {
    background: var(--clr-dark-mid);
    border-color: var(--clr-dark-mid);
    color: var(--clr-light);
}

.btn-outline {
    background: transparent;
    color: var(--clr-light);
    border-color: var(--clr-light);
}

.btn-outline:hover {
    background: var(--clr-light);
    color: var(--clr-dark);
}

.btn-outline-light {
    background: transparent;
    color: var(--clr-light);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-light);
    color: var(--clr-light);
}

/* ══════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(34, 34, 34, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(34, 34, 34, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin-inline: auto;
    padding: var(--space-sm) var(--space-md);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
}

.logo-paul {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--clr-accent);
}

.logo-precision {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--clr-accent);
}

.nav-cta .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Animated X when open */
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile nav overlay/backdrop */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-mid) 50%, var(--clr-dark-soft) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(0, 173, 239, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 173, 239, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 6rem;
    padding-bottom: var(--space-2xl);
    max-width: 750px;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--clr-light);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-mid) 100%);
    padding: 8rem 0 var(--space-xl);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--clr-light);
    margin-bottom: var(--space-xs);
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-inline: auto;
}

/* ══════════════════════════════════════════
   CARDS (services preview)
   ══════════════════════════════════════════ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.card {
    background: var(--clr-light);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--clr-accent);
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-cream);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
    color: var(--clr-dark);
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: var(--space-xs);
}

.card p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   WHY US / STATS
   ══════════════════════════════════════════ */
.section-dark {
    background: var(--clr-dark);
    color: var(--clr-light);
}

.section-dark .section-header h2 {
    color: var(--clr-light);
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--clr-accent);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--clr-dark-mid) 0%, var(--clr-dark) 100%);
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: var(--space-xs);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ══════════════════════════════════════════
   LOCATION
   ══════════════════════════════════════════ */
.location {
    background: var(--clr-bg);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.location-map iframe {
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.location-info h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: var(--space-md);
}

.info-row {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    align-items: flex-start;
}

.info-row svg {
    flex-shrink: 0;
    color: var(--clr-accent-hover);
    margin-top: 2px;
}

.info-row strong {
    display: block;
    font-weight: 600;
    color: var(--clr-dark);
    margin-bottom: 0.15rem;
}

.info-row a {
    color: var(--clr-dark);
    font-weight: 500;
}

.info-row a:hover {
    color: var(--clr-accent-hover);
}

/* ══════════════════════════════════════════
   SERVICES DETAIL PAGE
   ══════════════════════════════════════════ */
.service-block {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--clr-border);
}

.service-block:last-child {
    border-bottom: none;
}

.service-content {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.service-icon-lg {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-cream);
    border-radius: var(--radius-lg);
    color: var(--clr-dark);
}

.service-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: var(--space-xs);
}

.service-content p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.6rem;
    margin-top: var(--space-sm);
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--clr-text);
}

.service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.about-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: var(--space-md);
}

.about-text p {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.value-card {
    background: var(--clr-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--clr-border);
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-cream);
    border-radius: var(--radius);
    color: var(--clr-dark);
    margin-bottom: var(--space-sm);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 0.35rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info h2,
.contact-form-wrap h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-dark);
    margin-bottom: var(--space-xs);
}

.contact-info>p,
.contact-form-wrap>p {
    color: var(--clr-text-muted);
    margin-bottom: var(--space-lg);
}

.contact-details {
    margin-bottom: var(--space-lg);
}

.contact-map iframe {
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--clr-text);
    background: var(--clr-light);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23313131' d='M6 8.825a.5.5 0 0 1-.354-.146l-4-4a.5.5 0 0 1 .708-.708L6 7.617l3.646-3.646a.5.5 0 0 1 .708.708l-4 4A.5.5 0 0 1 6 8.825z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
    background: var(--clr-dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
}

.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-accent);
    margin-bottom: var(--space-sm);
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--clr-accent);
}

.footer-col address p {
    margin-bottom: var(--space-xs);
}

.footer-col address a {
    color: var(--clr-accent);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
}

.footer-bottom p {
    font-size: 0.85rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 980px) {

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

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

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

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

    .cta-actions {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding-inline: var(--space-sm);
    }

    .section {
        padding-block: var(--space-xl);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 80vw);
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        background: var(--clr-dark);
        padding: 5rem var(--space-md) var(--space-lg);
        gap: 0.25rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.05rem;
        padding: 0.85rem var(--space-sm);
        display: block;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-cta {
        margin-top: var(--space-sm);
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
        min-height: 48px;
    }

    .hero {
        min-height: 80vh;
        min-height: 80dvh;
    }

    .hero-content {
        padding-top: 5rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-sub {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        min-height: 48px;
    }

    .section-header {
        margin-bottom: var(--space-lg);
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .card {
        padding: var(--space-md);
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

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

    .service-content {
        flex-direction: column;
    }

    .service-icon-lg {
        width: 64px;
        height: 64px;
    }

    .service-block {
        padding: var(--space-lg) 0;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .cta-text h2 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .location-map iframe,
    .contact-map iframe {
        height: 250px;
    }

    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    /* Ensure all interactive elements meet 44px touch target */
    .btn {
        min-height: 44px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 1rem;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding-inline: 0.75rem;
    }

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

    .page-hero {
        padding: 6rem 0 var(--space-lg);
    }

    .page-hero h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .hero {
        min-height: 85vh;
        min-height: 85dvh;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hero-tagline {
        font-size: 0.75rem;
    }

    .nav-container {
        padding: var(--space-xs) 0.75rem;
    }

    .logo-paul {
        font-size: 1.15rem;
    }

    .logo-precision {
        font-size: 0.65rem;
    }

    .contact-details .info-row {
        flex-direction: row;
    }

    .value-card {
        padding: var(--space-sm);
    }
}