@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/dm-sans-300.ttf') format('truetype');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/dm-sans-400.ttf') format('truetype');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/dm-sans-500.ttf') format('truetype');
}

@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/dm-sans-600.ttf') format('truetype');
}

@font-face {
    font-family: 'DM Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/dm-sans-italic-400.ttf') format('truetype');
}

:root {
    --cream: #F5F0EB;
    --cream-light: #FAF7F3;
    --charcoal: #1A1A1A;
    --charcoal-soft: #2D2D2D;
    --gold: #B8860B;
    --gold-light: #D4A843;
    --gold-muted: rgba(184, 134, 11, 0.12);
    --blue: #2563EB;
    --blue-light: #60A5FA;
    --blue-muted: rgba(37, 99, 235, 0.1);
    --body-text: #4A4540;
    --body-text-light: #6B6560;
    --border: rgba(26, 26, 26, 0.08);
    --border-strong: rgba(26, 26, 26, 0.15);
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.8rem 1.5rem;
    background: var(--blue);
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    letter-spacing: 0.04em;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--body-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    font-weight: 600;
    line-height: 1.2;
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--blue);
}

.section-label.centered::before {
    display: none;
}

/* ---- Layout ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

section {
    padding: 7rem 0;
}

/* ---- Navigation ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(245, 240, 235, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.4s ease;
}

nav .logo {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.02em;
}

nav .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav .nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--body-text-light);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width 0.3s ease;
}

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

nav .nav-links a:hover::after {
    width: 100%;
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.4s ease forwards;
    animation-delay: 0.3s;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--blue);
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--body-text-light);
    margin-top: 1.5rem;
    max-width: 440px;
    line-height: 1.8;
}

.hero-cta {
    margin-top: 6rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.4s ease forwards;
    animation-delay: 0.8s;
}

.btn-primary {
    display: inline;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 1px solid var(--charcoal);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--blue);
    border: 1px solid var(--blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--cream);
    border-color: var(--blue);
}

.btn-secondary {
    display: inline;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    padding: 1rem 2.5rem;
    background: var(--blue);
    border: 1px solid var(--blue);
    transition: all 0.4s ease;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 0.4s ease forwards;
    animation-delay: 0.6s;
}

.hero-visual-box {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--charcoal);
    overflow: hidden;
}

.hero-visual-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        linear-gradient(225deg, rgba(37, 99, 235, 0.08) 0%, transparent 40%);
    z-index: 2;
}

.hero-visual-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(37, 99, 235, 0.2);
    z-index: 3;
}

.hero-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.5) 40px,
            rgba(255, 255, 255, 0.5) 41px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.5) 40px,
            rgba(255, 255, 255, 0.5) 41px);
    z-index: 1;
}

.hero-visual-text {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    z-index: 4;
}

.hero-visual-text span {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 500;
    line-height: 1.5;
}

.hero-visual-year {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 4;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue-light);
}

.hero-accent-line {
    position: absolute;
    bottom: 0;
    left: 3rem;
    right: 3rem;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), transparent);
    opacity: 0.4;
}

/* ---- About ---- */
.about {
    border-top: 1px solid var(--border);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
}

.about h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 0;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--body-text);
    max-width: 560px;
}

.about-text .highlight {
    color: var(--charcoal);
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat {
    opacity: 0;
    transform: translateY(20px);
}

.stat.visible {
    animation: fadeUp 0.35s ease forwards;
}

.stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--body-text-light);
    line-height: 1.5;
}

/* ---- Services ---- */
.services {
    border-top: 1px solid var(--border);
    background: var(--cream-light);
}

.services-header {
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

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

.service-card {
    padding: 2rem;
    border: 1px solid var(--border);
    margin: -0.5px;
    position: relative;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(25px);
}

.service-card.visible {
    animation: fadeUp 0.35s ease forwards;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.5s ease;
}

.service-card:hover {
    background: var(--cream);
    border-color: var(--border-strong);
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.04);
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.8rem;
    position: relative;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--body-text-light);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    transition: color 0.5s ease;
}

.service-card:hover .service-number {
    color: var(--blue-muted);
}

/* ---- Benefits ---- */
.benefits {
    border-top: 1px solid var(--border);
    position: relative;
}

.benefits .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.benefits h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
}

.benefits-list li.visible {
    animation: slideIn 0.35s ease forwards;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-marker {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.2rem;
    position: relative;
}

.benefit-marker::before,
.benefit-marker::after {
    content: '';
    position: absolute;
    background: var(--blue);
}

.benefit-marker::before {
    width: 1rem;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.benefit-marker::after {
    width: 1rem;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.benefit-text {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--body-text);
}

.benefit-text strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ---- Why Me ---- */
.why-me {
    border-top: 1px solid var(--border);
    background: var(--charcoal);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.why-me::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
}

.why-me .container {
    position: relative;
    z-index: 1;
}

.why-me .section-label {
    color: var(--blue-light);
}

.why-me .section-label::before {
    background: var(--blue-light);
}

.why-me h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--cream);
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.why-item {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin: -0.5px;
    position: relative;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(25px);
}

.why-item.visible {
    animation: fadeUp 0.35s ease forwards;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.5s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-item:hover::before {
    width: 100%;
}

.why-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
    color: var(--cream);
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 240, 235, 0.7);
}

.why-item .service-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.8rem;
}

.why-item .service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--blue-light);
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---- Footer ---- */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

footer p {
    font-size: 0.78rem;
    color: var(--body-text-light);
    letter-spacing: 0.05em;
}

footer a {
    color: var(--body-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--charcoal);
}

/* ---- Animations ---- */
@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---- Career ---- */
.career {
    border-top: 1px solid var(--border);
    background: var(--cream-light);
}

.career-header {
    text-align: center;
    margin-bottom: 6rem;
}

.career-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-strong);
}

.timeline-entry {
    position: relative;
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem 1.5rem 2.5rem;
    margin-bottom: 2.5rem;
    margin-left: 3rem;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s ease;
}

.timeline-entry.collapsible {
    cursor: pointer;
    user-select: none;
}

.timeline-entry.collapsible .timeline-highlights {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.timeline-entry.collapsible:not(.expanded) {
    padding-bottom: 0.75rem;
}

.timeline-entry.collapsible.expanded {
    padding-bottom: 1.5rem;
}

.timeline-entry.collapsible.expanded .timeline-highlights {
    max-height: 1200px;
    opacity: 1;
}

.timeline-toggle {
    position: absolute;
    right: 1.5rem;
    top: 1.8rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--body-text-light);
}

.timeline-entry.collapsible.expanded .timeline-toggle {
    transform: rotate(180deg);
}

.timeline-toggle svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.timeline-entry.visible {
    animation: fadeUp 0.2s ease forwards;
}

.timeline-entry:hover {
    border-color: var(--border-strong);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.05);
}

.timeline-dot {
    position: absolute;
    left: calc(-7px - 3rem);
    top: 1.85rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--blue);
    z-index: 1;
    transition: all 0.4s ease;
}

.timeline-entry:hover .timeline-dot {
    background: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-muted);
}

.timeline-entry.featured .timeline-dot {
    background: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-muted);
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--blue);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.timeline-entry:hover::before {
    opacity: 1;
}

.timeline-period-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.timeline-period {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0;
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
}

.timeline-company {
    font-size: 0.85rem;
    color: var(--body-text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.timeline-highlights {
    list-style: none;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--body-text);
}

.timeline-highlights li {
    position: relative;
    padding: 0.3rem 0 0.3rem 1rem;
}

.timeline-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 5px;
    height: 1px;
    background: var(--blue);
}

.timeline-entry.featured {
    border-color: var(--blue);
    background: var(--cream);
}

.timeline-entry.featured::before {
    opacity: 1;
    background: var(--blue);
}

.timeline-entry.featured .timeline-title {
    color: var(--blue);
    font-weight: 700;
}

.timeline-badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--blue);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

/* ---- Responsive ---- */
@media (max-width: 968px) {
    .container {
        padding: 0 2rem;
    }

    nav {
        padding: 1.2rem 2rem;
    }

    nav .nav-links {
        gap: 1.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about h2 {
        margin-bottom: 2rem;
    }

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

    .benefits .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-entry {
        padding: 1.25rem 1.25rem 1rem 1.25rem;
        margin-left: 0;
        margin-bottom: 1.25rem;
    }

    .timeline-entry.collapsible:not(.expanded) {
        padding-bottom: 0.75rem;
    }

    .timeline-toggle {
        right: 1rem;
        top: 1.2rem;
    }

    .career-header {
        margin-bottom: 3rem;
    }
}

/* ---- Contact ---- */
.contact {
    border-top: 1px solid var(--border);
    background: var(--cream-light);
}

.contact .container {
    text-align: center;
    max-width: 700px;
}

.contact h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.05rem;
    color: var(--body-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-email {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    padding: 1rem 2.5rem;
    background: var(--blue);
    border: 1px solid var(--blue);
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
}

.contact-email:hover {
    background: var(--blue-light);
    border-color: var(--blue-light);
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    nav .nav-links {
        display: none;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 5rem;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary {
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
        text-align: center;
    }

    .service-card {
        padding: 2rem;
    }

    .service-number {
        display: none;
    }

    .why-item {
        padding: 2rem 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
