:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --dark: #1a1612;
  --brown: #3d2b1a;
  --forest: #2d4a2d;
  --forest-light: #3d6b3d;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --text: #2c2016;
  --text-muted: #6b5a4a;
  --border: #d4c9b5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  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: 18px 60px;
  background: rgba(26,22,18,0.96);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  color: #fff; letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold-light); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--forest); color: #fff; border: none;
  padding: 10px 24px; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer; transition: background .2s;
}
.nav-cta:hover { background: var(--forest-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(15,10,5,0.55), rgba(15,10,5,0.35)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 40px 80px;
  position: relative;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--warm-white));
}
.hero-inner { max-width: 800px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; background: var(--forest);
  color: #fff; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 18px; margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800;
  color: #fff; line-height: 1.1; margin-bottom: 24px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero p {
  color: rgba(255,255,255,0.85); font-size: 1.1rem;
  line-height: 1.7; max-width: 560px; margin: 0 auto 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--forest); color: #fff;
  padding: 14px 36px; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: background .2s; display: inline-block;
}
.btn-primary:hover { background: var(--forest-light); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5); color: #fff;
  padding: 14px 36px; font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: border-color .2s, color .2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  gap: 60px; padding: 28px 60px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800; color: var(--gold-light);
}
.stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px;
}

/* ── SECTION BASICS ── */
section { padding: 90px 60px; }
.section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  line-height: 1.2; color: var(--dark); margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.7; max-width: 540px;
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-imgs img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.about-imgs img:first-child { margin-top: 40px; }
.about-text .section-sub { max-width: 100%; margin-bottom: 28px; }
.badge-stat {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--dark); color: #fff; padding: 18px 28px; margin-top: 10px;
}
.badge-stat .big {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 800; color: var(--gold-light);
}
.badge-stat .label { font-size: 0.82rem; line-height: 1.4; color: rgba(255,255,255,0.8); }

/* ── SERVICES ── */
.services { background: var(--warm-white); }
.services-header { max-width: 1200px; margin: 0 auto 56px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: #fff; border: 1px solid var(--border);
  overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.12); transform: translateY(-4px); }
.service-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 44px; height: 44px; background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; margin-bottom: 14px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; margin-bottom: 8px;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.link-arrow {
  font-size: 0.82rem; font-weight: 600; color: var(--forest);
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
}
.link-arrow::after { content: ' →'; }

/* ── DARK BANNER ── */
.dark-banner {
  background: linear-gradient(rgba(15,10,5,0.75), rgba(15,10,5,0.75)),
              url('../images/banner-bg.jpg') center/cover fixed;
  padding: 100px 60px; text-align: center;
}
.dark-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; font-weight: 700;
  max-width: 700px; margin: 0 auto 24px; line-height: 1.2;
}
.dark-banner p {
  color: rgba(255,255,255,0.75); font-size: 1rem;
  max-width: 500px; margin: 0 auto 36px; line-height: 1.7;
}

/* ── PROCESS ── */
.process { background: var(--cream); }
.process-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.process-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.process-steps { display: flex; flex-direction: column; gap: 28px; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  min-width: 44px; height: 44px; background: var(--forest);
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.step-text p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews { background: var(--warm-white); }
.reviews-header { max-width: 1200px; margin: 0 auto 56px; text-align: center; }
.reviews-header .section-sub { margin: 0 auto; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.review-card { background: #fff; border: 1px solid var(--border); padding: 32px; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.review-card blockquote {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 24px; font-style: italic;
}
.reviewer { display: flex; gap: 14px; align-items: center; }
.reviewer img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.reviewer-info strong { font-size: 0.9rem; font-weight: 600; display: block; }
.reviewer-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ── CTA / CONTACT ── */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.cta-content {
  background: var(--dark); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem); color: #fff;
  font-weight: 700; line-height: 1.2; margin-bottom: 20px;
}
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.cta-img {
  background: url('../images/contact-side.jpg') center/cover;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 480px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 12px 16px; font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; outline: none; transition: border-color .2s;
}
.contact-form select { background-color: #1a1612; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold-light); }
.contact-form textarea { height: 100px; resize: none; }
.contact-form button {
  background: var(--forest); color: #fff; border: none;
  padding: 14px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; transition: background .2s;
}
.contact-form button:hover { background: var(--forest-light); }

/* ── FAQ ── */
.faq { background: var(--cream); }
.faq-header { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; color: var(--text);
}
.faq-q .ico { font-size: 1.2rem; transition: transform .3s; color: var(--forest); }
.faq-q.open .ico { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.faq-a.show { display: block; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--forest); padding: 70px 60px; text-align: center; }
.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: #fff; font-weight: 700; margin-bottom: 12px;
}
.newsletter p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.nl-form { display: flex; max-width: 480px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 14px 20px; border: none;
  background: rgba(255,255,255,0.15); color: #fff;
  font-size: 0.92rem; outline: none; font-family: 'DM Sans', sans-serif;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.5); }
.nl-form button {
  background: var(--gold); color: #fff; border: none;
  padding: 14px 28px; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s;
}
.nl-form button:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 60px 60px 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: #fff; margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold-light); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
  text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  .about-grid, .process-grid, .cta-split { grid-template-columns: 1fr; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { gap: 32px; padding: 24px; }
  .dark-banner { padding: 70px 24px; }
}
