:root {
    --background: #fefdfc;
    --surface: #ffffff;
    --text-primary: #1f1f1f;
    --text-secondary: rgba(31, 31, 31, 0.72);
    --accent: #ff7b6c;
    --accent-dark: #de5a4d;
    --line: rgba(31, 31, 31, 0.08);
    --max-width: 1120px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.flex-row {
    display: flex;
}

.space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
.section-header.center {
    text-align: center;
    margin: 0 auto 2.5rem;
}

.section-header.center h2 {
    margin: 0 auto;
}

    background: rgba(254, 253, 252, 0.9);
    border-bottom: 1px solid var(--line);
}

.logo {

.service-pillars {
    background: var(--surface);
}

.service-pillars .section-header {
    text-align: left;
    max-width: 720px;
    margin: 0;
    margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.service-pillars .section-header h2 {
    font-size: clamp(2.6rem, 6vw, 3.6rem);
    line-height: 1.08;
}

.pillars-grid {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.25rem);
    max-width: 720px;
}

.pillar-card {
    background: transparent;
    border-radius: 0;
    padding: 0 0 0 clamp(1.4rem, 3vw, 1.9rem);
    border: none;
    position: relative;
}

.pillar-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), rgba(255, 123, 108, 0.25));
}

.pillar-card h3 {
    font-size: clamp(1.35rem, 3vw, 1.55rem);
    margin-bottom: 0.6rem;
}

.pillar-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

    font-weight: 600;
    font-size: 2.4rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.logo .accent {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.site-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.site-nav a {
    position: relative;
    font-weight: 500;
    color: var(--text-secondary);
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--text-primary);
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.hero {
    padding: 6rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 4.5rem);
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-copy p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 42ch;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 500;
    transition: var(--transition);
}

.btn.primary {
    background: var(--accent);
    color: white;
}

.btn.primary:hover {
    background: var(--accent-dark);
}

.btn.ghost {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn.ghost:hover {
    background: var(--text-primary);
    color: white;
}

.hero-visual {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.hero-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 40px -32px rgba(31, 31, 31, 0.35);
    border: 1px solid rgba(31, 31, 31, 0.04);
}

.hero-card.offset {
    transform: translateX(16%);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.hero-card .eyebrow {
    color: var(--accent);
}

.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: var(--text-secondary);
}

.tag {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 123, 108, 0.14);
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.tag.ghost {
    background: rgba(31, 31, 31, 0.12);
    color: var(--text-primary);
}

.section {
    padding: 4.5rem 0;
}

.section-header {
    text-align: left;
    max-width: 58ch;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.brand-grid span {
    padding: 1.75rem;
    border-radius: 18px;
    background: white;
    border: 1px solid var(--line);
    text-align: center;
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}

.feature-list {
    display: grid;
    gap: 2rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
}

.highlights {
    background: rgba(255, 123, 108, 0.06);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.process-card {
    background: white;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--line);
}

.process-card .step {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.process-card p {
    color: var(--text-secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 2.25rem;
    border: 1px solid var(--line);
    box-shadow: 0 16px 32px -32px rgba(31, 31, 31, 0.45);
}

.testimonial-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.testimonial-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-card span {
    color: rgba(31, 31, 31, 0.6);
    font-size: 0.9rem;
}

.cta-card {
    background: #1f1f1f;
    color: white;
    border-radius: 28px;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-card .btn.primary {
    background: white;
    color: #1f1f1f;
}

.cta-card .btn.primary:hover {
    background: rgba(254, 253, 252, 0.85);
}

.site-footer {
    padding: 3.5rem 0 2rem;
    background: #111;
    color: rgba(255, 255, 255, 0.9);
}

.contact-meta {
    margin-top: 2rem;
    color: var(--text-secondary);
}

.contact-meta a {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-meta a:hover {
    color: var(--accent);
}

.contact-hero {
    padding-bottom: 2rem;
}

.contact-intro {
    max-width: 640px;
    text-align: center;
}

.contact-intro h1 {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
}

.contact-intro p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--surface);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--line);
    box-shadow: 0 24px 40px -36px rgba(31, 31, 31, 0.3);
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(31, 31, 31, 0.14);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: border var(--transition), box-shadow var(--transition);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 123, 108, 0.25);
}

.contact-form .btn {
    align-self: flex-start;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(17, 17, 17, 0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: var(--surface);
    border-radius: 24px;
    padding: clamp(2.25rem, 4vw, 2.75rem);
    max-width: 420px;
    width: min(420px, 100%);
    box-shadow: 0 28px 46px -30px rgba(17, 17, 17, 0.45);
    position: relative;
}

.modal-content {
    display: grid;
    gap: 1rem;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: rgba(31, 31, 31, 0.6);
    cursor: pointer;
    transition: color var(--transition);
}

.modal-close:hover,
.modal-close:focus-visible {
    color: var(--text-primary);
}

body.modal-open {
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 18px 32px -36px rgba(31, 31, 31, 0.35);
}

.info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-secondary);
}

    .contact-gallery {
        padding: 1.5rem;
    }

    .contact-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

.info-card a {
    color: var(--text-primary);
}

.info-card a:hover {
    color: var(--accent);
}

.contact-gallery {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 18px 32px -36px rgba(31, 31, 31, 0.35);
    display: grid;
    gap: 1.25rem;
}

.contact-gallery h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.contact-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.contact-gallery-grid figure {
    border-radius: 14px;
    overflow: hidden;
}

.contact-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.contact-gallery-grid figure:hover img {
    transform: scale(1.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.footer-grid .logo span {
    color: white;
}

.footer-grid .logo .accent {
    color: var(--accent);
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid a:hover {
    color: white;
}

.muted {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.75rem;
}

.footer-note {
    text-align: center;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero {
        padding-top: 5rem;
    }

    .hero-grid,
    .two-column-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .hero-card.offset {
        transform: none;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 72px;
        right: 4%;
        width: 240px;
        background: var(--surface);
        border-radius: 18px;
        box-shadow: 0 18px 30px -24px rgba(31, 31, 31, 0.4);
        border: 1px solid var(--line);
        padding: 1.5rem;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy p {
        max-width: 100%;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .contact-form .btn {
        width: 100%;
        justify-content: center;
    }

    .info-card {
        padding: 1.75rem;
    }

    .pillars-grid {
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    .hero {
        padding-top: 4.5rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero-card,
    .testimonial-card,
    .process-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .pillar-card {
        padding-left: 1.1rem;
    }

    .pillar-card::before {
        width: 3px;
    }

    .contact-gallery-grid {
        grid-template-columns: 1fr;
    }
}
