  :root { --primary: #d4a363; --primary-dark: #b5833c; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', Georgia, serif; color: #fafaf9; background: #1c1917; 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: rgba(0,0,0,.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid color-mix(in srgb, var(--primary) 15%, transparent); padding: 18px 0; position: sticky; top: 0; z-index: 100; }
nav .container { display: flex; align-items: center; justify-content: space-between; }
nav .logo { color: var(--primary); font-size: 1.3rem; font-weight: 700; text-decoration: none; letter-spacing: 2px; text-transform: uppercase; }
nav .logo img { height: 38px; vertical-align: middle; margin-right: 8px; }
nav .nav-links { display: flex; gap: 28px; }
nav .nav-links a { color: #a8a29e; text-decoration: none; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; transition: color .2s; }
nav .nav-links a:hover { color: var(--primary); }

.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero-dark { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.85) 40%, rgba(0,0,0,.3) 100%); z-index: 1; }
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero .container { position: relative; z-index: 2; }
.hero-accent { display: inline-block; width: 32px; height: 2px; background: var(--primary); margin-bottom: 20px; }
.hero h1 { font-size: 3.2rem; font-weight: 200; color: #fff; letter-spacing: 4px; text-transform: uppercase; line-height: 1.2; margin-bottom: 16px; max-width: 500px; }
.hero h1 strong { font-weight: 700; color: var(--primary); }
.hero p { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 380px; margin-bottom: 36px; letter-spacing: .5px; }
.btn { display: inline-block; border: 1px solid var(--primary); color: var(--primary); padding: 13px 36px; font-size: .85rem; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; transition: background .2s, color .2s; }
.btn:hover { background: var(--primary); color: #1c1917; }

section { padding: 80px 0; background: #1c1917; }
section:nth-child(even) { background: #111827; }
.section-eyebrow { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 5px; color: var(--primary); margin-bottom: 14px; }
h2 { font-size: 2rem; font-weight: 200; color: #fafaf9; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
h2::after { content: ''; display: block; width: 24px; height: 1px; background: var(--primary); margin-top: 16px; }

.services-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 32px; }
.service-item { border: 1px solid color-mix(in srgb, var(--primary) 15%, transparent); border-top: 2px solid var(--primary); padding: 24px; transition: border-color .2s; }
.service-item:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--primary) 40%, transparent); border-top-color: var(--primary); }
.service-item .num { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--primary); margin-bottom: 12px; }
.service-item h3 { color: #e7e5e4; font-size: 1rem; font-weight: 400; letter-spacing: 1px; }

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

.contact { background: #0c0a09; }
.contact .section-eyebrow { color: var(--primary); }
.contact h2 { color: #fafaf9; }
.contact h2::after { background: var(--primary); }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-info p { display: flex; align-items: center; gap: 12px; color: #a8a29e; }
.contact-info a { color: var(--primary); text-decoration: none; font-weight: 600; }
.social-links { margin-top: 24px; display: flex; gap: 12px; }
.social-links a { border: 1px solid var(--primary); color: var(--primary); padding: 8px 28px; text-decoration: none; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; transition: background .2s; }
.social-links a:hover { background: var(--primary); color: #1c1917; }

.map { padding: 0; background:#0c0a09; }
.map iframe { width:100%;height:420px;border:0;display:block;filter:grayscale(50%) brightness(0.9); }

footer { background: #080604; color: #44403c; text-align: center; padding: 28px 0; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; }
footer strong { color: var(--primary); }

@media (max-width: 640px) {
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2.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: #a8a29e;
    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; }
}
