:root {
  --yellow: #FFDE59;
  --yellow-deep: #F2D265;
  --green: #294B3B;
  --green-light: #3A6B53;
  --green-dark: #1B3328;
  --cream: #FFF9E6;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --gray: #6B7B74;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(13, 13, 13, 0.06), 0 2px 8px rgba(27, 51, 40, 0.06);
  --shadow-md: 0 6px 24px rgba(27, 51, 40, 0.12);
  --shadow-lg: 0 18px 50px rgba(27, 51, 40, 0.18);
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 48px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  font-weight: 700;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-light);
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow-deep);
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 9vw, 120px);
}
.section--green {
  background: var(--green);
  color: var(--cream);
}
.section--green h2,
.section--green h3 {
  color: var(--white);
}

.lead-block {
  max-width: 52ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  box-shadow: inset 0 0 0 1.5px rgba(41, 75, 59, 0.35);
}
.btn--ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--green);
  transform: translateY(-2px);
}

.section--green .btn--ghost {
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(255, 249, 230, 0.4);
}
.section--green .btn--ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--cream);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 230, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(41, 75, 59, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
}
.nav__links a {
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--green-dark);
  position: relative;
  padding-block: 0.25rem;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav__links a:not(.btn):hover::after {
  transform: scaleX(1);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}
.nav__toggle svg {
  width: 24px;
  height: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--green-dark);
}
.brand__pin {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--green);
}
.brand__pin .dot {
  fill: var(--yellow);
}

.lang {
  display: inline-flex;
  border: 1.5px solid rgba(41, 75, 59, 0.25);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}
.lang button {
  padding: 0.4rem 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--green-dark);
  line-height: 1;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}
.lang button.is-active {
  background: var(--green);
  color: var(--cream);
}
.lang button:not(.is-active):hover {
  background: var(--cream);
}

@media (max-width: 680px) {
  .nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(41, 75, 59, 0.1);
    padding: 0.75rem var(--gutter) 1.25rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav__links a:not(.btn) {
    padding: 0.7rem 0.25rem;
  }
  .nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links .btn {
    width: 100%;
    margin-top: 0.4rem;
  }
  .nav__toggle {
    display: inline-flex;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 104px);
  background: radial-gradient(120% 90% at 100% 0%, rgba(255, 222, 89, 0.22), transparent 55%), var(--cream);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  margin-top: 1rem;
  max-width: 14ch;
}
.hero__title .accent {
  color: var(--green-light);
  position: relative;
  white-space: nowrap;
}
.hero__title .accent::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 4px;
}
.hero__lead {
  margin-top: 1.35rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--gray);
  max-width: 46ch;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero__stores {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.hero__stores strong {
  color: var(--green-dark);
  font-weight: 600;
}
.hero__map {
  position: relative;
  aspect-ratio: 5/5.4;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  border: 1px solid rgba(41, 75, 59, 0.06);
}
.hero__map-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: linear-gradient(rgba(41, 75, 59, 0.05) 1px, transparent 1px) 0 0/100% 38px, linear-gradient(90deg, rgba(41, 75, 59, 0.05) 1px, transparent 1px) 0 0/38px 100%, var(--cream);
  overflow: hidden;
}
.hero__map-inner svg {
  width: 100%;
  height: 100%;
}
.hero__map-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: var(--green-dark);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: var(--shadow-md);
}
.hero__map-badge .ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 222, 89, 0.7);
  animation: ping 2.2s var(--ease) infinite;
}

@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 222, 89, 0.7);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 222, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 222, 89, 0);
  }
}
.route-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
}
.route-line--draw {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 2.2s var(--ease) 0.2s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.route-pin {
  transform-box: fill-box;
  transform-origin: center;
}
.route-pin circle {
  fill: var(--white);
  stroke: var(--green);
  stroke-width: 3;
}
.route-pin .core {
  fill: var(--green);
  stroke: none;
}
.route-pin--you circle {
  fill: var(--yellow);
  stroke: var(--green-dark);
}
.route-pin--pop {
  opacity: 0;
  animation: pop 0.4s var(--ease) forwards;
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__map {
    max-width: 420px;
    margin-inline: auto;
    order: -1;
  }
}
.countdown {
  text-align: center;
}
.countdown__head {
  max-width: 30ch;
  margin-inline: auto;
}
.countdown__head .eyebrow {
  color: var(--yellow);
}
.countdown__head .eyebrow::before {
  background: var(--yellow);
}
.countdown__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 0.9rem;
}
.countdown__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 20px);
  max-width: 720px;
  margin-inline: auto;
}
.countdown__note {
  margin-top: 2rem;
  color: rgba(255, 249, 230, 0.78);
}
.countdown__live {
  display: none;
  margin-top: 2.5rem;
}
.countdown__live .btn {
  margin-top: 1.25rem;
}
.countdown.is-live .countdown__grid,
.countdown.is-live .countdown__note {
  display: none;
}
.countdown.is-live .countdown__live {
  display: block;
}

.cd-tile {
  position: relative;
  background: var(--green-dark);
  border: 1px solid rgba(255, 249, 230, 0.12);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.8rem) 0.5rem;
  box-shadow: var(--shadow-md);
}
.cd-tile::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--green);
}
.cd-tile__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.cd-tile__label {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-deep);
}

@media (max-width: 680px) {
  .countdown__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
.features__head {
  max-width: 48ch;
}
.features__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 0.9rem;
}
.features__lead {
  margin-top: 1rem;
  color: var(--gray);
  max-width: 52ch;
}

.trail {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.trail::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 14px;
  bottom: 14px;
  width: 0;
  border-left: 3px dashed rgba(41, 75, 59, 0.28);
}

.waypoint {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: start;
}
.waypoint__pin {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--green);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--green-dark);
  box-shadow: 0 0 0 6px var(--cream);
}
.waypoint__card {
  background: var(--white);
  border: 1px solid rgba(41, 75, 59, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.waypoint__title {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.waypoint__title .tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(58, 107, 83, 0.12);
  padding: 0.25em 0.6em;
  border-radius: 999px;
}
.waypoint__text {
  margin-top: 0.5rem;
  color: var(--gray);
}
.waypoint:hover .waypoint__pin {
  background: var(--yellow);
  border-color: var(--green-dark);
  transition: background-color 0.2s var(--ease);
}
.waypoint:hover .waypoint__card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.signup__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid rgba(41, 75, 59, 0.06);
}
.signup__title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-top: 0.8rem;
}
.signup__lead {
  margin-top: 0.9rem;
  color: var(--gray);
  max-width: 40ch;
}
.signup__success {
  display: none;
  text-align: center;
  padding: 1rem 0;
  grid-column: 1 / -1;
  max-width: 34rem;
  margin-inline: auto;
}
.signup__success svg {
  margin: 0 auto 0.75rem;
  width: 56px;
  height: 56px;
  color: var(--green-light);
}
.signup__success h3 {
  font-size: 1.5rem;
}
.signup__success p {
  margin-top: 0.5rem;
  color: var(--gray);
}
.signup.is-done .form,
.signup.is-done .signup__intro-form {
  display: none;
}
.signup.is-done .signup__success {
  display: block;
}

.form {
  display: grid;
  gap: 0.85rem;
}
.form__row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.form__field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
}
.form .btn--primary {
  align-self: end;
  padding-block: 0.9em;
  flex: none;
}
.form__msg {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form__msg--error {
  color: #b4451f;
}

.input {
  width: 100%;
  padding: 0.85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(41, 75, 59, 0.22);
  background: var(--cream);
  font: inherit;
  color: var(--black);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(41, 75, 59, 0.15);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.45;
}
.consent input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex: none;
}
.consent a {
  color: var(--green-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .signup__card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .form .btn--primary {
    width: 100%;
    align-self: stretch;
  }
}
.footer {
  background: var(--green-dark);
  color: rgba(255, 249, 230, 0.78);
  padding-block: clamp(48px, 6vw, 72px);
}
.footer .brand {
  color: var(--cream);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer__tagline {
  margin-top: 1rem;
  max-width: 28ch;
  font-size: 0.95rem;
}
.footer h4 {
  color: var(--yellow);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__col a {
  display: inline-block;
  padding-block: 0.3rem;
}
.footer__col a:hover {
  color: var(--cream);
}
.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 249, 230, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
.doc-hero {
  background: var(--green);
  color: var(--cream);
  padding-block: clamp(56px, 8vw, 88px);
}
.doc-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-top: 0.75rem;
}
.doc-hero__meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 249, 230, 0.78);
}

.notice {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1.75rem;
  font-size: 0.92rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.notice svg {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.notice strong {
  font-weight: 700;
}

.doc-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.toc {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(41, 75, 59, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.toc h2 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}
.toc ol {
  list-style: none;
  counter-reset: toc;
  display: grid;
  gap: 0.15rem;
}
.toc li {
  counter-increment: toc;
}
.toc a {
  display: block;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.toc a::before {
  content: counter(toc) ". ";
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}
.toc a:hover {
  background: var(--cream);
}

.doc-body {
  max-width: 70ch;
}
.doc-body section {
  padding-block: 1rem 1.5rem;
}
.doc-body section + section {
  border-top: 1px solid rgba(41, 75, 59, 0.1);
}
.doc-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 0.75rem;
  scroll-margin-top: 96px;
}
.doc-body h2 .num {
  color: var(--green-light);
  font-variant-numeric: tabular-nums;
  margin-right: 0.4rem;
}
.doc-body h3 {
  font-size: 1.1rem;
  margin: 1.1rem 0 0.4rem;
  color: var(--green);
}
.doc-body p {
  margin-bottom: 0.85rem;
}
.doc-body ul.bullets {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  margin: 0.4rem 0 1rem;
}
.doc-body ul.bullets li {
  position: relative;
  padding-left: 1.4rem;
}
.doc-body ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-deep);
  box-shadow: 0 0 0 2px rgba(41, 75, 59, 0.25);
}
.doc-body a {
  color: var(--green-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.doc-body strong {
  color: var(--green-dark);
}

.confirm {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
  padding-block: clamp(2rem, 6vw, 4rem);
}
.confirm__icon {
  width: 64px;
  height: 64px;
  color: var(--green-light);
  margin: 0 auto 1.25rem;
}
.confirm__text {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 auto 2rem;
}

.back-top {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--green-light);
}

html[data-lang=pl] [data-lang-block=en] {
  display: none;
}

html[data-lang=en] [data-lang-block=pl] {
  display: none;
}

@media (max-width: 900px) {
  .doc-layout {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
  }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid rgba(41, 75, 59, 0.06);
  max-width: 640px;
}
.contact-card .form {
  margin-top: 1.5rem;
}
.contact-card textarea.input {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}
.contact-card__success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.contact-card__success svg {
  margin: 0 auto 0.75rem;
  width: 56px;
  height: 56px;
  color: var(--green-light);
}
.contact-card__success h3 {
  font-size: 1.5rem;
}
.contact-card__success p {
  margin-top: 0.5rem;
  color: var(--gray);
}
.contact-card.is-done .form {
  display: none;
}
.contact-card.is-done .contact-card__success {
  display: block;
}

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

.faq {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  max-width: 70ch;
}
.faq__item {
  border: 1px solid rgba(41, 75, 59, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  flex: none;
  font-size: 1.3rem;
  color: var(--green-light);
  transition: transform 0.18s var(--ease);
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item p {
  margin-top: 0.75rem;
  color: var(--gray);
  line-height: 1.6;
}

.section-heading {
  margin-bottom: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .route-line--draw {
    stroke-dashoffset: 0;
  }
  .route-pin--pop {
    opacity: 1;
  }
}
