:root{
  --bg:#0a0a0a;
  --text:#f6f6f6;
  --muted:#c9c9c9;
  --gold:#d4af37;
  --gold-2:#b8992d;
  --card:#121212;
  --border: rgba(255,255,255,0.09);
  --maxw:1200px;
  --radius:18px;
  --shadow: 0 12px 34px rgba(0,0,0,0.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);scroll-behavior:smooth}
body{font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial,sans-serif;line-height:1.65}
img{max-width:100%;height:auto;display:block;border-radius:14px}
a{color:var(--text);text-decoration:none}
.container{max-width:var(--maxw);margin-inline:auto;padding:0 20px}

/* Header */
.header{position:sticky;top:0;z-index:50;background:rgba(0,0,0,0.75);backdrop-filter:saturate(130%) blur(6px);border-bottom:1px solid var(--border)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{width:42px;height:42px;border-radius:50%;background:radial-gradient(circle at 30% 30%, var(--gold), var(--gold-2));box-shadow: 0 0 0 2px rgba(212,175,55,0.2), inset 0 0 18px rgba(0,0,0,0.6)}
.brand-title{font-family:'Cinzel', serif;font-weight:700;letter-spacing:0.08em}
.menu{display:flex;gap:18px;align-items:center}
.menu a{opacity:.9;padding:10px 12px;border-radius:10px;transition:.2s background}
.menu a:hover{background:rgba(255,255,255,0.06)}
.btn{display:inline-flex;align-items:center;gap:10px;border:1px solid var(--gold);color:#111;background:linear-gradient(180deg,#f7e8aa,#d4af37);padding:12px 18px;border-radius:999px;font-weight:600;box-shadow:inset 0 -2px 0 rgba(0,0,0,0.2)}
.btn.dark{background:transparent;color:var(--text);border-color:var(--border)}

/* HERO VIDEO */
.hero-vid{position:relative;min-height:84vh;display:grid;place-items:center;overflow:hidden}
.video-wrap{position:absolute;inset:0;z-index:-2}
.bg-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.55) contrast(1.05)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.75) 100%);z-index:-1}
.hero-content{padding:90px 0 60px;text-align:left}
.kicker{color:var(--gold);letter-spacing:.18em;font-size:.86rem;text-transform:uppercase}
.h1{font-family:'Playfair Display',serif;font-size:clamp(36px,5.4vw,64px);line-height:1.1;margin:.25em 0 .35em}
.lead{color:var(--muted);font-size:1.12rem;max-width:70ch}
.cta{display:flex;gap:14px;flex-wrap:wrap;margin-top:18px}

/* Sections / cards */
.section{padding:70px 0}
.section .section-title{font-family:'Cinzel',serif;font-size:1.7rem;margin:0 0 14px}
.card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:22px;box-shadow:var(--shadow)}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.small{font-size:.96rem;color:var(--muted)}
.hr{height:1px;background:var(--border);margin:24px 0}

.service-card{display:flex;flex-direction:column;gap:10px}
.service-card h3{margin:0}
.service-card p{margin:0;color:var(--muted)}
.icon{width:30px;height:30px;flex:0 0 30px;display:inline-grid;place-items:center;border-radius:8px;background:linear-gradient(180deg, rgba(212,175,55,0.25), rgba(212,175,55,0.05));border:1px solid rgba(212,175,55,0.4)}

/* Contact form */
.form{display:grid;gap:12px}
.input, textarea{width:100%;padding:14px;border-radius:12px;border:1px solid var(--border);background:#0e0e0e;color:var(--text);outline:none}
textarea{min-height:140px;resize:vertical}

/* Footer */
.footer{padding:50px 0;border-top:1px solid var(--border);color:var(--muted)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:20px}

/* Light section */
.section.light{background:#f7f7f7;color:#111}
.section.light .card{background:#fff;border-color:#eee}
.section.light .section-title{color:#111}

/* Responsive */
@media (max-width: 1100px){
  .cards{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 900px){
  .grid-2,.grid-3{grid-template-columns:1fr}
  .hero-content{padding:110px 20px 70px}
}
@media (max-width: 520px){
  .menu{display:none}
}

/* =========================
   HL v2 → Flat & Modern Overrides
   (Place at the very bottom)
   ========================= */

/* 1) Palette & helpers (additions) */
:root{
  --off:#e6e6e6;                     /* off-white accent */
  --border-strong: rgba(255,255,255,.18);
  --border-soft:   rgba(255,255,255,.10);
}

/* 2) Hero video must sit BEHIND content */
.hero-vid{ position:relative; overflow:hidden; }
.video-wrap{ position:absolute; inset:0; z-index:0; }   /* was -2 */
.bg-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:brightness(.55) contrast(1.05); }
.hero-overlay{ position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.85) 100%); } /* was -1 */
.hero-content{ position:relative; z-index:2; }

/* 3) Remove “gold” look — use flat off-white accents */
.kicker{ color:var(--off); }
.brand-logo{
  background:#1a1a1a !important;
  box-shadow:none !important;
  border:1px solid var(--border-soft);
}

/* 4) Buttons: flat, sleek */
.btn{
  background:transparent !important;
  color:var(--off) !important;
  border:1px solid var(--off) !important;
  border-radius:999px;
  padding:12px 18px;
  font-weight:600;
  box-shadow:none !important;
}
.btn:hover{ background:rgba(255,255,255,.06); }
.btn.dark{
  color:var(--text) !important;
  border-color:var(--border-strong) !important;
}

/* 5) Icons: flat, minimal */
.icon{
  width:30px; height:30px;
  display:inline-grid; place-items:center;
  border-radius:8px;
  background:transparent !important;
  border:1px solid var(--border-strong);
  color:var(--off);
}

/* 6) Cards & sections: clearer outlines so they stand out */
.card{
  background:var(--card);
  border:1px solid var(--border-strong) !important;  /* stronger outline */
  box-shadow:none !important;                         /* remove heavy shadow */
}
.service-card{
  border:1px solid var(--border-strong) !important;
  background:transparent;
}

/* Optional soft halo to separate from bg (very subtle) */
.service-card::before{
  content:"";
  position:absolute; inset:-6px;
  border-radius:inherit;
  background: radial-gradient(60% 80% at 50% 0%,
              rgba(255,255,255,.08), transparent 60%);
  filter: blur(12px);
  z-index:-1;
  pointer-events:none;
}

/* 7) Services grid: single column on smaller screens */
@media (max-width: 820px){
  .cards{ grid-template-columns: 1fr !important; }
}

/* 8) OPTIONAL: change the light section to off-white (instead of bright white)
   If you prefer to keep your current white section, delete this block. */
.section.light{
  background:#efefef; color:#111;
}
.section.light .card{
  background:#ffffff; border-color:#e5e5e5;
}
.section.light .section-title{ color:#111; }
.section.light .btn.dark{
  color:#111 !important;
  border-color:#c9c9c9 !important;
}
/* === Font refresh: modern UI === */
body{
  font-family: 'Plus Jakarta Sans', Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}
.h1, .section .section-title{
  font-family: 'Plus Jakarta Sans', Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  letter-spacing: .2px;
  font-weight: 700;
}
/* Centered section header utility */
.section-head.center{ text-align:center; max-width: 820px; margin: 0 auto 22px; }
.section-head.center .lead{ margin: 6px auto 0; }
/* === Gold accents (flat, tasteful) === */
:root{
  --gold:#c8a85b;            /* soft luxury gold */
  --gold-border: rgba(200,168,91,.75);
  --gold-soft:   rgba(200,168,91,.18);
}

/* Buttons: flat outline gold */
.btn{
  background: transparent !important;
  color: var(--text) !important;
  border: 1px solid var(--gold-border) !important;
  box-shadow: none !important;
}
.btn:hover{ background: rgba(200,168,91,.10); }
.btn.dark{
  color: var(--text) !important;
  border-color: var(--gold-border) !important;
}

/* Icons: thin gold outline */
.icon{
  background: transparent !important;
  border: 1px solid var(--gold-border) !important;
  color: var(--gold) !important;
}

/* Cards & highlights: gold outline */
.card{
  border: 1px solid var(--gold-border) !important;
  box-shadow: none !important;
}
.service-card{
  border: 1px solid var(--gold-border) !important;
  background: transparent;
  position: relative;
}

/* A subtle gold aura for emphasis (not shiny) */
.service-card::before{
  content:"";
  position:absolute; inset:-6px;
  border-radius: inherit;
  background: radial-gradient(60% 80% at 50% 0%,
              var(--gold-soft), transparent 60%);
  filter: blur(12px);
  z-index:-1;
  pointer-events:none;
}

/* Kicker accent */
.kicker{ color: var(--gold); }

/* Light section with a gold tint option (still subtle)
   remove this block if you prefer pure white there */
.section.light{
  background: #fbfaf5; color:#111;
}
.section.light .card{
  background:#fff; border-color: rgba(200,168,91,.35);
}
.section.light .section-title{ color:#111; }
.section.light .btn.dark{
  color:#111 !important; border-color: rgba(200,168,91,.55) !important;
}
