@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --ivory: #FAF7F2;
  --ivory-dark: #F0EBE0;
  --sage: #7A8C6E;
  --sage-light: #C2CEBC;
  --sage-dark: #4A5C40;
  --gold: #C8A96E;
  --gold-light: #E8D5A8;
  --gold-dark: #8C6E3A;
  --earth: #6B5744;
  --charcoal: #2C2A24;
  --text-muted: #7A7268;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.25);
  padding: 0 3rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  padding: 0.45rem 1.3rem;
  border-radius: 2px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--charcoal); display: block; }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1585506942812-e72b29cef752?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,42,36,0.5) 0%, rgba(44,42,36,0.25) 50%, rgba(44,42,36,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem;
  animation: fadeUp 1.3s ease forwards;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.55;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); margin-left: 1rem; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-dark { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn-dark:hover { background: var(--earth); border-color: var(--earth); }
.btn-sage { background: var(--sage-dark); color: #fff; border-color: var(--sage-dark); }
.btn-sage:hover { background: var(--sage); }

/* SECTIONS */
section { padding: 6rem 3rem; }
.section-center { text-align: center; }
.section-center .section-subtitle, .section-center .divider { margin-left: auto; margin-right: auto; }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.section-title em { font-style: italic; color: var(--sage-dark); }

.section-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem 0 1.5rem;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.18);
  transition: transform 0.35s, box-shadow 0.35s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 14px 45px rgba(44,42,36,0.1); }

.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--sage-light), var(--ivory-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-img { width: 100%; height: 200px; object-fit: cover; display: block; }

.card-body { padding: 1.5rem; }
.card-tag { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.4rem; }
.card-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.5rem; }
.card-desc { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 1rem; }
.card-meta {
  display: flex; gap: 1rem; font-size: 0.77rem; color: var(--text-muted);
  border-top: 1px solid var(--ivory-dark); padding-top: 1rem;
}
.badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.badge-easy { background: #E8F0E4; color: var(--sage-dark); }
.badge-medium { background: #FDF3E0; color: var(--gold-dark); }
.badge-hard { background: #F5E8E0; color: var(--earth); }

/* TESTIMONIALS */
.testimonial-card {
  background: #fff;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 3px;
  padding: 2rem 2rem 1.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold-light);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--earth);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 0.4rem; }
.testimonial-author { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.testimonial-location { font-size: 0.78rem; color: var(--text-muted); }

/* FORM */
.form-wrap {
  background: #fff;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 3px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  background: var(--ivory);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* PAGE HERO */
.page-hero {
  height: 45vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(44,42,36,0.52); }
.page-hero-content { position: relative; z-index: 2; padding: 2rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
}
.page-hero p { color: rgba(255,255,255,0.72); font-size: 0.9rem; letter-spacing: 0.1em; }

/* HIGHLIGHT BAND */
.band {
  background: var(--sage-dark);
  color: #fff;
  padding: 4rem 3rem;
  text-align: center;
}
.band .section-title { color: #fff; }
.band .section-subtitle { color: rgba(255,255,255,0.75); margin-left: auto; margin-right: auto; }

/* ABOUT SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-img-placeholder {
  height: 480px;
  background: linear-gradient(135deg, var(--sage-light), var(--ivory-dark));
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}
.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(200,169,110,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 200;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.55);
  padding: 5rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-heading {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.87rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-img-placeholder { height: 280px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(200,169,110,0.2); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--ivory); padding: 1.5rem 2rem; border-bottom: 1px solid var(--ivory-dark); gap: 1.2rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .band { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  footer { padding: 3rem 1.5rem 2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
