/* ---------- Root & Theme ---------- */
:root {
    --bg: #0a1114;
    --fg: #f5f1e8;
    --gold: #d4b483;
    --muted: #fffcf3;
    --line: rgba(212,180,131,.25);
    --overlay: rgba(0,0,0,.65);
    --radius: 14px;
    --maxw: 1100px;
    --shadow: 0 8px 28px rgba(0,0,0,.45);
    scroll-behavior: smooth;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---------- Header Bar ---------- */
.header-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(10,17,20,0.9);
    backdrop-filter: blur(4px);
    z-index: 999;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    transition: height .4s ease, background .4s ease;
}
body.scrolled .header-bar {
    height: 90px;
    background: rgba(10,17,20,0.95);
}
.header-logo img {
    width: clamp(260px,28vw,380px);
    height: auto;
    transition: width .4s ease, opacity .4s ease;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5));
}
body.scrolled .header-logo img {
    width: clamp(160px,20vw,250px);
    opacity: .9;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    color: var(--fg);
    font-weight: 700;
}
h1 { font-size: clamp(2rem,4vw,3.5rem); }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; font-size: 1rem; }

/* ---------- Dividers ---------- */
.divider.gold {
    background: var(--line);
    height: 2px;
    border: none;
    display: block;
    margin: 1.8rem auto;
}
.divider.gold.left { width: 6rem; margin-left: 0; opacity: .5; }
.divider.gold.centered { width: 120ch; max-width: 90%; opacity: .5; }
.divider.gold.small.centered { width: 4rem; opacity: .6; }

/* ---------- Buttons ---------- */
.btn-outline {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--fg);
    padding: .7rem 1.6rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all .3s ease;
}
.btn-outline:hover,
.btn-outline:focus { background: var(--gold); color: var(--bg); }

/* ---------- Layout ---------- */
.section { padding: 4rem 1.5rem; }
.content-wrap { max-width: var(--maxw); margin: 0 auto; }
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 120px;
}
body.scrolled .hero { margin-top: 90px; }
.hero-slider {
    position: relative;
    width: 100%;
    height: min(80vh,900px);
}
.hero-slider img {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}
.hero-slider img.active { opacity:1; }
.hero-overlay {
    position:absolute; inset:0;
    background:var(--overlay);
    display:flex; flex-direction:column;
    justify-content:center; align-items:center;
    text-align:center;
    padding:2rem;
}
.hero-title {
    font-size: clamp(1.6rem,3.5vw,2.6rem);
    margin-bottom:1.5rem;
}

/* ---------- Services ---------- */
.service-card {
    text-align:center;
    padding:2rem 1rem;
    border:1px solid rgba(212,180,131,.15);
    border-radius:var(--radius);
    background:rgba(255,255,255,.02);
    transition:transform .3s ease;
}
.service-card:hover { transform:translateY(-4px); }
.icon-gold {
    width:52px; height:52px;
    margin-bottom:1rem;
}
.cta-small {
    display:inline-block;
    margin-top:1rem;
    font-size:.9rem;
    color:var(--gold);
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:border-color .3s;
}
.cta-small:hover { border-color:var(--gold); }

/* ---------- About ---------- */
.about .image img {
    width:100%;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}
.strengths { font-style:italic; color:var(--gold); margin-top:1rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.2rem;
    max-width:1000px;
    margin:0 auto;
}
.gallery-grid img {
    width:100%;
    height:auto;
    aspect-ratio:3/4;
    border-radius:var(--radius);
    object-fit:cover;
    cursor:pointer;
    transition:transform .3s ease, box-shadow .3s ease;
}
.gallery-grid img:hover { transform:scale(1.03); box-shadow:var(--shadow); }
@media(max-width:900px){.gallery-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.gallery-grid{grid-template-columns:1fr;}}

/* ---------- CTA Section ---------- */
.cta.section {
    position:relative;
    background:#0b1315;
    color:#0b1315;
}
.cta-overlay.gold {
    background:rgba(212,180,131,0.85);
    text-align:center;
    padding:4rem 2rem;
    border-radius:var(--radius);
}
.cta-overlay.gold p {
    color:#0b1315;
    font-size:1.3rem;
    margin-bottom:1.5rem;
}

/* ---------- Contact Section ---------- */
.contact.section {
    position:relative;
    background:url('../img/hero-2.jpg') center/cover no-repeat;
    color:var(--fg);
}
.contact-overlay {
    background:rgba(10,17,20,.7);
    padding:4rem 2rem;
    text-align:center;
    max-width:var(--maxw);
    margin:0 auto;
    border-radius:var(--radius);
}
.contact a {
    color:var(--fg);
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:border-color .3s ease;
}
.contact a:hover { border-color:var(--gold); }
.note { color:var(--muted); font-size:.9rem; }

/* ---------- Footer ---------- */
.footer {
    text-align:center;
    font-size:.9rem;
    color:var(--muted);
    padding:2.5rem 1rem;
    border-top:1px solid var(--line);
}
.footer a { color:var(--gold); text-decoration:none; }
.footer a:hover { text-decoration:underline; }

/* ---------- Floating CTAs ---------- */
.floating-ctas {
    position:fixed;
    right:1.2rem; bottom:1.2rem;
    display:flex; flex-direction:column; gap:.8rem;
    z-index:9999;
}
.cta-icon {
    background:rgba(10,17,20,0.8);
    border:1px solid rgba(212,180,131,.6);
    border-radius:50%;
    width:58px; height:58px;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 0 10px rgba(0,0,0,0.4);
    transition:transform .3s ease, background .3s;
}
.cta-icon img { width:30px; height:30px; }
.cta-icon:hover {
    transform:translateY(-3px);
    background:rgba(212,180,131,0.2);
}

/* ---------- Legal Pages ---------- */
body.legal { background:var(--bg); color:var(--fg); }
.legal-header {
    position:relative;
    width:100%;
    height:180px;
    background:rgba(10,17,20,0.9);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 20px rgba(0,0,0,0.5);
}
.legal-header img {
    width:clamp(240px,28vw,360px);
    height:auto;
    filter:drop-shadow(0 3px 8px rgba(0,0,0,0.5));
}
.legal-wrap {
    max-width:70ch;
    margin:4rem auto 6rem;
    padding:0 2rem;
    line-height:1.7;
}
body.legal a, body.legal a:visited {
    color:var(--gold)!important;
    text-decoration:none;
    transition:color .3s ease;
}
body.legal a:hover, body.legal a:focus {
    color:var(--fg)!important;
    text-decoration:underline;
}

/* ---------- Responsive ---------- */
@media(max-width:900px){
    .header-bar{height:90px;}
    .header-logo img{width:220px;}
    .hero{margin-top:90px;}
    .grid-3{grid-template-columns:1fr;}
    .two-col{grid-template-columns:1fr;}
    .about .image{order:-1;}
    .section{padding:2.5rem 1.2rem;}
    .floating-ctas{right:.8rem;bottom:.8rem;}
    .cta-icon{width:50px;height:50px;}
}