/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald: #064e3b;
  --emerald-light: #065f46;
  --emerald-dark: #022c22;
  --cream: #faf6f0;
  --cream-dark: #f0e9dc;
  --gold: #c9a84c;
  --gold-light: #d4b86a;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--emerald);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; color: var(--emerald-dark); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 24px;
}

.section-header--center { text-align: center; }
.section-header--center .section-eyebrow { margin-bottom: 16px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn-primary:hover { background: var(--emerald-light); border-color: var(--emerald-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn-ghost:hover { background: var(--emerald); color: var(--white); transform: translateY(-2px); }

.btn-small {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-light {
  background: var(--white);
  color: var(--emerald);
  border-color: var(--white);
}
.btn-light:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--emerald); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: var(--transition);
}

.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--emerald-dark);
}

.logo-mark { color: var(--emerald); }

.logo--light { color: var(--white); }
.logo--light .logo-mark { color: var(--gold-light); }

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-list a:hover { color: var(--emerald); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald);
  position: relative;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--emerald);
  left: 0;
  transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--emerald-dark);
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--emerald); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-img-stack { position: relative; }

.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

.hero-img--primary {
  width: 100%;
  aspect-ratio: 6/7.5;
}

.hero-img--accent {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 55%;
  aspect-ratio: 4/3;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}

.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: var(--emerald);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
  clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
  opacity: 0.04;
}

/* ── Services ── */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--emerald);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--emerald);
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--emerald-dark);
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 50%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}

.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-content .section-title { margin-bottom: 24px; }

.about-body {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.value-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-content .btn { margin-top: 8px; }

/* ── Process ── */
.process {
  padding: 120px 0;
  background: var(--emerald-dark);
  color: var(--white);
}

.process .section-title { color: var(--white); }
.process .section-eyebrow { color: var(--gold-light); }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector::before {
  content: '';
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201,168,76,0.5), rgba(201,168,76,0.2));
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(201,168,76,0.5);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ── Areas ── */
.areas {
  padding: 120px 0;
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.areas-desc {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.areas-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.areas-list li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.areas-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
}

.areas-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/5;
}
.areas-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-body {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  color: var(--text);
}

.contact-item svg { color: var(--emerald); flex-shrink: 0; margin-top: 2px; }
.contact-item a { color: var(--emerald); font-weight: 500; transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  color: var(--emerald);
}
.form-success svg { margin: 0 auto 16px; color: var(--emerald); }
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--emerald-dark); }
.form-success p { color: var(--text-light); }

/* ── Footer ── */
.site-footer {
  background: var(--emerald-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}

.footer-inner { display: flex; flex-direction: column; gap: 40px; }

.footer-brand p { font-size: 0.875rem; margin-top: 12px; line-height: 1.7; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-img--accent { left: -20px; bottom: -20px; }
  .about-grid, .areas-grid, .contact-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; z-index: 1001; }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }
  .nav-list.open { right: 0; }
  .nav-list a { font-size: 1.125rem; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-img--accent { display: none; }
  .hero-badge { right: 0; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }

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

  .about-grid, .areas-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-float { display: none; }

  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .step-connector { display: none; }
  .step { max-width: 100%; }

  .areas-list { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
