  :root { --primary: #1e3a5f; --primary-dark: #152c47; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1e293b; background: #fff; line-height: 1.7; }
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; }
.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }

nav { background: var(--primary); padding: 16px 0; position: sticky; top: 0; z-index: 100; }
nav .container { display: flex; align-items: center; justify-content: space-between; }
nav .logo { color: #e2c97e; font-size: 1.2rem; font-weight: 700; text-decoration: none; font-family: 'Inter', sans-serif; letter-spacing: .5px; }
nav .logo img { height: 38px; vertical-align: middle; margin-right: 8px; }
nav .nav-links { display: flex; gap: 28px; }
nav .nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 500; transition: color .2s; }
nav .nav-links a:hover { color: #e2c97e; }

.hero { background: linear-gradient(160deg, var(--primary) 0%, #152c47 60%, #0c1f36 100%); padding: 100px 0 120px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; right: -60px; top: -60px; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(226,201,126,.1); }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-block; border: 1px solid #e2c97e; color: #e2c97e; font-family: 'Inter', sans-serif; font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; padding: 5px 14px; margin-bottom: 20px; }
.hero h1 { font-size: 2.6rem; font-weight: 400; color: #fff; line-height: 1.3; margin-bottom: 20px; }
.hero h1 em { color: #e2c97e; font-style: italic; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.7); font-family: 'Inter', sans-serif; margin-bottom: 32px; }
.btn { display: inline-block; background: #e2c97e; color: var(--primary); padding: 13px 32px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .9rem; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: background .2s; }
.btn:hover { background: #d4b96e; }
.hero-deco { width: 100%; aspect-ratio: 4/5; object-fit: cover; opacity: .25; border-radius: 4px; }

section { padding: 80px 0; }
section:nth-child(even) { background: #f8f7f5; }
.section-label { font-family: 'Inter', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 4px; color: #e2c97e; background: var(--primary); display: inline-block; padding: 4px 12px; margin-bottom: 20px; }
h2 { font-size: 2rem; font-weight: 400; color: var(--primary); margin-bottom: 8px; }
h2::after { content: ''; display: block; width: 32px; height: 1px; background: #e2c97e; margin-top: 14px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0; margin-top: 32px; border: 1px solid #e2e8f0; }
.service-item { padding: 28px 24px; border-right: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.service-item:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.15); }
.service-item .num { font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 700; color: #e2c97e; letter-spacing: 2px; margin-bottom: 10px; }
.service-item h3 { font-size: 1rem; font-weight: 700; font-family: 'Inter', sans-serif; color: var(--primary); }

.o-nas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.o-nas-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.contact { background: var(--primary); }
.contact .section-label { background: #e2c97e; color: var(--primary); }
.contact h2 { color: #e2c97e; }
.contact h2::after { background: rgba(226,201,126,.4); }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; font-family: 'Inter', sans-serif; }
.contact-info p { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); }
.contact-info a { color: #e2c97e; text-decoration: none; font-weight: 600; }
.social-links { margin-top: 24px; display: flex; gap: 12px; }
.social-links a { border: 1px solid #e2c97e; color: #e2c97e; padding: 8px 24px; text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .9rem; transition: background .2s; }
.social-links a:hover { background: #e2c97e; color: var(--primary); }

.map { padding: 0; }
.map iframe { width:100%;height:420px;border:0;display:block;filter:grayscale(20%) sepia(10%); }

footer { background: #0c1f36; color: rgba(255,255,255,.4); text-align: center; padding: 28px 0; font-family: 'Inter', sans-serif; font-size: .85rem; }
footer strong { color: #e2c97e; }

@media (max-width: 640px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-deco { display: none; }
    .hero h1 { font-size: 2rem; }
    .o-nas-inner { grid-template-columns: 1fr; }
}

/* ── Modern animations ────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.hero .container > * { animation: fadeUp .7s ease both; }
.hero .container > *:nth-child(1) { animation-delay: .05s; }
.hero .container > *:nth-child(2) { animation-delay: .15s; }
.hero .container > *:nth-child(3) { animation-delay: .25s; }
.hero .container > *:nth-child(4) { animation-delay: .35s; }
.hero .container > *:nth-child(5) { animation-delay: .45s; }

/* ── Typography quality ───────────────────────────── */
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* Cormorant Garamond display refinements */
h1, h2, h3 { letter-spacing: 0.02em; }
.hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 300; line-height: 1.15; }

/* ── Mobile hamburger nav ─────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    border-radius: 6px;
    color: rgba(255,255,255,.75);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.nav-toggle:hover { opacity: .75; }
.nav-toggle:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; border-radius: 4px; }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
    .nav-toggle { display: flex; }
    nav .container { flex-wrap: wrap; }
    nav .nav-links {
        order: 9;
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 8px 0 12px;
        border-top: 1px solid rgba(128,128,128,.18);
        margin-top: 8px;
    }
    nav .nav-links.is-open { display: flex; }
    nav .nav-links a {
        padding: 11px 0;
        font-size: .95rem;
        letter-spacing: 0;
        text-transform: none;
        border-bottom: 1px solid rgba(128,128,128,.1);
        width: 100%;
        display: block;
    }
    nav .nav-links a:last-child { border-bottom: none; }
}
