:root {
    --navy: #0a1628;
    --navy-light: #142240;
    --gold: #c9a227;
    --gold-light: #e8c84a;
    --gold-dark: #9a7b1a;
    --teal: #1a4a5e;
    --teal-light: #2a6a82;
    --cream: #f5f0e6;
    --cream-dark: #e8e0d0;
    --charcoal: #2d2d2d;
    --white: #ffffff;
    --radius: 2px;
    --deco-shadow: 0 4px 24px rgba(10, 22, 40, 0.25);
    --deco-border: 1px solid var(--gold);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    font-weight: 400;
    background: var(--cream);
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(201, 162, 39, 0.03) 35px, rgba(201, 162, 39, 0.03) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(26, 74, 94, 0.03) 35px, rgba(26, 74, 94, 0.03) 36px);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; }

/* ===== Art Deco decorative elements ===== */
.deco-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    position: relative;
}
.deco-line::before, .deco-line::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.7rem;
}
.deco-line::before { left: 20%; }
.deco-line::after { right: 20%; }

.deco-fan {
    position: absolute;
    width: 300px; height: 300px;
    background: conic-gradient(from 180deg at 50% 100%,
        transparent 0deg, rgba(201,162,39,0.08) 10deg, transparent 20deg,
        rgba(201,162,39,0.08) 30deg, transparent 40deg,
        rgba(201,162,39,0.08) 50deg, transparent 60deg,
        rgba(201,162,39,0.08) 70deg, transparent 80deg,
        rgba(201,162,39,0.08) 90deg, transparent 100deg);
    pointer-events: none;
}
.hero-fan { top: 60px; right: -80px; opacity: 0.6; }

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}
.eyebrow::before, .eyebrow::after {
    content: '—';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }

.gradient-text {
    color: var(--gold);
    font-style: italic;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
}
.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--navy);
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: var(--deco-shadow); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    flex-shrink: 0;
}
.logo-mark {
    color: var(--gold);
    font-size: 1.1rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 240, 230, 0.75);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border: 2px solid var(--gold) !important;
    font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ===== Language Switcher — fixed top-right ===== */
.lang-switcher {
    position: relative;
    flex-shrink: 0;
    z-index: 1001;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold-light);
    padding: 10px 18px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
    justify-content: center;
}
.lang-btn:hover, .lang-btn.open {
    background: var(--gold-light);
    box-shadow: 0 0 16px rgba(201, 162, 39, 0.5);
}
.lang-globe { font-size: 1.1rem; }
.lang-current { font-weight: 800; font-size: 1.05rem; }
.lang-arrow { font-size: 0.85rem; transition: transform 0.2s; }
.lang-btn.open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    background: var(--navy);
    border: 2px solid var(--gold);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    box-shadow: var(--deco-shadow);
}
.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown li {
    padding: 14px 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--cream);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.lang-dropdown li:last-child { border-bottom: none; }
.lang-dropdown li:hover {
    background: var(--navy-light);
    color: var(--gold);
    padding-left: 26px;
}
.lang-dropdown li.active {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    font-weight: 700;
}
.lang-dropdown li.active::before {
    content: '◆ ';
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    width: 26px; height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
    padding: 150px 0 90px;
    background: var(--navy);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 48%, rgba(201,162,39,0.06) 49%, rgba(201,162,39,0.06) 51%, transparent 52%),
        linear-gradient(225deg, transparent 48%, rgba(201,162,39,0.06) 49%, rgba(201,162,39,0.06) 51%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.badge {
    display: inline-block;
    border: 1px solid var(--gold);
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    color: var(--gold-light);
}
.hero h1 { font-size: 3.2rem; margin-bottom: 22px; color: var(--cream); }
.hero-sub { font-size: 1.05rem; color: rgba(245,240,230,0.8); margin-bottom: 34px; max-width: 520px; font-weight: 300; }
.hero-buttons { display: flex; gap: 18px; margin-bottom: 46px; flex-wrap: wrap; }
.hero-trust span { font-size: 0.75rem; color: rgba(245,240,230,0.5); text-transform: uppercase; letter-spacing: 0.15em; }
.trust-logos { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.trust-logos span {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--navy);
    background: var(--gold);
    padding: 5px 14px;
    border: 1px solid var(--gold-light);
}

/* Hero visual */
.hero-visual { position: relative; height: 420px; }
.hero-frame {
    position: relative;
    width: 100%; height: 100%;
    border: 2px solid var(--gold);
    background: var(--navy-light);
}
.hero-frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}
.hero-orb {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--teal-light) 0%, var(--teal) 60%, var(--navy) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid var(--gold);
}
.float-card {
    position: absolute;
    background: var(--navy);
    border: 1px solid var(--gold);
    padding: 12px 18px;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    color: var(--cream);
}
.card-1 { top: 8%; left: -4%; }
.card-2 { top: 44%; right: -8%; }
.card-3 { bottom: 6%; left: 6%; }
.dot { width: 10px; height: 10px; transform: rotate(45deg); }
.dot.gold { background: var(--gold); }
.dot.teal { background: var(--teal-light); }
.dot.cream { background: var(--cream); }

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.section-head h2 { font-size: 2.5rem; margin-bottom: 16px; color: var(--navy); }
.section-head p { color: var(--charcoal); font-size: 1.05rem; font-weight: 300; opacity: 0.85; }

/* ===== Services ===== */
.services { padding: 100px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--white);
    border: 1px solid var(--gold-dark);
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--deco-shadow);
    border-color: var(--gold);
}
.service-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    border: 2px solid var(--gold);
    margin-bottom: 22px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: rgba(201, 162, 39, 0.08);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--navy); }
.service-card p { color: var(--charcoal); font-size: 0.92rem; font-weight: 300; opacity: 0.85; }

/* ===== About ===== */
.about { padding: 100px 0; background: var(--navy); color: var(--cream); }
.about .eyebrow { color: var(--gold); }
.about .section-head h2 { color: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-img {
    width: 100%; height: 400px;
    border: 2px solid var(--gold);
    background:
        linear-gradient(135deg, var(--teal) 0%, var(--navy-light) 50%, var(--teal-light) 100%);
    position: relative;
}
.about-img::after {
    content: '◆';
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
}
.about-badge {
    position: absolute;
    bottom: -20px; right: -16px;
    background: var(--gold);
    color: var(--navy);
    padding: 22px 30px;
    border: 2px solid var(--gold-light);
    text-align: center;
}
.about-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; }
.about-badge span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.about-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--cream); }
.about-content > p { color: rgba(245,240,230,0.8); margin-bottom: 24px; font-weight: 300; }
.about-list { list-style: none; margin-bottom: 32px; }
.about-list li { padding: 9px 0; font-weight: 400; color: var(--gold-light); letter-spacing: 0.03em; }

/* ===== Stats ===== */
.stats { padding: 80px 0; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border: 2px solid var(--gold);
    background: var(--white);
}
.stat {
    text-align: center;
    padding: 50px 20px;
    border-right: 1px solid var(--gold-dark);
    position: relative;
}
.stat:last-child { border-right: none; }
.stat::before {
    content: '◆';
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 0.6rem;
}
.stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
}
.stat p {
    color: var(--charcoal);
    font-weight: 500;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.82rem;
}

/* ===== Team ===== */
.team { padding: 100px 0; background: var(--cream); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
    text-align: center;
    padding: 36px 20px;
    border: 1px solid var(--gold-dark);
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}
.team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 20%; right: 20%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.team-card:hover::after { transform: scaleX(1); }
.team-card:hover { box-shadow: var(--deco-shadow); }
.avatar {
    width: 90px; height: 90px;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    background: var(--navy);
    border: 2px solid var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--navy); }
.team-card span { color: var(--gold-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* ===== Contact ===== */
.contact { padding: 100px 0; background: var(--navy); color: var(--cream); }
.contact .eyebrow { color: var(--gold); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2.5rem; margin-bottom: 16px; color: var(--cream); }
.contact-info > p { color: rgba(245,240,230,0.75); margin-bottom: 32px; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-details div {
    font-size: 0.95rem;
    color: rgba(245,240,230,0.75);
    background: var(--navy-light);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 16px 20px;
}
.contact-details strong { color: var(--gold); font-family: 'Playfair Display', serif; }
.contact-details a { color: var(--gold-light); }
.contact-form {
    background: var(--navy-light);
    padding: 40px;
    border: 2px solid var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(201, 162, 39, 0.4);
    background: var(--navy);
    color: var(--cream);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(245,240,230,0.35); }
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.2);
}
.form-note { font-size: 0.9rem; color: var(--gold-light); font-weight: 500; text-align: center; margin-top: 4px; }

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: rgba(245, 240, 230, 0.7);
    padding: 70px 0 30px;
}
.footer-line { margin-bottom: 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; padding-top: 50px; }
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; font-weight: 300; }
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 0.08em;
}
.footer-col a { display: block; padding: 6px 0; font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.social { display: flex; gap: 12px; }
.social a {
    width: 38px; height: 38px;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: all 0.2s;
}
.social a:hover { background: var(--gold); color: var(--navy); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 72px; right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--navy);
        width: 240px;
        padding: 24px;
        gap: 18px;
        border-left: 2px solid var(--gold);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        height: calc(100vh - 72px);
    }
    .nav-links.open { transform: translateX(0); }
    .nav-toggle { display: flex; }
    .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.4rem; }
    .hero-visual { height: 300px; margin-top: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2) { border-right: none; }
    .stat { border-bottom: 1px solid var(--gold-dark); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; }
    .lang-switcher { order: 0; }
}
@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .lang-btn { padding: 8px 14px; min-width: 88px; font-size: 0.9rem; }
}
