:root {
  --clr-bg: #F5F7F6;
  --clr-green: #3E5A4C;
  --clr-accent: #D6A46A;
  --clr-mist: #D0D8D6;
  --clr-text: #2C3A30;
  --clr-text-soft: #5A6E65;
  --clr-white: #ffffff;
  --clr-border: #E4ECE9;
  --clr-surface: #EEF1EF;
  --clr-dark: #1E2E26;

  --ff-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --fs-xs: 0.72rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.875rem;
  --fs-2xl: 2.5rem;
  --fs-3xl: clamp(2.2rem, 4vw, 3.5rem);
  --fs-hero: clamp(2.8rem, 6vw, 5rem);
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-base: 1.65;
  --lh-relaxed: 1.85;
  --ls-wide: 0.06em;
  --ls-wider: 0.12em;

  --shadow-xs: 0 1px 3px rgba(62, 90, 76, 0.05);
  --shadow-sm: 0 2px 8px rgba(62, 90, 76, 0.08);
  --shadow-md: 0 4px 20px rgba(62, 90, 76, 0.10);
  --shadow-lg: 0 8px 40px rgba(62, 90, 76, 0.12);

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --t-fast: 150ms ease;
  --t-base: 280ms ease;
  --t-slow: 500ms ease;
  --t-spatial: 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1200px;
  --container-narrow: 760px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-base);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-base);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--ff-sans);
}

input,
textarea,
select {
  font-family: var(--ff-sans);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--clr-green);
  letter-spacing: var(--ls-wide);
  transition: opacity var(--t-base);
}

.site-logo:hover {
  opacity: 0.75;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-list a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-soft);
  letter-spacing: var(--ls-wide);
  padding: var(--sp-2) 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-accent);
  transition: width var(--t-base);
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--clr-green);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--clr-green);
  font-size: var(--fs-lg);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}

.nav-toggle:hover {
  background: var(--clr-surface);
}

.hero-section {
  padding: var(--sp-32) 0 var(--sp-24);
  background:
    linear-gradient(rgba(245, 247, 246, 0.88), rgba(245, 247, 246, 0.88)),
    url("../images/bg-image-1.webp") right center / cover no-repeat;
  overflow: hidden;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-6);
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  color: var(--clr-green);
  margin-bottom: var(--sp-8);
}

.hero-title span {
  font-weight: var(--fw-semibold);
}

.hero-text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
  max-width: 46ch;
  margin-bottom: var(--sp-10);
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.hero-block {
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  transition: transform var(--t-slow);
}

.hero-block:hover {
  transform: translateY(-3px);
}

.hero-block--a {
  background: var(--clr-green);
  color: var(--clr-white);
  padding: var(--sp-10) var(--sp-8);
}

.hero-block--b {
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: var(--sp-6) var(--sp-8);
  align-self: flex-end;
  width: 70%;
}

.hero-block--c {
  background: var(--clr-mist);
  color: var(--clr-text);
  padding: var(--sp-6) var(--sp-8);
}

.hero-block-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: var(--sp-2);
}

.hero-block-text {
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
}

.section {
  padding: var(--sp-24) 0;
}

.section--tight {
  padding: var(--sp-16) 0;
}

.section--wide {
  padding: var(--sp-32) 0;
}

.section--white {
  background: var(--clr-white);
}

.section--surface {
  background: var(--clr-surface);
}

.section--green {
  background: var(--clr-green);
  color: var(--clr-white);
}

.section--mist {
  background: var(--clr-mist);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-4);
}

.section-label--light {
  color: rgba(214, 164, 106, 0.9);
}

.section-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  color: var(--clr-green);
  margin-bottom: var(--sp-6);
}

.section--green .section-title {
  color: var(--clr-white);
}

.section-title span {
  font-weight: var(--fw-semibold);
}

.section-text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
  max-width: 60ch;
}

.section--green .section-text {
  color: rgba(245, 247, 246, 0.8);
}

.section-intro {
  max-width: var(--container-narrow);
  margin-bottom: var(--sp-16);
}

.section-intro--centered {
  text-align: center;
  margin-inline: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.two-col--gap-lg {
  gap: var(--sp-24);
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card--mist {
  background: var(--clr-mist);
  box-shadow: none;
}

.card--green {
  background: var(--clr-green);
  color: var(--clr-white);
}

.card--surface {
  background: var(--clr-surface);
  box-shadow: none;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-green);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-5);
}

.card--green .card-icon {
  background: rgba(245, 247, 246, 0.15);
  color: var(--clr-accent);
}

.card-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
  color: var(--clr-green);
  margin-bottom: var(--sp-3);
}

.card--green .card-title {
  color: var(--clr-white);
}

.card-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
}

.card--green .card-text {
  color: rgba(245, 247, 246, 0.75);
}

.figure-block {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.figure-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-spatial);
}

.figure-block:hover img {
  transform: scale(1.03);
}

.figure-caption {
  padding: var(--sp-4) var(--sp-5);
  background: var(--clr-white);
  font-size: var(--fs-sm);
  color: var(--clr-text-soft);
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-full);
  transition: background var(--t-base), color var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--clr-green);
  color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--clr-dark);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: #c4904e;
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--clr-green);
  border: 1.5px solid var(--clr-green);
}

.btn--outline:hover {
  background: var(--clr-green);
  color: var(--clr-white);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text-soft);
  border: 1.5px solid var(--clr-border);
}

.btn--ghost:hover {
  background: var(--clr-surface);
  color: var(--clr-text);
}

.btn--sm {
  font-size: var(--fs-xs);
  padding: var(--sp-2) var(--sp-5);
}

.btn--lg {
  font-size: var(--fs-md);
  padding: var(--sp-5) var(--sp-10);
}

.btn--white {
  background: var(--clr-white);
  color: var(--clr-green);
  box-shadow: var(--shadow-sm);
}

.btn--white:hover {
  background: var(--clr-bg);
}

.stat-row {
  display: flex;
  gap: var(--sp-12);
  padding-top: var(--sp-10);
  border-top: 1px solid var(--clr-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-green);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-soft);
  letter-spacing: var(--ls-wide);
  margin-top: var(--sp-1);
}

.divider {
  height: 1px;
  background: var(--clr-border);
  margin: var(--sp-16) 0;
}

.divider--mist {
  background: rgba(208, 216, 214, 0.5);
}

.text-center {
  text-align: center;
}

.text-green {
  color: var(--clr-green);
}

.text-accent {
  color: var(--clr-accent);
}

.text-soft {
  color: var(--clr-text-soft);
}

.disclaimer-section {
  padding: var(--sp-16) 0;
  background: var(--clr-surface);
}

.disclaimer-box {
  border-left: 3px solid var(--clr-accent);
  padding: var(--sp-6) var(--sp-8);
  background: var(--clr-white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.disclaimer-box p {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
}

.page-hero {
  padding: var(--sp-24) 0 var(--sp-20);
  background: var(--clr-bg);
}

.page-hero-inner {
  max-width: var(--container-narrow);
}

.page-title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  color: var(--clr-green);
  margin-bottom: var(--sp-6);
}

.page-lead {
  font-size: var(--fs-lg);
  font-weight: var(--fw-light);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
  max-width: 55ch;
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--clr-green);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  line-height: var(--lh-snug);
}

.prose h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--clr-green);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.prose p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
  margin-bottom: var(--sp-5);
}

.prose ul {
  list-style: none;
  margin-bottom: var(--sp-5);
}

.prose ul li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
  margin-bottom: var(--sp-2);
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
}

.prose a {
  color: var(--clr-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--clr-accent);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-6);
}

.route-card {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.route-card__body {
  padding: var(--sp-6);
}

.route-card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-accent);
  background: rgba(214, 164, 106, 0.1);
  border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-3);
  margin-bottom: var(--sp-3);
}

.route-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--clr-green);
  margin-bottom: var(--sp-2);
  line-height: var(--lh-snug);
}

.route-card__meta {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.route-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--clr-text-soft);
}

.route-card__text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
}

.contact-section {
  padding: var(--sp-24) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info {
  padding-top: var(--sp-4);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  align-items: flex-start;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-green);
  font-size: var(--fs-base);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-text-soft);
  margin-bottom: var(--sp-1);
}

.contact-info-value {
  font-size: var(--fs-base);
  color: var(--clr-text);
  word-break: break-word;
}

.contact-form {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.form-label .required {
  color: var(--clr-accent);
  margin-left: var(--sp-1);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-soft);
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--clr-green);
  box-shadow: 0 0 0 3px rgba(62, 90, 76, 0.08);
}

.form-input.error,
.form-textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form-input.success,
.form-textarea.success {
  border-color: var(--clr-green);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  display: none;
  font-size: var(--fs-xs);
  color: #c0392b;
  margin-top: var(--sp-2);
}

.form-error.visible {
  display: block;
}

.form-checkbox {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-green);
  cursor: pointer;
}

.form-checkbox label {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
}

.form-checkbox label a {
  color: var(--clr-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  margin-top: var(--sp-6);
}

.site-footer {
  background: var(--clr-dark);
  color: rgba(245, 247, 246, 0.75);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(245, 247, 246, 0.1);
}

.footer-brand-name {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.footer-brand-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  max-width: 38ch;
  margin-bottom: var(--sp-6);
}

.footer-heading {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(245, 247, 246, 0.65);
  transition: color var(--t-base);
}

.footer-links a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-6);
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(245, 247, 246, 0.45);
}

.footer-policy-links {
  display: flex;
  gap: var(--sp-5);
}

.footer-policy-links a {
  font-size: var(--fs-xs);
  color: rgba(245, 247, 246, 0.45);
  transition: color var(--t-base);
}

.footer-policy-links a:hover {
  color: var(--clr-accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-5) var(--sp-6);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-soft);
  line-height: var(--lh-relaxed);
  flex: 1;
  min-width: 280px;
}

.cookie-banner__text a {
  color: var(--clr-green);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(30, 46, 38, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

.cookie-modal-overlay[hidden] {
  display: none;
}

.cookie-modal-box {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--clr-text-soft);
  transition: background var(--t-fast), color var(--t-fast);
}

.cookie-modal-close:hover {
  background: var(--clr-surface);
  color: var(--clr-green);
}

.cookie-modal-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--clr-green);
  margin-bottom: var(--sp-3);
}

.cookie-modal-desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
  margin-bottom: var(--sp-8);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--clr-border);
}

.cookie-option__info strong {
  display: block;
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin-bottom: var(--sp-1);
}

.cookie-option__info p {
  font-size: var(--fs-sm);
  color: var(--clr-text-soft);
  line-height: var(--lh-snug);
  max-width: 38ch;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--clr-mist);
  border-radius: var(--r-full);
  transition: background var(--t-base);
}

.toggle__slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--clr-white);
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base);
}

.toggle input:checked + .toggle__slider {
  background: var(--clr-green);
}

.toggle input:checked + .toggle__slider::before {
  transform: translateX(22px);
}

.toggle--disabled {
  opacity: 0.55;
  pointer-events: none;
}

.cookie-modal-footer {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--clr-border);
  margin-top: var(--sp-4);
  display: flex;
  justify-content: flex-end;
}

.policy-section {
  padding: var(--sp-20) 0 var(--sp-24);
}

.policy-section .container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--sp-16);
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}

.policy-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.policy-nav-list a {
  font-size: var(--fs-sm);
  color: var(--clr-text-soft);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  display: block;
  transition: background var(--t-fast), color var(--t-fast);
}

.policy-nav-list a:hover {
  background: var(--clr-surface);
  color: var(--clr-green);
}

.policy-updated {
  font-size: var(--fs-sm);
  color: var(--clr-text-soft);
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

.thank-you-section {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: var(--sp-24) 0;
}

.thank-you-inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.thank-you-icon {
  width: 72px;
  height: 72px;
  background: rgba(62, 90, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-green);
  font-size: 1.75rem;
  margin: 0 auto var(--sp-8);
}

.thank-you-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-light);
  color: var(--clr-green);
  margin-bottom: var(--sp-5);
  line-height: var(--lh-snug);
}

.thank-you-text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
  margin-bottom: var(--sp-10);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

.breadcrumb {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--clr-text-soft);
  margin-bottom: var(--sp-6);
}

.breadcrumb a {
  color: var(--clr-text-soft);
  transition: color var(--t-base);
}

.breadcrumb a:hover {
  color: var(--clr-green);
}

.breadcrumb-sep {
  color: var(--clr-mist);
}

.env-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: inline-block;
  margin-right: var(--sp-2);
}

.cta-section {
  padding: var(--sp-24) 0;
  background: var(--clr-green);
  text-align: center;
}

.cta-section .section-title {
  color: var(--clr-white);
}

.cta-section .section-text {
  color: rgba(245, 247, 246, 0.75);
  margin-inline: auto;
  margin-bottom: var(--sp-10);
}

.tip-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.tip-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5);
  background: var(--clr-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base);
}

.tip-item:hover {
  transform: translateX(4px);
}

.tip-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-green);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  flex-shrink: 0;
}

.tip-content strong {
  display: block;
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  margin-bottom: var(--sp-1);
}

.tip-content p {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text-soft);
}

@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .three-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .four-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-block--b {
    width: auto;
    flex: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .policy-section .container {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: relative;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + var(--sp-3));
    right: 0;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    padding: var(--sp-3);
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-1);
    min-width: 200px;
    display: none;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    display: block;
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--r-md);
  }

  .nav-list a:hover {
    background: var(--clr-surface);
  }

  .nav-list a::after {
    display: none;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .four-col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section {
    padding: var(--sp-20) 0 var(--sp-16);
  }

  .section {
    padding: var(--sp-16) 0;
  }

  .section--wide {
    padding: var(--sp-20) 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-block--b {
    width: 100%;
  }

  .stat-row {
    flex-wrap: wrap;
    gap: var(--sp-6);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-form {
    padding: var(--sp-6);
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-4);
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-title {
    font-size: var(--fs-lg);
  }

  .prose h2 {
    font-size: var(--fs-md);
  }
}
