
:root {
  --black: #080808;
  --charcoal: #111111;
  --soft-black: #171717;
  --gold: #c9a45c;
  --light-gold: #e6d3a3;
  --cream: #f7f3ea;
  --white: #ffffff;
  --muted: #b8b0a2;
  --text: #1d1d1d;
  --coastal: #eaf1f3;
  --line: rgba(201,164,92,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
h1,h2,h3,h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  margin: 0 0 18px;
}
h1 { font-size: clamp(42px, 6vw, 86px); letter-spacing: -1.5px; }
h2 { font-size: clamp(32px, 4vw, 54px); }
h3 { font-size: clamp(24px, 2.5vw, 34px); }
p { margin: 0 0 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  background: var(--black);
  color: var(--light-gold);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 0;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,164,92,.25);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  letter-spacing: .03em;
}
.logo span { color: var(--gold); display:block; font-family: Inter,Arial,sans-serif; font-size: 11px; letter-spacing:.24em; text-transform:uppercase; margin-top: 2px; }
.menu { display: flex; gap: 22px; align-items: center; color: #f7f3ea; font-size: 14px; }
.menu a { opacity: .9; }
.menu a:hover { color: var(--light-gold); }
.btn {
  display: inline-flex;
  align-items:center;
  justify-content:center;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border: 1px solid var(--gold);
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); background: var(--light-gold); }
.btn.outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn.outline:hover { border-color: var(--gold); color: var(--light-gold); background: rgba(255,255,255,.05); }
.hero {
  color: var(--white);
  min-height: 760px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.52), rgba(0,0,0,.18)),
    radial-gradient(circle at 70% 25%, rgba(201,164,92,.25), transparent 38%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2200&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-card { width: min(800px, 100%); padding: 70px 0; }
.eyebrow {
  color: var(--light-gold);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero p { font-size: 21px; color: #f2ead8; max-width: 710px; }
.hero-actions { display:flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.search-panel {
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
.search-card {
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  border: 1px solid rgba(201,164,92,.4);
  padding: 26px;
  border-radius: 18px;
}
.search-grid {
  display:grid;
  grid-template-columns: 1.2fr repeat(4, 1fr) auto;
  gap: 12px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #d7d0c3;
  padding: 13px 14px;
  border-radius: 12px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 110px; resize: vertical; }
.section { padding: 92px 0; }
.section.dark { background: var(--black); color: var(--white); }
.section.coastal { background: var(--coastal); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display:grid; grid-template-columns: repeat(2, 1fr); gap: 34px; align-items: center; }
.card {
  background: var(--white);
  border: 1px solid rgba(201,164,92,.25);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,.06);
}
.dark .card { background: var(--soft-black); border-color: rgba(201,164,92,.28); color: var(--white); }
.card-body { padding: 26px; }
.card-img {
  height: 230px;
  background-size: cover;
  background-position: center;
}
.kicker { color: var(--gold); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .16em; }
.idx-box {
  border: 1px dashed rgba(201,164,92,.7);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 34px;
  text-align:center;
}
.idx-box.light { background: #fff; }
.pill-row { display:flex; gap: 10px; flex-wrap:wrap; margin-top:18px; }
.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(201,164,92,.45);
  color: inherit;
  font-size: 13px;
}
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px solid rgba(201,164,92,.18); }
.list-check li:before { content: "✓"; color: var(--gold); position:absolute; left:0; font-weight:800; }
.cta {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.62)),
    url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2200&auto=format&fit=crop');
  color: white;
  background-size: cover;
  background-position: center;
  padding: 90px 0;
}
.form-card {
  background: white;
  color: var(--text);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.footer {
  background: var(--black);
  color: #efe6d2;
  padding: 56px 0 22px;
}
.footer-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; }
.footer a { color: #efe6d2; display:block; margin: 8px 0; }
.disclaimer {
  border-top: 1px solid rgba(201,164,92,.25);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 12px;
  color: #b8b0a2;
}
.ai-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 360px;
  max-width: calc(100vw - 30px);
}
.ai-toggle {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 16px 18px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  cursor:pointer;
}
.ai-panel {
  display:none;
  background: #fff;
  border-radius: 18px;
  overflow:hidden;
  margin-bottom: 12px;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
  border: 1px solid rgba(201,164,92,.55);
}
.ai-panel.open { display:block; }
.ai-head { background: var(--black); color: var(--white); padding: 16px; }
.ai-body { padding: 16px; max-height: 340px; overflow:auto; }
.ai-msg { padding: 10px 12px; border-radius: 14px; margin-bottom:10px; background:#f1ece1; font-size: 14px; }
.ai-msg.user { background: var(--black); color: white; margin-left: 35px; }
.ai-input { display:flex; gap:8px; padding: 12px; border-top:1px solid #eee; }
.ai-input input { border-radius: 999px; }
.ai-input button { border:0; border-radius:999px; background:var(--gold); font-weight:800; padding:0 14px; }
.page-hero {
  background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.45)), url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?q=80&w=2200&auto=format&fit=crop');
  background-size: cover;
  background-position:center;
  color:white;
  padding: 120px 0;
}
.article { background: white; padding: 44px; border-radius:18px; border:1px solid rgba(201,164,92,.25); }
.article h2 { margin-top: 34px; }
@media (max-width: 960px) {
  .menu { display:none; }
  .search-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 650px; }
  .search-panel { margin-top: 0; padding-top: 22px; }
}
