:root {
  --green-950: #06261f;
  --green-900: #0b3329;
  --green-800: #174534;
  --green-700: #315936;
  --moss: #607235;
  --sage: #87956a;
  --cream: #f7f3e8;
  --warm-white: #fffdf7;
  --stone: #e8dfcf;
  --ink: #18332a;
  --muted: #67766a;
  --shadow: 0 18px 48px rgba(6, 38, 31, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(6, 38, 31, 0.08);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 230px;
}
.brand img { width: 76px; height: 76px; object-fit: contain; border-radius: 50%; }
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--green-950);
}
.brand-line { display: block; font-family: inherit; font-size: .62rem; letter-spacing: .25em; color: var(--moss); margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 650;
  color: var(--green-900);
}
.nav-links a:hover, .nav-links a.active { background: var(--cream); }
.nav-links .button { background: var(--green-900); color: white; }
.nav-links .button:hover { background: var(--green-800); }

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 82% 8%, rgba(135,149,106,.22), transparent 30%), linear-gradient(135deg, var(--cream), #ffffff 48%, #eff4e6);
}
.hero-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
  padding: 70px 0;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--moss);
  font-weight: 800;
  font-size: .78rem;
  margin-bottom: 18px;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-950);
  line-height: 1.05;
  margin: 0 0 18px;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.45rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #334a40; max-width: 62ch; }
.hero-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-logo-card img,
.hero-logo-image {
  width: min(100%, 520px);
  height: auto !important;
  max-height: 78vh;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hero-logo-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(6,38,31,.10);
  border-radius: 38px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 38px);
}
.hero-logo-card img { border-radius: 22px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 13px 22px; border-radius: 999px;
  text-decoration: none; font-weight: 800; border: 1px solid transparent;
}
.btn.primary { background: var(--green-900); color: white; box-shadow: 0 10px 26px rgba(6,38,31,.18); }
.btn.secondary { border-color: rgba(6,38,31,.18); background: white; color: var(--green-900); }
.btn:hover { transform: translateY(-1px); }

.section { width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: 86px 0; }
.section.narrow { width: min(920px, calc(100% - 36px)); }
.intro-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.card {
  background: white;
  border: 1px solid rgba(6,38,31,.10);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 34px rgba(6,38,31,.08);
}
.card.dark { background: var(--green-900); color: var(--cream); }
.card.dark h2, .card.dark h3 { color: white; }
.card.dark p { color: #e7ecdf; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.service-list li {
  background: var(--cream);
  border: 1px solid rgba(6,38,31,.08);
  border-radius: 16px;
  padding: 13px 14px;
  font-weight: 650;
}
.split-band {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: white;
  margin-top: 20px;
}
.split-band .section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: center; }
.split-band h2, .split-band h3 { color: white; }
.split-band p { color: #e7ecdf; }
.feature-list { margin: 0; padding-left: 18px; }
.feature-list li { margin: 10px 0; }

.page-hero {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: white;
  padding: 70px 0;
}
.page-hero .section { padding: 0; }
.page-hero h1, .page-hero h2 { color: white; }
.page-hero p { color: #e8eee3; max-width: 760px; }
.placeholder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.placeholder {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: linear-gradient(135deg, #e6ead8, #fffaf0);
  border: 1px dashed rgba(6,38,31,.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-weight: 800; text-align: center; padding: 18px;
}
.quote-card blockquote { margin: 0; font-size: 1.12rem; color: #344b41; }
.quote-card cite { display: block; margin-top: 18px; font-weight: 800; color: var(--moss); font-style: normal; }
.contact-details a { text-decoration: none; font-weight: 800; color: var(--green-900); }
.form-placeholder label { display: block; margin: 14px 0 6px; font-weight: 800; }
.form-placeholder input, .form-placeholder textarea {
  width: 100%; border: 1px solid rgba(6,38,31,.18); border-radius: 14px; padding: 13px 14px;
  font: inherit; background: var(--warm-white);
}
.form-placeholder textarea { min-height: 140px; resize: vertical; }
.small-note { color: var(--muted); font-size: .94rem; }
.site-footer { background: var(--green-950); color: #e8eee3; padding: 42px 0; }
.footer-inner { width: min(1180px, calc(100% - 36px)); margin: 0 auto; display: flex; gap: 28px; justify-content: space-between; flex-wrap: wrap; }
.footer-inner a { color: white; text-decoration: none; font-weight: 750; }

@media (max-width: 900px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { justify-content: flex-start; }
  .hero-inner, .intro-grid, .contact-grid, .split-band .section { grid-template-columns: 1fr; }
  .hero-inner { min-height: 0; padding: 44px 0; }
  .grid-3, .service-list, .placeholder-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}.gallery-item {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(13, 55, 43, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.gallery-item p {
  margin: 0;
  padding: 18px 20px;
  font-weight: 700;
  color: #0d372b;
}
