:root {
  --green: #2d4a2d;
  --steel: #3a3a3a;
  --amber: #c17f24;
  --dark: #0e0e0e;
  --dark-soft: #1a1a1a;
  --light: #f5f3ee;
  --text-light: #e8e5df;
  --text-dark: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.6;
}

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

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

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

.section-title {
  margin: 0 0 1.25rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
}

.section-tag {
  margin: 0 0 0.8rem;
  color: var(--amber);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-tag-dark {
  color: var(--amber);
}

.dark-title {
  color: var(--text-dark);
}

.dark-grid {
  position: relative;
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 12px
    );
  background-size:
    60px 60px,
    60px 60px,
    16px 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 14px 32px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: #3d5e3d;
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--amber);
  background: transparent;
  color: var(--amber);
}

.btn-secondary:hover {
  background: rgba(193, 127, 36, 0.1);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(14, 14, 14, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: backdrop-filter 0.2s ease, background-color 0.2s ease;
}

.site-header.scrolled {
  backdrop-filter: blur(12px);
  background: rgba(14, 14, 14, 0.8);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-main {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.brand-sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
}

.nav-links {
  justify-self: center;
  display: inline-flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 14, 0.98);
  z-index: 150;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}

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

.mobile-menu a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-title {
  margin: 0;
}

.hero-line {
  display: block;
  color: var(--text-light);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.1rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero-line-green {
  color: var(--green);
}

.hero-line-decade {
  position: relative;
  display: inline-block;
}

.decades-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--amber);
}

.hero-copy {
  max-width: 480px;
  color: rgba(232, 229, 223, 0.6);
  margin: 1.5rem 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.9rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 560px;
}

.stat-block {
  padding-right: 1rem;
}

.stat-block:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 1rem;
}

.stat-number {
  margin: 0;
  color: var(--amber);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.stat-label {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Space Grotesk", sans-serif;
}

.hero-right {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.hero-svg {
  width: min(100%, 420px);
}

.hero-chip {
  transform: rotate(-3deg);
  background: var(--green);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  padding: 0.55rem 0.9rem;
  letter-spacing: 0.08em;
}

.services {
  background: var(--light);
  color: var(--text-dark);
  padding: 6rem 0;
}

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

.service-card {
  background: #fff;
  border-top: 3px solid var(--green);
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: all 0.2s ease;
}

.service-card:hover {
  border-top-color: var(--amber);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 0.9rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--steel);
  fill: none;
  stroke-width: 2;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}

.service-card p {
  margin: 0;
  color: #5a5a5a;
  font-size: 0.92rem;
}

.gallery {
  background: var(--dark);
  padding: 6rem 0;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #121212;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  transition: background 0.3s ease;
}

.gallery-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05) saturate(0.9);
  transition: transform 0.4s ease;
  aspect-ratio: 4 / 3;
  background: linear-gradient(45deg, #222, #2f2f2f);
}

.gallery-item figcaption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.65rem;
  z-index: 2;
  transform: translateY(120%);
  transition: transform 0.3s ease;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  background: linear-gradient(transparent 46%, rgba(0, 0, 0, 0.78) 100%);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.gallery-actions {
  text-align: center;
  margin-top: 1.1rem;
}

.coming-soon {
  margin-top: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.about {
  background: var(--green);
  padding: 6rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
}

.about-left p {
  color: rgba(255, 255, 255, 0.75);
}

.about-facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.about-facts li {
  margin-bottom: 0.6rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Space Grotesk", sans-serif;
  position: relative;
  padding-left: 1rem;
}

.about-facts li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  position: absolute;
  left: 0;
  top: 0.5em;
}

.about-card {
  background: var(--dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
}

.about-card h3 {
  margin: 0 0 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--amber);
}

.why-row {
  margin-bottom: 1.1rem;
}

.why-row h4 {
  margin: 0 0 0.2rem;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}

.why-row h4 span {
  color: var(--amber);
  margin-right: 0.4rem;
}

.why-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.contact {
  padding: 6rem 0;
}

.contact-wrap {
  text-align: center;
}

.contact-subtext {
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 1.6rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  max-width: 840px;
  margin: 0 auto 1.5rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px;
  padding: 0.9rem 1rem;
  font-family: "DM Sans", sans-serif;
}

.quote-form textarea,
.quote-form .form-submit,
.quote-form .form-note {
  grid-column: 1 / -1;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0.1rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 840px;
  margin: 0 auto;
}

.contact-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.contact-item span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--amber);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.contact-item p {
  margin: 0;
}

.site-footer {
  background: var(--dark-soft);
}

.footer-grid {
  padding: 3rem 0 2.2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

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

.footer-brand p {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.9rem;
}

.site-footer h4 {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li,
.site-footer li a {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.contact-list li {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-wrap {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.86rem;
}

.section-observe {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-observe.in-view {
  opacity: 1;
  transform: translateY(0);
}

.stagger-card {
  opacity: 0;
  transform: translateY(20px);
}

.stagger-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-stamp {
  opacity: 0;
  transform: scale(0.8);
  animation: stampIn 0.55s ease forwards;
}

.animate-stamp:nth-child(2) {
  animation-delay: 0.1s;
}

.animate-stamp:nth-child(3) {
  animation-delay: 0.2s;
}

.draw-svg g > * {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawStroke 2s ease forwards;
}

@keyframes stampIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1030px) {
  .hero-grid,
  .about-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .nav-actions .btn-sm {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .contact-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 1rem;
  }

  .stats-row {
    max-width: 420px;
  }

  .gallery-grid {
    columns: 2 220px;
  }

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

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

  .gallery-grid {
    columns: 1;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .stat-block {
    border-right: 0 !important;
    margin-right: 0 !important;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.6rem;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
    text-align: center;
  }
}
