/* =========================================================
   Ubora Services Limited — Design System
   ========================================================= */

:root {
    /* Brand */
    --primary:        #0F766E;
    --primary-dark:   #115E59;
    --primary-darker: #134E4A;
    --primary-soft:   #CCFBF1;
    --primary-tint:   #F0FDFA;

    --accent:         #F59E0B;
    --accent-dark:    #D97706;
    --accent-soft:    #FEF3C7;

    /* Neutrals */
    --ink:        #0B1220;
    --ink-soft:   #1F2937;
    --body:       #334155;
    --muted:      #64748B;
    --line:       #E2E8F0;
    --line-soft:  #F1F5F9;
    --surface:    #F8FAFC;
    --white:      #FFFFFF;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
    --shadow-sm: 0 2px 6px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
    --shadow-md: 0 8px 24px -8px rgba(15,23,42,0.12), 0 4px 12px -4px rgba(15,23,42,0.06);
    --shadow-lg: 0 24px 48px -16px rgba(15,23,42,0.18), 0 12px 24px -8px rgba(15,23,42,0.08);
    --shadow-glow: 0 16px 40px -12px rgba(15,118,110,0.45);

    /* Radii */
    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 999px;

    /* Layout */
    --container: 1200px;
    --gutter: clamp(20px, 4vw, 48px);

    /* Type */
    --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Motion */
    --ease: cubic-bezier(.2, .8, .2, 1);
    --t-fast: 160ms;
    --t-mid: 280ms;
    --t-slow: 480ms;
}

/* =========================================================
   Base
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-width: 320px;
}

img, svg { display: block; max-width: 100%; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    margin: 0 0 .5em;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
}

p { margin: 0 0 1em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.skip-link {
    position: absolute;
    left: -10000px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 12px 16px;
    border-radius: 0 0 8px 0;
    z-index: 999;
}
.skip-link:focus { left: 0; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent-dark); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 76px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    flex: 0 0 auto;
}
.brand-mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
}
.brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    font-family: var(--font-display);
}
.brand-text strong {
    font-size: 25px;
    color: var(--ink);
    letter-spacing: -0.025em;
    font-weight: 800;
    line-height: 1.02;
}
.brand-text em {
    font-style: normal;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 700;
}
.brand--light .brand-text strong { color: #fff; }
.brand--light .brand-text em { color: rgba(255,255,255,0.6); }

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}
.site-nav a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 14px;
    border-radius: var(--r-pill);
    transition: all var(--t-fast) var(--ease);
}
.site-nav a:hover {
    color: var(--primary);
    background: var(--primary-tint);
}
.site-nav a.active {
    color: var(--primary);
    background: var(--primary-tint);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 14px;
}
.header-phone:hover { color: var(--primary); }

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all var(--t-fast) var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 20px 40px -12px rgba(15,118,110,0.5);
}
.btn-accent {
    background: var(--accent);
    color: #2A1A03;
}
.btn-accent:hover { background: var(--accent-dark); color: #2A1A03; transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-ghost:hover {
    background: var(--surface);
    color: var(--primary);
    border-color: var(--primary);
}
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* =========================================================
   Eyebrow / pills
   ========================================================= */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 16px;
}
.eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(245,158,11,0.18);
}
.eyebrow-light {
    color: var(--accent);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-display);
}
.link-arrow svg { transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 128px);
    background: linear-gradient(180deg, var(--primary-tint) 0%, #fff 70%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}
.blob-1 {
    width: 520px; height: 520px;
    top: -160px; left: -80px;
    background: radial-gradient(circle, #5EEAD4 0%, transparent 70%);
}
.blob-2 {
    width: 460px; height: 460px;
    bottom: -120px; right: -60px;
    background: radial-gradient(circle, #FCD34D 0%, transparent 70%);
    opacity: 0.3;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,118,110,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,118,110,0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(38px, 5.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
    color: var(--ink);
}
.lede {
    font-size: clamp(17px, 1.5vw, 19px);
    color: var(--body);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-badges {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
}
.hero-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
}
.hero-badges svg {
    width: 18px; height: 18px;
    color: var(--primary);
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    margin-left: auto;
}
.hero-card {
    position: absolute;
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    overflow: hidden;
}
.hero-card--main {
    inset: 0;
    border-radius: var(--r-xl);
    display: flex;
    flex-direction: column;
}
.hero-card-img {
    flex: 1;
    overflow: hidden;
    background: var(--primary-dark);
}
.hero-card-img svg { width: 100%; height: 100%; }
.hero-card-info {
    padding: 18px 22px;
    background: #fff;
    border-top: 1px solid var(--line);
}
.hero-card-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 4px;
}
.hero-card-value {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.03em;
}


/* =========================================================
   Trust bar
   ========================================================= */
.trust-bar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
    background: #fff;
}
.trust-bar-label {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    font-weight: 600;
}
.trust-logos {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 28px 48px;
}
.trust-logos li {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink-soft);
    font-size: 16px;
    letter-spacing: -0.01em;
    opacity: 0.7;
    transition: opacity var(--t-fast) var(--ease);
}
.trust-logos li:hover { opacity: 1; color: var(--primary); }

/* =========================================================
   Sections
   ========================================================= */
.section {
    padding: clamp(64px, 9vw, 120px) 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(40px, 6vw, 64px);
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 16px;
}
.section-head p {
    font-size: clamp(16px, 1.4vw, 18px);
    color: var(--body);
}

.section-foot {
    text-align: center;
    margin-top: clamp(40px, 5vw, 56px);
}

/* Division cards */
.division-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: clamp(48px, 6vw, 72px);
}
.division-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--t-mid) var(--ease);
}
.division-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(15,118,110,0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--t-mid) var(--ease);
}
.division-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.division-card:hover::after { opacity: 1; }
.division-card--accent::after {
    background: radial-gradient(circle at 100% 0%, rgba(245,158,11,0.10) 0%, transparent 60%);
}
.division-card--accent:hover {
    border-color: var(--accent);
}

.division-tag {
    display: inline-flex;
    align-items: center;
    background: var(--surface);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
}
.division-card h3 {
    font-size: clamp(24px, 2.4vw, 30px);
    margin-bottom: 12px;
}
.division-list {
    list-style: none;
    margin: 24px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.division-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
}
.division-list .bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}
.division-card--accent .bullet { background: var(--accent); }

/* Service cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 24px 22px;
    transition: all var(--t-mid) var(--ease);
    cursor: default;
}
.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all var(--t-mid) var(--ease);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}
.service-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--ink);
}
.service-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* =========================================================
   Why us (dark section)
   ========================================================= */
.section-dark {
    background: linear-gradient(135deg, var(--primary-darker) 0%, #042F2A 100%);
    color: rgba(255,255,255,0.85);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(245,158,11,0.10) 0%, transparent 50%),
        radial-gradient(circle at 0% 80%, rgba(20,184,166,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.75); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.why-copy h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 20px;
}
.why-copy > p {
    font-size: 17px;
    max-width: 480px;
    margin-bottom: 40px;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.why-stats > div {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 16px;
}
.why-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}
.why-stats span {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.why-list {
    display: grid;
    gap: 12px;
}
.why-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-md);
    padding: 22px 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 18px;
    align-items: flex-start;
    transition: all var(--t-mid) var(--ease);
}
.why-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(245,158,11,0.4);
    transform: translateX(4px);
}
.why-num {
    grid-row: span 2;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245,158,11,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-item h4 { margin-bottom: 4px; font-size: 18px; }
.why-item p { font-size: 14px; margin: 0; }

/* =========================================================
   Clients grid
   ========================================================= */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.client-tile {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 22px 20px;
    transition: all var(--t-mid) var(--ease);
}
.client-tile:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.client-tile strong {
    display: block;
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 16px;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.client-tile span {
    font-size: 13px;
    color: var(--muted);
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
    background: var(--ink);
    color: #fff;
    padding: clamp(48px, 7vw, 88px) 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(15,118,110,0.45) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(245,158,11,0.20) 0%, transparent 45%);
}
.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}
.cta-band h2 {
    color: #fff;
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 10px;
}
.cta-band p { color: rgba(255,255,255,0.75); margin: 0; font-size: 17px; }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: #0A1726;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1.4fr;
    gap: 48px;
}
.footer-col h5 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-weight: 700;
}
.footer-col ul {
    list-style: none;
    margin: 0; padding: 0;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer-col a:hover { color: #fff; }
.footer-brand p {
    font-size: 14px;
    max-width: 340px;
    margin-top: 16px;
}
.footer-col address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.65);
}
.footer-col address strong { color: #fff; font-family: var(--font-display); }
.footer-mail {
    display: inline-block;
    margin-top: 4px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}
.footer-mail:hover { color: var(--accent); text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 48px;
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* =========================================================
   Services page
   ========================================================= */
.page-hero {
    padding: 64px 0 48px;
    background: linear-gradient(180deg, var(--primary-tint) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15,118,110,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,118,110,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 60% 80% at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 30%, #000 30%, transparent 75%);
}
.page-hero-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 0;
}
.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 16px;
}
.page-hero p {
    font-size: clamp(17px, 1.5vw, 19px);
    color: var(--body);
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 20px;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }

/* Service detail blocks */
.service-blocks {
    display: grid;
    gap: clamp(48px, 7vw, 88px);
}
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.service-block:nth-child(even) .service-block-media { order: 2; }
.service-block-copy h2 {
    font-size: clamp(28px, 3.4vw, 38px);
    margin-bottom: 16px;
}
.service-block-copy ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}
.service-block-copy ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
}
.service-block-copy ul li svg {
    width: 18px; height: 18px;
    color: var(--primary);
    margin-top: 1px;
    flex-shrink: 0;
}
.service-block-media {
    aspect-ratio: 4 / 3;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--primary-tint);
    position: relative;
    box-shadow: var(--shadow-md);
}
.service-block-media svg {
    width: 100%; height: 100%;
}
.service-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-tint);
    color: var(--primary-darker);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================================================
   About page
   ========================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.about-image {
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    position: relative;
    box-shadow: var(--shadow-lg);
}
.about-image svg { width: 100%; height: 100%; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 24px;
    transition: all var(--t-mid) var(--ease);
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.value-card .value-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.value-card h4 { font-size: 17px; margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* Mission / vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.mv-card {
    background: linear-gradient(135deg, var(--primary-tint) 0%, #fff 100%);
    border: 1px solid var(--primary-soft);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.mv-card .mv-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.mv-card.mv-mission {
    background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 100%);
    border-color: rgba(245,158,11,0.2);
}
.mv-card.mv-mission .mv-icon { background: var(--accent); color: #2A1A03; }
.mv-card h3 { font-size: 24px; margin-bottom: 12px; }
.mv-card p { color: var(--ink-soft); margin: 0; }

/* =========================================================
   Clients page
   ========================================================= */
.industry-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
}
.industry-filter button {
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all var(--t-fast) var(--ease);
}
.industry-filter button:hover { border-color: var(--primary); color: var(--primary); }
.industry-filter button.is-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.client-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 28px;
    transition: all var(--t-mid) var(--ease);
}
.client-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.client-card .client-mono {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.client-card h4 {
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--ink);
}
.client-card .client-meta {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}
.client-card .client-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.client-card .client-services span {
    font-size: 11px;
    color: var(--ink-soft);
    background: var(--surface);
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-weight: 500;
}

.client-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: flex-start;
}
.contact-info { display: grid; gap: 20px; }
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px;
}
.contact-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 16px;
}
.contact-card h3 .pin {
    width: 28px;
    height: 28px;
    border-radius: var(--r-xs);
    background: var(--primary-tint);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-meta {
    display: grid;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-soft);
}
.contact-meta a { color: var(--ink-soft); font-weight: 500; }
.contact-meta a:hover { color: var(--primary); }
.contact-meta-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.contact-meta-row svg {
    width: 18px; height: 18px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form > p { color: var(--muted); margin-bottom: 28px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all var(--t-fast) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15,118,110,0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }

.form-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.form-success {
    display: none;
    background: var(--primary-tint);
    border: 1px solid var(--primary-soft);
    color: var(--primary-darker);
    padding: 18px;
    border-radius: var(--r-sm);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}
.form-success.is-visible { display: block; }

.form-error {
    display: none;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
    padding: 18px;
    border-radius: var(--r-sm);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}
.form-error.is-visible { display: block; }
.form-error a { color: #991B1B; font-weight: 700; text-decoration: underline; }
.form-error a:hover { color: #7F1D1D; }

.form-submit[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* =========================================================
   Photos
   ========================================================= */
.photo-frame {
    position: relative;
    overflow: hidden;
    background: var(--primary-tint);
    border-radius: var(--r-xl);
}
.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-block-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Team / staff band on home */
.team-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}
.team-photo {
    aspect-ratio: 4 / 3;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--primary-tint);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-copy .eyebrow { justify-content: flex-start; }

/* =========================================================
   Gallery (home — "Our work in action")
   ========================================================= */
.gallery-section {
    background:
        radial-gradient(circle at 20% 10%, var(--primary-tint) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(254,243,199,0.5) 0%, transparent 50%),
        var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
}
.gallery-card {
    position: relative;
    margin: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--ink);
    box-shadow: var(--shadow-md);
    transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
    min-height: 280px;
}
.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.gallery-card--wide {
    grid-row: span 2;
}
.gallery-img {
    position: absolute;
    inset: 0;
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow) var(--ease);
}
.gallery-card:hover .gallery-img img { transform: scale(1.04); }
.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11,18,32,0.78) 100%);
    pointer-events: none;
}
.gallery-card figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px 22px;
    color: #fff;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.gallery-card strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.gallery-card .gallery-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.gallery-tag {
    display: inline-flex;
    align-self: flex-start;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    border: 1px solid rgba(255,255,255,0.2);
}
.gallery-card--wide strong { font-size: 19px; }

/* About — team photo treatment */
.about-image--photo {
    aspect-ratio: 4 / 5;
    position: relative;
}
.about-image--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 70%;
    display: block;
}
.about-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: rgba(15,118,110,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 18px 22px;
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: var(--shadow-lg);
}
.about-badge strong {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--accent);
    line-height: 1;
}
.about-badge span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.95);
    line-height: 1.2;
}

/* =========================================================
   Coverage / geography
   ========================================================= */
.coverage {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.coverage-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.coverage-copy h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.county-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.county-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-pill);
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--ink-soft);
    transition: all var(--t-fast) var(--ease);
}
.county-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xs);
}
.county-chip svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

/* =========================================================
   Animations
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { max-width: 420px; margin: 0 auto; aspect-ratio: 5 / 4; }

    .division-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-actions { justify-content: flex-start; }
    .about-grid,
    .contact-grid,
    .service-block { grid-template-columns: 1fr; }
    .service-block:nth-child(even) .service-block-media { order: 0; }
    .client-deck { grid-template-columns: repeat(2, 1fr); }

    .team-band,
    .coverage-inner { grid-template-columns: 1fr; }
    .county-grid { grid-template-columns: repeat(4, 1fr); }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-card--wide { grid-row: auto; grid-column: span 2; min-height: 320px; }
}

@media (max-width: 760px) {
    .header-inner { gap: 12px; min-height: 68px; }
    .brand-mark { width: 40px; height: 40px; }
    .brand-text strong { font-size: 21px; }
    .brand-text em { font-size: 10px; letter-spacing: 0.14em; }

    .site-nav {
        position: fixed;
        inset: 68px 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        gap: 0;
        padding: 16px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--t-mid) var(--ease);
        margin: 0;
        max-height: calc(100dvh - 68px);
        overflow-y: auto;
    }
    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .site-nav a {
        padding: 14px 16px;
        border-radius: var(--r-sm);
        font-size: 16px;
        text-align: left;
    }
    .header-phone { display: none; }
    .menu-toggle { display: flex; }
    .header-actions .btn { display: none; }
    /* site-nav is position:fixed on mobile, so its margin-left:auto no
       longer pushes the actions over — anchor the hamburger to the right */
    .header-actions { margin-left: auto; }

    .division-list,
    .service-block-copy ul,
    .form-row,
    .mv-grid,
    .values-grid { grid-template-columns: 1fr; }

    .division-card { padding: 28px 22px; }
    .contact-form { padding: 28px 22px; }

    .service-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .client-deck { grid-template-columns: 1fr; }
    .why-stats { grid-template-columns: 1fr 1fr; }
    .county-grid { grid-template-columns: repeat(2, 1fr); }

    .hero { padding: 32px 0 56px; }
    .hero-copy h1 { font-size: 34px; line-height: 1.1; }
    .hero-cta { gap: 10px; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-badges { gap: 12px 20px; }
    .hero-visual { max-width: 360px; aspect-ratio: 4 / 3; }
    .hero-card-info { padding: 14px 18px; }
    .hero-card-value { font-size: 26px; }

    .trust-logos { gap: 16px 28px; }
    .trust-logos li { font-size: 14px; }

    .cta-inner { gap: 24px; }
    .cta-actions { width: 100%; }
    .cta-actions .btn { flex: 1 1 auto; justify-content: center; }

    .industry-filter button { font-size: 13px; padding: 8px 14px; }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .gallery-card--wide { grid-column: auto; }
    .gallery-card { min-height: 240px; }
    .gallery-card--wide { min-height: 280px; }

    .about-image--photo { aspect-ratio: 4 / 5; }
    .about-badge {
        left: 14px;
        bottom: 14px;
        padding: 14px 16px;
        gap: 10px;
    }
    .about-badge strong { font-size: 34px; }
    .about-badge span { font-size: 11px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .clients-grid { grid-template-columns: 1fr; }
    .brand-text em { display: none; }
    .brand-text strong { font-size: 19px; }
    .brand-mark { width: 36px; height: 36px; }
    .header-inner { gap: 8px; min-height: 60px; }

    .hero-copy h1 { font-size: 30px; }
    .lede { font-size: 16px; }
    .section-head h2 { font-size: 26px; }
    .section { padding: 56px 0; }

    .why-stats { grid-template-columns: 1fr; }
    .why-stats > div { display: flex; align-items: baseline; gap: 12px; }
    .why-stats strong { font-size: 30px; }

    .hero-badges li { font-size: 13px; }
    .hero-visual { max-width: 320px; }

    .division-card { padding: 24px 20px; }
    .division-card h3 { font-size: 22px; }
    .service-block-copy h2 { font-size: 24px; }

    .cta-inner { padding: 0; }
    .cta-band h2 { font-size: 24px; }

    .footer-col h5 { font-size: 13px; }
}
