﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --green-700: #2b5d07;
  --green-600: #347109;
  --green-500: #4b8a1e;
  --green-200: #e6f2d8;
  --ink-900: #101310;
  --ink-700: #2b2f2b;
  --ink-500: #5b625b;
  --surface: #ffffff;
  --surface-alt: #f7f8f4;
  --border: #e4eadb;
  --shadow: 0 24px 60px rgba(12, 24, 8, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  color: var(--ink-700);
  background: var(--surface);
  line-height: 1.6;
}

body {
  scroll-padding-top: 96px;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(52, 113, 9, 0.35);
  outline-offset: 2px;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: var(--green-600);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(111, 190, 29, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: var(--green-700);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--ink-700);
  background: #ffffff;
}

.btn.ghost:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 234, 219, 0.9);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 5px 0;
}

.brand img {
  height: 165px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 500;
  color: var(--ink-500);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--green-600);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  gap: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--ink-700);
  display: block;
  border-radius: 999px;
}

.nav-cta {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7.5rem) 0;
  background: radial-gradient(circle at top left, rgba(111, 190, 29, 0.12), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(127, 208, 43, 0.18), transparent 40%),
    var(--surface);
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 40px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(111, 190, 29, 0.18), transparent 70%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 42px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
}

.hero h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.1;
  margin: 14px 0 18px;
  color: var(--ink-900);
}

.lead {
  font-size: 1.05rem;
  color: var(--ink-500);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0 32px;
}

.hero-highlights {
  display: grid;
  gap: 14px;
  color: var(--ink-500);
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.hero-highlights .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 6px rgba(111, 190, 29, 0.2);
}

.hero-media {
  display: grid;
  gap: 22px;
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(228, 234, 219, 0.9);
  box-shadow: var(--shadow);
  background: var(--surface-alt);
}

.media-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 280px;
}

.media-card {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(228, 234, 219, 0.9);
  box-shadow: 0 18px 36px rgba(12, 24, 8, 0.08);
}

.media-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--ink-900);
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.section-head h2 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink-900);
  margin: 0;
}

.section-head p {
  margin: 0;
  color: var(--ink-500);
}

.services {
  background: var(--surface-alt);
}

.service-grid {
  margin-top: 38px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-height: 280px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 190, 29, 0.5);
  box-shadow: 0 22px 42px rgba(12, 24, 8, 0.12);
}

.service-card h3 {
  margin: 12px 0 12px;
  color: var(--ink-900);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(111, 190, 29, 0.12);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 600;
}

.service-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--ink-500);
}

.contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin: 0 0 12px;
  color: var(--ink-900);
}

.contact-info p {
  margin: 0 0 20px;
  color: var(--ink-500);
}

.info-list {
  display: grid;
  gap: 18px;
}

.info-item span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-700);
  font-weight: 600;
  margin-bottom: 6px;
}

.info-item a,
.info-item p {
  margin: 0;
  font-weight: 500;
  color: var(--ink-700);
}

.contact-form {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-700);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(111, 190, 29, 0.25);
  border-color: var(--green-600);
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 18px;
}

.site-footer {
  background: var(--ink-900);
  color: #ffffff;
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-brand img {
  height: 95px;
}

.footer-contact,
.footer-social {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-contact span,
.footer-social span {
  font-weight: 600;
  color: var(--green-500);
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(127, 208, 43, 0.6);
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .nav-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-brand img {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .nav-bar {
    justify-content: space-between;
    gap: 12px;
  }

  .nav-bar > .btn.primary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 16px 6%;
    display: none;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 18px 40px rgba(12, 24, 8, 0.12);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a {
    padding: 6px 0;
  }

  .nav-cta {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 6px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form {
    padding: 22px;
  }
}
