* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #161c2d;
    --muted: #5b6478;
    --accent: #e4572e;
    --accent-dark: #c14423;
    --sand: #f4efe8;
    --cloud: #f8fafc;
    --night: #0d0f16;
    --stroke: rgba(22, 28, 45, 0.12);
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 24px 60px rgba(11, 16, 30, 0.18);
}

body {
    font-family: "Work Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top left, #f7d9c8 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, #f2f7ff 0%, transparent 35%),
        linear-gradient(180deg, #fef6f1 0%, #f5f7fb 60%, #edf1f6 100%);
    min-height: 100vh;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, 90vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--stroke);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: flex;
    gap: 14px;
    align-items: center;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--night);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.brand-name {
    font-weight: 700;
    font-size: 13px;
}

.brand-role {
    color: var(--muted);
    font-weight: 500;
}

.site-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-weight: 500;
    color: var(--muted);
}

.site-nav a {
    position: relative;
    padding-bottom: 4px;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
    width: 100%;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 16px 30px rgba(228, 87, 46, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(228, 87, 46, 0.4);
}

.button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.button.small {
    padding: 10px 18px;
    font-size: 14px;
}

.button.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--stroke);
    box-shadow: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 20% 20%, rgba(228, 87, 46, 0.15), transparent 45%),
        radial-gradient(circle at 80% 0, rgba(22, 28, 45, 0.12), transparent 40%);
    z-index: 0;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    z-index: 1;
}

.hero-text h1 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin: 18px 0 20px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-dark);
}

.lead {
    font-size: 1.05rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 26px 0;
}

.hero-highlights {
    display: grid;
    gap: 12px;
    padding: 18px 0 0;
    font-size: 14px;
    color: var(--muted);
}

.highlight-title {
    display: block;
    font-weight: 700;
    color: var(--ink);
}

.hero-card {
    background: var(--glass);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: floatIn 0.9s ease-out;
}

.hero-card h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

.hero-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
    color: var(--muted);
    margin-bottom: 20px;
}

.hero-card li::before {
    content: "•";
    color: var(--accent);
    margin-right: 8px;
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
}

.hero-card-footer a {
    color: var(--accent-dark);
    font-weight: 600;
}

.section {
    padding: 90px 0;
}

.section-head {
    display: grid;
    gap: 12px;
    max-width: 640px;
    margin-bottom: 40px;
}

.section-head h2 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.services {
    background: var(--cloud);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.service-card {
    background: #fff;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 18px 32px rgba(22, 28, 45, 0.08);
    border: 1px solid var(--stroke);
    display: grid;
    gap: 10px;
}

.service-card h3 {
    font-size: 18px;
}

.service-card p {
    color: var(--muted);
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--sand);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.process {
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step {
    padding: 24px;
    border-radius: 18px;
    background: var(--sand);
    border: 1px solid rgba(228, 87, 46, 0.12);
}

.step-number {
    display: inline-block;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 10px;
}

.work {
    background: var(--night);
    color: #fff;
}

.work .section-head h2,
.work .section-head p,
.work .section-head .eyebrow {
    color: #fff;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.work-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.work-card p {
    color: rgba(255, 255, 255, 0.7);
}

.work-card .meta {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-card a {
    color: var(--accent);
    font-weight: 600;
}

.testimonials {
    background: var(--cloud);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.testimonials blockquote {
    background: #fff;
    padding: 26px;
    border-radius: 18px;
    border: 1px solid var(--stroke);
    font-style: italic;
    box-shadow: 0 18px 32px rgba(22, 28, 45, 0.08);
}

.testimonials span {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    font-style: normal;
}

.about {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: start;
}

.about-points {
    display: grid;
    gap: 20px;
}

.about-points h3 {
    margin-bottom: 8px;
}

.faq {
    background: var(--cloud);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.faq-grid h3 {
    margin-bottom: 10px;
}

.contact {
    background: linear-gradient(135deg, #161c2d 0%, #1f2a44 100%);
    color: #fff;
}

.contact-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    padding: 40px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
}

.contact-details {
    display: grid;
    gap: 16px;
    font-size: 15px;
}

.contact-details span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.contact .button {
    align-self: start;
}

.site-footer {
    padding: 28px 0 40px;
    color: var(--muted);
    text-align: center;
    font-size: 13px;
}

.site-footer .container {
    display: grid;
    gap: 6px;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .header-inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .contact-card {
        padding: 30px;
    }
}

@media (max-width: 520px) {
    .header-inner {
        gap: 16px;
    }

    .site-nav {
        gap: 12px;
    }

    .button.small {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media print {
    body {
        background: white;
        color: #000;
    }

    .site-header,
    .site-footer,
    .hero-bg {
        display: none;
    }

    .section {
        padding: 30px 0;
    }

    .contact {
        background: white;
        color: #000;
    }
}
