*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f0c040;
  --gold-dark: #c8960a;
  --gold-light: #fde68a;
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #18181f;
  --bg4: #1e1e28;
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --border: rgba(240,192,64,0.15);
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 5vw, 3rem);
  height: 64px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
@media (max-width: 680px) {
  .nav-links { display: none; }
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 8rem clamp(1rem, 5vw, 4rem) 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,192,64,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(240,192,64,0.06) 0%, transparent 60%),
    url('bg1.png') center/cover no-repeat;
  opacity: 0.85;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.7) 70%, var(--bg) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,192,64,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #000;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(240,192,64,0.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240,192,64,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stat strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── SECTIONS BASE ── */
section {
  padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 3rem;
}
hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}
.why-card:hover {
  border-color: rgba(240,192,64,0.45);
  transform: translateY(-3px);
}
.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(240,192,64,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.25rem;
}
.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── PROCESS ── */
.process-full {
  background: var(--bg2);
}
.process-full > section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .process-full > section { grid-template-columns: 1fr; gap: 2.5rem; }
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240,192,64,0.1);
  border: 1px solid rgba(240,192,64,0.3);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
}
.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.process-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg4);
  display: grid;
  place-items: center;
}
.process-visual img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}
.process-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.6) 0%, transparent 60%);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(240,192,64,0.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem;
}

/* ── REVIEWS ── */
.reviews-full { background: var(--bg2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}
.review-card:hover {
  border-color: rgba(240,192,64,0.35);
  transform: translateY(-3px);
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.95rem;
}
.review-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 680px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--bg3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s;
  opacity: 0.85;
}
.gallery-item:hover img { transform: scale(1.07); opacity: 1; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: rgba(0,0,0,0.4);
  color: var(--gold);
  transition: opacity 0.3s;
  z-index: 1;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── LIGHTBOX ── */
.lb-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}
.lb-backdrop.active { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.16); }
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.lb-arrow:hover { background: rgba(255,255,255,0.16); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* ── CONTACT ── */
.contact-full {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-full > section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-full > section { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-intro .section-desc { margin-bottom: 0; }
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text);
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  border-color: rgba(240,192,64,0.5);
  transform: translateX(4px);
  box-shadow: -4px 0 20px rgba(240,192,64,0.1);
}
.contact-card-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(240,192,64,0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.contact-card-icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-card-value {
  font-size: 1.05rem;
  font-weight: 700;
}
.contact-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ── PHONE DIALOG ── */
.phone-dialog-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.phone-dialog-backdrop.active { display: flex; }
.phone-dialog {
  background: var(--bg3);
  border: 1px solid rgba(240,192,64,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.phone-dialog-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.35rem;
  text-align: center;
}
.phone-dialog-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}
.phone-dialog-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.phone-dialog-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.phone-dialog-option:hover {
  border-color: rgba(240,192,64,0.5);
  background: rgba(240,192,64,0.07);
  transform: translateY(-2px);
}
.phone-dialog-option-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(240,192,64,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.phone-dialog-option-icon svg { width: 20px; height: 20px; fill: currentColor; }
.phone-dialog-option-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.phone-dialog-option-number {
  font-size: 1rem;
  font-weight: 700;
}
.phone-dialog-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: background 0.2s;
}
.phone-dialog-close:hover { background: rgba(255,255,255,0.12); }

/* ── SETTLEMENTS ── */
.settlements {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1rem, 5vw, 4rem);
  text-align: center;
}
.settlements-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.settlements-body {
  position: relative;
  max-height: 72px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.settlements-body.open {
  max-height: 1000px;
}
.settlements-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  transition: opacity 0.3s;
}
.settlements-body.open .settlements-fade {
  opacity: 0;
}
.settlements-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  list-style: none;
  padding-bottom: 0.5rem;
}
.settlements-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.settlements-list li:not(:last-child)::after {
  content: '·';
  margin-left: 0.5rem;
  color: var(--border);
}
.settlements-toggle {
  margin-top: 0.75rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.settlements-toggle:hover {
  border-color: var(--gold);
  background: rgba(240,192,64,0.06);
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
footer a { color: var(--gold); text-decoration: none; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
