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

:root {
  --green-900: #0B1F16;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --gold-500: #D4A843;
  --gold-400: #E0BC5F;
  --off-white: #F5F4F0;
  --off-white-light: #FAFAF7;
  --cream: #EDEDE8;
  --neutral-100: #F0EFEB;
  --neutral-200: #E2E0DA;
  --neutral-400: #9A978F;
  --neutral-600: #5C5A55;
  --neutral-800: #2A2824;
  --neutral-900: #1A1814;
  --white: #FFFFFF;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(27,67,50,.08);
  --shadow-md: 0 4px 16px rgba(27,67,50,.10);
  --shadow-lg: 0 8px 32px rgba(27,67,50,.12);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--off-white-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9375rem;
  padding: 12px 28px; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap;
}
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn-accent {
  background: var(--green-800); color: var(--white);
  border: 2px solid var(--green-800);
}
.btn-accent:hover { background: var(--green-700); border-color: var(--green-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-dark {
  background: transparent; color: var(--green-800);
  border: 2px solid var(--green-800);
}
.btn-outline-dark:hover { background: var(--green-800); color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: .8125rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center;
  height: 72px; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.125rem; color: var(--green-800);
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--green-800); color: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 800;
}
.logo-accent { color: var(--gold-500); }

.main-nav ul { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.main-nav a {
  padding: 8px 16px; font-size: .9375rem; font-weight: 500;
  color: var(--neutral-600); border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--green-800); background: var(--neutral-100); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.nav-toggle-bar {
  width: 22px; height: 2px; background: var(--neutral-800);
  border-radius: 2px; transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  padding-top: 72px;
  background: var(--green-800);
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 64px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--gold-400); font-size: .8125rem; font-weight: 600;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
  letter-spacing: .04em; text-transform: uppercase;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.05; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline br { display: none; }
.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,.7);
  line-height: 1.7; max-width: 480px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--gold-500);
  line-height: 1;
}
.hero-stat-label { font-size: .8125rem; color: rgba(255,255,255,.5); font-weight: 500; }
.hero-stat-divider {
  width: 1px; background: rgba(255,255,255,.15); align-self: stretch;
}
.hero-image { position: relative; }
.hero-img-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -24px; left: -24px;
  width: 120px; height: 120px;
  background: var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  padding: 24px 0;
}
.trust-list {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9375rem; font-weight: 600; color: var(--neutral-800);
}
.trust-icon { width: 20px; height: 20px; color: var(--green-700); flex-shrink: 0; }

/* ─── Section shared ─── */
.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-700);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--neutral-900);
  line-height: 1.1; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.0625rem; color: var(--neutral-600);
  max-width: 520px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ─── Services ─── */
.services { padding: 100px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--green-600);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--green-800);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card-icon svg { width: 24px; height: 24px; color: var(--white); }
.service-card-title {
  font-size: 1.125rem; font-weight: 700; color: var(--neutral-900);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: .9375rem; color: var(--neutral-600); line-height: 1.65;
}

/* ─── About ─── */
.about { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 13/15;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -32px; right: -32px;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 3/2.6;
  width: 55%;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent-box {
  position: absolute; top: -24px; left: -24px;
  background: var(--green-800); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-lg);
}
.about-accent-num {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800; color: var(--gold-500);
}
.about-accent-line {
  width: 40px; height: 2px; background: var(--gold-500);
}
.about-accent-text { font-size: .8125rem; color: rgba(255,255,255,.7); line-height: 1.5; }

.about-content .section-title { margin-bottom: 24px; }
.about-body {
  font-size: 1rem; color: var(--neutral-600); line-height: 1.75;
  margin-bottom: 16px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 32px 0;
}
.about-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: .9375rem; font-weight: 500; color: var(--neutral-800);
}
.about-feature-check {
  width: 18px; height: 18px; color: var(--green-700); flex-shrink: 0;
}
.about-content .btn { margin-top: 8px; }

/* ─── Gallery ─── */
.gallery { padding: 100px 0; background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 1; position: relative;
}
.gallery-item:nth-child(2) { aspect-ratio: 4/5; }
.gallery-item:nth-child(5) { aspect-ratio: 1; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ─── Reviews ─── */
.reviews { padding: 100px 0; background: var(--white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--off-white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.review-stars svg { width: 18px; height: 18px; color: var(--gold-500); }
.review-text {
  font-size: 1rem; color: var(--neutral-800);
  line-height: 1.7; margin-bottom: 24px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author-avatar {
  width: 40px; height: 40px;
  background: var(--green-800); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9375rem; flex-shrink: 0;
}
.review-author-name { display: block; font-weight: 700; font-size: .9375rem; color: var(--neutral-900); }
.review-author-detail { display: block; font-size: .8125rem; color: var(--neutral-400); }

/* ─── CTA ─── */
.cta-section { padding: 100px 0; background: var(--green-800); }
.cta-box {
  text-align: center; max-width: 680px; margin: 0 auto;
}
.cta-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-500);
  margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-sub { font-size: 1.0625rem; color: rgba(255,255,255,.6); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact ─── */
.contact { padding: 100px 0; background: var(--off-white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-intro {
  font-size: 1rem; color: var(--neutral-600);
  line-height: 1.7; margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--green-800); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--white); }
.contact-detail-label {
  display: block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--neutral-400); margin-bottom: 4px;
}
.contact-detail-value {
  display: block; font-size: .9375rem;
  font-weight: 600; color: var(--neutral-800); line-height: 1.6;
}
.contact-detail-link {
  display: block; font-size: .9375rem;
  font-weight: 600; color: var(--green-700);
  transition: var(--transition);
}
.contact-detail-link:hover { color: var(--green-800); text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .8125rem; font-weight: 600;
  color: var(--neutral-800); margin-bottom: 6px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9375rem;
  color: var(--neutral-800); background: var(--off-white-light);
  transition: var(--transition);
  appearance: none;
}
.form-input:focus {
  outline: none; border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
  background: var(--white);
}
.form-input::placeholder { color: var(--neutral-400); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px;
  background: rgba(82,183,136,.1);
  border: 1px solid rgba(82,183,136,.3);
  border-radius: var(--radius-sm);
  color: var(--green-800); font-size: .9375rem; font-weight: 600;
}
.form-success svg { width: 20px; height: 20px; color: var(--green-700); flex-shrink: 0; }

/* ─── Footer ─── */
.site-footer {
  background: var(--neutral-900); color: rgba(255,255,255,.6);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--green-700); }
.footer-tagline { font-size: .9375rem; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--white); margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a {
  font-size: .9375rem; color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-500); }
.footer-contact li:last-child { font-size: .9375rem; line-height: 1.6; color: rgba(255,255,255,.5); }
.footer-bottom {
  padding: 24px 0;
  font-size: .8125rem; color: rgba(255,255,255,.3);
  text-align: center;
}

/* ─── Scroll to Top ─── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--green-800); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition); z-index: 50;
}
.scroll-top:hover { background: var(--green-700); transform: translateY(-2px); }
.scroll-top svg { width: 22px; height: 22px; }

/* ─── Mobile Nav Overlay ─── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a {
    display: block; padding: 14px 16px;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--neutral-200);
  }
  .main-nav li:last-child a { border-bottom: none; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid .review-card:last-child { grid-column: span 2; max-width: 50%; justify-self: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; padding: 48px 0 64px; }
  .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-headline br { display: block; }
  .hero-stats { gap: 24px; }
  .hero-img-accent { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; }
  .about-img-secondary { right: -16px; bottom: -20px; }
  .about-accent-box { top: -16px; left: -16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(2) { aspect-ratio: 4/5; }
  .trust-list { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .reviews-grid .review-card:last-child { grid-column: span 1; max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-grid { padding: 32px 0 48px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(2) { aspect-ratio: 4/3; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:last-child { grid-column: span 1; max-width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
