:root {
  --green: #164734;
  --green-2: #236a4b;
  --gold: #c88a29;
  --red: #a64632;
  --ink: #17201b;
  --muted: #65736b;
  --line: #d9dfd8;
  --paper: #fbfaf6;
  --soft: #eef3ed;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

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

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: #304339;
  font-size: 15px;
}

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

.main-nav a:hover,
.site-footer a:hover {
  color: var(--green-2);
}

.header-call {
  min-width: max-content;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 28, 19, 0.84) 0%, rgba(12, 28, 19, 0.55) 42%, rgba(12, 28, 19, 0.05) 100%),
    linear-gradient(0deg, rgba(12, 28, 19, 0.45), rgba(12, 28, 19, 0));
}

.hero-content {
  position: relative;
  max-width: 690px;
  padding: 80px clamp(22px, 6vw, 80px);
  color: var(--white);
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.inline-action {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #21170a;
}

.button.secondary {
  margin-left: 10px;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-strip div {
  padding: 22px clamp(18px, 4vw, 44px);
  background: var(--white);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  color: var(--green);
}

.quick-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.band {
  background: var(--soft);
}

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

.product-card,
.service-list div,
.contact-box,
.payment-summary,
.legal-page article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card {
  padding: 22px;
}

.product-card p,
.service-list p,
.contact-box p,
.payment-summary li {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.service-list div {
  padding: 26px;
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-table > div {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.price-table > div:first-child {
  border-top: 0;
}

.table-head {
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.contact-layout,
.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.contact-box,
.payment-summary {
  padding: 26px;
}

.map-frame {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

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

.contact-form,
.payment-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

label,
fieldset {
  display: grid;
  gap: 7px;
  margin: 0;
  color: #2d3c33;
  font-weight: 800;
}

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

textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.page-hero.compact {
  min-height: 300px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.currency-picker {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  border: 0;
}

.currency-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-weight: 800;
}

.currency-picker label,
.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.currency-picker input,
.check-row input {
  width: auto;
  min-height: auto;
}

.check-row {
  align-items: flex-start;
}

.check-row a {
  color: var(--green);
}

.legal-page {
  padding: clamp(42px, 6vw, 84px) clamp(18px, 5vw, 72px);
}

.legal-page article {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 52px);
}

.legal-page h1 {
  font-size: clamp(34px, 5vw, 58px);
  color: var(--green);
}

.legal-page h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-page p,
.legal-page li {
  color: #3e4c44;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.84);
  background: #111a15;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(12, 28, 19, 0.86), rgba(12, 28, 19, 0.36));
  }

  .quick-strip,
  .product-grid,
  .service-list,
  .contact-layout,
  .payment-section {
    grid-template-columns: 1fr;
  }

  .price-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-call {
    width: 100%;
    text-align: center;
  }

  .button.secondary {
    margin-left: 0;
    margin-top: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .currency-picker {
    grid-template-columns: 1fr;
  }
}
