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

:root {
    --bg: #0a0a0a;
    --bg-alt: #141414;
    --bg-card: #1a1a1a;
    --accent: #e8804a;
    --accent-dark: #d16a34;
    --accent-soft: #d97757;
    --text: #ededed;
    --text-muted: #a8a8a8;
    --text-dim: #6b6b6b;
    --border: #2a2a2a;
    --border-strong: #3a3a3a;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1150px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }

.section-header { margin-bottom: 60px; max-width: 700px; }
.section-header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 16px;
}
.section-header h2 em {
    font-style: italic;
    color: var(--accent-soft);
    font-weight: 500;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    padding: 15px 36px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    font-family: inherit;
    letter-spacing: 0.3px;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-full { width: 100%; }

.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}
.navbar .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 78px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-svg { height: 46px; width: auto; display: block; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a {
    text-decoration: none; color: var(--text-muted);
    font-weight: 500; font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
    background: var(--accent); color: #fff !important;
    padding: 11px 24px; border-radius: 2px;
}
.btn-nav:hover { background: var(--accent-dark); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    background: var(--bg);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding-top: 78px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 128, 74, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(217, 119, 87, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 760px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    color: var(--accent);
    flex-wrap: wrap;
}
.hero-eyebrow-rule {
    width: 56px;
    height: 1.5px;
    background: var(--accent);
    flex-shrink: 0;
    opacity: 0.9;
}
.hero-eyebrow-text {
    font-family: var(--sans);
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent);
    line-height: 1;
}
.hero-eyebrow-text em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--text);
    margin-left: 12px;
    opacity: 0.95;
}
.hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500; line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}
.hero-content h1 em {
    font-style: italic;
    color: var(--accent-soft);
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.about { background: var(--bg); }
.about-heading {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 1;
}
.about-heading em {
    font-style: italic;
    color: var(--accent-soft);
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.about-col p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 18px;
    line-height: 1.75;
}
.about-col p:first-child { color: var(--text); font-size: 1.1rem; }

.services { background: var(--bg-alt); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover {
    border-color: var(--accent-soft);
    transform: translateY(-3px);
}
.service-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0a0a0a;
}
.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-card:hover .service-media img {
    transform: scale(1.04);
}
.service-body {
    padding: 30px 28px 32px;
}
.service-card h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--accent-soft);
    margin-bottom: 16px;
    line-height: 1.25;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.service-card--wide { grid-column: span 1; }

.contact { background: var(--bg); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 60px; align-items: start;
}
.contact-info h3 {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 16px;
}
.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}
.info-item {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.97rem;
}
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--accent-soft);
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
}
.info-icon svg { width: 20px; height: 20px; }
.info-item:hover .info-icon {
    border-color: var(--accent);
    color: var(--accent);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 40px;
}
.honeypot {
    position: absolute; left: -9999px;
    width: 1px; height: 1px; opacity: 0;
}
.form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input, .form-group textarea {
    width: 100%; padding: 13px 16px;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 3px;
    font-size: 0.98rem; font-family: inherit;
    color: var(--text);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-dim);
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-message {
    padding: 14px;
    border-radius: 3px;
    margin-top: 18px;
    font-weight: 500;
    text-align: center;
    font-size: 0.95rem;
}
.form-message.success {
    background: rgba(72, 187, 120, 0.1);
    color: #68d391;
    border: 1px solid rgba(72, 187, 120, 0.3);
}
.form-message.error {
    background: rgba(245, 101, 101, 0.1);
    color: #fc8181;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.keep-in-touch {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}
.kit-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.kit-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 16px;
}
.kit-text h2 em {
    font-style: italic;
    color: var(--accent-soft);
    font-weight: 500;
}
.kit-text p {
    color: var(--text-muted);
    font-size: 1.02rem;
    max-width: 460px;
}
.kit-channels {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.kit-channels li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.2s, transform 0.2s;
}
.kit-channels li:hover {
    border-color: var(--accent-soft);
    transform: translateY(-2px);
}
.kit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--accent-soft);
    flex-shrink: 0;
}
.kit-icon svg { width: 20px; height: 20px; }
.kit-channels .kit-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 4px;
}
.kit-channels a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 500;
    transition: color 0.2s;
}
.kit-channels a:hover { color: var(--accent); }

.footer {
    background: #060606;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    padding: 36px 0;
}
.footer-social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-content {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 15px;
}
.footer strong {
    color: var(--text);
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}
.footer p { font-size: 0.88rem; margin-top: 4px; }
.footer-copy { font-size: 0.85rem; color: var(--text-dim); }

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .about-grid, .contact-grid, .kit-grid {
        grid-template-columns: 1fr; gap: 40px;
    }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }

    .hamburger { display: flex; }
    .nav-links {
        display: none; flex-direction: column; gap: 0;
        position: absolute; top: 78px; left: 0; right: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block; padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-links li:last-child a { border-bottom: none; }
    .btn-nav { text-align: center; margin-top: 12px; }
}

@media (max-width: 480px) {
    .contact-form { padding: 28px 22px; }
    .logo-svg { height: 38px; }
}
