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

:root {
  --green-900: #0f2318;
  --green-800: #1a3a2a;
  --green-700: #234d38;
  --green-600: #2d6348;
  --green-500: #3a7d5c;
  --green-400: #5a9e7a;
  --green-300: #8fc0a0;
  --cream-100: #f7f5ef;
  --cream-200: #ede9de;
  --cream-300: #e2dcc8;
  --cream-400: #d4c9a8;
  --text-primary: #1a1a18;
  --text-secondary: #4a4a44;
  --text-muted: #7a7a70;
  --white: #ffffff;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--cream-100);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

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

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--cream-300);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: color 0.3s;
}

.logo-mark {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring);
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.05);
}

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

.nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

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

.nav a:hover {
  color: var(--green-700);
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green-700) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  font-size: 13px !important;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--green-800);
}

.menu-icon-close {
  display: none;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45, 99, 72, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(90, 158, 122, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(143, 192, 160, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream-100) 0%, var(--cream-200) 50%, var(--cream-100) 100%);
  z-index: 0;
}

.hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(26, 58, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 42, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--green-900);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero-headline br {
  display: none;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bob 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border-radius: 0;
}

.btn-primary {
  background: var(--green-800);
  color: var(--cream-100);
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 58, 42, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--green-700);
  border: 1px solid var(--green-400);
}

.btn-ghost:hover {
  background: var(--green-800);
  color: var(--cream-100);
  border-color: var(--green-800);
}

.btn-full {
  width: 100%;
}

/* ─── STRIP ─── */
.strip {
  background: var(--green-800);
  padding: 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.strip-item {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.strip-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-400);
}

.strip-value,
.strip-link {
  font-size: 14px;
  color: var(--cream-200);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s;
}

.strip-link:hover {
  color: var(--white);
}

.strip-divider {
  width: 1px;
  background: rgba(143, 192, 160, 0.2);
  align-self: stretch;
}

/* ─── SECTION COMMON ─── */
.services,
.about,
.gallery,
.contact {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--green-900);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-300);
  border: 1px solid var(--cream-300);
}

.service-card {
  background: var(--cream-100);
  padding: 40px 32px;
  transition: background 0.4s var(--ease-out);
  position: relative;
}

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

.service-card:hover {
  background: var(--white);
}

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

.service-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--green-900);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

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

.about-image {
  position: relative;
  overflow: hidden;
}

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

.about-image:hover img {
  transform: scale(1.02);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 40%;
  height: 40%;
  border: 1px solid var(--green-400);
  pointer-events: none;
  opacity: 0.4;
}

.about-content {
  padding: 20px 0;
}

.about-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--green-800);
  line-height: 1;
}

.stat-value {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-300);
}

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

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

.gallery-item {
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1);
}

/* ─── CONTACT ─── */
.contact {
  background: var(--green-800);
  color: var(--cream-100);
}

.contact .section-eyebrow {
  color: var(--green-400);
}

.contact .section-title {
  color: var(--cream-100);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info p {
  font-size: 15px;
  color: var(--cream-300);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--cream-200);
  font-size: 14px;
  line-height: 1.6;
}

.contact-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-400);
}

.contact-detail a {
  color: var(--cream-200);
  text-decoration: none;
  transition: color 0.3s;
}

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

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(143, 192, 160, 0.2);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-100);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(143, 192, 160, 0.3);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--green-400);
}

.form-success {
  display: none;
  margin-top: 16px;
  font-size: 14px;
  color: var(--green-300);
  text-align: center;
}

.form-success.show {
  display: block;
}

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

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(143, 192, 160, 0.15);
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: var(--cream-200);
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-400);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--cream-200);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--green-600);
}

.footer-bottom a {
  color: var(--green-500);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--cream-200);
}

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

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

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

  .about-layout {
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .site-header .container {
    height: 64px;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 245, 239, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    font-size: 14px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-icon-open {
    display: block;
  }

  .menu-icon-close {
    display: none;
  }

  .nav.open .menu-icon-open {
    display: none;
  }

  .nav.open .menu-icon-close {
    display: block;
  }

  .hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }

  .hero-headline br {
    display: block;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-divider {
    display: none;
  }

  .strip-item {
    padding: 24px 28px;
  }

  .services,
  .about,
  .gallery,
  .contact {
    padding: 80px 0;
  }

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

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

  .about-image {
    aspect-ratio: 4 / 3;
  }

  .about-image::after {
    display: none;
  }

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

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

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

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

@media (max-width: 480px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }

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

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

  .btn {
    width: 100%;
    max-width: 280px;
  }
}
