@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy:        #0b1c30;
    --navy-mid:    #132840;
    --navy-light:  #1a3550;
    --navy-border: rgba(255,255,255,.08);
    --gold:        #c8903a;
    --gold-light:  #dfa94e;
    --gold-pale:   #f0e1c6;
    --cream:       #f7f4ef;
    --white:       #ffffff;
    --text:        #27354a;
    --text-muted:  #5a6a7e;
    --border:      #dde3ec;

    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   40px;

    --shadow-sm:   0 2px 8px rgba(11,28,48,.07);
    --shadow-md:   0 6px 24px rgba(11,28,48,.13);
    --shadow-lg:   0 16px 48px rgba(11,28,48,.2);

    --transition:  0.22s ease;
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body:    'Lato', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-pad { padding: 100px 0; }

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--navy);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
    display: block;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header--light .section-title { color: var(--white); }
.section-header--light .section-eyebrow { color: var(--gold-light); }
.section-header--light .section-sub { color: rgba(255,255,255,.7); }

/* Button style */
.btn {
    display: inline-block;
    padding: .85rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(200,144,58,.3);
}
.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,144,58,.42);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
}

/* Language toggle style */
.lang-toggle-container {
    display: flex;
    gap: .35rem;
}

.lang-btn {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.35);
    color: rgba(255,255,255,.75);
    padding: .3rem .8rem;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-body);
}
.lang-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
.lang-btn:hover:not(.active) {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.6);
    color: var(--white);
}

/* Header and navigation style*/
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
    background: var(--navy);
    box-shadow: 0 2px 24px rgba(0,0,0,.28);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: .05em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    color: rgba(255,255,255,.8);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1.5rem;
    flex-shrink: 0;
}

.nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: .5rem 1.3rem;
    border-radius: var(--radius-xl);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Hero style*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 72% 38%, rgba(200,144,58,.13) 0%, transparent 60%),
        linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8903a' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

/* Diagional Accent panel */
.hero::after {
    content: '';
    position: absolute;
    right: -80px; top: 0; bottom: 0;
    width: 42%;
    background: rgba(200,144,58,.04);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 120px 2rem 80px;
    max-width: 720px;
    padding-left: 2rem;
}

.hero-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    padding: .35rem .9rem;
    border: 1px solid rgba(200,144,58,.35);
    border-radius: 2px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: .01em;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}





/* Service Style */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: .75rem;
    color: var(--navy);
}
.service-card p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
}

/*About Style */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 5rem;
    align-items: center;
}

.about-visual-inner {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.about-visual-inner::before {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(200,144,58,.1);
}
.about-visual-inner::after {
    content: '';
    position: absolute;
    top: -30px; left: -30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(200,144,58,.07);
}

.about-stat {
    text-align: center;
    z-index: 1;
}
.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: .3rem;
}
.about-stat span {
    font-size: .8rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-divider {
    width: 40px;
    height: 1px;
    background: rgba(200,144,58,.3);
    margin: 0 auto;
}

.about-text .section-title {
    margin-bottom: 1.5rem;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* Contact Style */
.contact {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 440px; height: 440px;
    border-radius: 50%;
    background: rgba(200,144,58,.06);
    pointer-events: none;
}
.contact::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(200,144,58,.04);
    pointer-events: none;
}

.contact-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Footer Style */
.site-footer {
    background: #070e18;
    padding: 2.75rem 2rem;
}
.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.footer-brand { margin-right: auto; }
.footer-name {
    font-family: var(--font-heading);
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    letter-spacing: .04em;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-nav a {
    color: rgba(255,255,255,.45);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-copy {
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,.28);
    font-size: .78rem;
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 1.5rem;
    margin-top: .5rem;
}

/*Focus style*/
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Responsiveness */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 2px solid var(--gold);
    }
    .nav-links.open { display: flex; }
    .nav-actions { margin-left: auto; }
    .nav-cta { display: none; }

    .hero-content { padding-top: 100px; }
    .hero h1 { font-size: 2.2rem; }

    .trust-divider { display: none; }
    .trust-item { padding: .3rem 1rem; }

    .services-grid { grid-template-columns: 1fr; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }

    .section-pad { padding: 70px 0; }

    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-brand { margin-right: 0; }
    .footer-nav { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn { text-align: center; }
}