/* File: assets/css/style.css */

/* ==========================================================================
   DESIGN TOKENS
   Ossemotor Group — a conglomerate holding company. The design language is
   "institutional trust with an industrial pulse": deep navy + ink for
   authority, a crimson accent lifted from the parent shield's crown, and a
   warm brass/gold line reserved for premium moments (dividers, CTA
   underlines). Each subsidiary keeps its own accent (set via [data-theme])
   layered on the same structural system, so the group reads as one house
   with four distinct departments — not four unrelated templates.
   ========================================================================== */

:root {
    --ink: #0B1626;
    --navy: #0F2A52;
    --navy-deep: #0A1D3D;
    --paper: #F6F3EC;
    --paper-dim: #EDE8DC;
    --line: #DCD5C4;
    --crimson: #C8202B;
    --brass: #B8923F;
    --white: #FFFFFF;
    --ink-soft: rgba(11, 22, 38, 0.65);
    --ink-faint: rgba(11, 22, 38, 0.42);

    --font-display: "Fraunces", "Georgia", serif;
    --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

    --accent: var(--crimson);
    --theme: var(--navy);

    --container: 1180px;
    --radius: 3px;
    --radius-lg: 14px;
    --radius-img: 12px;
    --shadow-soft: 0 18px 40px -22px rgba(10, 20, 40, 0.35);
}

/* Subsidiary theme overrides — applied via <body data-theme="wolfguard"> etc. */
body[data-theme="wolfguard"]     { --theme: #0F2A52; --accent: #C81E1E; }
body[data-theme="health"]        { --theme: #1F7A45; --accent: #C8202B; }
body[data-theme="construction"]  { --theme: #1B3B8C; --accent: #E8541E; }
body[data-theme="oilgas"]        { --theme: #0B4C8C; --accent: #E8791E; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.12;
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
}

p { margin: 0 0 1em; max-width: 62ch; color: var(--ink-soft); }

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

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   TOPBAR + HEADER
   ========================================================================== */

.topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contact a { color: rgba(255,255,255,0.85); }
.topbar-contact a:hover { color: var(--white); }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social a { color: rgba(255,255,255,0.75); }
.topbar-social a:hover { color: var(--white); }
.topbar-social svg { width: 15px; height: 15px; display: block; }

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 54px; width: auto; max-width: 260px; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.main-nav a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-soft);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); border-color: var(--accent); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14.5px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--theme); color: var(--white); }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }

.nav-toggle { display: none; }

/* ==========================================================================
   HERO — MAIN SITE
   ========================================================================== */

.hero-group {
    position: relative;
    background-color: var(--ink);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
}
/* Legibility wash over the hero photograph: heavy on the left where the
   headline sits, opening up on the right so the image reads through. */
.hero-group::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(200,32,43,0.22), transparent 42%),
        radial-gradient(circle at 8% 92%, rgba(184,146,63,0.18), transparent 40%),
        linear-gradient(100deg, rgba(7,15,28,0.96) 0%, rgba(7,15,28,0.90) 32%, rgba(7,15,28,0.70) 60%, rgba(7,15,28,0.48) 100%);
}
.hero-group .container {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    min-height: 62vh;
    padding-top: 110px;
    padding-bottom: 110px;
}
.hero-copy { max-width: 640px; }
.hero-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--brass);
    font-weight: 700;
    margin-bottom: 18px;
}
.hero-group h1 {
    font-size: clamp(38px, 5vw, 60px);
    color: var(--white);
    max-width: 14ch;
}
.hero-group .lede {
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    max-width: 46ch;
    margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    background: var(--navy-deep);
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--white);
}
.stat span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   SUBSIDIARY CARD BAND (main site)
   ========================================================================== */

.section { padding: 88px 0; }
.section-tight { padding: 60px 0; }
.section-paper-dim { background: var(--paper-dim); }
.section-ink { background: var(--ink); color: var(--white); }
.section-ink p { color: rgba(255,255,255,0.68); }
.section-ink h2 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .kicker {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); }

.sub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.sub-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.sub-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--card-color, var(--accent));
}
.sub-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--card-color, var(--accent));
}
.sub-card .sub-logo {
    height: 54px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    align-self: flex-start;
}
.sub-card h3 { font-size: 19px; margin-bottom: 2px; }
.sub-card .sub-tag { font-size: 13.5px; color: var(--ink-faint); font-style: italic; }
.sub-card p { font-size: 14.5px; margin-bottom: 4px; }
.sub-card .sub-link {
    margin-top: auto;
    font-weight: 700;
    font-size: 14px;
    color: var(--card-color, var(--accent));
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   GENERIC CONTENT BLOCKS
   ========================================================================== */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.split img { border-radius: var(--radius-img); }
.split.reverse .split-media { order: 2; }

.service-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.service-list li {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    align-items: flex-start;
}
.section-ink .service-list li { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.service-list .mark {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--theme);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
}
.service-list h4 { font-size: 15.5px; margin-bottom: 3px; }
.service-list p { font-size: 14px; margin: 0; }

.two-col-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.section-ink .value-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.value-card h3 { font-size: 18px; }
.value-card p { font-size: 14.5px; }
.value-card img { border-radius: var(--radius-img); }

/* Philosophy / quote block */
.philosophy {
    border-left: 3px solid var(--brass);
    padding-left: 28px;
    max-width: 760px;
}
.philosophy p {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.5;
    color: var(--white);
    max-width: none;
}

/* ==========================================================================
   TEAM
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
}
.team-photo {
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--navy), var(--ink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-display);
    font-size: 15px;
    border-radius: var(--radius-img) var(--radius-img) 0 0;
}
.team-info { padding: 18px 16px 22px; }
.team-info h4 { font-size: 16px; margin-bottom: 2px; }
.team-info span { font-size: 13px; color: var(--ink-faint); }

/* ==========================================================================
   HERO — SUBSIDIARY PAGES
   ========================================================================== */
.sub-hero {
    position: relative;
    background: var(--theme);
    color: var(--white);
    background-size: cover;
    background-position: center;
}
/* Legibility wash: heavy on the left behind the headline, opening up on the
   right so the hero image reads through. */
.sub-hero .overlay {
    background: linear-gradient(100deg, rgba(6,12,24,0.95) 0%, rgba(6,12,24,0.86) 34%, rgba(6,12,24,0.62) 64%, rgba(6,12,24,0.42) 100%);
    padding: 110px 0 92px;
}
.sub-hero .breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.sub-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.sub-hero h1 { color: var(--white); font-size: clamp(34px, 5vw, 52px); max-width: 16ch; }
.sub-hero .lede { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 50ch; }

.subnav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}
.subnav .container { display: flex; gap: 26px; padding: 14px 28px; flex-wrap: wrap; }
.subnav a { font-size: 13.5px; font-weight: 700; color: var(--ink-faint); }
.subnav a:hover, .subnav a.active { color: var(--theme); }

.cross-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.cross-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
}
.cross-chip img { height: 24px; width: 24px; object-fit: contain; border-radius: 50%; background: var(--paper-dim); padding: 3px; }

/* ==========================================================================
   CONTACT / FORM
   ========================================================================== */
.contact-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}
.contact-info-card {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 34px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card p { color: rgba(255,255,255,0.68); }
.contact-line { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-line strong { display: block; font-size: 14px; color: var(--white); }
.contact-line span, .contact-line a { font-size: 14.5px; color: rgba(255,255,255,0.72); }
.contact-line a:hover { color: var(--white); }
.icon-box {
    width: 38px; height: 38px; flex-shrink: 0;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.icon-box svg { width: 17px; height: 17px; }

.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.field input, .field textarea, .field select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14.5px;
    background: var(--paper);
    color: var(--ink);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--theme); background: var(--white); }

.form-status { font-size: 14px; margin-bottom: 16px; padding: 12px 14px; border-radius: var(--radius); display: none; }
.form-status.success { display: block; background: #E4F3E8; color: #1F6B3B; border: 1px solid #B9DEC4; }
.form-status.error { display: block; background: #FBEAEA; color: #A32323; border: 1px solid #F0C3C3; }

.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }
.spinner {
    width: 15px; height: 15px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: spin .7s linear infinite;
}
.btn.loading .spinner { display: inline-block; }
.btn.loading .btn-label { opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }

.map-wrap { margin-top: 30px; border-radius: var(--radius-img); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.62); padding-top: 68px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: inline-flex; align-items: center; margin-bottom: 18px; background: var(--white); padding: 14px 18px; border-radius: var(--radius-lg); }
.footer-brand img { height: 40px; width: auto; max-width: 220px; object-fit: contain; display: block; }
.site-footer p { color: rgba(255,255,255,0.55); font-size: 14px; }
.site-footer h5 { color: var(--white); font-size: 14px; letter-spacing: 0.03em; margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.62); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.42); flex-wrap: wrap; gap: 10px;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 26px -8px rgba(0,0,0,0.45);
    z-index: 90;
    transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ==========================================================================
   SCROLL REVEAL
   One consistent entrance per element: fade + slide, direction set by JS
   (up by default; left/right for two-column split content). Elements
   animate in once, the first time they scroll into view.
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .75s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0s),
        transform .75s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0s);
    will-change: opacity, transform;
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.reveal-zoom  { transform: scale(.94); }
.reveal.reveal-fade  { transform: none; }
.reveal.in-view { opacity: 1; transform: none; will-change: auto; }

/* Hero copy animates on load rather than on scroll — it is already in view. */
@keyframes heroIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}
.hero-group .hero-copy > *,
.sub-hero .overlay .container > * {
    animation: heroIn .85s cubic-bezier(.2,.7,.2,1) both;
}
.hero-group .hero-copy > *:nth-child(1),
.sub-hero .overlay .container > *:nth-child(1) { animation-delay: .05s; }
.hero-group .hero-copy > *:nth-child(2),
.sub-hero .overlay .container > *:nth-child(2) { animation-delay: .18s; }
.hero-group .hero-copy > *:nth-child(3),
.sub-hero .overlay .container > *:nth-child(3) { animation-delay: .31s; }
.hero-group .hero-copy > *:nth-child(4),
.sub-hero .overlay .container > *:nth-child(4) { animation-delay: .44s; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.reveal-left,
    .reveal.reveal-right,
    .reveal.reveal-zoom {
        opacity: 1; transform: none; transition: none;
    }
    .hero-group .hero-copy > *,
    .sub-hero .overlay .container > * { animation: none; }
    html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
    .hero-group .container { grid-template-columns: 1fr; text-align: left; min-height: 0; padding-top: 84px; padding-bottom: 84px; }
    .sub-grid { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; }
    .split .split-media { order: -1 !important; }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
    .sub-hero .overlay { padding: 84px 0 72px; }
}
@media (max-width: 760px) {
    .main-nav ul { display: none; }
    .nav-toggle {
        display: inline-flex; align-items: center; justify-content: center;
        width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius);
        background: none; cursor: pointer;
    }
    .main-nav.open ul {
        display: flex; flex-direction: column; gap: 0;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--line);
        padding: 10px 28px 18px;
        z-index: 60;
    }
    .main-nav.open ul a { display: block; padding: 12px 0; border-bottom: 1px solid var(--paper-dim); }
    .topbar-contact { display: none; }

    /* Header CTA is hidden on phones — the mobile menu carries the Contact
       link, so the header keeps just the logo and the menu toggle. */
    .site-header .container > .btn { display: none; }
    .site-header .container { gap: 14px; }
    .brand img { height: 44px; max-width: 190px; }

    /* One card per row on phones: the two-column service grids were too
       cramped to read, so every card block collapses to a single column. */
    .sub-grid,
    .two-col-grid,
    .three-col-grid,
    .service-list,
    .service-list.two-col-grid { grid-template-columns: 1fr; }
    .service-list li { padding: 18px 16px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }

    .container { padding: 0 20px; }
    .section { padding: 60px 0; }
    .hero-group .container { padding-top: 64px; padding-bottom: 64px; }
    .hero-group h1 { max-width: none; }

    /* Phones read top-to-bottom, so the wash runs that way too: dark behind
       the headline, clearing toward the bottom so the image still shows. */
    .hero-group::before {
        background:
            radial-gradient(circle at 80% 10%, rgba(200,32,43,0.22), transparent 46%),
            linear-gradient(180deg, rgba(7,15,28,0.96) 0%, rgba(7,15,28,0.91) 46%, rgba(7,15,28,0.74) 78%, rgba(7,15,28,0.52) 100%);
    }
    .sub-hero { background-position: 60% center; }
    .sub-hero .overlay {
        padding: 64px 0 56px;
        background: linear-gradient(180deg, rgba(6,12,24,0.96) 0%, rgba(6,12,24,0.90) 46%, rgba(6,12,24,0.72) 78%, rgba(6,12,24,0.50) 100%);
    }
    .sub-hero h1, .hero-group h1 { font-size: clamp(30px, 8.4vw, 40px); }
    .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 420px) {
    .team-grid { grid-template-columns: 1fr; }
}
/* End of file: assets/css/style.css */
