/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: #F5EFE4; color: #1A1A18; overflow-x: hidden; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  --green:   #2B4A35;
  --green-dk:#1F3628;
  --green-bg:#0F1F15;
  --gold:    #B8942A;
  --gold-dk: #9A7A22;
  --cream:   #F5EFE4;
  --card:    #FBF7F0;
  --muted:   #6B6355;
  --border:  rgba(43,74,53,0.18);
  --sand:    #EEE8DA;
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-mono:  'DM Mono', monospace;
  --radius: 0;
  --max-w: 1280px;
}

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.label-gold { color: var(--gold); }
.text-white { color: #fff; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.section-header p { color: var(--muted); max-width: 540px; margin: 0 auto; }
.section-header-light h2 { color: #fff; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; padding: 1rem 2rem; cursor: pointer; border: none; transition: background 0.2s, color 0.2s; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dk); }
.btn-primary { background: var(--green); color: var(--cream); }
.btn-primary:hover { background: var(--green-dk); }
.btn-outline { border: 1px solid rgba(245,239,228,0.35); color: var(--cream); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--green); color: var(--cream); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.nav-logo img { height: 4rem; width: auto; object-fit: contain; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2)); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: #D4CDB8; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.btn-nav { background: var(--gold); color: #fff !important; padding: 0.5rem 1.25rem; font-weight: 600; }
.btn-nav:hover { background: var(--gold-dk) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; background: var(--green-dk); padding: 1.25rem 1.5rem; flex-direction: column; gap: 1rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 0.9rem; color: #D4CDB8; padding: 0.25rem 0; }
.nav-mobile a:hover { color: #fff; }
.nav-mobile .btn-nav { text-align: center; margin-top: 0.5rem; }

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; padding-top: 5rem; background: #1A1A18; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #0F1F15, rgba(26,46,30,0.4), transparent); }
.hero-overlay-side { background: linear-gradient(to right, rgba(15,31,21,0.7), transparent); }
.hero-content { position: relative; z-index: 2; padding-bottom: 5rem; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(184,148,42,0.2); border: 1px solid rgba(184,148,42,0.4); padding: 0.4rem 1rem; color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 2rem; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 1.5rem; max-width: 700px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: #B8C9BE; font-size: clamp(1rem, 2vw, 1.2rem); max-width: 520px; line-height: 1.7; font-weight: 300; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── STATS ── */
.stats-bar { background: var(--green); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; color: var(--gold); }
.stat span { font-size: 0.85rem; color: #A8C0AE; letter-spacing: 0.05em; }

/* ── ABOUT ── */
.about-grid { display: grid; gap: 4rem; align-items: center; }
.about-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.5rem; }
.about-content .lead { font-size: 1.1rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.about-content p { color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; line-height: 1.5; }
.check-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
.about-image img { width: 100%; height: 480px; object-fit: cover; }

/* ── SERVICES ── */
.services-section { background: var(--sand); }
.live-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--green); color: var(--cream); padding: 0.65rem 1.25rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; margin-top: 1.5rem; }
.pulse-dot { position: relative; display: inline-flex; width: 10px; height: 10px; flex-shrink: 0; }
.pulse-dot span { position: absolute; inset: 0; background: var(--gold); border-radius: 50%; }
.pulse-dot::before { content: ''; position: absolute; inset: 0; background: var(--gold); border-radius: 50%; opacity: 0.75; animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite; }
@keyframes ping { 0%{transform:scale(1);opacity:.75} 100%{transform:scale(2.2);opacity:0} }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.service-card { background: var(--card); padding: 1.5rem; border: 1px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s; }
.service-card:hover { border-color: rgba(43,74,53,0.4); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.service-icon { font-size: 1.75rem; margin-bottom: 1.25rem; width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center; background: rgba(43,74,53,0.08); }
.service-card h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--green); }
.how-section .section-header h2 { color: #fff; }
.steps-grid { display: grid; gap: 2.5rem; }
.step-number { font-family: var(--font-serif); font-size: 3rem; font-weight: 900; color: var(--gold); opacity: 0.6; margin-bottom: 1rem; }
.step h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.step p { font-size: 0.875rem; color: #A8C0AE; line-height: 1.7; }

/* ── PACKAGES ── */
.packages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.package-card { position: relative; display: flex; flex-direction: column; border: 2px solid; border-color: attr(data-color); background: var(--card); transition: transform 0.2s; }
.package-card { border-color: #8A9BA0; }
.package-card:nth-child(2) { border-color: #5C7A65; }
.package-card:nth-child(3) { border-color: #B8942A; }
.package-card:nth-child(4) { border-color: #2B4A35; }
.package-card--highlight { box-shadow: 0 20px 60px rgba(0,0,0,0.15); transform: translateY(-4px); }
.pkg-recommended { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 1rem; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.pkg-header { padding: 2rem; border-bottom: 1px solid var(--border); }
.pkg-badge { display: inline-block; color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.25rem 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.package-card:nth-child(1) .pkg-badge { background: #6B7F84; }
.package-card:nth-child(2) .pkg-badge { background: #5C7A65; }
.package-card:nth-child(3) .pkg-badge { background: #B8942A; }
.package-card:nth-child(4) .pkg-badge { background: #2B4A35; }
.pkg-price { display: flex; align-items: flex-end; gap: 0.35rem; margin-bottom: 0.75rem; }
.pkg-price strong { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 900; }
.pkg-price span { font-size: 0.85rem; color: var(--muted); padding-bottom: 4px; }
.pkg-header p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.pkg-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.pkg-includes { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.pkg-body ol { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 1.5rem; }
.pkg-body ol li { display: flex; gap: 0.75rem; font-size: 0.875rem; line-height: 1.45; }
.pkg-body ol li::before { content: counter(li-counter); counter-increment: li-counter; color: var(--gold); font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; flex-shrink: 0; padding-top: 1px; min-width: 1rem; }
.pkg-body ol { counter-reset: li-counter; }
.pkg-btn { display: block; text-align: center; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.06em; padding: 0.875rem 1.5rem; transition: background 0.2s; margin-bottom: 1rem; }
.pkg-note { text-align: center; font-size: 0.75rem; color: var(--muted); }
.packages-footnote { text-align: center; font-size: 0.875rem; color: var(--muted); margin-top: 2.5rem; }
.packages-footnote a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── FOUNDER ── */
.founder-section { background: var(--cream); }
.founder-grid { display: grid; gap: 4rem; align-items: center; max-width: 900px; margin: 0 auto; }
.founder-photo { position: relative; }
.founder-photo img { width: 100%; height: 520px; object-fit: cover; object-position: top; }
.founder-deco { position: absolute; z-index: -1; }
.founder-deco--bottom { bottom: -1rem; right: -1rem; width: 6rem; height: 6rem; background: var(--green); }
.founder-deco--top { top: -1rem; left: -1rem; width: 4rem; height: 4rem; border: 2px solid var(--gold); }
.founder-bio h3 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; margin-bottom: 0.25rem; }
.founder-role { color: var(--green); font-weight: 600; margin-bottom: 0.25rem; }
.founder-service { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem; }
.founder-bio blockquote { border-left: 4px solid var(--gold); padding-left: 1.25rem; margin-bottom: 2rem; font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; line-height: 1.55; }
.founder-bio p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.founder-bio strong { color: #1A1A18; }
.founder-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
.founder-stats strong { display: block; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.founder-stats span { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }

/* ── TEAM ── */
.team-section { background: var(--sand); }
.team-grid { display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;}
.team-card { }
.team-photo { position: relative; overflow: hidden; background: #DDD6C8; margin-bottom: 1rem; }
.team-photo img { width: 100%; height: 18rem; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,24,0.65), transparent); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 1rem; }
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay p { color: #fff; font-size: 0.8rem; font-style: italic; line-height: 1.5; }
.team-card h4 { font-family: var(--font-serif); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.85rem; font-weight: 500; color: var(--green); margin-bottom: 0.2rem; }
.team-service { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: #1F3628; }
.testimonials-grid { display: grid; gap: 1.5rem; }
.testimonial-card { background: rgba(43,74,53,0.6); border: 1px solid rgba(61,107,74,0.4); padding: 2rem; display: flex; flex-direction: column; }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1.25rem; }
.testimonial-card p { color: #C8D5CB; font-size: 0.9rem; line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 1.5rem; }
.testimonial-card footer strong { display: block; font-family: var(--font-serif); font-weight: 700; color: #fff; font-size: 1rem; }
.testimonial-card footer span { font-size: 0.75rem; color: #7A9E85; letter-spacing: 0.06em; }

/* ── CONTACT ── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; line-height: 1.2; }
.contact-info > p { color: var(--muted); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 2.5rem; height: 2.5rem; background: rgba(43,74,53,0.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-details div span { display: block; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.15rem; }
.contact-details div strong { display: block; font-weight: 600; font-size: 0.9rem; }
.contact-form-wrap { background: var(--card); border: 1px solid var(--border); padding: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea { width: 100%; background: #EEE8DA; border: 1px solid var(--border); padding: 0.75rem 1rem; font-size: 0.875rem; color: #1A1A18; outline: none; transition: border-color 0.2s; resize: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { margin-top: 0.85rem; font-size: 0.8rem; color: var(--muted); text-align: center; }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem; text-align: center; gap: 1rem; }
.form-success h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 900; }
.form-success p { color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner { position: relative; padding: 5rem 0; background: #1A1A18; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; padding: 0 1.5rem; }
.cta-logo { height: 5.5rem; width: auto; margin: 0 auto 1.5rem; display: block; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5)); transition: transform 0.3s ease; }
.cta-logo:hover { transform: scale(1.05); }
.cta-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 1.25rem; }
.cta-content p { color: #A8C0AE; line-height: 1.7; margin-bottom: 2rem; }

/* ── FOOTER ── */
.footer { background: var(--green-bg); color: #7A9E85; padding: 3rem 0 0; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand img { height: 5rem; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 360px; }
.footer-col h5 { color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid rgba(43,74,53,0.4); padding: 1.5rem 1.5rem; font-size: 0.75rem; text-align: center; }

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .testimonials-grid { grid-template-columns: repeat(3,1fr); }
  .team-grid { grid-template-columns: repeat(3,1fr); }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .founder-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .packages-grid { grid-template-columns: repeat(4,1fr); }
  .team-grid { grid-template-columns: repeat(5,1fr); }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
}
