/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #1a2e23;
  background: #f5f2eb;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, .hero-headline, .section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
em { font-style: italic; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 60, 42, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(26, 60, 42, 0.08); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: #1a3c2a; color: #f5f2eb;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
}
.nav-logo-text { color: #1a3c2a; }
.nav-links {
  margin-left: auto; display: flex; align-items: center; gap: 32px;
  font-size: 0.9rem; font-weight: 500;
}
.nav-links a { color: #1a3c2a; opacity: 0.7; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: #1a3c2a !important; color: #f5f2eb !important;
  padding: 8px 18px; border-radius: 8px; opacity: 1 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #255237 !important; }
.nav-toggle { display: none; margin-left: auto; padding: 8px; color: #1a3c2a; }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(245, 242, 235, 0.98);
  backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu-link {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: #1a3c2a; opacity: 0.8; transition: opacity 0.2s;
}
.mobile-menu-link:hover { opacity: 1; }
.mobile-menu-cta {
  display: flex; align-items: center; gap: 8px;
  background: #1a3c2a; color: #f5f2eb; padding: 14px 28px;
  border-radius: 12px; font-size: 1.1rem; font-weight: 600;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 60px; position: relative; overflow: hidden;
  background: #f5f2eb;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(26, 60, 42, 0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(26, 60, 42, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: #1a3c2a; opacity: 0.5;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900;
  color: #1a3c2a; margin-bottom: 24px; line-height: 1.05;
}
.hero-headline em { color: #2d6a4f; }
.hero-sub {
  font-size: 1.1rem; line-height: 1.7; color: #1a3c2a; opacity: 0.65;
  max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: #1a3c2a; opacity: 0.6;
}
.hero-trust-item svg { opacity: 0.7; }

/* Hero Image */
.hero-image-wrapper { position: relative; }
.hero-image-wrapper img {
  width: 100%; height: 560px; object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 32px 64px rgba(26, 60, 42, 0.12);
}
.hero-image-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 140px; height: 140px; border-radius: 16px;
  background: #1a3c2a; z-index: -1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-size: 0.95rem;
  font-weight: 600; transition: all 0.25s ease;
}
.btn-primary { background: #1a3c2a; color: #f5f2eb; }
.btn-primary:hover { background: #255237; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26, 60, 42, 0.2); }
.btn-outline { background: transparent; color: #1a3c2a; border: 1.5px solid rgba(26, 60, 42, 0.3); }
.btn-outline:hover { border-color: #1a3c2a; background: rgba(26, 60, 42, 0.04); }
.btn-light { background: #f5f2eb; color: #1a3c2a; }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-light { background: transparent; color: #f5f2eb; border: 1.5px solid rgba(245, 242, 235, 0.4); }
.btn-outline-light:hover { border-color: #f5f2eb; background: rgba(245, 242, 235, 0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Shared ── */
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-eyebrow {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: #1a3c2a; opacity: 0.5; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); color: #1a3c2a;
}
.section-title em { color: #2d6a4f; }

/* ── Services ── */
.services { padding: 120px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  border: 1px solid rgba(26, 60, 42, 0.06);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 60, 42, 0.08);
  border-color: rgba(26, 60, 42, 0.12);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(26, 60, 42, 0.06); color: #1a3c2a;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.2s;
}
.service-card:hover .service-icon { background: #1a3c2a; color: #f5f2eb; }
.service-title {
  font-family: 'Playfair Display', serif; font-size: 1.25rem;
  font-weight: 700; color: #1a3c2a; margin-bottom: 12px;
}
.service-desc { font-size: 0.92rem; line-height: 1.7; color: #1a3c2a; opacity: 0.6; }

/* ── About ── */
.about { padding: 120px 0; background: #fff; }
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-stack { position: relative; }
.about-img-main img {
  width: 100%; height: 560px; object-fit: cover;
  border-radius: 20px;
}
.about-img-float {
  position: absolute; bottom: -40px; right: -40px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 60, 42, 0.12);
  border: 4px solid #fff;
}
.about-img-float img { width: 280px; height: 210px; object-fit: cover; }
.about-accent-block {
  position: absolute; top: -24px; left: -24px;
  background: #1a3c2a; color: #f5f2eb; padding: 20px 24px;
  border-radius: 16px; text-align: center;
}
.about-accent-block .accent-number {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900;
}
.about-accent-block .accent-label {
  display: block; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: 0.6; margin-top: 2px;
}
.about-text-col { padding-top: 40px; }
.about-body {
  font-size: 1.05rem; line-height: 1.8; color: #1a3c2a; opacity: 0.65;
  margin-bottom: 20px;
}
.about-stats {
  display: flex; gap: 0; margin-top: 40px;
  background: #f5f2eb; border-radius: 16px; overflow: hidden;
}
.stat {
  flex: 1; padding: 24px 28px; text-align: center;
}
.stat-label {
  display: block; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: 0.5; margin-bottom: 6px;
}
.stat-value {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  font-weight: 700; color: #1a3c2a;
}
.stat-divider { width: 1px; background: rgba(26, 60, 42, 0.1); }

/* ── Why ── */
.why { padding: 120px 0; }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.why-card {
  background: #fff; border-radius: 16px; padding: 40px 32px;
  border: 1px solid rgba(26, 60, 42, 0.06);
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 60, 42, 0.08);
}
.why-number {
  font-family: 'Playfair Display', serif; font-size: 3.5rem;
  font-weight: 900; color: #1a3c2a; opacity: 0.06;
  position: absolute; top: 16px; right: 24px; line-height: 1;
}
.why-title {
  font-family: 'Playfair Display', serif; font-size: 1.35rem;
  font-weight: 700; color: #1a3c2a; margin-bottom: 12px;
}
.why-desc { font-size: 0.95rem; line-height: 1.7; color: #1a3c2a; opacity: 0.6; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0; background: #1a3c2a; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(245, 242, 235, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; position: relative;
}
.cta-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #f5f2eb;
  margin-bottom: 12px;
}
.cta-sub { font-size: 1.05rem; color: rgba(245, 242, 235, 0.6); max-width: 400px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 120px 0; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-item {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(26, 60, 42, 0.06); color: #1a3c2a;
  display: flex; align-items: center; justify-content: center;
}
.contact-label {
  display: block; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: 0.5; margin-bottom: 4px;
}
.contact-value { font-size: 1rem; font-weight: 500; color: #1a3c2a; line-height: 1.5; }
.contact-link:hover { color: #2d6a4f; }
.contact-map { border-radius: 16px; overflow: hidden; margin-top: 8px; }
.form-title {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  font-weight: 700; color: #1a3c2a; margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #1a3c2a; opacity: 0.6; margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 1.5px solid rgba(26, 60, 42, 0.12);
  background: #fff; color: #1a3c2a; font-size: 0.95rem;
  font-family: 'Inter', sans-serif; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: #2d6a4f;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.form-input::placeholder { color: rgba(26, 60, 42, 0.3); }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a3c2a' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  background: rgba(45, 106, 79, 0.06); border: 1px solid rgba(45, 106, 79, 0.15);
  border-radius: 16px; padding: 48px 32px; text-align: center;
}
.form-success-inner svg { color: #2d6a4f; margin: 0 auto 16px; }
.form-success-title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  font-weight: 700; color: #1a3c2a; margin-bottom: 8px;
}
.form-success-text { font-size: 0.95rem; color: #1a3c2a; opacity: 0.6; line-height: 1.7; }
.form-success-text a { color: #2d6a4f; font-weight: 600; }

/* ── Footer ── */
.footer { background: #1a2e23; color: #f5f2eb; padding: 64px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px;
  align-items: start; padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 242, 235, 0.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(245, 242, 235, 0.1); color: #f5f2eb;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
}
.footer-tagline { font-size: 0.9rem; opacity: 0.5; max-width: 240px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem; opacity: 0.6; transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-phone, .footer-email {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; opacity: 0.6; transition: opacity 0.2s;
}
.footer-phone:hover, .footer-email:hover { opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; flex-wrap: wrap; gap: 12px;
}
.footer-copy, .footer-address { font-size: 0.8rem; opacity: 0.4; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .hero-image-wrapper img { height: 460px; }
  .about-layout { gap: 48px; }
  .about-img-float { right: -20px; bottom: -24px; }
  .contact-layout { gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-image-wrapper img { height: 360px; }
  .hero-image-accent { width: 80px; height: 80px; bottom: -12px; left: -12px; }
  .hero-trust { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-img-float { position: relative; bottom: 0; right: 0; margin-top: -60px; margin-left: auto; }
  .about-img-main img { height: 360px; }
  .about-text-col { padding-top: 0; }
  .about-stats { flex-direction: column; gap: 0; }
  .stat-divider { width: 100%; height: 1px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-sub { max-width: 100%; }
  .cta-actions { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header { margin-bottom: 48px; }
  .services, .about, .why, .contact { padding: 80px 0; }
  .cta-banner { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
}
