:root {
    --page-bg: #110d0e;
    --page-gradient-start: #1f1517;
    --page-gradient-end: #120e12;
    --surface: rgba(38, 28, 29, 0.95);
    --surface-strong: rgba(45, 30, 27, 0.95);
    --surface-soft: rgba(29, 22, 23, 0.92);
    --outline: rgba(242, 84, 45, 0.42);
    --outline-strong: rgba(242, 84, 45, 0.64);
    --stroke-soft: rgba(249, 207, 165, 0.18);
    --glow: rgba(242, 84, 45, 0.22);
    --text: #f8efe5;
    --text-muted: #c9b9ae;
    --accent: #f2542d;
    --accent-alt: #f9a03f;
    --accent-dark: #361a15;
    --max-width: 1080px;
    --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.62);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.52);
}

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

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 18%, rgba(242, 84, 45, 0.12), transparent 55%),
        radial-gradient(circle at 82% 12%, rgba(249, 160, 63, 0.08), transparent 55%),
        linear-gradient(160deg, var(--page-gradient-start), var(--page-gradient-end));
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem 4rem;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.2'/%3E%3C/svg%3E");
    opacity: 0.35;
    mix-blend-mode: soft-light;
}

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

.page-wrap {
    width: 100%;
    max-width: var(--max-width);
    position: relative;
}

.glass-panel {
    background: var(--surface);
    border: 1px solid var(--outline);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 10% 15%, rgba(249, 160, 63, 0.12), transparent 55%);
    opacity: 0.65;
}

.hero {
    padding: 2.6rem 2.6rem 3rem;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 85% 18%, rgba(242, 84, 45, 0.14), transparent 60%);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.6rem;
    position: relative;
    z-index: 1;
}

.nav-brand {
    font-family: 'Archivo Black', 'Work Sans', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 18px rgba(242, 84, 45, 0.6);
    transform: rotate(45deg);
}

.nav-links {
    display: flex;
    gap: 0.6rem;
    padding: 0.4rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--stroke-soft);
    backdrop-filter: blur(2px);
}

.nav-links a {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.28s ease;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(242, 84, 45, 0.16);
}

.nav-links a.is-active {
    color: var(--accent);
    background: rgba(242, 84, 45, 0.22);
    border: 1px solid var(--outline-strong);
    box-shadow: 0 0 24px rgba(242, 84, 45, 0.2);
}

.hero-content {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-headline {
    display: grid;
    gap: 1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.eyebrow span {
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

h1 {
    font-family: 'Archivo Black', 'Work Sans', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.7rem);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--text);
    line-height: 1.1;
}

p {
    margin: 0;
}

.hero-summary {
    font-size: 1.05rem;
    max-width: 560px;
    color: rgba(248, 239, 229, 0.78);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
    cursor: pointer;
    border: none;
}

.button-primary {
    background: var(--accent);
    color: #1a0b08;
    box-shadow: 0 16px 40px rgba(242, 84, 45, 0.35);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(242, 84, 45, 0.45);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--outline);
    color: var(--text);
}

.button-secondary:hover {
    transform: translateY(-2px);
    background: rgba(242, 84, 45, 0.14);
    color: var(--text);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.hero-contact {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.hero-contact strong {
    color: var(--text);
}

.hero-detail {
    display: grid;
    gap: 1.6rem;
    padding: 2.1rem 2rem;
    border-radius: 18px;
    background: var(--surface-strong);
    border: 1px solid var(--outline);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5);
    max-width: 420px;
}

.hero-detail h2 {
    font-size: 1.02rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(248, 239, 229, 0.76);
    margin: 0;
}

.hero-detail ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    list-style: none;
}

.hero-detail li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 500;
    color: rgba(248, 239, 229, 0.9);
}

.hero-detail li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    border-radius: 2px;
    transform: rotate(45deg);
    box-shadow: 0 0 18px rgba(242, 84, 45, 0.4);
}

main {
    margin-top: 2.4rem;
    display: grid;
    gap: 2rem;
}

.section {
    border-radius: 20px;
    padding: 2.6rem 2.5rem;
    border: 1px solid var(--stroke-soft);
    background: var(--surface-soft);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 12%, rgba(249, 160, 63, 0.14), transparent 60%);
    pointer-events: none;
}

.section.is-highlight {
    background: linear-gradient(150deg, rgba(36, 24, 23, 0.94), rgba(54, 30, 23, 0.88));
    border-color: rgba(242, 84, 45, 0.36);
}

.section-header {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.section-header .eyebrow {
    color: rgba(249, 160, 63, 0.8);
}

.section h2 {
    font-family: 'Archivo Black', 'Work Sans', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin: 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section p {
    color: rgba(248, 239, 229, 0.78);
    max-width: 720px;
    line-height: 1.75;
}

.skill-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.skill-card {
    background:
        linear-gradient(170deg, rgba(242, 84, 45, 0.08), transparent 70%),
        rgba(34, 24, 25, 0.92);
    border: 1px solid var(--stroke-soft);
    border-left: 3px solid rgba(248, 239, 229, 0.18);
    border-radius: 18px;
    padding: 1.8rem;
    display: grid;
    gap: 0.75rem;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.skill-card:hover {
    transform: translateY(-6px);
    border-left-color: var(--accent);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.skill-card h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.skill-tenure {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(249, 160, 63, 0.78);
}

.skill-card p {
    font-size: 0.95rem;
    color: rgba(248, 239, 229, 0.78);
    line-height: 1.65;
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
    background: rgba(33, 24, 24, 0.96);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--stroke-soft);
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 0.9rem;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: auto;
    top: -30%;
    right: -30%;
    width: 65%;
    height: 65%;
    background: radial-gradient(circle, rgba(242, 84, 45, 0.16), transparent 70%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.service-card.is-accent {
    border-color: var(--outline);
    background: linear-gradient(150deg, rgba(47, 28, 23, 0.95), rgba(33, 23, 24, 0.92));
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--outline);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    margin: 0;
    font-size: 1.14rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-card h3 svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.service-card p {
    color: rgba(248, 239, 229, 0.78);
    line-height: 1.6;
    margin: 0;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.4rem;
    position: relative;
    z-index: 1;
}

.highlight-item {
    display: grid;
    gap: 0.35rem;
    padding-left: 1.8rem;
    position: relative;
}

.highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 2px;
    transform: rotate(45deg);
    box-shadow: 0 0 16px rgba(242, 84, 45, 0.36);
}

.highlight-item strong {
    font-size: 1.05rem;
    color: rgba(248, 239, 229, 0.92);
    letter-spacing: 0.01em;
}

.gear-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    position: relative;
    z-index: 1;
}

.gear-card {
    border-radius: 16px;
    border: 1px solid var(--stroke-soft);
    background: rgba(31, 23, 24, 0.9);
    padding: 1.6rem;
    display: grid;
    gap: 0.55rem;
    transition: transform 0.28s ease, border-color 0.28s ease;
}

.gear-card:hover {
    transform: translateY(-4px);
    border-color: var(--outline);
}

.gear-card h3 {
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(249, 160, 63, 0.85);
}

.gear-card p {
    margin: 0;
    color: rgba(248, 239, 229, 0.75);
    line-height: 1.5;
}

.testimonial-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    position: relative;
    z-index: 1;
}

.testimonial-card {
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--stroke-soft);
    background: linear-gradient(150deg, rgba(31, 22, 23, 0.95), rgba(40, 26, 25, 0.88));
    display: grid;
    gap: 1.1rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -24px;
    left: 16px;
    font-size: 6rem;
    color: rgba(242, 84, 45, 0.18);
}

.testimonial-card p {
    margin: 0;
    font-size: 1.02rem;
    color: rgba(248, 239, 229, 0.84);
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    color: rgba(201, 185, 174, 0.8);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.cta-card {
    border-radius: 22px;
    border: 1px solid var(--outline);
    background: linear-gradient(160deg, rgba(42, 26, 24, 0.95), rgba(58, 32, 26, 0.9));
    padding: 2.8rem 2.6rem;
    display: grid;
    gap: 1.4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(242, 84, 45, 0.22), transparent 75%);
    pointer-events: none;
}

.cta-card h2 {
    margin: 0;
    font-family: 'Archivo Black', 'Work Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.7rem);
    text-transform: uppercase;
}

.cta-card p {
    margin: 0;
    color: rgba(248, 239, 229, 0.78);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

footer {
    margin-top: 3rem;
    padding: 2.4rem 2rem 3rem;
    border-radius: 20px;
    width: 100%;
    border: 1px solid var(--stroke-soft);
    background: rgba(28, 21, 22, 0.95);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
    display: grid;
    gap: 1.4rem;
    text-align: center;
}

.footer-info {
    display: grid;
    gap: 0.4rem;
    color: rgba(248, 239, 229, 0.75);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
}

.footer-links a {
    font-weight: 600;
    color: rgba(201, 185, 174, 0.8);
    padding-bottom: 0.25rem;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
}

.footer-links a:hover,
.footer-links a.is-active {
    color: var(--accent);
    border-color: rgba(242, 84, 45, 0.36);
}

@media (min-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0 1.1rem 3rem;
    }

    .glass-panel,
    .section,
    footer {
        border-radius: 18px;
    }

    .hero {
        padding: 2.3rem 1.9rem 2.6rem;
    }

    .nav-bar {
        flex-direction: column;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .hero-detail {
        max-width: none;
    }

    .section {
        padding: 2.3rem 1.9rem;
    }
}

@media (max-width: 540px) {
    .nav-links {
        flex-direction: column;
        padding: 0.6rem;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }

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

