:root {
  --bg: #0f1113;
  --surface: #1e242e;
  --text: #f0f2f4;
  --muted: #b3bfca;
  --accent: #e7c375;
  --accent2: #48e936;
  --line: rgba(255,255,255,.1);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', sans-serif;
  background: radial-gradient(circle at 15% 10%, #1c2026 0%, var(--bg) 40%, #0a0b0d 100%);
  color: var(--text);
  overflow-x: hidden;
}
h1,h2,h3,h4,p{margin:0}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding-block: 64px; position: relative; }
.stack { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.section-intro { margin-bottom: 22px; }

.bg-orb {
  position: fixed; border-radius: 50%; filter: blur(40px); opacity: .24; z-index: -1;
  animation: float 14s ease-in-out infinite;
}
.orb-1 { width: 340px; height: 340px; left: -80px; top: 10%; background: var(--accent); }
.orb-2 { width: 300px; height: 300px; right: -70px; top: 30%; background: var(--accent2); animation-delay: -4s; }
.orb-3 { width: 260px; height: 260px; left: 35%; bottom: 5%; background: #7f8cff; animation-delay: -8s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-24px)} }

.topnav-wrap { position: sticky; top: 12px; z-index: 50; padding-top: 8px; }
.topnav {
  width: min(1120px, 94%); margin: 0 auto; padding: 10px 14px;
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 12px;
  background: rgba(30,36,46,.6); border: 1px solid var(--line); border-radius: 16px;
  backdrop-filter: blur(10px);
}
.brand { font-family: 'DM Serif Display', serif; font-size: 1.2rem; }
.menu { list-style: none; display: flex; justify-content: center; gap: 14px; padding: 0; margin: 0; }
.menu a { color: var(--muted); font-size: .95rem; }
.menu a:hover { color: var(--text); }
.menu-btn { display: none; }

.hero { min-height: 72vh; display: grid; place-items: center; }
.media-overlay { padding-block: 72px; }
.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9) brightness(.55);
}
.overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,17,19,.9), rgba(15,17,19,.45)); }
.hero-content { position: relative; z-index: 2; }
.hero-content h1 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 5vw, 4rem); max-width: 16ch; }
.hero-content p { color: #dfe5eb; max-width: 62ch; }
.eyebrow { color: var(--accent); letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--accent), #f3d89d); color: #191a1d;
  border: 0; border-radius: 999px; padding: 11px 18px; font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(231,195,117,.25); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-mini { font-size: .85rem; padding: 8px 12px; }

.cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 20px;
}
.mini-card {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--line); border-radius: 16px; padding: 18px;
  transition: transform .3s ease, border-color .3s ease;
}
.mini-card:hover { transform: translateY(-5px); border-color: rgba(231,195,117,.5); }
.mini-card h3 { font-family: 'DM Serif Display', serif; margin-bottom: 8px; }
.mini-card p { color: var(--muted); }

.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: center;
}
.text-col { padding-right: 10px; }
.media-col img {
  width: 100%; aspect-ratio: 4/3; max-height: 480px; object-fit: cover;
  border-radius: 18px; border: 1px solid var(--line);
}

.tabs { margin-top: 20px; }
.tab-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.tab-btn {
  border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--text);
  border-radius: 999px; padding: 10px 14px; cursor: pointer; transition: .3s ease;
}
.tab-btn.active, .tab-btn:hover { border-color: rgba(72,233,54,.55); background: rgba(72,233,54,.08); }
.tab-panel {
  display: none; padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
}
.tab-panel.active { display: block; }

.checklist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.checklist li {
  display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start;
  padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.03);
}
.checklist span {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(231,195,117,.2); color: var(--accent); font-weight: 700;
}
.checklist p { color: var(--muted); margin-top: 6px; }

.stacked-testimonials { display: grid; gap: 14px; margin-top: 20px; }
blockquote {
  margin: 0; padding: 18px; border-left: 3px solid var(--accent);
  background: linear-gradient(120deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); border-radius: 10px;
}
blockquote p { color: #e1e6ed; }
cite { display: block; margin-top: 8px; color: var(--muted); font-style: normal; }

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

footer {
  background: #10141b; border-top: 1px solid var(--line); margin-top: 20px;
}
.footer-inner {
  width: min(1120px, 92%); margin: 0 auto; padding: 34px 0 24px;
  display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 22px;
}
.footer-inner p, .footer-inner li { color: #c5cfda; }
.footer-inner ul { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 7px; }
.footer-inner h4 { margin-bottom: 6px; }
.tagline { color: var(--accent); }
.copyright { width:min(1120px,92%); margin: 0 auto; padding: 12px 0 20px; color:#9cadbe; border-top: 1px solid rgba(255,255,255,.08); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.hero-enter { animation: heroIn .9s ease both; }
@keyframes heroIn { from{opacity:0; transform:translateY(20px) scale(.98)} to{opacity:1; transform:translateY(0) scale(1)} }

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
  .topnav { grid-template-columns: auto 1fr auto; }
  .menu { display: none; position: absolute; left: 3%; right: 3%; top: 62px; background: #1a1f28; border: 1px solid var(--line); border-radius: 12px; padding: 10px; flex-direction: column; }
  .menu.open { display: flex; }
  .menu-btn { display: inline-flex; background: transparent; color: var(--text); border: 1px solid var(--line); border-radius: 10px; padding: 6px 9px; }
}
@media (max-width: 820px) {
  .section { padding-block: 50px; }
  .hero { min-height: auto; }
  .hero-media { max-height: 340px; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .cards-grid { grid-template-columns: 1fr; }
  .btn { max-width: 100%; }
}
