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

:root {
  --green-deep: #1a3a26;
  --green: #2D5A3D;
  --green-light: #3d7a52;
  --cream: #F5F2EB;
  --cream-light: #FAF8F4;
  --cream-dark: #E8E4D9;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #9a9a9a;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.site-header.scrolled {
  border-bottom-color: var(--cream-dark);
  background: rgba(250, 248, 244, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.logo-mark {
  font-size: 0.7rem;
  color: var(--green-light);
  line-height: 1;
}

/* ── NAV ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
  opacity: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

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

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

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

.nav-cta {
  color: var(--green) !important;
  border: 1px solid var(--green);
  padding: 0.5rem 1.2rem;
  transition: background 0.3s, color 0.3s !important;
}

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

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

/* ── HERO ── */
.hero {
  padding-top: 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  flex: 1;
}

.hero-content {
  padding-right: 2rem;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--green);
  font-weight: 300;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

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

.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

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

.hero-line {
  height: 1px;
  background: var(--cream-dark);
  margin: 0 2rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  background: transparent;
}

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

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

.btn-ghost {
  border-color: var(--text);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--text);
  color: var(--white);
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 0.85rem;
}

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

/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ── SERVICES ── */
.services {
  padding: 8rem 0;
  background: var(--cream-light);
}

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

.service-card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--cream-dark);
  margin: -0.5px;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  position: relative;
}

.service-card:hover {
  background: var(--white);
  border-color: var(--green);
  z-index: 1;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--green);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.service-card:hover .service-icon {
  opacity: 1;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
}

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

/* ── ABOUT ── */
.about {
  padding: 8rem 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  overflow: hidden;
}

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

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

.about-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--green);
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.about-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.about-feature {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.about-feature-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.about-feature-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
}

/* ── PROCESS ── */
.process {
  padding: 8rem 0;
  background: var(--cream-light);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 0 2rem;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}

.process-step:hover .step-number {
  color: var(--green);
  opacity: 0.4;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.step-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

.process-step-connector {
  width: 1px;
  height: 60px;
  background: var(--cream-dark);
  align-self: flex-start;
  margin-top: 3.5rem;
  flex-shrink: 0;
}

/* ── GALLERY ── */
.gallery {
  padding: 8rem 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(26, 58, 38, 0.7));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

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

.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  min-height: 420px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  grid-column: span 3;
  min-height: 280px;
}

.gallery-item--wide {
  grid-column: 4 / 13;
  grid-row: 2 / 3;
  min-height: 260px;
}

/* ── CTA ── */
.cta {
  padding: 8rem 0;
  background: var(--green-deep);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.cta-content .section-label {
  color: var(--cream-dark);
  opacity: 0.7;
}

.cta-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-deep);
}

.cta .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.cta .btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.cta .btn-ghost:hover {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

/* ── CONTACT ── */
.contact {
  padding: 8rem 0;
  background: var(--cream-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.contact-divider {
  width: 60px;
  height: 1px;
  background: var(--green);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.contact-detail-value {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
}

.contact-link {
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--green);
}

/* ── FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
  width: 100%;
}

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

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

.form-group--textarea textarea {
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 1.5rem;
  background: rgba(45, 90, 61, 0.08);
  border: 1px solid rgba(45, 90, 61, 0.2);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 400;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  padding: 3rem 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-name {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

.footer-address {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 0.7fr;
    gap: 3rem;
  }

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

  .about-grid {
    gap: 3rem;
  }

  .gallery-item--large {
    grid-column: 1 / 7;
    min-height: 320px;
  }

  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 3;
  }

  .gallery-item--wide {
    grid-column: 3 / 13;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream-light);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 105;
  }

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

  .nav-menu a {
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 104;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 2rem;
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-image-wrap {
    max-height: 400px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

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

  .service-card {
    padding: 2.5rem 2rem;
  }

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

  .about-image-wrap {
    max-height: 400px;
  }

  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .process-step-connector {
    width: 60px;
    height: 1px;
    margin: 0;
    align-self: flex-start;
  }

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

  .gallery-item--large,
  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide),
  .gallery-item--wide {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .gallery-item-overlay {
    opacity: 1;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
  }

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

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
}

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

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

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

  .stat-number {
    font-size: 1.5rem;
  }
}
