:root{
  --bg0:#061a13;
  --bg1:#0a251b;
  --surface: rgba(245,240,230,0.06);
  --surface-2: rgba(245,240,230,0.1);
  --text:#f5f0e6;
  --muted: rgba(245,240,230,0.72);
  --muted-2: rgba(245,240,230,0.58);
  --gold:#d6b35b;
  --gold-2:#f1d38a;
  --line: rgba(214,179,91,0.28);
  --shadow: 0 18px 60px rgba(0,0,0,0.45);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.28);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --focus: rgba(214,179,91,0.55);
  --max: 1120px;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(214,179,91,0.16), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(214,179,91,0.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  line-height: 1.55;
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
}

.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.section{
  padding: 78px 0;
}

.section.alt{
  background: linear-gradient(180deg, rgba(245,240,230,0.03), rgba(245,240,230,0.01));
  border-top: 1px solid rgba(214,179,91,0.10);
  border-bottom: 1px solid rgba(214,179,91,0.10);
}

.section-head{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 34px;
}

.lead{
  margin: 0;
  color: var(--muted);
  max-width: 78ch;
}

h1,h2,h3{
  margin: 0;
  letter-spacing: -0.01em;
}

.gold{
  color: var(--gold);
}

.eyebrow{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.eyebrow-pill{
  padding: 8px 12px;
  border: 1px solid rgba(214,179,91,0.3);
  background: rgba(214,179,91,0.09);
  border-radius: 999px;
  font-weight: 700;
  color: var(--gold-2);
}

.eyebrow-sub{
  color: var(--muted);
  font-weight: 600;
}

.gold-line{
  width: 74px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 999px;
}

/* Buttons */
.primary-btn{
  appearance: none;
  border: 1px solid rgba(214,179,91,0.35);
  background: linear-gradient(180deg, rgba(214,179,91,0.95), rgba(214,179,91,0.75));
  color: #081a13;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(214,179,91,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  user-select: none;
}

.primary-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 18px 46px rgba(214,179,91,0.24);
}

.primary-btn:active{
  transform: translateY(0px);
}

.primary-btn:focus{
  outline: none;
  box-shadow: 0 0 0 4px var(--focus), 0 14px 40px rgba(214,179,91,0.18);
}

.primary-btn.full-width{
  width: 100%;
}

.primary-btn.ghost{
  background: transparent;
  color: var(--gold-2);
  box-shadow: none;
}

/* Reveal animations */
.reveal{
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0px);
}

.reveal{
  transition:
    opacity 700ms cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .primary-btn{
    transition: none;
  }
}

/* Hero */
.hero{
  padding-top: 120px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 26px;
  align-items: center;
}

.hero-copy{
  padding: 18px 0;
}

.hero-title{
  font-size: 44px;
  line-height: 1.07;
  margin-top: 0;
  margin-bottom: 14px;
}

.hero-subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 68ch;
}

.trust-badges{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.badge{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(245,240,230,0.06);
  border: 1px solid rgba(214,179,91,0.24);
}

.badge-icon{
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(214,179,91,0.18);
  color: var(--gold-2);
  font-weight: 900;
  font-size: 13px;
}

.badge-text{
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.key-stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 22px;
}

.stat{
  border-radius: var(--radius-md);
  background: rgba(245,240,230,0.045);
  border: 1px solid rgba(245,240,230,0.10);
  padding: 14px 14px;
}

.stat-dt{
  color: var(--muted-2);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 8px;
}

.stat-dd{
  font-weight: 900;
  font-size: 16px;
}

.hero-cta{
  margin-top: 8px;
}

.fineprint{
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 13.5px;
}

/* Hero Visual */
.hero-visual{
  position: relative;
  min-height: 420px;
}

.visual-card{
  background: linear-gradient(180deg, rgba(245,240,230,0.06), rgba(245,240,230,0.03));
  border: 1px solid rgba(214,179,91,0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  overflow: hidden;
}

.visual-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.visual-label{
  font-weight: 800;
  color: var(--gold-2);
  font-size: 13px;
}

.visual-map{
  height: 248px;
  border-radius: 16px;
  border: 1px solid rgba(245,240,230,0.10);
  background:
    radial-gradient(600px 280px at 30% 10%, rgba(214,179,91,0.22), transparent 52%),
    linear-gradient(180deg, rgba(245,240,230,0.05), rgba(245,240,230,0.02));
  position: relative;
  overflow: hidden;
}

.grid-overlay{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,240,230,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,230,0.10) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.25;
}

.pin{
  position: absolute;
  left: 52%;
  top: 42%;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 10px rgba(214,179,91,0.16), 0 16px 40px rgba(214,179,91,0.25);
  transform: translate(-50%, -50%);
}

.visual-bottom{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.mini-badge{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245,240,230,0.10);
  background: rgba(245,240,230,0.03);
  font-weight: 700;
  color: var(--muted);
  font-size: 13px;
}

.mini-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(214,179,91,0.15);
}

.side-metrics{
  position: absolute;
  right: -10px;
  bottom: -10px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  pointer-events: none;
}

.metric{
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(214,179,91,0.18);
  background: rgba(0,0,0,0.10);
  backdrop-filter: blur(10px);
}

.metric-num{
  font-size: 22px;
  font-weight: 900;
  color: var(--gold-2);
  line-height: 1.1;
}

.metric-label{
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

/* Cards / Grid */
.cards{
  display: grid;
  gap: 14px;
}

.cards-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card{
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(245,240,230,0.04);
  border: 1px solid rgba(245,240,230,0.09);
}

.card h3{
  font-size: 16px;
  margin-bottom: 10px;
}

.card p{
  margin: 0;
  color: var(--muted);
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.feature{
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(245,240,230,0.04);
  border: 1px solid rgba(214,179,91,0.16);
}

.feature-icon{
  font-size: 24px;
  margin-bottom: 10px;
}

.feature h3{
  font-size: 16px;
  margin-bottom: 10px;
}

.feature p{
  margin: 0;
  color: var(--muted);
}

.two-col{
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 14px;
}

.panel{
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(245,240,230,0.04);
  border: 1px solid rgba(245,240,230,0.09);
}

.panel h3{
  font-size: 16px;
  margin-bottom: 12px;
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li{
  color: var(--muted);
  font-weight: 600;
}

.check{
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,91,0.25);
  color: var(--gold-2);
  background: rgba(214,179,91,0.10);
  font-size: 12px;
  font-weight: 900;
}

.info-stack{
  display: grid;
  gap: 10px;
}

.info-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(214,179,91,0.16);
}

.info-row:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.info-k{
  color: var(--muted-2);
  font-weight: 700;
  font-size: 12px;
}

.info-v{
  font-weight: 800;
}

.muted{
  color: var(--muted);
}

/* Media */
.media-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}

.media-card{
  margin: 0;
}

.media-placeholder{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,240,230,0.10);
  overflow: hidden;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(245,240,230,0.06), rgba(245,240,230,0.02));
  position: relative;
}

.media-placeholder::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 240px at 30% 10%, rgba(214,179,91,0.25), transparent 55%),
    radial-gradient(600px 260px at 90% 80%, rgba(214,179,91,0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.media-video{
  background:
    linear-gradient(180deg, rgba(245,240,230,0.06), rgba(245,240,230,0.02));
}

.media-image{
  background:
    linear-gradient(180deg, rgba(214,179,91,0.08), rgba(245,240,230,0.02));
}

.media-image-2{
  background:
    linear-gradient(180deg, rgba(245,240,230,0.05), rgba(214,179,91,0.05));
}

.media-label{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-weight: 900;
  color: rgba(245,240,230,0.92);
  background: rgba(6,26,19,0.55);
  border: 1px solid rgba(214,179,91,0.22);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12.5px;
}

.play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(214,179,91,0.28);
  background: rgba(214,179,91,0.14);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(214,179,91,0.18);
}

.play::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid rgba(214,179,91,0.95);
}

.media-card figcaption{
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

/* Plot details */
.plot-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plot-card{
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(245,240,230,0.04);
  border: 1px solid rgba(214,179,91,0.16);
}

.plot-card h3{
  font-size: 16px;
  margin-bottom: 10px;
}

.plot-range{
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--gold-2);
}

/* Note strip */
.note-strip{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214,179,91,0.18);
  background: rgba(214,179,91,0.06);
}

.note-icon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(214,179,91,0.12);
  color: var(--gold-2);
  font-weight: 900;
  flex: 0 0 auto;
}

/* Testimonials */
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial{
  border-radius: var(--radius-lg);
  background: rgba(245,240,230,0.04);
  border: 1px solid rgba(245,240,230,0.09);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.avatar{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(214,179,91,0.14);
  border: 1px solid rgba(214,179,91,0.22);
  color: var(--gold-2);
  font-weight: 900;
}

.testimonial-body h3{
  font-size: 15px;
  margin: 0 0 8px;
}

.testimonial-body p{
  margin: 0;
  color: var(--muted);
}

.testimonial-meta{
  margin-top: 10px;
  color: var(--muted-2);
  font-weight: 700;
  font-size: 12.5px;
}

/* Authority */
.authority-row{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}

.authority-card{
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(245,240,230,0.04);
  border: 1px solid rgba(245,240,230,0.09);
}

.authority-card h3{
  margin-bottom: 8px;
  font-size: 16px;
}

.authority-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.auth-badge{
  border-radius: 999px;
  border: 1px solid rgba(214,179,91,0.22);
  background: rgba(214,179,91,0.10);
  padding: 10px 12px;
  font-weight: 900;
  color: var(--gold-2);
  font-size: 12.5px;
}

/* Map */
.map-wrap{
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,240,230,0.10);
  overflow: hidden;
  background: rgba(245,240,230,0.03);
}

.map-iframe{
  width: 100%;
  height: 340px;
  display: block;
  border: 0;
  filter: saturate(0.95) contrast(1.03);
}

.map-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.map-overlay-card{
  pointer-events: none;
  background: rgba(6,26,19,0.62);
  border: 1px solid rgba(214,179,91,0.24);
  border-radius: 18px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 20px 70px rgba(0,0,0,0.45);
}

.map-overlay-title{
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 8px;
}

.map-overlay-sub{
  color: var(--muted);
  font-weight: 700;
}

/* Urgency */
.urgency{
  border-top: 1px solid rgba(214,179,91,0.10);
  border-bottom: 1px solid rgba(214,179,91,0.10);
}

.urgency-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.urgency-copy{
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(214,179,91,0.16), transparent 60%),
    rgba(245,240,230,0.03);
  border: 1px solid rgba(214,179,91,0.14);
}

.urgency-copy h2{
  margin-bottom: 12px;
  font-size: 28px;
}

.urgency-list{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.urgency-item{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(245,240,230,0.09);
  background: rgba(0,0,0,0.10);
}

.urgency-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(214,179,91,0.16);
  flex: 0 0 auto;
}

.urgency-box{
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(245,240,230,0.03);
  border: 1px solid rgba(245,240,230,0.09);
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}

.urgency-box-title{
  font-weight: 900;
  color: var(--gold-2);
  margin-top: 10px;
}

.small-note{
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--muted-2);
  font-weight: 700;
}

/* Form */
.form-shell{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214,179,91,0.18);
  background:
    radial-gradient(800px 340px at 20% 0%, rgba(214,179,91,0.14), transparent 60%),
    rgba(245,240,230,0.03);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.lead-form{
  display: grid;
  gap: 14px;
}

.form-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.field{
  display: grid;
  gap: 8px;
}

label{
  font-weight: 800;
  color: rgba(245,240,230,0.92);
  font-size: 13px;
}

input,select{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(245,240,230,0.14);
  background: rgba(6,26,19,0.35);
  color: var(--text);
  padding: 12px 12px;
  font-size: 14px;
}

input::placeholder{
  color: rgba(245,240,230,0.45);
}

input:focus,select:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(214,179,91,0.22);
  border-color: rgba(214,179,91,0.45);
}

.form-actions{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.form-status{
  min-height: 20px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.privacy-note{
  margin: 0;
  color: var(--muted-2);
  font-size: 12.5px;
  font-weight: 700;
}

.form-section .section-head{
  margin-bottom: 18px;
}

/* FAQ */
.faq-grid{
  display: grid;
  gap: 12px;
}

.faq-item{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,240,230,0.09);
  background: rgba(245,240,230,0.03);
  padding: 12px 14px;
}

.faq-item summary{
  cursor: pointer;
  font-weight: 900;
}

.faq-content{
  color: var(--muted);
  padding-top: 10px;
  font-weight: 600;
}

/* Final CTA */
.final-cta-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214,179,91,0.20);
  background:
    radial-gradient(900px 360px at 10% 0%, rgba(214,179,91,0.16), transparent 60%),
    rgba(245,240,230,0.03);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.final-cta-head{
  display: grid;
  gap: 10px;
}

.final-cta-actions{
  margin-top: 16px;
}

/* Thank you page */
.thankyou-wrap{
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.thankyou-card{
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214,179,91,0.22);
  background:
    radial-gradient(900px 340px at 20% 0%, rgba(214,179,91,0.18), transparent 60%),
    rgba(245,240,230,0.03);
  box-shadow: var(--shadow);
  padding: 22px;
}

.thankyou-message{
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
  font-weight: 900;
}

.thankyou-sub{
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.thankyou-actions{
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .hero-visual{
    min-height: 340px;
  }
  .side-metrics{
    position: static;
    margin-top: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .key-stats{
    grid-template-columns: 1fr 1fr;
  }

  .cards-3,
  .feature-grid,
  .media-grid,
  .plot-grid,
  .testimonial-grid,
  .authority-row,
  .urgency-grid{
    grid-template-columns: 1fr;
  }

  .media-grid{
    gap: 14px;
  }

  .media-placeholder{
    min-height: 200px;
  }

  .form-grid{
    grid-template-columns: 1fr;
  }

  .map-iframe{
    height: 280px;
  }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  transform: translateY(1px);
  height: 34px;   /* adjust if needed */
  width: auto;
  display: block;
  object-fit: contain;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 40px;
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
  color: #0b3d2e;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c9a54c; /* gold */
}

/* CTA */
.nav-cta .primary-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}