:root {
  --gold: #C9A84C;
  --gold-light: #e2c074;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --text-muted: #888;
  --text-light: #ccc;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  width: 100%;
}
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; }
img { max-width: 100%; height: auto; display: block; }

/* NAVBAR */
.navbar {
  background: transparent;
  padding: 16px 0;
  transition: background 0.4s, padding 0.4s;
  z-index: 1050;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.navbar-brand img { height: 44px; width: auto; }
.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }
.nav-link {
  color: var(--text-light) !important;
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 14px !important;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--gold) !important; }
.btn-nav {
  background: var(--gold);
  color: var(--black) !important;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  font-weight: 600;
  padding: 10px 22px !important;
  border-radius: 0;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold-light); }

/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero.jpeg') center/cover no-repeat;
  filter: brightness(0.22);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.3) 100%);
}
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 0 40px;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero h1 {
  font-size: clamp(2.2rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero h1 span { color: var(--gold); font-weight: 600; }
.hero-sub {
  font-size: clamp(0.85rem, 1.8vw, 0.98rem);
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats-bar {
  position: relative;
  z-index: 2;
  display: flex;
  border-top: 1px solid rgba(201,168,76,0.15);
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
}
.stat-block {
  flex: 1;
  background: rgba(201,168,76,0.06);
  border-right: 1px solid rgba(201,168,76,0.15);
  padding: 26px 16px;
  text-align: center;
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: clamp(0.55rem, 1.2vw, 0.62rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

/* BUTTONS */
.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); color: var(--black); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

/* MISC */
.gold-divider { width: 56px; height: 1px; background: var(--gold); margin: 0 auto 22px; }
.gold-divider-left { width: 56px; height: 1px; background: var(--gold); margin-bottom: 22px; }
.gold-bar { width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
section { padding: 80px 0; }
.section-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 18px;
}
.section-title span { color: var(--gold); }
.section-body { color: var(--text-light); font-size: 0.9rem; line-height: 1.9; }

/* HOW IT WORKS */
#how { background: var(--dark); }
.step-card {
  border: 1px solid rgba(201,168,76,0.12);
  padding: 38px 28px;
  height: 100%;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.step-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.03); }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700;
  color: rgba(201,168,76,0.07);
  line-height: 1; position: absolute; top: 14px; right: 20px;
  user-select: none;
}
.step-icon {
  width: 46px; height: 46px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--gold); font-size: 1.05rem;
}
.step-title { font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; }
.step-body { color: var(--text-muted); font-size: 0.84rem; line-height: 1.8; }

/* WHY */
#why { background: var(--black); }
.why-img { width: 100%; height: 100%; min-height: 300px; max-height: 500px; object-fit: cover; filter: brightness(0.75) saturate(0.8); }
.why-item { display: flex; gap: 16px; margin-bottom: 28px; }
.why-icon {
  width: 38px; height: 38px; min-width: 38px;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.88rem; margin-top: 2px;
}
.why-title { font-size: 1rem; font-weight: 500; margin-bottom: 4px; font-family: 'Cormorant Garamond', serif; }
.why-body { color: var(--text-muted); font-size: 0.83rem; line-height: 1.75; }

/* AREAS */
#areas { background: var(--dark2); }
.area-card { position: relative; overflow: hidden; height: 340px; cursor: pointer; }
.area-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s, filter 0.6s;
  filter: brightness(0.45) saturate(0.7);
}
.area-card:hover img { transform: scale(1.06); filter: brightness(0.3); }
.area-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 60%); }
.area-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 26px; }
.area-tag { font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 7px; }
.area-name { font-size: 1.8rem; font-weight: 500; }
.area-desc { color: var(--text-muted); font-size: 0.78rem; margin-top: 5px; line-height: 1.6; }
.area-arrow { position: absolute; top: 26px; right: 26px; color: var(--gold); font-size: 1rem; opacity: 0; transition: opacity 0.3s, transform 0.3s; transform: translateX(-8px); }
.area-card:hover .area-arrow { opacity: 1; transform: translateX(0); }

/* TESTIMONIALS */
#testimonials { background: var(--black); }
.testimonial-card { border: 1px solid rgba(201,168,76,0.12); padding: 36px 32px; height: 100%; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 700; color: rgba(201,168,76,0.1); line-height: 0.6; margin-bottom: 16px; }
.testimonial-text { color: var(--text-light); font-size: 0.88rem; line-height: 1.85; margin-bottom: 24px; font-style: italic; }
.testimonial-author { color: var(--gold); font-size: 0.76rem; letter-spacing: 0.1em; font-weight: 600; }
.testimonial-loc { color: var(--text-muted); font-size: 0.68rem; letter-spacing: 0.12em; margin-top: 3px; }
.stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.08em; margin-bottom: 16px; }

/* FORM */
#offer { background: var(--dark); }
.form-section { background: var(--dark2); border: 1px solid rgba(201,168,76,0.15); padding: 40px 36px; }
.form-label { font-size: 0.63rem; letter-spacing: 0.17em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; margin-bottom: 6px; }
.form-control, .form-select {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0 !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 12px 15px;
  transition: border-color 0.3s;
  width: 100%;
}
.form-control:focus, .form-select:focus { border-color: var(--gold) !important; box-shadow: none !important; background: rgba(255,255,255,0.06) !important; }
.form-control::placeholder { color: rgba(255,255,255,0.2); }
select option { background: var(--dark2); color: #fff; }
.form-success { display: none; text-align: center; padding: 40px 16px; }
.form-success i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; display: block; }
.badge-region { display: inline-block; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 11px; margin: 3px; }

/* FAQ */
#faq { background: var(--black); }
.accordion-item { background: transparent !important; border: none !important; border-bottom: 1px solid rgba(201,168,76,0.12) !important; }
.accordion-button {
  background: transparent !important; color: #fff !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: 500; padding: 20px 0; box-shadow: none !important;
}
.accordion-button::after { filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg); flex-shrink: 0; margin-left: 12px; }
.accordion-button:not(.collapsed) { color: var(--gold) !important; }
.accordion-body { padding: 0 0 20px; color: var(--text-muted); font-size: 0.85rem; line-height: 1.85; }

/* CTA STRIP */
.cta-strip { background: var(--gold); padding: 56px 16px; text-align: center; }
.cta-strip h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 5vw, 2.8rem); color: var(--black); font-weight: 600; margin-bottom: 12px; }
.cta-strip p { color: rgba(0,0,0,0.6); font-size: 0.86rem; margin-bottom: 26px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-strip a { background: var(--black); color: var(--gold); font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 15px 38px; text-decoration: none; display: inline-block; transition: opacity 0.3s; }
.cta-strip a:hover { opacity: 0.82; }

/* FOOTER */
footer { background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.1); padding: 60px 0 26px; }
.footer-logo img { height: 20px; width: auto; }
.footer-desc { color: var(--text-muted); font-size: 0.8rem; line-height: 1.8; margin-top: 16px; max-width: 300px; }
.footer-heading { font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.8rem; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.71rem; color: rgba(255,255,255,0.2); margin: 0; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.7rem; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .navbar {
        background: rgba(10,10,10,0.97) !important;
        border-bottom: 1px solid rgba(201,168,76,0.15);
        padding: 12px 0;
    }
    section { padding: 64px 0; }
    .hero { padding-top: 70px; }
    .why-img { max-height: 340px; min-height: 240px; }
}
@media (max-width: 767px) {
  section { padding: 52px 0; }
  .hero { padding-top: 66px; min-height: 100svh; }
  .hero-body { padding: 32px 0 24px; align-items: flex-start; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-sub { font-size: 0.85rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-gold,
  .hero-cta .btn-outline-gold { width: 100%; text-align: center; padding: 14px 20px; }
  .stat-block { padding: 20px 8px; }
  .stat-num { font-size: 1.55rem; }
  .stat-label { font-size: 0.52rem; letter-spacing: 0.08em; }
  .step-card { padding: 28px 20px; }
  .testimonial-card { padding: 28px 20px; }
  .form-section { padding: 28px 18px; }
  .area-card { height: 260px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-strip { padding: 44px 16px; }
  .cta-strip a { display: block; text-align: center; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 1.85rem; }
  .navbar-brand img { height: 36px; }
  .stat-label { letter-spacing: 0.04em; }
}
/* FIELD ERRORS */
.field-error {
  display: block;
  font-size: 0.7rem;
  color: #e05c5c;
  margin-top: 4px;
  line-height: 1.4;
}

/* CONSENT CHECKBOXES */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 300;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.15rem;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-label a {
  color: var(--gold);
  text-decoration: none;
}
.consent-label a:hover {
  text-decoration: underline;
}