:root {
  --emerald: #0f6b58;
  --emerald-dark: #073d35;
  --mint: #dff4ed;
  --sage: #789681;
  --ink: #1e2522;
  --muted: #64706b;
  --line: #d9e2de;
  --paper: #fbfaf7;
  --white: #ffffff;
  --rose: #b8616b;
  --gold: #b38a3e;
  --shadow: 0 20px 50px rgba(7, 61, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Lato, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

.top-strip {
  background: var(--emerald-dark);
  color: var(--white);
  font-size: 14px;
}

.announcement-bar {
  background: var(--mint);
  color: var(--emerald-dark);
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.quick-nav-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 79px;
  z-index: 20;
}

.quick-nav {
  padding: 12px 22px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-padding-left: 16px;
  -webkit-overflow-scrolling: touch;
}

.quick-nav::-webkit-scrollbar {
  display: none;
}

.quick-nav a {
  flex: 0 0 auto;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--paper);
  color: var(--emerald-dark);
  font-size: 13px;
  font-weight: 900;
}

.top-strip .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.top-strip a {
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--emerald);
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--emerald);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name {
  font-weight: 800;
  line-height: 1.1;
  color: var(--emerald-dark);
}

.brand-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--mint);
  color: var(--emerald-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(15, 107, 88, 0.2);
}

.btn-secondary {
  border-color: var(--emerald);
  color: var(--emerald-dark);
  background: var(--white);
}

.btn-soft {
  background: var(--mint);
  color: var(--emerald-dark);
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  position: relative;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-hero.hero {
  min-height: 58vh;
}

body[data-page="home"] .page-hero.hero {
  min-height: 74vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 61, 53, 0.82), rgba(7, 61, 53, 0.38) 48%, rgba(30, 37, 34, 0.22));
}

.hero .inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 110px 22px 72px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

.hero h1,
.page-hero h1 {
  margin: 10px 0 14px;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p,
.page-hero p {
  max-width: 690px;
  font-size: 19px;
  margin: 0 0 26px;
}

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

.center-actions {
  justify-content: center;
  margin-top: 30px;
}

.hero-actions .btn {
  min-width: 168px;
}

.page-hero {
  color: var(--white);
  background-position: center;
  background-size: cover;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 61, 53, 0.86), rgba(7, 61, 53, 0.36));
}

.page-hero .inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 22px;
}

.section {
  padding: 72px 22px;
}

.section.alt {
  background: var(--white);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  color: var(--emerald-dark);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin: 0 0 10px;
  color: var(--emerald-dark);
  line-height: 1.2;
}

p {
  margin-top: 0;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(7, 61, 53, 0.06);
}

.card-body {
  padding: 22px;
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.split img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat {
  border-left: 4px solid var(--rose);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
}

.stat strong {
  display: block;
  color: var(--emerald-dark);
  font-size: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  margin: 16px 0 28px;
}

.price-mobile-list {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--mint);
  color: var(--emerald-dark);
  font-size: 13px;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.pill-list li {
  background: var(--mint);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--emerald-dark);
  font-weight: 800;
  font-size: 14px;
}

.note {
  border-left: 4px solid var(--gold);
  background: #fff8e8;
  padding: 18px 20px;
  border-radius: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-item h3 {
  font-size: 18px;
}

.contact-band {
  background: var(--emerald-dark);
  color: var(--white);
}

.contact-band h2,
.contact-band h3 {
  color: var(--white);
}

.contact-band .lead {
  color: #d9eee8;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item svg {
  color: var(--gold);
  min-width: 22px;
  margin-top: 3px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 800;
  color: var(--emerald-dark);
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  background: #17231f;
  color: #d9e5e1;
  padding: 36px 22px;
}

.footer a {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 26px;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.footer .small {
  color: #b9c8c3;
}

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

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid figcaption {
  padding-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.testimonial p {
  font-size: 18px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  margin-bottom: 12px;
  background: var(--white);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 900;
  color: var(--emerald-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 18px 18px;
  margin: 0;
  color: var(--muted);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.footer-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.footer-logo small {
  color: #b9c8c3;
  margin-top: 4px;
}

.prose {
  max-width: 860px;
}

section[id] {
  scroll-margin-top: 140px;
}

.product-list {
  columns: 2;
  column-gap: 34px;
  padding-left: 20px;
}

.product-list li {
  break-inside: avoid;
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .nav-links {
    position: absolute;
    left: 22px;
    right: 22px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    box-shadow: var(--shadow);
    max-height: calc(100svh - 132px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .grid.three,
  .grid.four,
  .split,
  .stat-row,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .top-strip .wrap {
    justify-content: center;
    text-align: center;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .top-strip .wrap span:first-child {
    display: none;
  }

  .top-strip .wrap,
  .nav-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-img {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 13px;
  }

  .hero {
    min-height: 54svh;
  }

  .page-hero.hero,
  body[data-page="home"] .page-hero.hero {
    min-height: 54svh;
  }

  .hero .inner,
  .page-hero .inner,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(29px, 7.4vw, 34px);
    line-height: 1.03;
    text-wrap: balance;
  }

  .hero p,
  .page-hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero .inner,
  .page-hero .inner {
    padding-top: 54px;
    padding-bottom: 34px;
  }

  .announcement-bar {
    padding: 5px 12px;
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  .quick-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quick-nav-section {
    top: 74px;
  }

  section[id] {
    scroll-margin-top: 128px;
  }

  h2 {
    font-size: clamp(27px, 7vw, 32px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .split,
  .stat-row,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .product-list {
    columns: 1;
  }

  .split img {
    min-height: 280px;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .table-wrap {
    display: none;
  }

  .price-mobile-list {
    display: grid;
    gap: 10px;
    margin: 10px 0 24px;
  }

  .price-mobile-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .price-mobile-row div {
    border-radius: 8px;
    background: var(--paper);
    padding: 9px 10px;
  }

  .price-mobile-row span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
  }

  .price-mobile-row strong {
    display: block;
    color: var(--emerald-dark);
    font-size: 17px;
  }
}
