:root {
  --white: #ffffff;
  --cream: #f7faf8;
  --mint: #e8f3ec;
  --mint-deep: #d4eadc;
  --green: #1b6f4d;
  --green-hover: #155d41;
  --green-soft: #2f8f66;
  --text: #3a3f3d;
  --text-heading: #2c3230;
  --text-muted: #5c6560;
  --border: rgba(27, 111, 77, 0.12);
  --shadow-sm: 0 4px 20px rgba(27, 111, 77, 0.06);
  --shadow-md: 0 12px 40px rgba(27, 111, 77, 0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--mint-deep);
  color: var(--text-heading);
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s var(--ease-out), opacity 0.2s;
}

a:hover {
  color: var(--green-hover);
}

.text-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 40px);
}

.container.narrow {
  max-width: 720px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--mint);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.lang-btn {
  margin: 0;
  padding: 8px 12px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), box-shadow 0.2s;
}

.lang-btn:hover {
  color: var(--green);
}

.lang-btn--active {
  color: var(--white);
  background: linear-gradient(180deg, #248f62 0%, var(--green) 45%, #155a3e 100%);
  box-shadow: 0 2px 10px rgba(27, 111, 77, 0.22);
}

.lang-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.logo {
  display: flex;
  align-items: center;
  padding: 6px 0;
  background: transparent;
  border-radius: 0;
  transition: opacity 0.2s var(--ease-out);
}

.logo:hover {
  opacity: 0.82;
}

.logo:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 8px;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: var(--mint);
  cursor: pointer;
  border-radius: 12px;
  color: var(--text-heading);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  margin: 0 auto;
  transition: transform 0.25s;
}

.site-header.nav-open .nav-toggle .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.nav-open .nav-toggle .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
}

.site-nav a:hover {
  color: var(--green);
  background: var(--mint);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: linear-gradient(180deg, #248f62 0%, var(--green) 45%, #155a3e 100%);
  color: var(--white) !important;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(27, 111, 77, 0.28);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.site-nav .nav-cta:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 111, 77, 0.35);
  background: linear-gradient(180deg, #2a9d6c 0%, var(--green-soft) 50%, var(--green) 100%);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 20px clamp(22px, 5vw, 40px) 28px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.25s, visibility 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }
}

.hero {
  position: relative;
  padding: clamp(72px, 14vw, 140px) 0 clamp(80px, 12vw, 120px);
  background: var(--white);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: -20%;
  right: -10%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle, var(--mint) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.85;
}

.hero-bg-shapes::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  background: radial-gradient(circle, var(--mint-deep) 0%, transparent 65%);
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  max-width: 780px;
}

.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text-heading);
}

.hero-subtitle {
  margin: 0 0 2rem;
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero-trust-icon {
  color: var(--green);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, color 0.2s;
}

.btn-text {
  display: inline;
}

.btn-primary {
  background: linear-gradient(180deg, #2d9b6b 0%, var(--green) 40%, #145a3d 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27, 111, 77, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(27, 111, 77, 0.35);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--mint);
  transform: translateY(-2px);
  color: var(--green-hover);
}

.btn-block {
  width: 100%;
}

.btn:active {
  transform: scale(0.98);
}

.section {
  padding: clamp(72px, 11vw, 120px) 0;
}

.section--about {
  padding: clamp(40px, 6vw, 64px) 0;
  background: var(--cream);
}

.about-short {
  margin: 0;
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--text);
  text-align: center;
}

#service {
  background: var(--white);
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  line-height: 1.12;
}

.section-title--center {
  text-align: center;
}

.section-lead {
  margin: 0 0 1rem;
  font-size: 1.1875rem;
  color: var(--text-muted);
  line-height: 1.62;
}

.section-lead--center {
  margin-left: auto;
  margin-right: auto;
}

.section-body {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.65;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

@media (max-width: 900px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-title {
  margin: 0;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.35;
}

.section--pricing {
  background: linear-gradient(180deg, var(--mint) 0%, var(--white) 18%, var(--white) 100%);
}

.subsection-title {
  margin: clamp(48px, 8vw, 72px) 0 1.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.subsection-title:first-of-type {
  margin-top: 0;
}

.pricing-grid {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

.pricing-grid--membership {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
}

.pricing-grid--passes {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .pricing-grid--membership,
  .pricing-grid--passes {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: 0 12px 40px rgba(27, 111, 77, 0.14);
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--mint);
  border-radius: var(--radius-pill);
}

.pricing-name {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading);
}

.pricing-detail {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-price {
  margin: 0 0 1.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-heading);
}

.pricing-currency {
  font-size: 1.35rem;
  vertical-align: super;
  font-weight: 600;
}

.pricing-card--pass .pricing-name {
  margin-bottom: 1rem;
}

.pricing-note {
  margin: clamp(40px, 6vw, 56px) auto 0;
  max-width: 42rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}

.section--steps {
  background: var(--mint);
}

.steps-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 24px);
}

@media (max-width: 700px) {
  .steps-list {
    grid-template-columns: 1fr;
  }
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: clamp(20px, 3vw, 26px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out);
}

.step-item:hover {
  transform: translateY(-2px);
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-soft), var(--green));
  border-radius: 12px;
}

.step-text {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.45;
  padding-top: 4px;
}

.steps-cta {
  margin: 0;
  text-align: center;
}

.section--legal {
  background: var(--cream);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.legal-page-title {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.legal-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-sm);
}

.legal-toc-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-toc-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.legal-toc-list ol {
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.25rem;
}

.legal-toc-list a {
  font-weight: 500;
}

.legal-doc {
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--border);
}

.legal-doc:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-doc-heading {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--text-heading);
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.legal-section-id {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--green);
  scroll-margin-top: calc(var(--header-h) + 16px);
}

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

.legal-doc .prose li {
  margin-bottom: 0.4rem;
}

.legal-doc .prose li:last-child {
  margin-bottom: 0;
}

.legal-end {
  margin: 2rem 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.legal-back {
  margin: 0;
  text-align: center;
  font-size: 0.9375rem;
}

.prose {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
}

.prose p {
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.section--faq {
  background: var(--white);
}

.faq-list {
  margin: clamp(40px, 6vw, 56px) auto 0;
  max-width: 720px;
}

.faq-item {
  padding: clamp(22px, 3vw, 28px) 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-q {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-heading);
}

.faq-a {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-cta {
  margin: 2.5rem 0 0;
  text-align: center;
}

.section--contact {
  background: var(--cream);
  text-align: center;
}

.section--contact .section-title {
  text-align: center;
}

.section--contact .prose {
  text-align: center;
  margin-bottom: 1.5rem;
}

.site-footer {
  background: var(--text-heading);
  color: rgba(255, 255, 255, 0.88);
  padding: clamp(56px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
}

.site-footer a {
  color: var(--mint-deep);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand-block {
  text-align: center;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  padding: 14px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.footer-entity {
  margin: 0 0 6px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.footer-location,
.footer-contact-line,
.footer-stripe {
  margin: 0.35rem 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-stripe {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.footer-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-top {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-top:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover,
  .feature-card:hover,
  .pricing-card:hover,
  .step-item:hover,
  .site-nav .nav-cta:hover {
    transform: none;
  }
}
