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

:root {
  --green-dark: #1A3C34;
  --green-mid: #2D5A4B;
  --green-light: #3D7A65;
  --cream: #F5F3ED;
  --cream-light: #FAFAF6;
  --cream-dark: #EDE9DF;
  --text-muted: #6B7F78;
  --line: rgba(26, 60, 52, 0.12);
  --line-strong: rgba(26, 60, 52, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--green-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 243, 237, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(26, 60, 52, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-logo-icon {
  flex-shrink: 0;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}

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

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

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

.nav-cta {
  color: var(--green-dark) !important;
  font-weight: 500 !important;
  border: 1px solid var(--line-strong);
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease !important;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--green-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-link {
  text-decoration: none;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.mobile-menu-link:hover {
  background: var(--cream-dark);
}

.mobile-menu-cta {
  margin-top: 24px;
  border-bottom: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--line-strong);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-meta-value {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--green-dark);
}

.hero-meta-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 0.2s ease;
}

.hero-meta-link:hover {
  border-color: var(--green-dark);
}

.hero-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--line-strong);
}

.hero-image {
  position: relative;
  height: 75vh;
  min-height: 500px;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line-strong);
  z-index: -1;
}

.hero-scroll-line {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: var(--line-strong);
  display: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

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

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--line-strong);
}

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

.btn-full {
  width: 100%;
}

/* ===== DIVIDER ===== */
.section-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-divider-line {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-bottom: 24px;
}

.section-divider-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 20px;
}

/* ===== SERVICES ===== */
.services {
  padding: 80px 0 100px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--cream);
  padding: 40px 32px;
  transition: background 0.3s ease;
}

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

.service-icon {
  margin-bottom: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 0 100px;
  background: var(--cream-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.about-image-group {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--cream-light);
  box-shadow: 0 8px 32px rgba(26, 60, 52, 0.1);
}

.about-image-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  top: -24px;
  right: -16px;
  background: var(--green-dark);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  padding: 12px 20px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.about-content-col {
  max-width: 480px;
}

.about-text {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-values {
  margin: 36px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-value-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.about-value-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
  padding-top: 6px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 80px 0 100px;
}

.gallery-header {
  margin-bottom: 48px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(transparent, rgba(26, 60, 52, 0.7));
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
}

/* ===== CONTACT ===== */
.contact {
  padding: 80px 0 100px;
  background: var(--green-dark);
  color: var(--cream);
}

.contact .section-label {
  color: rgba(245, 243, 237, 0.5);
}

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

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

.contact-text {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 243, 237, 0.65);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 243, 237, 0.45);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
}

.contact-detail-link {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 243, 237, 0.25);
  transition: border-color 0.2s ease;
}

.contact-detail-link:hover {
  border-color: var(--cream);
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.85;
}

.contact-form-col {
  max-width: 460px;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 243, 237, 0.5);
}

.form-input {
  background: rgba(245, 243, 237, 0.06);
  border: 1px solid rgba(245, 243, 237, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(245, 243, 237, 0.3);
}

.form-input:focus {
  border-color: rgba(245, 243, 237, 0.4);
  background: rgba(245, 243, 237, 0.09);
}

.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='rgba(245,243,237,0.5)' 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;
  cursor: pointer;
}

.form-select option {
  background: var(--green-dark);
  color: var(--cream);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  gap: 16px;
}

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

.form-success p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(245, 243, 237, 0.7);
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 0;
  background: var(--green-dark);
  border-top: 1px solid rgba(245, 243, 237, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 243, 237, 0.5);
  max-width: 280px;
}

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

.footer-links a {
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(245, 243, 237, 0.55);
  transition: color 0.2s ease;
}

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

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

.footer-contact a {
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(245, 243, 237, 0.55);
  transition: color 0.2s ease;
}

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

.footer-contact span {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(245, 243, 237, 0.55);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 243, 237, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom span {
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(245, 243, 237, 0.3);
  letter-spacing: 0.04em;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 32px;
  }

  .hero-image {
    height: 60vh;
    min-height: 400px;
  }

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

  .about-grid {
    gap: 48px;
  }

  .about-image-secondary {
    right: -20px;
    bottom: -24px;
  }

  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    display: none;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-meta-divider {
    display: none;
  }

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

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

  .about-image-group {
    margin-bottom: 48px;
  }

  .about-image-secondary {
    right: 0;
    bottom: -20px;
  }

  .about-image-accent {
    top: -16px;
    right: 0;
  }

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

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

  .contact-form-col {
    max-width: 100%;
  }

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

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

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

  .about-image-main img {
    height: 320px;
  }
}

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

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