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

:root {
  --emerald-900: #064e3b;
  --emerald-800: #065f46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --cream-50: #faf8f4;
  --cream-100: #f5f0e8;
  --cream-200: #ebe3d4;
  --gold-400: #d4a853;
  --gold-500: #c49a3e;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream-50);
  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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--emerald-900);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-500);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--emerald-800);
  color: var(--white);
  border: 2px solid var(--emerald-800);
}
.btn--primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
}

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

.btn--large { padding: 18px 40px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(6, 95, 70, 0.1);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-mark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--emerald-900);
  background: var(--emerald-800);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--emerald-900);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width 0.3s var(--ease);
}

.nav__link:hover { color: var(--emerald-800); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  background: var(--emerald-800);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.3s var(--ease);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--emerald-700);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle-line {
  display: block;
  height: 2px;
  background: var(--emerald-900);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 78, 59, 0.92) 0%,
    rgba(6, 95, 70, 0.85) 40%,
    rgba(4, 120, 87, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero__card {
  max-width: 720px;
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(16px);
  padding: 56px 52px;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
  animation: heroFadeUp 0.8s var(--ease) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--emerald-900);
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: italic;
  color: var(--emerald-700);
}

.hero__accent {
  color: var(--gold-500);
  font-style: italic;
}

.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Floating Stat Cards ── */
.hero__stats {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  animation: statFloat 0.6s var(--ease) both;
}

.stat-card--1 { animation-delay: 0.4s; }
.stat-card--2 { animation-delay: 0.6s; }
.stat-card--3 { animation-delay: 0.8s; }

@keyframes statFloat {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.stat-card__number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--emerald-800);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(6, 95, 70, 0.15);
}

.about__image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: var(--emerald-800);
  border-radius: 16px;
  z-index: -1;
  opacity: 0.1;
}

.about__content { padding: 20px 0; }

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

.about__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about__feature-icon {
  width: 24px;
  height: 24px;
  color: var(--emerald-700);
  flex-shrink: 0;
}

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

.services__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(6, 95, 70, 0.08);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--emerald-800);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(6, 95, 70, 0.12);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: var(--emerald-900);
  border-color: transparent;
}

.service-card--featured::before { background: var(--gold-400); }

.service-card--featured .service-card__title,
.service-card--featured .service-card__desc,
.service-card--featured .service-card__link { color: var(--white); }

.service-card--featured .service-card__link { color: var(--gold-400); }

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-400);
  color: var(--emerald-900);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(6, 95, 70, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--emerald-800);
}

.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-400);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--emerald-900);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--emerald-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}

.service-card__link:hover { gap: 10px; }

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

.areas__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.area-card:hover img { transform: scale(1.08); }

.area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 78, 59, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: background 0.4s var(--ease);
}

.area-card:hover .area-card__overlay {
  background: linear-gradient(to top, rgba(6, 78, 59, 0.92) 0%, rgba(6, 78, 59, 0.3) 100%);
}

.area-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.area-card__desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* ── Testimonials ── */
.testimonials {
  padding: 120px 0;
  background: var(--emerald-900);
}

.testimonials__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.testimonials__header .section-eyebrow { color: var(--gold-400); }
.testimonials__header .section-title { color: var(--white); }
.testimonials__header .section-title em { color: var(--gold-400); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  width: 32px;
  height: 24px;
  color: var(--gold-400);
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-card__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-400);
}

/* ── CTA ── */
.cta {
  padding: 120px 0;
  background: var(--cream-100);
}

.cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta__eyebrow { color: var(--emerald-700); }

.cta__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.contact__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  gap: 16px;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(6, 95, 70, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-800);
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 24px;
  height: 24px;
}

.contact__detail strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-800);
  margin-bottom: 4px;
}

.contact__detail p {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact__detail a {
  color: var(--text-mid);
  transition: color 0.3s;
}

.contact__detail a:hover { color: var(--emerald-700); }

/* ── Form ── */
.contact__form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 16px 48px rgba(6, 95, 70, 0.08);
  border: 1px solid rgba(6, 95, 70, 0.06);
}

.form__group { margin-bottom: 24px; }

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald-800);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream-50);
  transition: all 0.3s var(--ease);
  outline: none;
}

.form__input:focus {
  border-color: var(--emerald-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1);
}

.form__input::placeholder { color: var(--text-light); }

.form__select {
  appearance: none;
  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='%236b6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 16px;
  text-align: center;
}

.form__success {
  text-align: center;
  padding: 40px 20px;
}

.form__success svg {
  width: 56px;
  height: 56px;
  color: var(--emerald-700);
  margin: 0 auto 20px;
}

.form__success h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--emerald-900);
  margin-bottom: 12px;
}

.form__success p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ── Footer ── */
.footer {
  background: var(--emerald-900);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-mark {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 800;
  background: var(--gold-400);
  color: var(--emerald-900);
  padding: 6px 10px;
  border-radius: 4px;
}

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links strong {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  margin-bottom: 4px;
}
.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--white); }

.footer__contact strong {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  display: block;
  margin-bottom: 16px;
}

.footer__contact p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 4px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal { font-style: italic; }

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__stats { display: none; }
  .hero__card { padding: 44px 36px; }
  .about__grid { gap: 48px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream-50);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transition: right 0.4s var(--ease);
    z-index: 999;
  }

  .nav__menu.open { right: 0; }

  .nav__toggle { display: flex; z-index: 1001; }
  .nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__toggle.active .nav__toggle-line:nth-child(2) { opacity: 0; }
  .nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav__link { font-size: 1.125rem; }

  .hero__content { padding: 100px 24px 60px; }
  .hero__card { padding: 36px 28px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image img { height: 360px; }

  .services__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__form-wrap { padding: 28px; }

  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 1.75rem; }
  .section-title { font-size: 1.75rem; }
  .service-card { padding: 28px 24px; }
}
