:root {
  --green: #2F5D3A;
  --green-dark: #24492e;
  --green-soft: #d9e7db;
  --ochre: #C8963E;
  --ochre-dark: #a97a2c;
  --ochre-soft: #f3e3c2;
  --sand: #F6F1E7;
  --sand-deep: #ece1cd;
  --ink: #1f2a21;
  --muted: #5c6a5e;
  --card: #fbf6ec;
  --line: rgba(47, 93, 58, 0.16);

  --font-display: "Golos Text", "Arial", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  --font-text: "Inter", "Segoe UI", "Arial", system-ui, -apple-system, sans-serif;

  --radius: 1.1rem;
  --shadow: 0 2px 8px rgba(47, 93, 58, 0.08), 0 12px 28px rgba(47, 93, 58, 0.10);
  --shadow-lift: 0 6px 16px rgba(47, 93, 58, 0.12), 0 20px 44px rgba(47, 93, 58, 0.16);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--sand);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(200, 150, 62, 0.06), transparent 45%),
    radial-gradient(ellipse at 100% 20%, rgba(47, 93, 58, 0.05), transparent 40%),
    repeating-linear-gradient(94deg, rgba(92, 66, 34, 0.025) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(92, 66, 34, 0.02) 0 1px, transparent 1px 34px);
  min-height: 100vh;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--green-dark);
}

p { margin: 0 0 1em; }

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--green-dark); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.94);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-dark);
  text-decoration: none;
}
.brand:hover { color: var(--green-dark); }
.brand-mark { width: 30px; height: 30px; flex: 0 0 auto; }
.site-nav { display: flex; align-items: center; gap: 18px; }
.site-nav a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: none;
}
.site-nav a:hover { color: var(--ochre-dark); }
.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--green-dark); }

/* Hero */
.hero {
  padding: 40px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--ochre-dark);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin: 0 0 0.35em;
}
.hero-tagline {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 34ch;
}
.hero-figure {
  margin: 0;
  position: relative;
}
.hero-figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero-note {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  background: rgba(246, 241, 231, 0.94);
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn-primary {
  background: var(--ochre);
  color: #241a0a;
}
.btn-primary:hover {
  background: var(--ochre-dark);
  color: #241a0a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}
.btn-outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
}
.btn-small { padding: 0.55rem 1rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* Sections */
.section { padding: 48px 0; }
.section-alt {
  background: var(--sand-deep);
  background-image: repeating-linear-gradient(90deg, rgba(92, 66, 34, 0.04) 0 1px, transparent 1px 46px);
}
.section-head { margin-bottom: 28px; max-width: 760px; }
.section-head h2 {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}
.section-lede {
  font-size: 1.15rem;
  color: var(--muted);
}

/* Catalog cards — garden tags on a wooden board */
.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    repeating-linear-gradient(0deg, rgba(92, 66, 34, 0.05) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #d9b87a, #cdaa68);
  border: 1px solid rgba(92, 66, 34, 0.28);
  border-radius: 6px 14px 14px 14px;
  padding: 22px 20px 18px;
  clip-path: polygon(0 16px, 16px 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 16px;
  bottom: 40px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--ochre-dark) 0 6px, transparent 6px 12px);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--ochre);
  color: #241a0a;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  z-index: 2;
}
.card-media {
  margin: 0 0 16px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--green-soft);
}
.card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.card-body {
  background: var(--card);
  border: 1px solid rgba(92, 66, 34, 0.18);
  border-radius: 8px;
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title { font-size: 1.25rem; margin: 0 0 0.3em; }
.card-desc { color: var(--muted); font-size: 0.98rem; flex: 1; }
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid rgba(47, 93, 58, 0.22);
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  white-space: nowrap;
}

.product-line {
  margin-top: 30px;
  padding: 16px 18px;
  background: var(--card);
  border-left: 4px solid var(--ochre);
  border-radius: 0 10px 10px 0;
  font-size: 1.05rem;
}

/* Quality plates */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.plate {
  background: linear-gradient(180deg, #f2eee3, #e7dfcc);
  border: 1px solid rgba(92, 66, 34, 0.22);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), var(--shadow);
}
.plate-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--ochre-dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.25em;
}
.plate-title { font-size: 1.15rem; margin: 0 0 0.35em; }
.plate p { color: var(--muted); margin: 0; }
.plate.stamp {
  border: 2px dashed var(--ochre);
  border-radius: 50% 50% 8px 8px / 14px 14px 8px 8px;
}
.guarantee {
  margin-top: 26px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
}

/* Delivery */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.delivery-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.delivery-card h3 { font-size: 1.2rem; }
.delivery-highlight {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 0.4em;
}
.delivery-card p:last-child { color: var(--muted); margin: 0; }
.delivery-card.pay { border-color: var(--ochre); background: var(--ochre-soft); }

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 1.15rem; margin: 0 0 0.2em; }
.step p { color: var(--muted); margin: 0; }

/* Form */
.section-form {
  background: linear-gradient(180deg, var(--sand), var(--sand-deep));
}
.form-wrap { max-width: 640px; }
.lead-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-text);
  font-size: 1.05rem;
  color: var(--ink);
  background: #fffdf8;
  border: 1.5px solid rgba(47, 93, 58, 0.35);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  width: 100%;
  min-height: 48px;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 93, 58, 0.12);
  outline: none;
}
.field-error {
  color: #b3261e;
  font-weight: 600;
  font-size: 0.92rem;
  margin: 0;
}
.field-error[hidden] { display: none; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b3261e;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.contact-line {
  margin-top: 18px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
}
.contact-line a { font-weight: 700; }

/* Success state */
.success-card {
  background: var(--green-soft);
  border: 1px solid rgba(47, 93, 58, 0.3);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.success-card .check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.6rem;
  line-height: 52px;
  margin: 0 auto 14px;
}
.success-card h3 { font-size: 1.3rem; }
.success-card p { color: var(--green-dark); margin: 0; }

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: #eaf0ea;
  padding: 40px 0 0;
}
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 0.6em;
}
.site-footer a { color: #dce8dd; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.3em;
}
.footer-credits ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  color: #cbd8cc;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 32px;
  padding-top: 18px;
  padding-bottom: 22px;
  font-size: 0.85rem;
  color: #cbd8cc;
}
.footer-bottom p { margin: 0; }

/* Tablet and desktop */
@media (min-width: 640px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .delivery-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1.05fr; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; }
}

@media (max-width: 400px) {
  body { font-size: 17px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .section { padding: 36px 0; }
  .hero { padding-top: 28px; }
}
