*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-900: #1a3a2a;
  --green-800: #2D5A3D;
  --green-700: #3d7a52;
  --green-600: #4a9464;
  --green-500: #5ba876;
  --cream-50: #FAF8F4;
  --cream-100: #F5F0E8;
  --cream-200: #EDE8DC;
  --cream-300: #E5DFD0;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-light: #6b6b6b;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream-50);
  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;
}

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

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--cream-200);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cream-50);
  transition: color 0.3s;
}

.nav.scrolled .nav-logo {
  color: var(--green-800);
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.8);
  transition: color 0.3s;
  position: relative;
}

.nav.scrolled .nav-links a {
  color: var(--text-mid);
}

.nav-links a:hover {
  color: var(--cream-50);
}

.nav.scrolled .nav-links a:hover {
  color: var(--green-800);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}

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

.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(250, 248, 244, 0.4);
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}

.nav.scrolled .nav-cta {
  border-color: var(--green-800);
  color: var(--green-800) !important;
}

.nav-cta:hover {
  background: var(--cream-50);
  color: var(--green-800) !important;
}

.nav.scrolled .nav-cta:hover {
  background: var(--green-800);
  color: var(--cream-50) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cream-50);
}

.nav.scrolled .nav-toggle {
  color: var(--green-800);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a3a2a 0%, #2D5A3D 35%, #3d7a52 65%, #5ba876 100%);
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(26, 58, 42, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(91, 168, 118, 0.3) 0%, transparent 50%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0 12%;
}

.hero-lines span {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(250, 248, 244, 0.06), transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream-50);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(250, 248, 244, 0.7);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 300;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-light {
  background: var(--cream-50);
  color: var(--green-800);
  border-color: var(--cream-50);
}

.btn-light:hover {
  background: transparent;
  color: var(--cream-50);
  border-color: var(--cream-50);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream-50);
  border-color: rgba(250, 248, 244, 0.3);
}

.btn-ghost-light:hover {
  border-color: var(--cream-50);
  background: rgba(250, 248, 244, 0.08);
}

.btn-dark {
  background: var(--green-800);
  color: var(--cream-50);
  border-color: var(--green-800);
}

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

/* ─── SECTIONS ─── */
section {
  padding: 120px 0;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* ─── SERVICES ─── */
.services {
  background: var(--cream-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  padding: 40px 32px;
  background: var(--cream-100);
  border-radius: 2px;
  border: 1px solid var(--cream-200);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(45, 90, 61, 0.08);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-700);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--green-800);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ─── ABOUT ─── */
.about {
  background: var(--cream-100);
}

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

.about-image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about-text .section-title {
  margin-bottom: 28px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-300);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-800);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ─── GALLERY ─── */
.gallery {
  background: var(--cream-50);
}

.gallery .section-title {
  text-align: center;
}

.gallery .section-eyebrow {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}

.gallery-item:nth-child(1) { aspect-ratio: 4/5; }
.gallery-item:nth-child(2) { aspect-ratio: 5/4; grid-column: span 1; }
.gallery-item:nth-child(3) { aspect-ratio: 4/5; }
.gallery-item:nth-child(4) { aspect-ratio: 5/4; }
.gallery-item:nth-child(5) { aspect-ratio: 4/5; }
.gallery-item:nth-child(6) { aspect-ratio: 5/4; }

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ─── HOURS ─── */
.hours {
  background: var(--green-900);
  padding: 100px 0;
}

.hours-card {
  max-width: 900px;
  margin: 0 auto;
}

.hours .section-eyebrow {
  color: rgba(250, 248, 244, 0.5);
  text-align: center;
}

.hours .section-title {
  color: var(--cream-50);
  text-align: center;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 60px;
}

.hours-info h3,
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream-50);
  margin-bottom: 8px;
}

.hours-note {
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.5);
  margin-bottom: 28px;
  font-style: italic;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
  font-size: 0.9rem;
}

.hours-row span:first-child {
  color: rgba(250, 248, 244, 0.7);
  font-weight: 400;
}

.hours-row span:last-child {
  color: var(--cream-50);
  font-weight: 300;
}

.hours-row.closed span:last-child {
  color: rgba(250, 248, 244, 0.35);
  font-style: italic;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.8);
  line-height: 1.6;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--green-500);
}

.contact-item a {
  color: rgba(250, 248, 244, 0.8);
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--cream-50);
}

.map-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-500);
  transition: color 0.3s;
  margin-top: 8px;
}

.map-link a:hover {
  color: var(--cream-50);
}

/* ─── CONTACT ─── */
.contact {
  background: var(--cream-50);
}

.contact .section-title {
  text-align: center;
}

.contact .section-eyebrow {
  text-align: center;
}

.contact-desc {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 56px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cream-300);
  border-radius: 2px;
  background: var(--cream-100);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--cream-50);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group select {
  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='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='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-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 17px 32px;
}

.form-success {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
}

.form-success svg {
  color: var(--green-700);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.form-success a {
  color: var(--green-700);
  border-bottom: 1px solid var(--cream-300);
  transition: border-color 0.3s;
}

.form-success a:hover {
  border-color: var(--green-700);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream-50);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(250, 248, 244, 0.5);
  line-height: 1.8;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(250, 248, 244, 0.7);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--cream-50);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(250, 248, 244, 0.5);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(250, 248, 244, 0.6);
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--cream-50);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.3);
}

/* ─── MOBILE MENU ─── */
.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--green-900);
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  transition: right 0.4s var(--ease-out);
  z-index: 999;
}

.nav-links.open {
  right: 0;
}

.nav-links a {
  font-size: 1rem !important;
  color: rgba(250, 248, 244, 0.8) !important;
}

.nav-links a:hover {
  color: var(--cream-50) !important;
}

.nav-toggle {
  z-index: 1001;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 32px 28px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    aspect-ratio: 16/10;
  }

  .about-stats {
    gap: 32px;
    flex-wrap: wrap;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

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

  .btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(6) {
    aspect-ratio: 4/3;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
