:root {
  --ink: #152820;
  --forest: #1e3d32;
  --sage: #3d6b5a;
  --leaf: #5a8f76;
  --mist: #eef2ef;
  --linen: #f6f4ef;
  --paper: #fbfaf7;
  --gold: #b8954a;
  --gold-soft: #d4bc7a;
  --muted: #5c6b63;
  --line: rgba(21, 40, 32, 0.12);
  --shadow: 0 18px 50px rgba(21, 40, 32, 0.12);
  --radius: 4px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(90, 143, 118, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(184, 149, 74, 0.1), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 48%, var(--linen) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.scrolled {
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1rem;
}

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

.site-header.scrolled .logo {
  color: var(--forest);
}

.logo span {
  color: var(--gold-soft);
}

.site-header.scrolled .logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s;
}

.site-header.scrolled .nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.site-header.scrolled .nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.15rem;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.site-header.scrolled .nav-cta {
  background: var(--forest);
  color: white !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.site-header.scrolled .menu-toggle {
  border-color: var(--line);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: white;
  transition: background 0.25s;
}

.site-header.scrolled .menu-toggle span {
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(184, 149, 74, 0.35);
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--forest);
  color: white;
}

.btn-dark:hover {
  background: var(--sage);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 18s var(--ease) forwards;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 40, 32, 0.45) 0%, rgba(21, 40, 32, 0.25) 35%, rgba(21, 40, 32, 0.78) 100%),
    linear-gradient(90deg, rgba(21, 40, 32, 0.55) 0%, transparent 55%);
}

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

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.brand-mark em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1rem;
  max-width: 28ch;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.3s forwards;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.6s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-hint {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Sections */
section {
  padding: 5.5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--forest);
}

.section-intro {
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* Intro strip */
.intro {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: end;
}

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

.stat {
  padding: 1.25rem 0;
  border-top: 2px solid var(--gold);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  line-height: 1.1;
}

.stat span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Services */
.services {
  background:
    linear-gradient(180deg, transparent, rgba(61, 107, 90, 0.06) 20%, rgba(61, 107, 90, 0.06) 80%, transparent);
}

.services-head {
  margin-bottom: 2.75rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: stretch;
  background: rgba(251, 250, 247, 0.85);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card figure {
  min-height: 160px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-body {
  padding: 1.35rem 1.35rem 1.35rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
  color: var(--forest);
}

.service-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.approach-visual {
  position: relative;
}

.approach-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.approach-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 2rem;
  background: var(--forest);
  color: white;
  padding: 1rem 1.25rem;
  max-width: 220px;
  font-size: 0.9rem;
}

.approach-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--gold-soft);
}

.steps {
  display: grid;
  gap: 1.35rem;
  margin-top: 2rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 2rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--forest);
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Gallery */
.gallery {
  padding-bottom: 4rem;
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.85rem;
}

.gallery-grid figure {
  overflow: hidden;
  position: relative;
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

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

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(21, 40, 32, 0.75));
  color: white;
  font-size: 0.88rem;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

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

/* Trust */
.trust {
  background: var(--forest);
  color: white;
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 149, 74, 0.18), transparent 70%);
  right: -80px;
  top: -100px;
  pointer-events: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  position: relative;
}

.trust .section-label {
  color: var(--gold-soft);
}

.trust .section-title {
  color: white;
}

.trust .section-intro {
  color: rgba(255, 255, 255, 0.75);
}

.trust-points {
  display: grid;
  gap: 1rem;
}

.trust-point {
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.trust-point h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--gold-soft);
}

.trust-point p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.25rem 2.5rem;
  background:
    linear-gradient(135deg, rgba(61, 107, 90, 0.12), rgba(184, 149, 74, 0.12)),
    var(--paper);
  border: 1px solid var(--line);
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.cta-panel p {
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.15fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-title span {
  color: var(--gold-soft);
}

.map-wrap {
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  min-height: 260px;
  background: #1a2a22;
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.address-block {
  margin-bottom: 1.5rem;
}

.address-block h3 {
  font-size: 0.95rem;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.address-block p,
.address-block a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.address-block a:hover {
  color: white;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form select option {
  color: var(--ink);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(90, 143, 118, 0.25);
  border: 1px solid rgba(90, 143, 118, 0.45);
  color: #d8efe4;
  font-size: 0.95rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 auto;
    top: 72px;
    background: rgba(251, 250, 247, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    color: var(--ink) !important;
  }

  .nav-cta {
    background: var(--forest) !important;
    color: white !important;
    width: 100%;
    justify-content: center;
  }

  .intro-grid,
  .approach-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-grid figure:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .approach-visual img {
    height: 360px;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 600px) {
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card figure {
    min-height: 180px;
  }

  .service-body {
    padding: 1.15rem;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 210px);
  }

  .gallery-grid figure:first-child {
    grid-column: span 1;
  }

  .cta-panel {
    padding: 1.5rem;
  }

  .hero-content {
    padding-bottom: 3.5rem;
  }
}
