:root {
  --pine: #163b26;
  --leaf: #2f7a3f;
  --spring: #85bf5a;
  --mint: #dff0d6;
  --sky: #dceef5;
  --stone: #f2efe7;
  --clay: #b86f4b;
  --ink: #17221b;
  --muted: #607066;
  --white: #ffffff;
  --line: rgba(22, 59, 38, 0.16);
  --shadow: 0 18px 45px rgba(22, 59, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(242, 239, 231, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 192px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(22, 59, 38, 0.18);
  background: #516940;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--leaf);
}

.nav-pay {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 41, 26, 0.88) 0%, rgba(15, 41, 26, 0.58) 42%, rgba(15, 41, 26, 0.08) 100%),
    url("https://images.pexels.com/photos/259588/pexels-photo-259588.jpeg?auto=compress&cs=tinysrgb&w=2200") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 56px 0 120px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #c7efa7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 2.1vw, 1.45rem);
}

.hero-actions,
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button svg,
.text-link svg,
.check-list svg,
.contact-methods svg,
.service-card svg,
.values-panel svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button.primary {
  color: var(--white);
  background: var(--leaf);
  box-shadow: 0 12px 24px rgba(47, 122, 63, 0.24);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button.light {
  color: var(--pine);
  border-color: var(--line);
  background: var(--white);
}

.service-band,
.story-section,
.contact-layout,
.payment-shell,
.official-services,
.about-service-list {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(22, 59, 38, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card svg,
.values-panel svg {
  color: var(--leaf);
  margin-bottom: 12px;
}

.service-card p,
.story-copy p,
.split-copy p,
.payment-copy p,
.payment-note,
.form-note,
.official-card p,
.about-service-list p {
  color: var(--muted);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.92);
}

.official-services {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
  padding-top: 0;
}

.official-card,
.about-service-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(22, 59, 38, 0.08);
}

.official-card {
  padding: clamp(22px, 4vw, 34px);
}

.logo-card {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background: var(--mint);
}

.logo-card img {
  width: min(220px, 70%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(22, 59, 38, 0.16);
  margin-bottom: 18px;
}

.logo-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.logo-link img {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.logo-link:hover img {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(22, 59, 38, 0.18);
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.offer-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--pine);
  background: #fbfaf6;
  font-weight: 800;
}

.offer-list svg {
  width: 17px;
  height: 17px;
  color: var(--leaf);
}

.phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.86fr);
  min-height: 620px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.split-image {
  min-height: 420px;
  background:
    linear-gradient(0deg, rgba(22, 59, 38, 0.08), rgba(22, 59, 38, 0.08)),
    url("https://images.pexels.com/photos/1453499/pexels-photo-1453499.jpeg?auto=compress&cs=tinysrgb&w=1500") center / cover;
}

.split-copy {
  align-self: center;
  padding: clamp(36px, 7vw, 86px);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
  font-weight: 760;
}

.check-list li,
.text-link,
.contact-methods a,
.contact-methods span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list svg {
  color: var(--leaf);
}

.text-link {
  color: var(--leaf);
  font-weight: 850;
  text-decoration: none;
}

.cta-band {
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  margin: clamp(52px, 7vw, 90px) auto;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: linear-gradient(135deg, var(--pine), #376f38);
  border-radius: 8px;
}

.cta-band .eyebrow {
  color: #c7efa7;
}

.cta-band h2 {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--pine);
}

.site-footer p {
  margin: 0;
}

.footer-credit {
  color: #c7efa7;
}

.page-hero {
  display: grid;
  min-height: 420px;
  align-items: end;
  padding: 70px clamp(18px, 7vw, 96px);
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-hero > div {
  max-width: 780px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.about-hero {
  background-image:
    linear-gradient(90deg, rgba(18, 48, 30, 0.94), rgba(18, 48, 30, 0.58), rgba(18, 48, 30, 0.24)),
    url("https://images.pexels.com/photos/280222/pexels-photo-280222.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.contact-hero {
  background-image:
    linear-gradient(90deg, rgba(18, 48, 30, 0.94), rgba(18, 48, 30, 0.58), rgba(18, 48, 30, 0.24)),
    url("https://images.pexels.com/photos/4751970/pexels-photo-4751970.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 6vw, 78px);
}

.values-panel {
  display: grid;
  gap: 14px;
}

.values-panel > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.values-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-service-list {
  margin-top: -34px;
  margin-bottom: clamp(42px, 6vw, 72px);
  padding: clamp(24px, 5vw, 42px);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.form-panel,
.payment-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--pine);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(22, 59, 38, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full-field,
.full-button,
.payment-note,
.form-note {
  grid-column: 1 / -1;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-image {
  min-height: 310px;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(22, 59, 38, 0.1), rgba(22, 59, 38, 0.1)),
    url("https://images.pexels.com/photos/4751970/pexels-photo-4751970.jpeg?auto=compress&cs=tinysrgb&w=1200") center / cover;
  box-shadow: var(--shadow);
}

.contact-methods {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 8px;
  color: var(--pine);
  background: var(--mint);
}

.contact-methods a {
  text-decoration: none;
}

.payment-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 160px);
}

.payment-copy {
  padding: clamp(18px, 4vw, 34px) 0;
}

.payment-copy h1 {
  color: var(--pine);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.sample-link {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sky);
}

.sample-link span {
  display: block;
  margin-bottom: 8px;
  color: var(--pine);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.sample-link code {
  display: block;
  overflow-wrap: anywhere;
  color: #244355;
  font-size: 0.9rem;
}

.payment-note,
.form-note {
  margin: -4px 0 0;
  font-size: 0.9rem;
}

.coming-soon-shell {
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 160px);
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.coming-soon-shell .payment-copy h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 5.2vw, 5.7rem);
  line-height: 0.96;
}

.coming-soon-shell .payment-copy p {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.coming-soon-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(47, 122, 63, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 16%, rgba(133, 191, 90, 0.38), transparent 34%),
    linear-gradient(135deg, #e3f3d7 0%, #f9fbf1 54%, #dceef5 100%);
  box-shadow: 0 22px 55px rgba(22, 59, 38, 0.18);
}

.coming-soon-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
}

.coming-soon-panel h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.03;
}

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

.soon-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--leaf), var(--pine));
  box-shadow: 0 12px 24px rgba(47, 122, 63, 0.24);
}

.soon-icon svg {
  width: 28px;
  height: 28px;
}

.compact-list {
  margin: 24px 0;
}

@media (min-width: 1320px) {
  .coming-soon-shell {
    width: min(1120px, calc(100% - 56px));
  }
}

@media (max-width: 920px) {
  .site-header,
  .site-nav {
    align-items: flex-start;
  }

  .site-header {
    position: static;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(15, 41, 26, 0.9) 0%, rgba(15, 41, 26, 0.55) 55%, rgba(15, 41, 26, 0.1) 100%),
      url("https://images.pexels.com/photos/259588/pexels-photo-259588.jpeg?auto=compress&cs=tinysrgb&w=1400") center / cover;
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding-bottom: 58px;
  }

  .service-grid,
  .split-section,
  .story-section,
  .contact-layout,
  .payment-shell,
  .official-services {
    grid-template-columns: 1fr;
  }

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

  .split-section {
    min-height: 0;
  }

  .contact-side {
    order: -1;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .site-nav {
    gap: 8px;
    font-size: 0.88rem;
  }

  .site-nav a {
    padding: 8px 0;
  }

  .nav-pay {
    padding: 8px 10px;
  }

  h1 {
    font-size: 3rem;
  }

  .service-grid,
  .gallery-strip,
  .form-panel,
  .payment-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 360px;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .cta-band {
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }
}
