:root{
  --teal:#1f4f4a;
  --teal2:#123a36;
  --cream:#f6f3ec;
  --gold:#d6b26e;
  --ink:#0b1220;
  --muted:#51607a;
  --card:#ffffff;
  --line:rgba(15,23,42,.10);
  --shadow:0 14px 34px rgba(2,8,23,.10);
  --r:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:#f7f8fb;
}

.hero{
  color:var(--cream);
  background:
    linear-gradient(180deg, rgba(18,58,54,.86), rgba(18,58,54,.92)),
    url("hero.jpg");
  background-size:cover;
  background-position:center;
  border-bottom:1px solid rgba(255,255,255,.14);
  padding:18px 18px 56px;
}
.nav{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  text-decoration:none;
  color:var(--cream);
  display:flex;
  flex-direction:column;
  line-height:1;
}
.mark{
  font-family:"Playfair Display", serif;
  font-size:28px;
  letter-spacing:.2px;
}
.sub{opacity:.9; font-size:12px; margin-top:6px; letter-spacing:.24em}

.links{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.links a{color:rgba(246,243,236,.9); text-decoration:none; font-weight:600; font-size:14px}
.links a:hover{text-decoration:underline}
.pill{
  border:1px solid rgba(246,243,236,.28);
  padding:10px 12px;
  border-radius:999px;
  text-decoration:none !important;
  background:rgba(255,255,255,.06);
}

.hero-inner{
  max-width:1100px;
  margin:52px auto 0;
}
.hero-inner h1{
  font-family:"Playfair Display", serif;
  font-size:52px;
  line-height:1.05;
  margin:0 0 12px;
}
.hero-inner p{
  max-width:680px;
  margin:0 0 18px;
  opacity:.92;
  line-height:1.6;
}

.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  background:var(--gold);
  color:#1a1a1a;
  font-weight:800;
  text-decoration:none;
}
.btn:hover{filter:brightness(.98)}
.btn.ghost{
  background:transparent;
  border-color:rgba(246,243,236,.32);
  color:var(--cream);
}
.btn.small{padding:10px 12px; border-radius:12px}

.highlights{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:18px;
}
.h{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(246,243,236,.20);
  background:rgba(255,255,255,.06);
  font-size:13px;
  opacity:.95;
}

.wrap{max-width:1100px; margin:0 auto; padding:18px}
.section{margin:26px 0}
.head h2{margin:0 0 6px; font-size:28px}
.head p{margin:0; color:var(--muted)}

.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:16px;
  box-shadow:var(--shadow);
}
.card h3{margin:0 0 6px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.bar{
  margin-top:14px;
  padding:16px;
  border-radius:var(--r);
  background:linear-gradient(135deg, rgba(214,178,110,.16), rgba(31,79,74,.10));
  border:1px solid rgba(15,23,42,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.bar strong{display:block}
.bar span{color:var(--muted)}

.alt{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:18px;
  box-shadow:var(--shadow);
}
.two{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
.ticks{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.ticks li{margin:8px 0}

.info{display:grid; gap:10px}
.info-card{
  background:#fbfbfd;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:14px;
}
.k{color:var(--muted); font-size:12px; letter-spacing:.18em; text-transform:uppercase}
.v{display:inline-block; margin-top:6px; font-weight:800; color:var(--ink); text-decoration:none}
.v:hover{text-decoration:underline}

.map{
  margin-top:14px;
  border-radius:var(--r);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
iframe{width:100%; height:320px; border:0}

.footer{
  text-align:center;
  padding:28px 18px 40px;
  color:rgba(15,23,42,.60);
}

.float{
  position:fixed;
  right:16px;
  bottom:16px;
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#22c55e;
  color:white;
  text-decoration:none;
  font-size:22px;
  box-shadow:0 16px 34px rgba(0,0,0,.18);
}

/* Mobile */
@media (max-width: 900px){
  .hero-inner h1{font-size:40px}
  .grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .two{grid-template-columns:1fr}
}
@media (max-width: 520px){
  .grid{grid-template-columns:1fr}
}
