/*  /index.html  200
:root{
  /* Brand palette */
  --midnight:#0B3C49;   /* headers/nav/footer */
  --mist:#E6F2F4;       /* soft section background */
  --gold:#C9A24D;       /* CTAs */
  --earth:#8C5A2B;      /* accents */
  --charcoal:#1E1E1E;   /* text */
  --white:#FFFFFF;

  --border:#E6ECEF;
  --card:#ffffff;
  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --radius: 18px;
  --max: 1160px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 10px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{
  max-height:52px;
  width:auto;
  display:block;
  object-fit:contain;
}
.brand .name{
  font-family:"Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand .tagline{
  font-size: 12px;
  font-weight: 700;
  color: rgba(30,30,30,.7);
  margin-top:-2px;
}

.links{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.links a{
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
}
.links a:hover{background: rgba(230,242,244,.6)}
.links a.active{background: rgba(230,242,244,.9)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold), #e6c36a);
  color:#1b1407;
  box-shadow: 0 18px 40px rgba(201,162,77,.25);
}
.btn-ghost{
  background:#fff;
  border-color: var(--border);
}

.hero{
  padding: 18px 0 0;
}
.heroWrap{
  position:relative;
  border-radius: 24px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#000;
}
.hero video{
  width:100%;
  height:min(72vh, 640px);
  object-fit:cover;
  display:block;
  opacity:.92;
}
.overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,60,73,.78) 0%, rgba(11,60,73,.20) 55%, rgba(11,60,73,.72) 100%);
}
.heroInner{
  position:absolute; inset:0;
  display:flex;
  align-items:flex-end;
}
.heroContent{
  width:100%;
  padding: 22px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:end;
}
.eyebrow{
  display:inline-flex;
  gap:10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight: 800;
  font-size: 13px;
}
h1{
  font-family:"Playfair Display", serif;
  color:#fff;
  margin: 12px 0 10px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing:-.02em;
}
.heroP{
  margin:0 0 16px;
  color: rgba(255,255,255,.88);
  font-weight: 650;
  max-width: 62ch;
}
.actions{display:flex; gap:10px; flex-wrap:wrap}

.heroCard{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  padding: 14px;
  color:#fff;
}
.heroCard h3{margin:0 0 6px}
.heroCard p{margin:0 0 12px; color:rgba(255,255,255,.86); font-weight:650}

.section{padding: 56px 0}
.section.alt{
  background: linear-gradient(180deg, #ffffff 0%, rgba(230,242,244,.65) 100%);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing:.14em;
  text-transform: uppercase;
  color: rgba(30,30,30,.65);
}
.h2{
  font-family:"Playfair Display", serif;
  font-size: clamp(24px, 2.7vw, 40px);
  margin: 10px 0 10px;
  line-height: 1.15;
}
.lede{
  margin: 0 0 18px;
  color: rgba(30,30,30,.75);
  font-weight: 650;
  max-width: 80ch;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color: rgba(30,30,30,.75); font-weight:650}

.footer{
  border-top:1px solid var(--border);
  padding: 30px 0 22px;
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 16px;
}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.badge{
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(230,242,244,.75);
  border: 1px solid var(--border);
  color: var(--midnight);
}
.small{font-size:13px; color: rgba(30,30,30,.7); font-weight:650}

.cookie{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: none;
  z-index: 80;
}
.cookieRow{
  display:flex;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.cookieActions{display:flex; gap:10px; flex-wrap:wrap}

/* Mobile */
@media (max-width: 900px){
  .heroGrid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr}
  .hero video{height: 62vh}
}
