:root {
    --background: #11100f;
    --surface: #191715;
    --surface-light: #211e1b;
    --border: #352f2a;
    --text: #eeeae5;
    --muted: #aaa39c;
/*    --accent: #e66a2c; */
    --accent: #ff0000;
    --accent-light: #D9531E;
    --accent-soft: rgba(230, 106, 44, 0.12);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    --radius: 18px;
    --page-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 85% 8%, rgba(230, 106, 44, 0.11), transparent 27rem),
        var(--background);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--page-width));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(17, 16, 15, 0.88);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo img {
  display: block;
  width: min(360px, 52vw);
  height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--accent-light);
}

main {
    overflow: hidden;
}

.hero {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    gap: 64px;
    padding-block: 96px 88px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: var(--accent-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 2px;
    background: var(--accent);
    content: "";
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 6.7vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h1 span {
    color: var(--accent-light);
}

.hero-text {
    max-width: 680px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-weight: 750;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button-primary {
    border-color: var(--accent);
    background: var(--accent);
    color: #170c06;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--accent-light);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--accent-light);
}

.hero-mark {
    position: relative;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--surface-light), var(--surface));
    box-shadow: var(--shadow);
}

.hero-mark::before,
.hero-mark::after {
    position: absolute;
    border: 1px solid rgba(230, 106, 44, 0.28);
    border-radius: inherit;
    content: "";
}

.hero-mark::before {
    inset: 12%;
}

.hero-mark::after {
    inset: 27%;
}

.hero-mark span {
    color: var(--accent-light);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.09em;
    transform: translateX(-0.05em);
}

.section {
    padding-block: 92px;
}

.section-header {
    max-width: 720px;
    margin-bottom: 38px;
}

.section h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-header > p,
.card p {
    color: var(--muted);
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(33, 30, 27, 0.86), rgba(25, 23, 21, 0.96));
    box-shadow: var(--shadow);
}

.about-card {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 48px;
    padding: clamp(28px, 5vw, 58px);
}

.experience {
    align-self: center;
    padding-right: 42px;
    border-right: 1px solid var(--border);
}

.experience strong {
    display: block;
    color: var(--accent-light);
    font-size: clamp(3.6rem, 8vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.experience span {
    display: block;
    margin-top: 15px;
    color: var(--muted);
    font-weight: 700;
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.mission {
    color: var(--text) !important;
    font-size: 1.2rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-item {
    position: relative;
    min-height: 225px;
    padding: 28px;
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 106, 44, 0.58);
}

.service-number {
    display: block;
    margin-bottom: 36px;
    color: var(--accent-light);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 0.78rem;
}

.service-item h3 {
    margin-bottom: 9px;
    font-size: 1.15rem;
    line-height: 1.3;
}

.service-item p {
    margin-bottom: 0;
    font-size: 0.93rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.contact-card,
.hours-card {
    padding: clamp(28px, 5vw, 48px);
}

.contact-list {
    display: grid;
    gap: 16px;
    margin: 28px 0 32px;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 16px;
    align-items: baseline;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.contact-label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-value a {
    color: var(--text);
    font-weight: 700;
    text-decoration-color: rgba(230, 106, 44, 0.6);
    text-underline-offset: 4px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 800;
}

.status::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px var(--accent-soft);
    content: "";
}

.hours-card h3 {
    font-size: 1.55rem;
}

.hours-card strong {
    color: var(--text);
}

.company-data {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.84rem;
}

.site-footer {
    padding-block: 38px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.footer-row p {
    max-width: 800px;
    margin-bottom: 0;
}

.footer-row a {
    white-space: nowrap;
    color: var(--accent-light);
    font-weight: 700;
}

:focus-visible {
    outline: 3px solid rgba(255, 138, 76, 0.7);
    outline-offset: 4px;
}

@media (max-width: 850px) {
    .nav-links a:not(.nav-contact) {
        display: none;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 54px;
        padding-block: 78px;
    }

    .hero-mark {
        width: min(75vw, 340px);
        justify-self: center;
    }

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

    .experience {
        padding: 0 0 32px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--page-width));
    }

    .nav {
        min-height: 64px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-block: 62px;
    }

    .section {
        padding-block: 68px;
    }

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

    .service-item {
        min-height: 0;
    }

    .contact-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .footer-row {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}

