:root {
  --bg: #060906;
  --card: #0a0d0a;
  --card-edge: rgba(31, 79, 34, 0.32);
  --surface: rgba(15, 18, 15, 0.92);
  --surface-edge: rgba(72, 111, 68, 0.24);
  --text: #f5f3ed;
  --muted: #c6c0b4;
  --accent: #2c9833;
  --accent-strong: #7ce268;
  --accent-soft: rgba(31, 122, 42, 0.22);
  --danger: #ff8f8f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

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

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

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

#siteHeaderMount,
#siteFooterMount,
#legalNavMount {
  display: contents;
}

.desktop-site-header {
  display: none;
}

.desktop-brand,
.desktop-header-links {
  color: inherit;
}

.card {
  width: min(100%, 880px);
  padding: 30px 32px 26px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid var(--card-edge);
  background: var(--card);
  box-shadow: var(--shadow);
}

.card-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.language-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(82, 98, 80, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.language-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.language-button.is-active {
  color: #071007;
  background: var(--accent-strong);
}

.language-button:focus-visible,
.secondary-button:focus-visible,
.submit-button:focus-visible,
.cookie-link-button:focus-visible,
.cookie-settings-button:focus-visible,
.site-footer-call-button:focus-visible,
.site-footer-brand:focus-visible,
.site-footer-link:focus-visible,
.service-card-button:focus-visible,
.social-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 28px;
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.intro-panel {
  display: contents;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.hero-title,
.section-title {
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.hero-title {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.copy,
.section-copy {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.copy {
  font-size: 18px;
}

.section-copy {
  font-size: 16px;
}

.grass-divider {
  width: 148px;
  margin: 30px auto 0;
}

.grass-divider-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.grass-glow {
  fill: rgba(85, 220, 75, 0.32);
  filter: blur(6px);
}

.grass-base {
  fill: rgba(14, 43, 16, 0.96);
  stroke: rgba(89, 216, 81, 0.14);
  stroke-width: 1;
}

.blade-back,
.blade-front,
.blade-fill {
  stroke: none;
  filter: drop-shadow(0 0 3px rgba(77, 198, 67, 0.14));
}

.blade-back {
  fill: url(#grassBackGradient);
  opacity: 0.95;
}

.blade-front {
  fill: url(#grassFrontGradient);
}

.blade-fill {
  fill: rgba(142, 245, 102, 0.88);
  opacity: 0.92;
}

.contact-shell {
  position: relative;
  margin-top: 38px;
  padding: 30px 24px 24px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--surface-edge);
  text-align: left;
}

.contact-shell .section-copy {
  margin: 0 0 30px;
  max-width: 640px;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 26px;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(72, 111, 68, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(198, 192, 180, 0.82);
}

.wizard-step.is-active {
  border-color: rgba(124, 226, 104, 0.44);
  background: rgba(124, 226, 104, 0.08);
}

.wizard-step.is-complete {
  border-color: rgba(60, 143, 56, 0.34);
  background: rgba(43, 140, 49, 0.08);
}

.wizard-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  border: 1px solid rgba(124, 226, 104, 0.3);
  background: rgba(8, 11, 8, 0.75);
  color: var(--text);
  font-weight: 700;
}

.wizard-step.is-active .wizard-step-number,
.wizard-step.is-complete .wizard-step-number {
  background: linear-gradient(135deg, #2b8c31 0%, #7ce268 100%);
  border-color: transparent;
  color: #071007;
}

.wizard-step-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.wizard-step-label {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.wizard-step-hint {
  font-size: 12px;
  line-height: 1.4;
}

.wizard-panels {
  display: grid;
}

.wizard-panel {
  display: grid;
  gap: 20px;
}

.wizard-panel[hidden] {
  display: none;
}

.wizard-panel-header {
  display: grid;
  gap: 8px;
}

.wizard-panel-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wizard-panel-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.wizard-panel-copy {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.65;
}

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

.field,
.form-actions {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(92, 116, 89, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field select {
  appearance: none;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.service-picker-label {
  margin-bottom: 4px;
}

.service-picker-copy {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-items: stretch;
  gap: 16px;
}

.service-card-button {
  position: relative;
  display: grid;
  grid-template-rows: 140px auto;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1px solid rgba(72, 111, 68, 0.28);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(10, 13, 10, 0.94);
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card-button:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 226, 104, 0.38);
}

.service-card-button.is-selected {
  border-color: rgba(124, 226, 104, 0.62);
  box-shadow: 0 0 0 3px rgba(124, 226, 104, 0.1);
}

.service-card-media {
  position: relative;
  min-height: 0;
  padding: 14px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(23, 61, 21, 0.98) 0%, rgba(87, 183, 65, 0.92) 100%);
}

.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(4, 8, 4, 0.08), rgba(4, 8, 4, 0.42));
}

.service-card-media.has-image {
  background-size: cover;
  background-position: center;
}

.service-card-media.has-image::after {
  background: linear-gradient(180deg, rgba(4, 8, 4, 0.04), rgba(4, 8, 4, 0.58));
}

.service-card-media-badge,
.service-card-media-title {
  position: relative;
  z-index: 1;
}

.service-card-media-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 11, 8, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f6f8f2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  padding: 16px 16px 18px;
}

.service-card-title {
  display: flex;
  align-items: flex-start;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-card-check {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 11, 8, 0.68);
  color: rgba(245, 243, 237, 0.88);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.service-card-button.is-selected .service-card-check {
  border-color: transparent;
  background: linear-gradient(135deg, #2b8c31 0%, #7ce268 100%);
  color: #071007;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(124, 226, 104, 0.7);
  box-shadow: 0 0 0 3px rgba(124, 226, 104, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.field-location {
  position: relative;
}

.location-search {
  display: grid;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.field.has-error .service-card-button {
  border-color: rgba(255, 143, 143, 0.85);
}

.field-location.has-open-suggestions input {
  border-color: rgba(124, 226, 104, 0.62);
  box-shadow: 0 0 0 3px rgba(124, 226, 104, 0.1);
}

.place-suggestions {
  position: relative;
  z-index: 12;
  max-height: min(320px, 42vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(72, 111, 68, 0.36);
  border-radius: 18px;
  background: rgba(10, 13, 10, 0.98);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.place-suggestions[hidden],
.location-preview[hidden] {
  display: none;
}

.place-suggestion,
.place-suggestion-status {
  width: 100%;
  border-radius: 14px;
}

.place-suggestion {
  display: grid;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 12px 12px 11px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.place-suggestion:hover,
.place-suggestion.is-active {
  background: rgba(124, 226, 104, 0.12);
}

.place-suggestion-main {
  color: var(--text);
  font-weight: 700;
}

.place-suggestion-secondary {
  color: rgba(198, 192, 180, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.place-suggestion-status {
  margin: 0;
  padding: 12px;
  color: rgba(198, 192, 180, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.location-preview {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(72, 111, 68, 0.28);
  border-radius: 24px;
  background: rgba(8, 11, 8, 0.96);
}

.location-service-notice {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(226, 186, 104, 0.36);
  border-radius: 18px;
  background: rgba(58, 43, 14, 0.18);
}

.location-service-notice-label {
  margin: 0 0 5px;
  color: #f0d78b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-service-notice-message {
  margin: 0;
  color: rgba(241, 233, 211, 0.92);
  font-size: 14px;
  line-height: 1.55;
}

.location-service-notice-action {
  margin-top: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #f0d78b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.location-service-notice-action:hover {
  color: #fff1c1;
}

.location-preview-copy {
  padding: 16px 18px 12px;
}

.location-preview-label {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-preview-summary {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.location-preview-details {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.location-map {
  height: 265px;
  border-top: 1px solid rgba(72, 111, 68, 0.2);
}

.field-error {
  min-height: 18px;
  margin: 8px 2px 0;
  color: var(--danger);
  font-size: 13px;
}

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

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.wizard-actions [hidden] {
  display: none !important;
}

.wizard-actions .submit-button {
  margin-left: auto;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(82, 98, 80, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 13px 20px;
  min-width: 148px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.secondary-button:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 226, 104, 0.3);
}

.secondary-button.is-accent {
  border-color: rgba(124, 226, 104, 0.24);
  background: rgba(44, 152, 51, 0.12);
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b8c31 0%, #7ce268 100%);
  color: #081208;
  padding: 14px 24px;
  min-width: 220px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(42, 120, 40, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.submit-button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.site-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand brand"
    "contact contact"
    "legal legal"
    "social social"
    "copyright credit";
  align-items: center;
  gap: 10px 24px;
  margin-top: 14px;
  padding: 16px 6px 0;
  border-top: 1px solid rgba(72, 111, 68, 0.2);
  color: rgba(198, 192, 180, 0.82);
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
}

.site-footer-brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  min-width: 0;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.site-footer-logo {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-footer-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.site-footer-brand-name {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.site-footer-brand-subtitle {
  color: rgba(198, 192, 180, 0.76);
  font-size: 12px;
  line-height: 1.25;
}

.site-footer-media {
  display: none;
  grid-area: feature;
  position: relative;
  overflow: hidden;
  width: min(100%, 220px);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border: 1px solid rgba(71, 112, 67, 0.28);
  background:
    radial-gradient(circle at top right, rgba(124, 226, 104, 0.16), transparent 46%),
    linear-gradient(160deg, rgba(10, 16, 10, 0.98), rgba(14, 21, 14, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 36px rgba(0, 0, 0, 0.22);
}

.site-footer-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(124, 226, 104, 0.08), transparent 34%),
    linear-gradient(180deg, transparent 62%, rgba(124, 226, 104, 0.05));
  pointer-events: none;
}

.site-footer-section {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.site-footer-contact {
  grid-area: contact;
}

.site-footer-legal {
  grid-area: legal;
}

.site-footer-heading {
  margin: 0 0 2px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer-contact-item {
  display: grid;
  gap: 2px;
  margin: 0;
}

.site-footer-contact-item span {
  color: rgba(198, 192, 180, 0.68);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer-link:hover {
  color: var(--text);
}

.site-footer-phone-link {
  display: none;
}

.site-footer-call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 2px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b8c31 0%, #7ce268 100%);
  color: #071007;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(42, 120, 40, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.site-footer-call-button:hover {
  color: #071007;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(42, 120, 40, 0.24);
}

.site-copyright,
.site-credit {
  margin: 0;
}

.site-copyright {
  grid-area: copyright;
}

.cookie-settings-button {
  justify-self: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.cookie-settings-button:hover {
  color: var(--text);
}

.site-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-legal-link {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}

.site-legal-link:hover {
  color: var(--text);
}

.social-links {
  grid-area: social;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 4px 0 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text);
  opacity: 0.86;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.social-link.is-disabled {
  opacity: 0.42;
  cursor: default;
}

.social-link-icon {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-credit {
  grid-area: credit;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  text-align: right;
}

.appwiz-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.appwiz-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.appwiz-icon-image {
  display: block;
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.appwiz-name {
  font-weight: 700;
  font-style: italic;
  color: var(--text);
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  width: min(420px, calc(100vw - 40px));
}

.cookie-consent-card {
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(92, 116, 89, 0.36);
  background: rgba(10, 13, 10, 0.98);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

.cookie-consent-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.cookie-consent-heading {
  min-width: 0;
}

.cookie-consent-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cookie-consent-title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cookie-consent-copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.cookie-consent-copy + .cookie-consent-copy {
  margin-top: 10px;
}

.cookie-consent-copy-muted {
  color: rgba(198, 192, 180, 0.88);
}

.cookie-close-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: -4px -4px 0 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.cookie-close-button:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.cookie-close-button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.cookie-preferences {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.cookie-preferences[hidden] {
  display: none !important;
}

.cookie-preference {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(72, 111, 68, 0.26);
  background: rgba(255, 255, 255, 0.02);
}

.cookie-preference-copy {
  min-width: 0;
}

.cookie-preference-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin: 0 0 4px;
}

.cookie-preference-title {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.cookie-preference-description {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.cookie-switch-lock {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: start;
  min-width: 48px;
  margin-left: auto;
}

.cookie-toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 48px;
  height: 28px;
  cursor: pointer;
}

.cookie-switch-track {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(198, 192, 180, 0.24);
  border: 1px solid rgba(198, 192, 180, 0.2);
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.cookie-switch-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f5f3ed;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease;
}

.cookie-toggle:focus-visible + .cookie-switch {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.cookie-toggle:checked + .cookie-switch .cookie-switch-track,
.cookie-switch.is-checked .cookie-switch-track {
  border-color: rgba(124, 226, 104, 0.44);
  background: linear-gradient(135deg, rgba(43, 140, 49, 0.9) 0%, rgba(124, 226, 104, 0.92) 100%);
}

.cookie-toggle:checked + .cookie-switch .cookie-switch-thumb,
.cookie-switch.is-checked .cookie-switch-thumb {
  transform: translateX(20px);
  background: #071007;
}

.cookie-switch.is-locked {
  cursor: default;
  opacity: 0.96;
}

.cookie-switch-status {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cookie-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end;
  gap: 10px;
  margin-top: 16px;
}

.cookie-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-link-button:hover {
  color: var(--text);
}

.cookie-action-save {
  min-width: 0;
  justify-self: start;
}

.cookie-action-primary {
  min-width: 0;
  justify-self: end;
}

.cookie-action-save,
.cookie-action-primary {
  min-height: 0;
  padding: 12px 18px;
  align-self: auto;
  text-align: center;
  line-height: 1.12;
  font-size: 13px;
  text-wrap: pretty;
}

.toast-region {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.toast {
  min-width: min(360px, calc(100vw - 40px));
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(92, 116, 89, 0.35);
  background: rgba(10, 13, 10, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  color: var(--text);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  animation: toast-in 0.22s ease forwards;
}

.toast.is-success {
  border-color: rgba(124, 226, 104, 0.38);
}

.toast.is-error {
  border-color: rgba(255, 143, 143, 0.5);
}

.toast.is-closing {
  animation: toast-out 0.18s ease forwards;
}

.toast-title {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toast.is-success .toast-title {
  color: var(--accent-strong);
}

.toast.is-error .toast-title {
  color: var(--danger);
}

.toast-message {
  margin: 0;
  color: var(--muted);
}

.policy-page {
  align-items: start;
}

.policy-card {
  width: min(100%, 980px);
  text-align: left;
}

.policy-intro-panel,
.policy-content-panel {
  display: contents;
}

.policy-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.policy-back-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.policy-back-link:hover {
  color: var(--text);
  transform: translateX(-1px);
}

.policy-back-link:focus-visible,
.policy-nav-link:focus-visible,
.policy-section a:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.policy-logo {
  margin-bottom: 22px;
}

.policy-hero {
  max-width: 760px;
  margin-bottom: 24px;
}

.policy-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.policy-copy {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 26px;
}

.policy-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(72, 111, 68, 0.28);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.policy-nav-link:hover {
  color: var(--text);
  border-color: rgba(124, 226, 104, 0.3);
}

.policy-nav-link.is-active {
  color: #071007;
  border-color: rgba(124, 226, 104, 0.48);
  background: linear-gradient(135deg, #2b8c31 0%, #7ce268 100%);
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-content[hidden] {
  display: none !important;
}

.policy-section {
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(72, 111, 68, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.policy-section-title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.policy-section-copy,
.policy-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.policy-section-copy {
  margin: 0;
}

.policy-section-copy + .policy-section-copy {
  margin-top: 12px;
}

.policy-list {
  margin: 0;
  padding-left: 20px;
}

.policy-list li + li {
  margin-top: 8px;
}

.policy-section a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-note {
  margin: 0;
  color: rgba(198, 192, 180, 0.9);
  font-size: 13px;
  line-height: 1.65;
}

.policy-kicker-inline {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-contact-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.policy-contact-list dt {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.policy-contact-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

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

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (min-width: 1120px) {
  html {
    scroll-behavior: smooth;
  }

  .page {
    display: grid;
    align-items: start;
    justify-items: center;
    gap: 22px;
    padding: 24px clamp(28px, 4vw, 64px) 38px;
  }

  .desktop-site-header {
    position: sticky;
    top: 18px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 1480px);
    min-height: 72px;
    padding: 10px 12px 10px 14px;
    border: 1px solid rgba(72, 111, 68, 0.26);
    border-radius: 999px;
    background: rgba(8, 11, 8, 0.78);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px);
  }

  .desktop-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
  }

  .desktop-brand-logo {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
  }

  .desktop-brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .desktop-brand-name {
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
  }

  .desktop-brand-subtitle {
    max-width: 360px;
    overflow: hidden;
    color: rgba(198, 192, 180, 0.76);
    font-size: 12px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .desktop-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .desktop-header-links {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(82, 98, 80, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .desktop-header-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(245, 243, 237, 0.82);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: color 0.18s ease, background-color 0.18s ease;
  }

  .desktop-header-links a:hover {
    color: var(--text);
    background: rgba(124, 226, 104, 0.08);
  }

  .card {
    width: min(100%, 1480px);
    padding: clamp(34px, 4vw, 58px) clamp(34px, 4vw, 58px) 32px;
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(600px, 1.32fr);
    grid-template-areas:
      "intro contact"
      "meta meta";
    column-gap: clamp(40px, 5vw, 88px);
    row-gap: 0;
    align-items: start;
    text-align: left;
    border-radius: 36px;
  }

  .card-toolbar {
    display: none;
  }

  .intro-panel {
    grid-area: intro;
    display: block;
    align-self: start;
  }

  .logo {
    max-width: min(360px, 88%);
    margin: 2px 0 34px;
    border-radius: 28px;
  }

  .hero-title {
    max-width: 580px;
    margin-bottom: 22px;
    font-size: 54px;
    line-height: 0.98;
  }

  .copy {
    max-width: 540px;
    margin: 0;
    font-size: 20px;
  }

  .grass-divider {
    width: 180px;
    margin: 40px 0 0;
  }

  .contact-shell {
    grid-area: contact;
    margin-top: 0;
    padding: clamp(28px, 3vw, 40px);
    border-radius: 30px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  }

  .contact-shell .section-title {
    max-width: 720px;
    font-size: 44px;
  }

  .contact-shell .section-copy {
    max-width: 720px;
  }

  .wizard-progress {
    gap: 12px;
    margin-bottom: 30px;
  }

  .wizard-step {
    padding: 14px 16px;
    border-radius: 20px;
  }

  .wizard-panel {
    gap: 24px;
  }

  .wizard-panel-title {
    font-size: clamp(28px, 2.4vw, 38px);
  }

  .field-grid {
    gap: 22px 20px;
  }

  .location-map {
    height: 320px;
  }

  .site-meta {
    grid-area: meta;
    grid-template-columns: minmax(300px, 1.04fr) minmax(220px, 0.72fr) minmax(250px, 0.82fr) minmax(240px, 0.8fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "brand . . social"
      "feature contact legal ."
      "copyright . . credit";
    align-items: start;
    min-height: 238px;
    gap: 24px 52px;
    margin-top: 48px;
    padding: 34px 8px 4px;
    background:
      linear-gradient(180deg, rgba(7, 11, 7, 0.98), rgba(7, 11, 7, 0.98)) padding-box;
  }

  .site-footer-brand {
    justify-self: start;
    align-self: start;
  }

  .site-footer-heading {
    margin-bottom: 6px;
  }

  .site-footer-media {
    display: block;
    justify-self: start;
    align-self: start;
  }

  .site-footer-contact-item {
    gap: 4px;
  }

  .site-footer-link {
    font-size: 14px;
  }

  .site-footer-phone-link {
    display: inline;
  }

  .site-footer-call-button {
    display: none;
  }

  .social-links {
    align-self: start;
    justify-self: end;
    justify-content: flex-end;
    padding: 0;
  }

  .cookie-settings-button {
    justify-self: flex-start;
    align-self: start;
    margin-top: 2px;
  }

  .site-legal-links {
    justify-content: flex-start;
    align-self: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 2px;
  }

  .site-legal-link {
    font-size: 14px;
    text-decoration: none;
  }

  .site-copyright {
    justify-self: start;
    align-self: end;
    text-align: left;
  }

  .site-credit {
    justify-self: end;
    align-self: end;
    gap: 8px;
    padding-top: 0;
  }

  .policy-card {
    width: min(100%, 1480px);
    grid-template-columns: minmax(300px, 0.78fr) minmax(600px, 1.32fr);
    grid-template-areas:
      "policy-intro policy-content"
      "meta meta";
    align-items: start;
  }

  .policy-toolbar {
    display: none;
  }

  .policy-intro-panel {
    grid-area: policy-intro;
    display: block;
    align-self: start;
    position: static;
  }

  .policy-content-panel {
    grid-area: policy-content;
    display: block;
    min-width: 0;
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid var(--surface-edge);
    border-radius: 30px;
    background: var(--surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  }

  .policy-logo {
    max-width: min(360px, 88%);
    margin: 2px 0 34px;
    border-radius: 28px;
  }

  .policy-hero {
    max-width: 540px;
    margin-bottom: 30px;
  }

  .policy-title {
    max-width: 580px;
    margin-bottom: 22px;
    font-size: 54px;
    line-height: 0.98;
  }

  .policy-copy {
    max-width: 540px;
    font-size: 18px;
  }

  .policy-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    max-width: none;
    margin: 0 0 24px;
    padding: 6px;
    border: 1px solid rgba(82, 98, 80, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .policy-nav-link {
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-color: transparent;
    border-radius: 999px;
    background: transparent;
    text-align: center;
  }

  .policy-content {
    gap: 18px;
  }

  .policy-section {
    padding: 26px 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.018);
  }

  .policy-section-title {
    font-size: 24px;
  }

  .policy-card .site-meta {
    grid-area: meta;
    margin-top: 52px;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 62px;
  }

  .contact-shell .section-title {
    font-size: 50px;
  }

  .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .service-card-button {
    grid-template-rows: 160px auto;
  }

  .service-card-body {
    padding: 18px 18px 20px;
  }
}

@media (min-width: 1440px) {
  .hero-title {
    font-size: 66px;
  }
}

@media (max-width: 720px) {
  .card {
    padding: 24px 20px 30px;
  }

  .card-toolbar {
    justify-content: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .contact-shell {
    margin-top: 32px;
    padding: 24px 18px 20px;
  }

  .wizard-progress,
  .field-grid,
  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .service-card-grid {
    grid-auto-rows: auto;
  }

  .service-card-button {
    grid-template-rows: 128px auto;
    min-height: 0;
  }

  .service-card-body {
    padding: 16px 16px 18px;
  }

  .field-full {
    grid-column: auto;
  }

  .wizard-actions {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .secondary-button,
  .submit-button {
    width: 100%;
    min-width: 0;
  }

  .location-map {
    height: 230px;
  }

  .site-meta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "legal"
      "social"
      "copyright"
      "credit";
    align-items: flex-start;
    gap: 10px;
    padding-top: 16px;
  }

  .social-links {
    justify-content: center;
    padding: 2px 0 4px;
  }

  .site-credit {
    justify-content: flex-start;
    text-align: left;
  }

  .cookie-settings-button {
    justify-self: flex-start;
  }

  .site-legal-links {
    justify-content: flex-start;
  }

  .policy-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 18px;
  }

  .logo {
    max-width: 210px;
    margin-bottom: 24px;
  }

  .copy,
  .section-copy {
    font-size: 16px;
  }

  .grass-divider {
    width: 132px;
    margin-top: 26px;
  }

  .toast-region {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .toast {
    min-width: 0;
    max-width: none;
  }

  .cookie-consent {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .cookie-consent-card {
    padding: 16px;
    border-radius: 22px;
  }

  .cookie-preference {
    grid-template-columns: 1fr;
  }

  .cookie-switch-lock {
    justify-content: flex-end;
  }

  .cookie-actions {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .cookie-action-save,
  .cookie-action-primary {
    width: 100%;
  }

  .site-legal-links {
    gap: 6px 14px;
  }

  .policy-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .policy-card {
    padding: 24px 22px 22px;
  }

  .policy-title {
    font-size: 32px;
  }

  .policy-section {
    padding: 18px 18px 16px;
    border-radius: 22px;
  }
}
