:root {
  --green-950: #10251d;
  --green-900: #173c2d;
  --green-800: #23513d;
  --green-700: #2f684c;
  --green-100: #e6efe4;
  --paper: #fbf7ed;
  --paper-2: #f4ead3;
  --parchment: #ead8b6;
  --charcoal: #282821;
  --brown: #59422b;
  --gold: #b4863a;
  --gold-dark: #7d5a21;
  --red: #922b21;
  --line: #d8c8aa;
  --white: #fffdf8;
  --shadow: 0 18px 42px rgba(36, 29, 20, 0.14);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 9% 8%, rgba(180, 134, 58, 0.08), transparent 26rem),
    linear-gradient(0deg, rgba(89, 66, 43, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 100% 8px, auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

p {
  margin-bottom: 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
.brand__name,
.button,
.nav,
label span,
legend,
summary,
input,
select,
textarea,
button {
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  margin-bottom: 0.85rem;
  color: var(--green-950);
  font-size: clamp(2.2rem, 5vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.8rem;
  color: var(--green-950);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  color: var(--green-950);
  font-size: 1.12rem;
  line-height: 1.22;
  letter-spacing: 0;
}

input,
select,
textarea,
button {
  font: inherit;
}

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(180, 134, 58, 0.78);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(180px, auto) 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 0.55rem 2rem;
  border-bottom: 1px solid rgba(216, 200, 170, 0.9);
  background: rgba(251, 247, 237, 0.96);
  box-shadow: 0 8px 24px rgba(24, 35, 28, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(24, 35, 28, 0.14);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 54px;
  color: var(--green-950);
}

.brand__logo {
  width: 152px;
  height: auto;
  filter: contrast(1.12) saturate(1.08);
}

.brand__name {
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.1;
}

.brand__tagline {
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.2rem;
}

.nav a {
  min-height: 44px;
  padding: 0.75rem 0.72rem;
  border-radius: 6px;
  color: var(--green-950);
  font-size: 0.95rem;
  font-weight: 800;
}

.nav a:hover {
  background: var(--green-100);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.86rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button--primary,
.button--phone {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 10px 22px rgba(23, 60, 45, 0.22);
}

.button--primary:hover,
.button--phone:hover {
  background: var(--green-800);
}

.button--secondary {
  color: var(--green-950);
  background: var(--paper-2);
  border-color: var(--line);
}

.button--secondary:hover {
  border-color: var(--gold);
  background: #f8edd5;
}

.button--gold {
  color: var(--green-950);
  background: var(--gold);
  box-shadow: 0 10px 22px rgba(180, 134, 58, 0.22);
}

.button--gold:hover {
  background: #c99a49;
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.64);
}

.button--outline-light:hover {
  color: var(--green-950);
  background: var(--white);
}

.button--large {
  min-height: 60px;
  padding-inline: 1.35rem;
  font-size: 1.1rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-950);
}

.section {
  padding: 4.4rem 1.25rem;
}

.section__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

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

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: #3e3428;
  font-size: 1.12rem;
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 3.7rem;
  padding-bottom: 3.5rem;
  background:
    linear-gradient(180deg, rgba(251, 247, 237, 0.94), rgba(244, 234, 211, 0.84)),
    var(--paper);
}

.hero__forest {
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  opacity: 0.16;
  background:
    linear-gradient(135deg, transparent 0 36%, var(--green-900) 36% 37%, transparent 37%),
    linear-gradient(45deg, transparent 0 38%, var(--green-800) 38% 39%, transparent 39%),
    linear-gradient(180deg, transparent 0 58%, var(--green-950) 58% 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 2.8rem;
}

.hero__copy {
  max-width: 640px;
}

.hero__lead {
  color: #3d3327;
  font-size: 1.24rem;
  line-height: 1.48;
}

.hero__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.25rem 0 1rem;
}

.check-list {
  display: grid;
  gap: 0.5rem;
  list-style: none;
}

.check-list li,
.check-grid li {
  position: relative;
  padding-left: 1.65rem;
}

.check-list li::before,
.check-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 50%;
  background: var(--green-900);
}

.check-list li::after,
.check-grid li::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.62rem;
  width: 0.33rem;
  height: 0.16rem;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.hero__checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 0.62rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-950);
  background: rgba(255, 253, 248, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-weight: 900;
}

.hero__visual {
  position: relative;
  margin: 0;
  border: 1px solid rgba(216, 200, 170, 0.92);
  border-radius: 8px;
  overflow: hidden;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.hero__visual picture {
  display: block;
}

.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 1081;
  object-fit: contain;
  object-position: center;
}

.visual-cards {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.visual-card {
  min-height: 82px;
  padding: 0.8rem;
  border: 1px solid rgba(216, 200, 170, 0.9);
  border-radius: 8px;
  color: var(--green-950);
  background: rgba(255, 253, 248, 0.93);
  box-shadow: 0 10px 24px rgba(17, 32, 23, 0.2);
}

.visual-card strong,
.visual-card small {
  display: block;
}

.visual-card strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.22;
}

.visual-card small {
  margin-top: 0.25rem;
  color: var(--brown);
  font-size: 0.86rem;
  line-height: 1.3;
}

.visual-card--warning {
  border-top: 4px solid var(--red);
}

.intro,
.phone-cta,
.faq {
  background: var(--white);
}

.cards,
.product-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

.card,
.product-card,
.gallery-card,
.send-block,
.inquiry-form,
.phone-cta__inner,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 22px rgba(70, 54, 31, 0.07);
}

.card,
.product-card,
.send-block {
  padding: 1.25rem;
}

.card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  margin-bottom: 0.9rem;
  border-radius: 6px;
  color: var(--green-950);
  background: var(--parchment);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.card p,
.product-card p {
  margin-bottom: 0;
}

.products {
  background: var(--paper);
}

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

.product-card {
  min-height: 168px;
}

.product-card h3 {
  padding-top: 0.75rem;
  border-top: 4px solid var(--green-900);
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.process {
  background:
    linear-gradient(180deg, rgba(16, 37, 29, 0.98), rgba(23, 60, 45, 0.96)),
    var(--green-950);
  color: var(--white);
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
}

.steps li {
  min-height: 220px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.95rem;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.86);
}

.trust {
  background:
    linear-gradient(90deg, rgba(23, 60, 45, 0.94), rgba(35, 81, 61, 0.9)),
    var(--green-900);
  color: var(--white);
}

.trust__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 2rem;
  align-items: center;
}

.trust h2 {
  color: var(--white);
}

.trust p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.88);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.1);
  list-style: none;
}

.check-grid li::before {
  background: var(--gold);
}

.check-grid li::after {
  border-color: var(--green-950);
}

.gallery {
  background: var(--paper);
}

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

.gallery-card {
  overflow: hidden;
}

.gallery-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
}

.gallery-photo--contain {
  padding: 0.7rem;
  object-fit: contain;
  background: var(--white);
}

.gallery-card h3 {
  min-height: 62px;
  margin: 0;
  padding: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

.mockup {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 166px;
  aspect-ratio: 4 / 3;
  padding: 1rem;
  overflow: hidden;
  color: var(--green-950);
  text-align: center;
  background: var(--parchment);
}

.mockup::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(180, 134, 58, 0.62);
  border-radius: 6px;
  pointer-events: none;
}

.mockup strong,
.mockup span,
.mockup small {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.mockup strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.18;
}

.mockup span {
  font-size: 0.88rem;
}

.mockup small {
  color: var(--brown);
  font-size: 0.78rem;
}

.mockup--warning {
  color: var(--white);
  background: var(--green-900);
}

.mockup--warning::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 32px;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.mockup--warning span,
.mockup--warning small,
.mockup--banner span,
.mockup--banner small {
  color: var(--white);
}

.mockup--sign,
.mockup--revir {
  background: #dce6d7;
}

.mockup--plaque {
  background: linear-gradient(180deg, #dfcda9, #f4e5c3);
}

.mockup--parchment,
.mockup--certificate {
  background:
    linear-gradient(90deg, rgba(89, 66, 43, 0.05) 1px, transparent 1px),
    #f2dfb9;
  background-size: 10px 100%, auto;
}

.mockup--shirt,
.mockup--cap {
  background: #dfe8db;
}

.shirt-body {
  width: 94px;
  height: 104px;
  background: var(--green-900);
  clip-path: polygon(20% 10%, 35% 0, 65% 0, 80% 10%, 100% 26%, 86% 45%, 76% 38%, 76% 100%, 24% 100%, 24% 38%, 14% 45%, 0 26%);
}

.shirt-body::after,
.cap-crown::after {
  content: "LD";
  position: absolute;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.mockup--shirt .shirt-body::after {
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
}

.cap-crown {
  width: 112px;
  height: 68px;
  border-radius: 70px 70px 12px 12px;
  background: var(--green-900);
}

.cap-crown::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: 130px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-950);
  transform: translateX(-50%);
}

.mockup--cap .cap-crown::after {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.mockup--banner {
  color: var(--white);
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
}

.mockup--house {
  background:
    linear-gradient(135deg, transparent 0 22%, rgba(35, 81, 61, 0.12) 22% 23%, transparent 23%),
    #f2e4c6;
}

.inquiry {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.84), rgba(244, 234, 211, 0.88)),
    var(--paper);
}

.inquiry__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(450px, 1fr);
  gap: 2rem;
  align-items: start;
}

.inquiry__copy {
  position: sticky;
  top: calc(var(--header-height) + 1.3rem);
}

.send-block h3 {
  margin-bottom: 0.9rem;
}

.small-note {
  margin: 1rem 0 0;
  color: var(--brown);
  font-size: 0.95rem;
}

.inquiry-form {
  padding: 1.35rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-form h2 {
  margin-bottom: 1.05rem;
  font-size: 1.45rem;
}

.inquiry-form label,
.inquiry-form fieldset {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.86rem;
}

.inquiry-form label span,
.inquiry-form legend {
  color: var(--green-950);
  font-size: 0.94rem;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.78rem 0.85rem;
  border: 1px solid #b8a98b;
  border-radius: 6px;
  color: var(--charcoal);
  background: #fffefa;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-900);
  box-shadow: 0 0 0 3px rgba(35, 81, 61, 0.16);
  outline: 0;
}

.file-field input {
  padding-top: 0.7rem;
}

.file-field small {
  color: var(--brown);
  font-size: 0.86rem;
}

.contact-method {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-method legend {
  padding: 0 0.25rem;
}

.contact-method label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.contact-method input {
  width: auto;
  min-height: auto;
  margin: 0 0.5rem 0 0;
  accent-color: var(--green-900);
}

.form-error,
.form-success {
  padding: 0.85rem;
  border-radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.form-error {
  color: #681910;
  background: #f6ddd9;
}

.form-success {
  color: #143225;
  background: #dcecdf;
}

.form-submit {
  width: 100%;
  margin-top: 0.18rem;
}

.privacy-note {
  margin: 0.8rem 0 0;
  color: #675c4a;
  font-size: 0.92rem;
}

.phone-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem;
  background:
    linear-gradient(90deg, rgba(234, 216, 182, 0.82), rgba(255, 253, 248, 0.98)),
    var(--paper-2);
}

.phone-cta__action {
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.phone-cta__action p {
  max-width: 420px;
  margin: 0;
  color: var(--brown);
}

.faq__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--paper);
}

summary {
  position: relative;
  min-height: 56px;
  padding: 1rem 3rem 1rem 1rem;
  color: var(--green-950);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--green-900);
  font-size: 1.35rem;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.final-cta {
  background:
    linear-gradient(180deg, rgba(16, 37, 29, 0.98), rgba(23, 60, 45, 0.98)),
    var(--green-950);
  color: var(--white);
}

.final-cta__inner {
  max-width: 840px;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.16rem;
}

.final-cta__actions {
  justify-content: center;
}

.site-footer {
  padding: 2.25rem 1.25rem;
  color: rgba(255, 253, 248, 0.88);
  background: var(--green-950);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(230px, 1fr) minmax(185px, 0.75fr) minmax(170px, 0.65fr);
  gap: 2rem;
  align-items: start;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
}

.footer-logo {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  background: var(--white);
}

.site-footer p {
  margin: 0.18rem 0;
}

.footer-note {
  margin-top: 0.75rem;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.94rem;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.legal-main {
  background:
    linear-gradient(180deg, rgba(251, 247, 237, 0.95), rgba(244, 234, 211, 0.55)),
    var(--paper);
}

.legal-hero {
  padding-top: 3.25rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line);
}

.legal-hero__inner {
  max-width: 900px;
}

.legal-hero h1 {
  max-width: 760px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #3e3428;
  font-size: 1.14rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 1.1rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--green-950);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.legal-section {
  padding-top: 3rem;
}

.legal-content {
  display: grid;
  gap: 1.2rem;
  max-width: 920px;
}

.legal-content article {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
}

.legal-content article + article {
  margin-top: 0.4rem;
}

.legal-content h2 {
  margin-bottom: 1rem;
}

.legal-content h3,
.legal-content h4 {
  margin-top: 1.4rem;
  margin-bottom: 0.45rem;
}

.legal-content h4 {
  color: var(--green-900);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-content li + li {
  margin-top: 0.25rem;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1180px) {
  .site-header {
    padding-inline: 1rem;
  }

  .nav a {
    padding-inline: 0.55rem;
  }

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

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 1rem;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .brand__tagline {
    font-size: 0.82rem;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(24, 35, 28, 0.16);
  }

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

  .nav a {
    min-height: 52px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .menu-toggle {
    display: block;
  }

  .header-phone {
    width: 48px;
    min-width: 48px;
    padding: 0;
    font-size: 0;
    gap: 0;
  }

  .header-phone span {
    font-size: 1.2rem;
  }

  .hero__inner,
  .inquiry__inner,
  .trust__inner {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual img {
    aspect-ratio: 1400 / 1000;
  }

  .cards--three,
  .steps,
  .faq__inner {
    grid-template-columns: 1fr;
  }

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

  .inquiry__copy {
    position: static;
  }

  .check-grid,
  .phone-cta__inner,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .section {
    padding: 2.2rem 0.85rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero__inner {
    gap: 1.7rem;
  }

  .hero__lead {
    font-size: 1.12rem;
  }

  .hero__actions,
  .final-cta__actions {
    display: grid;
  }

  .button {
    min-height: 44px;
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
  }

  .header-phone {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    font-size: 0;
  }

  .header-phone span {
    font-size: 1.15rem;
  }

  .hero__actions .button,
  .final-cta__actions .button {
    justify-self: start;
  }

  .hero__actions .button--primary,
  .final-cta__actions .button--gold,
  .form-submit {
    width: 100%;
    justify-self: stretch;
  }

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

  .hero__visual img {
    aspect-ratio: 1024 / 1366;
    object-fit: contain;
    object-position: center;
  }

  .visual-cards {
    display: none;
  }

  .visual-card {
    min-height: 0;
  }

  .product-card {
    min-height: 0;
  }

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

  .mockup {
    min-height: 170px;
  }

  .phone-cta__inner {
    padding: 1.25rem;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.55rem;
    border-top: 1px solid rgba(255, 253, 248, 0.2);
    background: var(--green-950);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.16);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 6px;
    color: var(--green-950);
    background: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
    font-weight: 900;
  }

  .mobile-contact-bar a:first-child {
    color: var(--white);
    background: var(--green-700);
    border: 1px solid rgba(255, 253, 248, 0.25);
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 0.65rem;
    padding-inline: 0.75rem;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .brand__logo {
    width: 130px;
  }

  .brand__tagline {
    max-width: none;
    font-size: 0.72rem;
  }

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

  .mockup {
    min-height: 210px;
  }

  .inquiry-form {
    padding: 1rem;
  }
}

/* WordPress integration */
.admin-bar .site-header {
  top: 32px;
}

.lov-oprema-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.inquiry-form .form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
