/* ─── CSS Variables ─── */
:root {
  --primary-gold: #D4AF37;
  --primary-warm: #E8C9A4;
  --accent-purple: #6C3053;
  --text-dark: #3A2F28;
  --text-light: #5F534D;
  --bg-cream: #F8F4F0;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 32px rgba(0,0,0,0.08);
  --border-light: #E8D5C8;
}

/* ─── Reset ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── Layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Navigation ─── */
.nav-bar {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid var(--primary-gold);
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.logo-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-purple);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-purple);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* ─── Buttons ─── */
.cta-button {
  background: linear-gradient(135deg, var(--primary-gold), #C8A57A);
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.5);
}

.cta-button-light {
  background: var(--white);
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ─── Hamburger ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── Mobile Menu ─── */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 1500;
  transition: all 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  z-index: 2000;
  padding: 5rem 2rem 2rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 1.5rem;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent-purple);
}

.mobile-menu .cta-button {
  display: block;
  margin-top: 2rem;
  text-align: center;
}

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #F0E8D9 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-tag {
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-dark), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Sections ─── */
.section-white {
  padding: 5rem 0;
  background: var(--white);
}

.section-cream {
  padding: 5rem 0;
  background: var(--bg-cream);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Cards / Feature Grid ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border-color: var(--primary-gold);
}

.card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* ─── Check List ─── */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--text-light);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-purple);
  font-weight: bold;
  font-size: 1.1rem;
}

/* ─── Two Column Grid ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  max-width: 420px;
  margin: 0 auto;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-gold);
}

.faq-item h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.contact-details {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.contact-details h2 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-details p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.contact-details a {
  color: var(--accent-purple);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.contact-details a:hover {
  opacity: 0.75;
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent-purple), #5A2843);
  color: var(--white);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.92;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Footer ─── */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  text-align: center;
}

footer p {
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 2;
}

footer a {
  color: var(--primary-gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav-menu,
  .nav-container > .cta-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .container {
    padding: 0 16px;
  }

  .section-white,
  .section-cream {
    padding: 3.5rem 0;
  }

  .card {
    padding: 1.75rem;
  }

  .logo-title {
    font-size: 1.1rem;
  }
}
