*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --ivory: #FAF7F2;
  --sand: #E8DDD0;
  --gold: #B8922A;
  --gold-light: #D4A940;
  --charcoal: #1C1C1C;
  --warm-gray: #6B6360;
  --dark-brown: #2C2118;
  --accent: #8B6914;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  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: 1.4rem 5vw;
  background: rgba(250,247,242,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,146,42,0.15);
  animation: fadeDown .7s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  letter-spacing: .04em; color: var(--dark-brown);
  text-decoration: none;
}
.nav-brand span { color: var(--gold); }

.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--warm-gray); text-decoration: none; transition: color .25s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: #fff;
  padding: .6rem 1.5rem;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .25s, transform .2s; display: inline-block;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(184,146,42,0.07) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(184,146,42,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vw 5vw 8vw 7vw;
  animation: fadeUp .9s .2s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1.18;
  color: var(--dark-brown); margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: .95rem; line-height: 1.8;
  color: var(--warm-gray); max-width: 440px; margin-bottom: 2.4rem;
}

.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--dark-brown); color: var(--cream);
  padding: .9rem 2.2rem;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .25s, transform .2s; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid var(--charcoal); color: var(--charcoal);
  padding: .9rem 2.2rem;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  background: transparent; cursor: pointer; text-decoration: none;
  transition: border-color .25s, color .25s, transform .2s; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-right {
  position: relative; overflow: hidden;
  animation: fadeIn 1.2s .4s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-right-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  display: flex; align-items: center; justify-content: center;
}

.hero-illustration {
  width: 80%; max-width: 480px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.hero-card {
  background: #fff; padding: 1.6rem;
  box-shadow: 0 4px 24px rgba(28,28,28,.08);
}
.hero-card:nth-child(1) { animation: cardFloat 4s 0s ease-in-out infinite alternate; }
.hero-card:nth-child(2) { animation: cardFloat 4s 1s ease-in-out infinite alternate; margin-top: 32px; }
.hero-card:nth-child(3) { animation: cardFloat 4s .5s ease-in-out infinite alternate; margin-top: -16px; }
.hero-card:nth-child(4) { animation: cardFloat 4s 1.5s ease-in-out infinite alternate; }

@keyframes cardFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

.hero-card-icon {
  width: 36px; height: 36px; margin-bottom: .8rem;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
}
.hero-card-icon svg { width: 18px; height: 18px; fill: #fff; }

.hero-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; font-weight: 600; color: var(--dark-brown); margin-bottom: .3rem;
}
.hero-card p { font-size: .72rem; color: var(--warm-gray); line-height: 1.5; }

/* ── STATS ── */
.stats {
  background: var(--dark-brown);
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 3.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem; font-weight: 300; color: var(--gold-light); line-height: 1;
}
.stat-label {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: .6rem;
}

/* ── SERVICES ── */
.services { padding: 8rem 7vw; }

.section-header { margin-bottom: 4.5rem; }

.section-eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 300; color: var(--dark-brown); line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}

.service-card {
  background: var(--cream); padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background .3s; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { background: var(--sand); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: rgba(184,146,42,.15); line-height: 1; margin-bottom: .8rem;
}
.service-icon {
  width: 48px; height: 48px; margin-bottom: 1.4rem;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 22px; height: 22px; fill: #fff; }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--dark-brown); margin-bottom: .9rem;
}
.service-card p { font-size: .88rem; line-height: 1.75; color: var(--warm-gray); }

.service-link {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: gap .25s;
}
.service-link::after { content: '→'; }
.service-link:hover { gap: .9rem; }

/* ── WHY ── */
.why {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
}
.why-left { padding: 8rem 5vw 8rem 7vw; }
.why-left .section-eyebrow { color: var(--gold-light); }
.why-left .section-eyebrow::before { background: var(--gold-light); }
.why-left .section-title { color: var(--cream); }
.why-left .section-title em { color: var(--gold-light); }

.why-list { margin-top: 2.5rem; list-style: none; }
.why-list li {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.65);
}
.why-list li::before {
  content: '✦'; color: var(--gold); font-size: .85rem; margin-top: .15rem; flex-shrink: 0;
}

.why-right {
  background: var(--sand); padding: 8rem 5vw;
  display: flex; flex-direction: column; justify-content: center; gap: 1.4rem;
}
.cert-block {
  background: #fff; padding: 1.8rem 2rem;
  display: flex; align-items: center; gap: 1.4rem;
  box-shadow: 0 2px 16px rgba(28,28,28,.06);
  transition: transform .25s, box-shadow .25s;
}
.cert-block:hover { transform: translateX(6px); box-shadow: 0 6px 24px rgba(28,28,28,.1); }
.cert-dot { width: 10px; height: 10px; background: var(--gold); flex-shrink: 0; }
.cert-block span { font-size: .88rem; color: var(--warm-gray); line-height: 1.5; }

/* ── FAQ ── */
.faq {
  padding: 8rem 7vw;
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem;
}
.faq-left { position: sticky; top: 120px; align-self: start; }
.faq-intro { margin-top: 1rem; font-size: .9rem; color: var(--warm-gray); line-height: 1.75; }

.faq-item { border-bottom: 1px solid var(--sand); }

.faq-question {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--dark-brown); cursor: pointer; text-align: left;
  transition: color .25s; gap: 1rem;
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; line-height: 1;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold); border-color: var(--gold); color: #fff;
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.4rem; }
.faq-answer p { font-size: .9rem; line-height: 1.8; color: var(--warm-gray); }

/* ── CONTACT ── */
.contact {
  background: var(--cream); padding: 8rem 7vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-detail { display: flex; gap: 1.4rem; align-items: flex-start; }
.contact-detail-icon {
  width: 42px; height: 42px; background: var(--dark-brown);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--gold-light); }
.contact-detail h4 {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .3rem;
}
.contact-detail p { font-size: .88rem; line-height: 1.7; color: var(--warm-gray); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--warm-gray);
}
.form-field input,
.form-field textarea {
  background: #fff; border: 1px solid var(--sand);
  padding: .85rem 1.1rem;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; color: var(--charcoal);
  transition: border-color .25s; outline: none;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 110px; }

/* ── FOOTER ── */
footer { background: var(--dark-brown); padding: 5rem 7vw 2.5rem; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: #fff; font-weight: 600;
}
.footer-logo span { color: var(--gold-light); }
.footer-brand p {
  font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.45);
  margin-top: .9rem; max-width: 280px;
}
.footer-col h5 {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .25s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  font-size: .75rem; color: rgba(255,255,255,.3);
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
}