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

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #40916C;
  --cream:        #F5F3EB;
  --cream-light:  #FAFAF6;
  --sand:         #D4C5A9;
  --sand-light:   #E8E0CC;
  --text:         #1A1A1A;
  --text-muted:   #555555;
  --text-light:   #888888;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; 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-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

/* ── Typography ─────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 24px;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,67,50,0.2);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--full { width: 100%; }

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,243,235,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand-light);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(245,243,235,0.95);
  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-size: 1.15rem;
  color: var(--green-dark);
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green-dark);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-dark);
  transition: var(--transition);
}
.primary-nav a:hover { color: var(--green-dark); }
.primary-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle-line {
  width: 22px;
  height: 1.5px;
  background: var(--green-dark);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45,106,79,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(64,145,108,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(27,67,50,0.2) 0%, transparent 60%),
    linear-gradient(160deg, #1B4332 0%, #2D6A4F 40%, #40916C 70%, #52B788 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  opacity: 0.85;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Intro Strip ────────────────────────────────── */
.intro-strip {
  background: var(--green-dark);
  padding: 48px 24px;
}
.intro-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
}
.intro-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.intro-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--sand);
  font-style: italic;
}
.intro-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ── Services ───────────────────────────────────── */
.services {
  padding: 120px 24px;
  background: var(--cream-light);
}
.services .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,67,50,0.08);
  border-color: var(--green-light);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green-dark);
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.services-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── About ──────────────────────────────────────── */
.about {
  padding: 120px 24px;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--sand-light);
}
.value-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.value-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.value-link {
  font-size: 0.95rem;
  color: var(--green-mid);
  transition: var(--transition);
}
.value-link:hover { color: var(--green-dark); text-decoration: underline; }

/* ── Gallery ────────────────────────────────────── */
.gallery {
  padding: 120px 24px;
  background: var(--cream-light);
}
.gallery .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sand-light);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ── Testimonials ───────────────────────────────── */
.testimonials {
  padding: 120px 24px;
  background: var(--green-dark);
}
.testimonials .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials .section-eyebrow { color: var(--sand); }
.testimonials .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
}
.testimonial:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.testimonial footer {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ── CTA Banner ─────────────────────────────────── */
.cta-banner {
  padding: 120px 24px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(45,106,79,0.4) 0%, transparent 70%),
    linear-gradient(135deg, #2D6A4F 0%, #1B4332 100%);
  text-align: center;
}
.cta-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Contact ────────────────────────────────────── */
.contact {
  padding: 120px 24px;
  background: var(--cream-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text);
}
.contact-row svg {
  color: var(--green-mid);
  flex-shrink: 0;
}
.contact-row a {
  color: var(--green-mid);
  transition: var(--transition);
}
.contact-row a:hover { color: var(--green-dark); text-decoration: underline; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius);
  padding: 48px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-opt {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
  font-size: 0.75rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--sand-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
}

.form-success {
  text-align: center;
  padding: 48px;
}
.form-success svg {
  color: var(--green-mid);
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── Map ────────────────────────────────────────── */
.map-section {
  padding: 0 24px 80px;
  background: var(--cream-light);
}
.map-section .container { max-width: 1200px; }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--green-dark);
  padding: 48px 24px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-brand .logo-mark {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}
.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── Scroll Animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(245,243,235,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--sand-light);
    padding: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .primary-nav a { font-size: 1rem; }
  .primary-nav .btn { width: 100%; text-align: center; }

  .intro-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 16/10; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial:last-child { grid-column: span 1; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .services, .about, .gallery, .testimonials, .contact { padding: 80px 16px; }
}
