:root {
    --ink: #181818;
    --ink-soft: #3a3a3a;
    --paper: #f7f5f2;
    --white: #ffffff;
    --accent: #f2542d;
    --accent-dark: #d43f1a;
    --teal: #2ec4b6;
    --border: #e7e2da;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(24, 24, 24, 0.08);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 10px 0;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--accent);
}

.nav-cta {
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--ink) 0%, #2b2b2b 100%);
    color: var(--white);
    padding: 90px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
}

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

.hero p.lead {
    font-size: 1.1rem;
    color: #d8d5d0;
    max-width: 42ch;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-visual {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    background:
        repeating-linear-gradient(45deg, rgba(242,84,45,0.15) 0 2px, transparent 2px 14px),
        linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 24px;
}

/* Sections */
section { padding: 80px 0; }
.section-alt { background: var(--white); }

.section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.eyebrow {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.section-head h2 { font-size: 2rem; }
.section-head p { color: var(--ink-soft); }

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(242, 84, 45, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.card h3 { font-size: 1.15rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0; }

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat .num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--accent);
}

.stat .label {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

/* Gallery */
.gallery-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.gallery-filters button {
    padding: 9px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.gallery-filters button.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
}

.gallery-thumb {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-align: center;
    padding: 16px;
}

.gallery-item .gallery-caption {
    padding: 16px 18px;
}

.gallery-item .gallery-caption h4 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.gallery-item .gallery-caption span {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

/* Contact */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info .info-row {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-info .info-row .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
}

form.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--paper);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

.form-msg {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.92rem;
}

.form-msg.success {
    background: rgba(46, 196, 182, 0.15);
    color: #1a7d73;
}

.form-msg.error {
    background: rgba(242, 84, 45, 0.12);
    color: var(--accent-dark);
}

.form-error {
    color: var(--accent-dark);
    font-size: 0.82rem;
    margin-top: 4px;
    display: block;
}

/* CTA band */
.cta-band {
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta-band h2 { color: var(--white); }
.cta-band .btn-outline { border-color: var(--white); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--accent); }

/* Footer */
.site-footer {
    background: var(--ink);
    color: #cfcac2;
    padding-top: 56px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-col a { color: #cfcac2; }
.footer-col a:hover { color: var(--accent); }
.logo-footer { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 0.85rem;
    text-align: center;
}

@media (max-width: 860px) {
    .hero-inner, .contact-wrap { grid-template-columns: 1fr; }
    .grid-3, .grid-2, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        display: none;
        gap: 16px;
    }
    .main-nav.open { display: flex; }
    .nav-cta { width: 100%; text-align: center; }
    .hero h1 { font-size: 2rem; }
    .grid-3, .grid-2, .gallery-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
}
