:root {
    --ink: #172033;
    --navy: #101a2c;
    --gold: #c4892a;
    --gold-deep: #8d5e12;
    --cream: #f4efe6;
    --paper: #fbf8f3;
    --line: rgba(23, 32, 51, 0.12);
    --muted: #5c6573;
    --card: #fffdf9;
    --shadow: 0 24px 60px rgba(16, 26, 44, 0.12);
    --serif: "Fraunces", "Times New Roman", serif;
    --sans: "Outfit", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(1200px 500px at 90% -10%, rgba(196, 137, 42, 0.16), transparent 55%),
        linear-gradient(180deg, #f7f2e9 0%, var(--paper) 280px);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.skip {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--navy);
    color: white;
    padding: 0.6rem 1rem;
    z-index: 20;
}
.skip:focus { top: 1rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(251, 248, 243, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.header-inner, .wrap, .footer-grid {
    width: min(1180px, calc(100% - 2.4rem));
    margin-inline: auto;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    min-height: 84px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-right: auto;
}
.brand img {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    background: transparent;
}
.brand strong { display: block; font-size: 1rem; letter-spacing: 0.01em; }
.brand em {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold-deep);
    font-size: 0.95rem;
}
.site-nav { display: flex; align-items: center; gap: 0.15rem 0.35rem; }
.site-nav > a, .menu > a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 0.45rem 0.35rem;
}
.site-nav a[aria-current="page"], .site-nav a:hover { color: var(--ink); }
.menu { position: relative; display: flex; align-items: center; }
.menu-more {
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    padding: 0.35rem 0.2rem;
    line-height: 1;
}
.submenu {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.35rem;
    box-shadow: 0 16px 40px rgba(16, 26, 44, 0.12);
    z-index: 30;
}
.menu:hover .submenu,
.menu:focus-within .submenu,
.menu.open .submenu { display: grid; }
.submenu a {
    text-decoration: none;
    color: var(--ink);
    font-size: 0.88rem;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
}
.submenu a:hover { background: #f7f4ee; }
.submenu a[aria-current="page"] { background: #f0e2c4; color: #1b1408; font-weight: 640; }
.header-phone {
    text-decoration: none;
    border: 1px solid var(--ink);
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.92rem;
    white-space: nowrap;
}
.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
}

.hero, .page-hero, .band, .section { padding: 2.4rem 0; }
.hero { padding-top: 2rem; }
.hero-grid, .split, .project-row, .contact-grid, .two {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}
.kicker {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--gold-deep);
    margin: 0 0 0.8rem;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 560; letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: clamp(1.7rem, 2.2vw, 2.15rem); margin: 0 0 0.7rem; }
h2 { font-size: 1.35rem; margin: 0 0 0.45rem; }
h3 { font-size: 1.08rem; margin: 0 0 0.3rem; }
.lede { font-size: 1rem; color: #3d4656; max-width: 46rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    background: var(--navy);
    color: #f8f1e4;
    border: 1px solid var(--navy);
}
.btn.ghost { background: transparent; color: var(--ink); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: #1b1408; }

.stack { display: grid; gap: 0.8rem; }
.shot {
    background: var(--card);
    border-radius: 18px;
    padding: 0.55rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,0.7);
}
.shot img { width: 100%; border-radius: 12px; background: #eef2f6; }
.shot.tilt { transform: rotate(1.5deg); }
.shot figcaption, .caption { color: var(--muted); font-size: 0.88rem; padding: 0.45rem 0.3rem 0.15rem; }

.marquee {
    border-block: 1px solid var(--line);
    overflow: hidden;
    background: #fffdf8;
}
.marquee-track {
    display: flex;
    gap: 2.5rem;
    padding: 0.9rem 0;
    width: max-content;
    animation: drift 28s linear infinite;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
@keyframes drift { to { transform: translateX(-50%); } }

.section-head { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 1.8rem; }
.section-head a { color: var(--gold-deep); }
.cards, .service-grid, .faq-list { display: grid; gap: 1rem; }
.cards { grid-template-columns: 1fr 1fr; }
.card, .service, .faq, .panel, .form, .notice {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1rem;
}
.card { text-decoration: none; display: grid; gap: 0.7rem; transition: transform 0.25s ease; }
.card:hover { transform: translateY(-4px); }
.card img { width: 100%; height: 180px; object-fit: cover; object-position: center; border-radius: 14px; background: #e7edf3; }
.card.seal img { object-fit: contain; background: #f7f1ea; padding: 1.2rem; }
.meta { color: var(--gold-deep); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 0; }
.card p, .service p, .faq p { color: #3e4756; margin: 0.3rem 0 0; }

.band { background: var(--navy); color: #f6efe4; }
.band .kicker { color: #e7c27a; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stats strong { display: block; font-family: var(--serif); font-size: 1.25rem; }
.stats span { color: rgba(246, 239, 228, 0.72); }

.service-grid, .feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-grid { display: grid; gap: 0.85rem; margin-top: 0.85rem; }
.feature-grid.highlight .service {
    border-left: 4px solid var(--gold);
    background: linear-gradient(180deg, #fffdf9 0%, #f7f1e6 100%);
    padding: 1rem 1.1rem 1.05rem;
}
.feature-grid.highlight .service h3 {
    font-family: var(--serif);
    font-size: 1.18rem;
    margin-bottom: 0.25rem;
}
.group-title { margin: 2.2rem 0 0.15rem; }
.group-title:first-of-type { margin-top: 0.2rem; }
.service img { width: 100%; height: 150px; object-fit: cover; border-radius: 12px; margin-bottom: 0.55rem; }
.service h2 { font-size: 1.05rem; }
.page-photo { width: 100%; height: 240px; object-fit: cover; border-radius: 16px; margin: 0 0 1rem; }
.service h3 { font-size: 1.05rem; }
.faq-list { gap: 0.7rem; }
.faq h3 { font-size: 1.2rem; font-family: var(--sans); letter-spacing: 0; }

.page-hero { padding-bottom: 1rem; }
.crumbs { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }
.crumbs a { color: var(--gold-deep); }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.prose { max-width: 44rem; }
.prose p { color: #3d4656; }
.list { padding-left: 1.1rem; color: #3d4656; }
.list li + li { margin-top: 0.35rem; }

.contact-grid { align-items: start; }
label { display: grid; gap: 0.35rem; font-size: 0.92rem; margin-bottom: 0.8rem; }
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 0.75rem 0.8rem;
}
textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.notice.ok { border-color: #b7d7c3; background: #f3faf5; }
.notice.bad { border-color: #e4c1b6; background: #fff6f3; }
.form button { cursor: pointer; }

.site-footer { background: #0d1626; color: #e7e1d6; padding: 3rem 0 1.4rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr; gap: 1.5rem; }
.footer-mark { font-family: var(--serif); font-size: 1.2rem; margin: 0 0 0.4rem; }
.footer-label { letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; color: #e7c27a; }
.site-footer a { color: #f3ecdf; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer address { font-style: normal; }
.legal { width: min(1180px, calc(100% - 2.4rem)); margin: 2rem auto 0; color: rgba(231, 225, 214, 0.62); font-size: 0.88rem; }

.whatsapp {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #1f8f4e;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(16, 26, 44, 0.25);
    z-index: 12;
}
.whatsapp svg { width: 30px; height: 30px; fill: white; }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 28, 0.88);
    display: none;
    place-items: center;
    padding: 1.5rem;
    z-index: 30;
}
.lightbox.open { display: grid; }
.lightbox img { max-height: 88vh; width: auto; border-radius: 12px; }
.lightbox button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: 0;
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .site-nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: #fffdf9;
        flex-direction: column;
        padding: 1rem 1.2rem 1.2rem;
        border-bottom: 1px solid var(--line);
    }
    .site-nav.open { display: flex; }
    .menu { flex-wrap: wrap; width: 100%; }
    .submenu { position: static; display: none; min-width: 0; box-shadow: none; width: 100%; }
    .menu.open .submenu { display: grid; }
    .header-phone { display: none; }
    .hero-grid, .split, .project-row, .contact-grid, .two, .cards, .service-grid, .feature-grid, .gallery, .footer-grid, .stats {
        grid-template-columns: 1fr;
    }
    .shot.tilt { transform: none; }
    h1 { font-size: 1.65rem; }
    .card img { height: 200px; }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .card { transition: none; }
}
