/* ============================================================
   SECTIONS — Page-specific layout styles
   ============================================================ */

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(15, 13, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  padding: 0 var(--section-px);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
#home {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--section-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Services ── */
#services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ── How It Works ── */
#how {
  background: var(--dark);
}

#how .section-tag  { color: var(--gold); }
#how .section-title { color: #fff; }
#how .section-sub  { color: rgba(255, 255, 255, 0.55); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.step {
  background: var(--dark-2);
  padding: 48px 32px;
  transition: background 0.2s;
}

.step:hover {
  background: var(--dark-3);
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── About ── */
#about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-logo-wrap {
  background: var(--dark);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
}

.about-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-content .section-tag {
  display: block;
}

.about-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}

.about-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── Testimonials ── */
#testimonials {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ── Contact ── */
#contact {
  background: var(--dark);
}

#contact .section-tag  { color: var(--gold); }
#contact .section-title { color: #fff; }
#contact .section-sub  { color: rgba(255, 255, 255, 0.55); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Footer ── */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 48px var(--section-px) 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy span {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 48px; }
  .about-grid        { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid        { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  section            { padding: 64px var(--section-px); }
  .hero-inner        { padding: 60px var(--section-px); }
  .hero-stats        { grid-template-columns: 1fr; }
  .nav-links         { display: none; }
  .hamburger         { display: flex; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; gap: 12px; text-align: center; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 24px var(--section-px);
    gap: 20px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }
}
