@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('./assets/fonts/Manrope-Variable-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('./assets/fonts/Manrope-Variable-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0E2F28;
  --accent: #F1CB6B;
  --accent-dark: #e0b600;
  --text: #0C2B22;
  --text-dark: #0C2B22;
}

.icon {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon use {
  pointer-events: none;
}

html {
  min-height: 100%;
  background-color: #0F342B;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

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

html.contact-page-root {
  overflow-y: auto;
}

html.call-request-page-root {
  overflow-y: auto;
}

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

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #0F342B;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100svh;
  --space-block: clamp(24px, 8vh, 80px);
  --space-inline: clamp(16px, 5vw, 32px);
  padding-top: calc(var(--space-block) + env(safe-area-inset-top, 0px));
  padding-bottom: calc(var(--space-block) + env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--space-inline), env(safe-area-inset-left, 0px));
  padding-right: max(var(--space-inline), env(safe-area-inset-right, 0px));
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

@supports (-webkit-touch-callout: none) {
  body {
    min-height: -webkit-fill-available;
  }
}

@supports (min-height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

@supports (height: 100svh) {
  body {
    min-height: 100svh;
    --space-block: clamp(24px, 8svh, 80px);
  }
}

@supports (height: 100dvh) {
  body {
    min-height: 100dvh;
    --space-block: clamp(24px, 8dvh, 80px);
  }
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0F342B 0%, #0B2721 100%);
  pointer-events: none;
  z-index: -1;
}

body.contact-sheet-open {
  overflow: hidden;
}

body.call-sheet-open {
  overflow: hidden;
}


body > .card {
  margin-inline: auto;
  margin-block: 0;
}

body.contact-page .card,
body.call-request-page .card {
  max-width: 640px;
  background: #FFF6E1;
  border: 1.5px solid #E7E1CF;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  color: #0C2B22;
}

.contact-card {
  width: 100%;
  max-width: 640px;
  gap: 24px;
}

.contact-card__hero {
  gap: 12px;
}

.contact-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.contact-card__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.call-request-card {
  width: 100%;
  max-width: 640px;
  gap: 24px;
}

.call-request-card__hero {
  gap: 12px;
}

.call-request-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.call-request-card__note,
.call-request-card__subnote {
  margin: 0;
  color: rgba(12, 43, 34, 0.72);
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.call-request-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.not-found-card {
  position: relative;
  overflow: hidden;
  gap: 20px;
}


.not-found-card__hero {
  gap: 10px;
}

.not-found-card__eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(12, 43, 34, 0.55);
}

.not-found-card__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.not-found-card__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
  max-width: 520px;
}

.not-found-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.not-found-card__code {
  font-size: clamp(64px, 18vw, 160px);
  font-weight: 700;
  letter-spacing: 8px;
  color: rgba(12, 43, 34, 0.1);
  line-height: 0.9;
  margin: 0;
}

.not-found-card__note {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
  max-width: 480px;
}

.not-found-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.not-found-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.6px solid rgba(15, 52, 43, 0.24);
  background: rgba(255, 255, 255, 0.5);
  color: #0C2B22;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 18px 36px -24px rgba(8, 34, 26, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.not-found-card__link:hover,
.not-found-card__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(20, 102, 80, 0.45);
  box-shadow: 0 22px 40px -22px rgba(8, 34, 26, 0.55);
  outline: none;
}

@media (max-width: 560px) {
  .not-found-card__title {
    font-size: 24px;
  }

  .not-found-card__code {
    letter-spacing: 4px;
  }
}

body.home-page {
  background: #0F342B;
  color: #0C2B22;
}

body.home-page::before {
  background: radial-gradient(120% 160% at 50% -20%, rgba(46, 120, 102, 0.6) 0%, rgba(18, 66, 55, 0.94) 55%, rgba(8, 35, 27, 1) 100%);
}

body.home-page .card {
  max-width: 720px;
  background: rgba(255, 248, 235, 0.95);
  border: 1.5px solid rgba(224, 201, 158, 0.6);
  color: #0C2B22;
  box-shadow:
    0 24px 40px rgba(178, 145, 91, 0.18),
    0 6px 12px rgba(166, 125, 64, 0.08);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

html.location-page-root {
  overflow-y: auto;
}

body.location-page .card {
  max-width: 720px;
  background: #FFF6E1;
  border: 1.5px solid #E7E1CF;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  color: #0C2B22;
}

html.faq-page-root {
  overflow-y: auto;
}

body.faq-page .card {
  max-width: 720px;
  background: rgba(255, 248, 235, 0.94);
  border: 1.5px solid rgba(224, 201, 158, 0.45);
  color: #0C2B22;
  box-shadow:
    0 22px 40px rgba(178, 145, 91, 0.2),
    0 6px 12px rgba(38, 76, 66, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

html.masters-page-root {
  overflow-y: auto;
}

body.masters-page .card {
  max-width: 720px;
  background: rgba(255, 248, 235, 0.95);
  border: 1.5px solid rgba(224, 201, 158, 0.45);
  color: #0C2B22;
  box-shadow:
    0 24px 42px rgba(178, 145, 91, 0.22),
    0 8px 16px rgba(38, 76, 66, 0.14);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

html.services-page-root {
  overflow-y: auto;
}

body.services-page .card {
  max-width: 720px;
  background: rgba(255, 248, 235, 0.95);
  border: 1.5px solid rgba(224, 201, 158, 0.45);
  color: #0C2B22;
  box-shadow:
    0 24px 42px rgba(178, 145, 91, 0.22),
    0 8px 16px rgba(38, 76, 66, 0.14);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

html.tips-page-root,
html.tips-master-page-root {
  overflow-y: auto;
}

body.tips-page::before {
  background: radial-gradient(140% 180% at 50% -10%, rgba(241, 203, 107, 0.45) 0%, rgba(24, 82, 68, 0.92) 55%, rgba(8, 35, 27, 1) 100%);
}

body.tips-page .card {
  max-width: 760px;
  background: rgba(255, 249, 236, 0.96);
  border: 1.5px solid rgba(224, 201, 158, 0.5);
  color: #0C2B22;
  box-shadow:
    0 26px 44px rgba(178, 145, 91, 0.22),
    0 10px 18px rgba(38, 76, 66, 0.14);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

body.tips-master-page::before {
  background: radial-gradient(150% 170% at 30% -10%, rgba(241, 203, 107, 0.38) 0%, rgba(18, 66, 55, 0.94) 55%, rgba(8, 35, 27, 1) 100%);
}

body.tips-master-page .card {
  max-width: 720px;
  background: rgba(255, 249, 236, 0.96);
  border: 1.5px solid rgba(224, 201, 158, 0.5);
  color: #0C2B22;
  box-shadow:
    0 26px 46px rgba(178, 145, 91, 0.22),
    0 10px 20px rgba(38, 76, 66, 0.14);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

html.master-test-page-root {
  overflow-y: auto;
}

body.master-test-page .card {
  max-width: 720px;
  background: rgba(255, 249, 236, 0.97);
  border: 1.5px solid rgba(224, 201, 158, 0.45);
  color: #0C2B22;
  box-shadow:
    0 26px 48px rgba(12, 43, 34, 0.16),
    0 8px 18px rgba(38, 76, 66, 0.16);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

html.not-found-page-root {
  overflow-y: auto;
}

body.not-found-page {
  color: #0C2B22;
}

body.not-found-page::before {
  background: radial-gradient(140% 160% at 30% 10%, rgba(52, 154, 128, 0.55) 0%, rgba(16, 70, 58, 0.9) 55%, rgba(8, 35, 27, 1) 100%);
}

body.not-found-page .card {
  max-width: 700px;
  background: rgba(255, 248, 235, 0.95);
  border: 1.5px solid rgba(224, 201, 158, 0.55);
  color: #0C2B22;
  box-shadow:
    0 28px 54px rgba(12, 43, 34, 0.2),
    0 8px 18px rgba(178, 145, 91, 0.18);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.location-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-card__hero {
  gap: 12px;
}

.location-card__title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.location-card__intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.75);
  max-width: 500px;
}

.location-card__quick-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 12px;
  scroll-snap-type: x proximity;
  align-self: stretch;
}

.location-card__quick-nav::-webkit-scrollbar {
  display: none;
}

.location-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.4px solid rgba(12, 43, 34, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  scroll-snap-align: center;
  flex: none;
}

.location-quick-link:hover,
.location-quick-link:focus-visible {
  background: rgba(12, 43, 34, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.location-quick-link__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0C2B22;
}

.location-quick-link__label {
  white-space: nowrap;
}

.location-card__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 250, 233, 0.85);
  border: 1.5px solid rgba(12, 43, 34, 0.08);
  border-radius: 26px;
}

.location-card__section--summary {
  gap: 18px;
}

.location-card__section--actions {
  gap: 20px;
}

.location-card__section--walk {
  gap: 20px;
}

.location-walk {
  display: grid;
  gap: 18px;
}

.location-walk__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-walk__step {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(12, 43, 34, 0.08);
}

.location-walk__step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.location-walk__step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(12, 43, 34, 0.08);
  color: #0C2B22;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-walk__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-walk__step-body h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0C2B22;
}

.location-walk__step-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(12, 43, 34, 0.75);
}

.location-walk__accordion {
  margin: 0;
  border: 1.5px solid rgba(12, 43, 34, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(12, 43, 34, 0.08);
}

.location-walk__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #0C2B22;
  list-style: none;
}

.location-walk__summary::-webkit-details-marker {
  display: none;
}

.location-walk__summary-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.location-walk__summary-label {
  letter-spacing: 0.2px;
}

.location-walk__summary-leading {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0C2B22;
  box-shadow: 0 6px 16px rgba(241, 203, 107, 0.35);
  flex-shrink: 0;
}

.location-walk__summary-leading svg {
  width: 20px;
  height: 20px;
}

.location-walk__summary-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(12, 43, 34, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  color: #0C2B22;
}

.location-walk__summary-icon svg {
  width: 14px;
  height: 14px;
}

.location-walk__accordion[open] .location-walk__summary-icon {
  transform: rotate(180deg);
}

.location-walk__panel {
  border-top: 1px solid rgba(12, 43, 34, 0.08);
  padding: 4px 20px 18px;
}

.location-walk__map {
  min-height: 300px;
}

.location-walk__actions {
  margin-top: 0;
}

.location-walk__actions .location-action {
  width: 100%;
}

.location-walk__actions-hint {
  margin: -4px 0 0;
  font-size: 12px;
  color: rgba(12, 43, 34, 0.7);
  text-align: center;
  width: 100%;
}


.location-card__section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-card__section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.location-card__section-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(12, 43, 34, 0.65);
}

.location-card__address {
  margin: 0;
  font-style: normal;
  line-height: 1.6;
  font-size: 15px;
}

.lozenge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(241, 203, 107, 0.24);
  color: #0C2B22;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.location-card__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.location-summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-summary__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-summary__header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(241, 203, 107, 0.55), rgba(255, 255, 255, 0.35));
  color: #0C2B22;
  box-shadow: 0 20px 45px rgba(12, 43, 34, 0.14);
}

.location-summary__header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-summary__tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(12, 43, 34, 0.72);
  max-width: 520px;
}

.location-summary__grid {
  display: grid;
  gap: 20px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(12, 43, 34, 0.08);
  box-shadow:
    0 14px 30px rgba(12, 43, 34, 0.08),
    0 32px 60px rgba(12, 43, 34, 0.12);
  grid-template-columns: minmax(0, 1fr);
}

.location-summary__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.location-summary__map {
  height: 100%;
}

.location-summary__address {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #0C2B22;
}

.location-summary__facts {
  margin: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.location-summary__fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(241, 203, 107, 0.14);
  border: 1.5px solid rgba(12, 43, 34, 0.05);
  box-shadow: 0 10px 20px rgba(12, 43, 34, 0.08);
}

.location-summary__fact dt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(12, 43, 34, 0.75);
}

.location-summary__fact dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #0C2B22;
}
.location-summary__fact dd a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}
.location-summary__fact dd a:hover,
.location-summary__fact dd a:focus-visible {
  text-decoration: underline;
}

.location-summary__fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #0C2B22;
  box-shadow: 0 8px 18px rgba(12, 43, 34, 0.08);
}

.location-summary__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-summary__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(12, 43, 34, 0.7);
}

.location-summary__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0C2B22;
  color: #FDF9E6;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow:
    0 12px 25px rgba(12, 43, 34, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-summary__cta:hover,
.location-summary__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 16px 28px rgba(12, 43, 34, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.location-summary__cta:focus-visible {
  outline: 3px solid rgba(241, 203, 107, 0.55);
  outline-offset: 2px;
}

.location-summary__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.location-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1.5px solid rgba(12, 43, 34, 0.1);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

.location-action:hover,
.location-action:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.location-action__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0C2B22;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(241, 203, 107, 0.35);
}

.location-action__text {
  display: flex;
  align-items: center;
}

.location-action__label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.location-guides {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-guide {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  border: 1.5px solid rgba(12, 43, 34, 0.08);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 10px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.location-guide__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 20px 60px 20px 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0C2B22;
  position: relative;
}

.location-guide__summary::-webkit-details-marker {
  display: none;
}

.location-guide__summary:focus-visible {
  outline: 3px solid rgba(241, 203, 107, 0.7);
  outline-offset: 2px;
}

.location-guide__summary::after {
  content: '';
  position: absolute;
  right: 26px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(12, 43, 34, 0.55);
  border-bottom: 2px solid rgba(12, 43, 34, 0.55);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.location-guide[open] .location-guide__summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.location-guide__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #0C2B22;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.location-guide__badge--uber {
  background: #000000;
  color: #ffffff;
}

.location-guide__badge--bolt {
  background: #34D186;
  color: #ffffff;
}

.location-guide__summary-text {
  flex: 1;
  font-size: 16px;
}

.location-guide__content {
  display: grid;
  gap: 18px;
  padding: 0 22px 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.location-guide__figure {
  margin: 0;
  background: rgba(15, 52, 43, 0.05);
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(12, 43, 34, 0.08);
}

.location-guide__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.location-guide__figure figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(12, 43, 34, 0.65);
  line-height: 1.5;
}

.location-guide__steps {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: rgba(12, 43, 34, 0.85);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-guide__steps li {
  line-height: 1.5;
}

.location-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.location-step {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  padding: 20px 22px;
  border: 1.5px solid rgba(12, 43, 34, 0.08);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 10px 24px rgba(0, 0, 0, 0.06);
  scroll-margin-top: 120px;
}

#route-taxi {
  scroll-margin-top: 120px;
}

.location-step__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0C2B22;
}

.location-step__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
}

.location-card__section--map {
  gap: 18px;
}

.location-card__section--parking {
  gap: 18px;
}

.location-parking__accordion {
  display: grid;
  gap: 12px;
}

.location-parking__item {
  border-radius: 18px;
  border: 1px solid rgba(241, 203, 107, 0.28);
  background: linear-gradient(140deg, rgba(255, 247, 234, 0.96) 0%, rgba(255, 236, 192, 0.88) 100%);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.location-parking__item:hover,
.location-parking__item:focus-within {
  border-color: rgba(241, 203, 107, 0.45);
  background: linear-gradient(140deg, rgba(255, 244, 220, 0.98) 0%, rgba(255, 232, 184, 0.92) 100%);
}

.location-parking__item[open] {
  border-color: rgba(241, 203, 107, 0.6);
  background: linear-gradient(140deg, #FFF6E1 0%, #FFECC0 100%);
  box-shadow: 0 18px 32px rgba(12, 43, 34, 0.12);
  transform: translateY(-1px);
}

.location-parking__summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  color: #0C2B22;
}

.location-parking__summary::-webkit-details-marker {
  display: none;
}

.location-parking__summary:focus-visible {
  outline: 2px solid rgba(12, 43, 34, 0.4);
  outline-offset: 2px;
  border-radius: 16px;
}

.location-parking__summary::after {
  content: '';
  width: 12px;
  height: 12px;
  margin-left: auto;
  border-right: 2px solid rgba(12, 43, 34, 0.55);
  border-bottom: 2px solid rgba(12, 43, 34, 0.55);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.location-parking__item[open] .location-parking__summary::after {
  transform: rotate(-135deg);
}

.location-parking__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(241, 203, 107, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0C2B22;
  flex-shrink: 0;
}

.location-parking__summary-text {
  flex: 1;
  line-height: 1.4;
}

.location-parking__body {
  padding: 0 22px 18px;
  border-top: 1px solid rgba(241, 203, 107, 0.35);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
}

.location-parking__body p {
  margin: 14px 0 0;
}

.location-parking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.location-parking__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.6px solid rgba(12, 43, 34, 0.6);
  background: rgba(12, 43, 34, 0.06);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.location-parking__contact:hover,
.location-parking__contact:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.1);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  outline: none;
}

.location-map {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid rgba(12, 43, 34, 0.12);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.12);
  min-height: 280px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: none;
  transform: scale(1);
  opacity: 1;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.location-map--pending iframe {
  filter: blur(18px);
  opacity: 0.2;
  transform: scale(1.02);
}

.location-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1;
  overflow: hidden;
  background: transparent;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.location-map__overlay:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 203, 107, 0.9);
}

.location-map--ready .location-map__overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.location-map__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.location-map__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-map__overlay-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: 32px;
  max-width: min(88%, 260px);
}

.location-map__overlay[data-map-state="loading"] {
  cursor: progress;
}

.location-map__overlay[data-map-state="loading"] .location-map__cta {
  opacity: 0.65;
}

.location-map__cta {
  border: none;
  border-radius: 999px;
  background: #F1CB6B;
  color: #0C2B22;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.location-map__cta:hover,
.location-map__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  outline: none;
}


.location-map__noscript {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  background: #fff7e2;
  color: #0C2B22;
}

.location-map__noscript a {
  color: inherit;
  font-weight: 600;
}

.location-public__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}

.location-public__hint {
  width: 100%;
  text-align: center;
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(12, 43, 34, 0.6);
}

.location-public__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(161, 132, 78, 0.35);
  background: #F7F1E5;
  color: #0C2B22;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.location-public__link:hover,
.location-public__link:focus-visible {
  background: #EFE2C8;
  color: #0B3A2C;
  box-shadow: 0 12px 24px rgba(12, 43, 34, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.transport-routes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transport-route {
  border-radius: 20px;
  border: 1.4px solid rgba(12, 43, 34, 0.08);
  background: #fff;
  box-shadow:
    0 12px 24px rgba(12, 43, 34, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.transport-route[open] {
  border-color: rgba(12, 43, 34, 0.2);
  box-shadow:
    0 16px 36px rgba(12, 43, 34, 0.12);
  transform: translateY(-2px);
}

.transport-route__summary {
  list-style: none;
  padding: 22px 56px 22px 24px;
  margin: 0;
  cursor: pointer;
  display: block;
  position: relative;
}

.transport-route__summary::-webkit-details-marker {
  display: none;
}

.transport-route__summary::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(12, 43, 34, 0.5);
  border-bottom: 2px solid rgba(12, 43, 34, 0.5);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.transport-route[open] .transport-route__summary::after {
  transform: translateY(-50%) rotate(-135deg);
}

.transport-route__body {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(12, 43, 34, 0.08);
}

.transport-route__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.transport-route__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.transport-route__text {
  display: flex;
  flex-direction: column;
}

.transport-route__tag {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(12, 43, 34, 0.6);
}

.transport-route__title {
  margin: 0;
  font-size: 18px;
  color: #0C2B22;
}

.transport-route__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #0C2B22;
}

.transport-route__icon-svg {
  width: 18px;
  height: 18px;
}

.transport-route__time {
  font-weight: 600;
  color: #6B6B6B;
  font-size: 14px;
  text-align: right;
  line-height: 1.4;
}

.transport-route__steps {
  margin: 16px 0 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(12, 43, 34, 0.78);
}

.transport-route__steps li + li {
  margin-top: 8px;
}

.location-card__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.location-card__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  appearance: none;
  border: 1.6px solid rgba(12, 43, 34, 0.6);
  background: transparent;
  color: #0C2B22;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.location-card__back:hover,
.location-card__back:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  outline: none;
}

.location-card__contact {
  font-size: 14px;
  letter-spacing: 0.1px;
  color: rgba(12, 43, 34, 0.8);
  text-decoration: none;
  border-bottom: 1px dotted rgba(12, 43, 34, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.location-card__contact:hover,
.location-card__contact:focus-visible {
  color: #0C2B22;
  border-color: rgba(12, 43, 34, 0.8);
  outline: none;
}

.faq-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-card__hero {
  gap: 14px;
}

.faq-card__title {
  margin: 0;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.faq-card__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
  max-width: 520px;
}

.faq-card__search {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(166, 125, 64, 0.08);
}

.faq-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-search__label {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0C2B22;
}

.faq-search__field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(224, 201, 158, 0.45);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 16px rgba(166, 125, 64, 0.08);
}

.faq-search__input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: #0C2B22;
  padding: 6px 0;
  min-width: 0;
}

.faq-search__input:focus {
  outline: none;
}

.faq-search__input::placeholder {
  color: rgba(12, 43, 34, 0.45);
  font-size: 16px;
}

.faq-search__reset {
  appearance: none;
  border: none;
  background: rgba(12, 43, 34, 0.08);
  color: rgba(12, 43, 34, 0.7);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-search__reset:hover,
.faq-search__reset:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.14);
  color: rgba(12, 43, 34, 0.85);
  outline: none;
}

.faq-search__hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(12, 43, 34, 0.6);
}

.faq-search__empty {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  border-radius: 22px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 8px 20px rgba(166, 125, 64, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.faq-search__empty[hidden] {
  display: none;
}

.faq-search__empty p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
}

.faq-search__suggestions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.faq-search__suggestions[hidden] {
  display: none;
}

.faq-search__suggestions-title {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(12, 43, 34, 0.56);
}

.faq-search__suggestions-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.faq-search__suggestions-button {
  appearance: none;
  border: 1.4px solid rgba(12, 43, 34, 0.45);
  background: rgba(12, 43, 34, 0.05);
  color: #0C2B22;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.faq-search__suggestions-button:hover,
.faq-search__suggestions-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.12);
  border-color: rgba(12, 43, 34, 0.65);
  outline: none;
}

.faq-search__contact {
  appearance: none;
  border: 1.6px solid rgba(12, 43, 34, 0.6);
  background: transparent;
  color: #0C2B22;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-search__contact:hover,
.faq-search__contact:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  outline: none;
}

.faq-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 6px 0 0;
  padding: 0;
}

.faq-card__section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(166, 125, 64, 0.08);
}

.faq-card__section--hidden {
  display: none;
}

.faq-card__section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.faq-item mark {
  background: rgba(241, 203, 107, 0.45);
  border-radius: 4px;
  padding: 0 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 22px;
  border: 1.5px solid rgba(224, 201, 158, 0.25);
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(166, 125, 64, 0.08);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(224, 201, 158, 0.55);
  box-shadow:
    0 12px 28px rgba(166, 125, 64, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.faq-item__question {
  list-style: none;
  margin: 0;
  padding: 18px 56px 18px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0C2B22;
  position: relative;
  cursor: pointer;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  border: 2px solid rgba(12, 43, 34, 0.25);
  transform: translateY(-50%);
}

.faq-item__question::before {
  content: '';
  position: absolute;
  right: 25px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(12, 43, 34, 0.55);
  border-bottom: 2px solid rgba(12, 43, 34, 0.55);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__question::before {
  transform: translateY(-35%) rotate(-135deg);
}

.faq-item__answer {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item__answer p {
  margin: 0;
}

.faq-card__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.faq-card__footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.faq-card__back {
  appearance: none;
  border: 1.6px solid rgba(12, 43, 34, 0.6);
  background: transparent;
  color: #0C2B22;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-card__back:hover,
.faq-card__back:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  outline: none;
}

html.certificate-page-root {
  overflow-y: auto;
}

body.certificate-page .card {
  max-width: 720px;
  background: rgba(255, 248, 235, 0.9);
  border: 1.5px solid rgba(224, 201, 158, 0.4);
  color: #0C2B22;
  box-shadow:
    0 24px 44px rgba(178, 145, 91, 0.22),
    0 10px 20px rgba(18, 66, 55, 0.12);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.certificate-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.certificate-card__hero {
  gap: 14px;
}

.certificate-card__title {
  margin: 0;
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.certificate-card__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(12, 43, 34, 0.62);
  max-width: 580px;
}

.certificate-card__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 250, 233, 0.85);
  border: 1.5px solid rgba(12, 43, 34, 0.08);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.certificate-card__section--inside {
  gap: 24px;
}

.certificate-card__section--abonement {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255, 252, 242, 0.92), rgba(236, 248, 240, 0.86));
  border-color: rgba(12, 43, 34, 0.06);
}

.certificate-card__section--abonement::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -90px;
  background: radial-gradient(55% 55% at 50% 50%, rgba(241, 203, 107, 0.35) 0%, rgba(241, 203, 107, 0) 70%);
  opacity: 0.8;
  pointer-events: none;
}

.certificate-card__section--abonement::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  left: -60px;
  bottom: -90px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(12, 43, 34, 0.08) 0%, rgba(12, 43, 34, 0) 70%);
  opacity: 0.7;
  pointer-events: none;
}

.certificate-abonement {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  text-align: left;
}

.certificate-abonement__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.certificate-abonement__eyebrow {
  margin: 0;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(12, 43, 34, 0.08);
  color: #0C2B22;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.certificate-abonement__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.certificate-abonement__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
}

.certificate-abonement__action {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 203, 107, 0.35));
  border: 1.5px solid rgba(12, 43, 34, 0.12);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15px;
  text-decoration: none;
  box-shadow:
    0 14px 24px rgba(12, 43, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.certificate-abonement__action:hover,
.certificate-abonement__action:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 203, 107, 0.45));
  box-shadow:
    0 18px 30px rgba(12, 43, 34, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  outline: none;
}

.certificate-card__section--support {
  align-items: center;
  text-align: center;
}

.certificate-card__section--cta {
  gap: 24px;
  padding: 24px;
  background: linear-gradient(165deg, rgba(255, 249, 235, 0.92), rgba(248, 239, 220, 0.76));
  border: 1.5px solid rgba(12, 43, 34, 0.08);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  margin: 0;
}

.certificate-card__section--cta + .certificate-card__section--cta {
  margin-top: 0;
}

.certificate-card__footer {
  display: flex;
  justify-content: center;
  padding: 0 24px 24px;
}

.certificate-card__section--inside + .certificate-card__section--cta {
  margin-top: 0;
}

.certificate-card__section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.certificate-card__section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.certificate-card__section-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.6);
}

.certificate-support {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.certificate-support__link,
.certificate-support__button {
  width: 100%;
  flex: 1;
}

.certificate-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.certificate-item {
  border-radius: 24px;
  background: rgba(255, 246, 225, 0.74);
  border: 1.5px solid rgba(224, 201, 158, 0.32);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.certificate-item[open] {
  border-color: rgba(224, 201, 158, 0.52);
  box-shadow: 0 16px 26px rgba(166, 125, 64, 0.18);
}

.certificate-item__summary {
  margin: 0;
  padding: 20px 64px 20px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #0C2B22;
  cursor: pointer;
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.certificate-item__summary::-webkit-details-marker {
  display: none;
}

.certificate-item__summary-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(241, 203, 107, 0.3), rgba(255, 255, 255, 0.55));
  border: 1px solid rgba(12, 43, 34, 0.08);
  color: #0C2B22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.certificate-item__summary-icon .icon {
  width: 16px;
  height: 16px;
}

.certificate-item__summary-text {
  flex: 1;
}

.certificate-item__summary::after {
  content: '';
  position: absolute;
  right: 28px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(12, 43, 34, 0.55);
  border-bottom: 2px solid rgba(12, 43, 34, 0.55);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.certificate-item[open] .certificate-item__summary::after {
  transform: translateY(-40%) rotate(-135deg);
}

.certificate-item__content {
  padding: 0 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
}

.certificate-preview {
  width: min(100%, 520px);
  margin: 12px auto 0;
  padding: 0;
  border-radius: 26px;
}

.certificate-preview picture {
  display: block;
}

.certificate-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 3px solid rgba(224, 201, 158, 0.7);
  box-shadow: 0 20px 38px -22px rgba(8, 34, 26, 0.45);
}

.certificate-item__content p {
  margin: 0;
}

.certificate-item__meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.certificate-item__meta li {
  position: relative;
  padding-left: 18px;
}

.certificate-item__meta li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(241, 203, 107, 0.9);
  box-shadow: 0 0 0 2px rgba(241, 203, 107, 0.25);
}

.certificate-steps {
  counter-reset: certificate-step;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.certificate-step {
  position: relative;
  padding: 22px 22px 20px 72px;
  border-radius: 26px;
  background: rgba(255, 248, 235, 0.76);
  border: 1.5px solid rgba(12, 43, 34, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.certificate-step::before {
  counter-increment: certificate-step;
  content: counter(certificate-step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(241, 203, 107, 0.32), rgba(222, 178, 72, 0.4));
  color: #0C2B22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow:
    0 6px 12px rgba(166, 125, 64, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.certificate-step__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0C2B22;
}

.certificate-step__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.certificate-inside {
  display: grid;
  gap: 14px;
}

.certificate-inside__item {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 246, 225, 0.7);
  border: 1.5px solid rgba(224, 201, 158, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.certificate-inside__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0C2B22;
}

.certificate-inside__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.certificate-cta {
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #0C2B22;
  text-align: center;
  position: relative;
  padding: 6px;
  border-radius: 24px;
}

.certificate-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 242, 0.6) 0%, rgba(255, 238, 196, 0.42) 100%);
  opacity: 0.9;
  z-index: 0;
}

.certificate-cta__block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 24px;
  isolation: isolate;
  z-index: 1;
  overflow: hidden;
}

.certificate-cta__block--promo {
  background: linear-gradient(165deg, rgba(255, 252, 242, 0.94), rgba(236, 248, 240, 0.86));
  border: 1px solid rgba(12, 43, 34, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 12px 24px rgba(18, 66, 55, 0.12);
}

.certificate-cta__block--promo::before {
  content: '';
  position: absolute;
  inset: -12% -8% 58% -8%;
  background: radial-gradient(115% 115% at 50% 0%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  opacity: 0.45;
  z-index: -1;
  border-radius: inherit;
}

.certificate-cta__block--main {
  background:
    radial-gradient(140% 120% at 50% 0%, rgba(255, 222, 151, 0.5) 0%, rgba(253, 230, 168, 0) 55%),
    linear-gradient(175deg, rgba(255, 238, 196, 0.93), rgba(244, 207, 114, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 16px 30px rgba(180, 134, 56, 0.24);
  gap: 18px;
}

.certificate-cta__block--main::before {
  content: '';
  position: absolute;
  inset: -18% -12% 52% -12%;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  opacity: 0.45;
  z-index: -1;
  border-radius: inherit;
}

.certificate-cta__promo-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.certificate-cta__eyebrow {
  margin: 0;
  padding: 7px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2E7A66, #0B3429);
  color: #F5F0E4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.certificate-cta__promo-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.15px;
  color: rgba(12, 43, 34, 0.8);
}

.certificate-cta__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F4C96B, #E3A635);
  border: 1px solid rgba(227, 166, 53, 0.6);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.14px;
  box-shadow:
    0 14px 24px rgba(173, 127, 40, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: center;
  min-width: 190px;
}

.certificate-cta__secondary:hover,
.certificate-cta__secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 16px 28px rgba(173, 127, 40, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  outline: none;
}

.certificate-cta__title {
  margin: 0;
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.certificate-cta__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.75);
  max-width: 420px;
}

.certificate-cta__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0F4639, #0A3027);
  color: #F9F6EC;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.18px;
  box-shadow:
    0 18px 32px rgba(10, 48, 39, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.certificate-cta__primary:hover,
.certificate-cta__primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 24px 36px rgba(10, 48, 39, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  outline: none;
}

@media (min-width: 640px) {
  .certificate-card__section {
    padding: 28px 32px;
    gap: 24px;
  }

  .certificate-abonement {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .certificate-abonement__action {
    justify-self: end;
  }

  .certificate-support {
    flex-direction: row;
    gap: 16px;
  }

  .certificate-support__link,
  .certificate-support__button {
    width: auto;
  }

  .certificate-accordion {
    gap: 16px;
  }

  .certificate-step {
    padding-left: 80px;
  }

  .certificate-step::before {
    left: 28px;
  }

  .certificate-cta {
    padding: 8px;
  }

  .certificate-cta__block--promo {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    text-align: left;
  }

  .certificate-cta__promo-head {
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    flex: 1 1 auto;
  }

  .certificate-cta__eyebrow {
    align-self: flex-start;
  }

  .certificate-cta__promo-text {
    max-width: 280px;
    text-align: left;
  }

  .location-summary__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
  }

  .location-summary__facts {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .abonement-card__section {
    padding: 32px;
  }

  .abonement-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .abonement-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .abonement-steps {
    gap: 24px;
  }

  .quiz-card__intro {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .quiz-result__list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .quiz-result__actions {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .certificate-card__section {
    padding: 32px 36px;
  }

  .certificate-card__section--cta {
    padding: 32px 36px;
  }

  .certificate-inside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .certificate-card__section--cta + .certificate-card__section--cta {
    margin-top: 0;
  }

  .certificate-cta {
    gap: 32px;
    padding: 10px;
  }

  .certificate-cta__block {
    padding: 26px 30px;
  }

  .certificate-cta__block--promo {
    padding: 24px 30px;
  }

  .certificate-cta__block--main {
    gap: 22px;
    padding: 28px 34px;
  }

  .abonement-card {
    gap: 40px;
  }

  .abonement-card__section {
    padding: 36px;
  }

  .abonement-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .abonement-plan {
    padding: 28px 24px;
  }

  .abonement-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .abonement-step {
    padding: 28px 22px 28px 74px;
  }

  .abonement-step::before {
    left: 26px;
  }

  .abonement-textures {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }

  .abonement-textures__content {
    flex: 1 1 58%;
  }

  .abonement-textures__visual {
    flex: 1 1 42%;
    min-height: 240px;
  }

  .abonement-cta__actions {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .abonement-cta__action {
    min-width: 220px;
  }

  .abonement-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .abonement-card__footer-note {
    max-width: 440px;
  }

  .abonement-card__back {
    margin-left: auto;
  }

  .tips-profile {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

@media (min-width: 900px) {
  .location-summary__facts {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .location-summary__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .location-summary__note {
    max-width: 520px;
  }

  .location-guide__content--stacked-media {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .location-guide__content--stacked-media .location-guide__figure {
    grid-column: 1;
  }

  .location-guide__content--stacked-media .location-guide__steps {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

html.abonement-page-root {
  overflow-y: auto;
}

body.abonement-page {
  color: #0C2B22;
}

body.abonement-page::before {
  background: radial-gradient(140% 180% at 50% -20%, rgba(66, 140, 112, 0.45) 0%, rgba(21, 69, 55, 0.88) 58%, rgba(8, 34, 26, 1) 100%);
}

body.abonement-page .card {
  max-width: 760px;
  background: linear-gradient(150deg, rgba(255, 248, 235, 0.92), rgba(236, 252, 242, 0.78));
  border: 1.5px solid rgba(26, 72, 57, 0.25);
  box-shadow:
    0 26px 48px rgba(8, 36, 28, 0.32),
    0 12px 24px rgba(24, 72, 60, 0.18);
  color: #0C2B22;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.abonement-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abonement-card__hero {
  gap: 16px;
}

.abonement-card__title {
  margin: 0;
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.abonement-card__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.66);
  max-width: 600px;
}

.abonement-card__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  justify-content: center;
}

.abonement-card__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 26px;
  background: rgba(255, 250, 237, 0.85);
  border: 1.5px solid rgba(12, 43, 34, 0.08);
  border-radius: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.abonement-card__section--accent {
  background: linear-gradient(140deg, rgba(255, 251, 237, 0.88), rgba(230, 249, 240, 0.75));
  border-color: rgba(30, 80, 60, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 16px 30px rgba(18, 66, 55, 0.16);
}

.abonement-card__section--cta {
  background: rgba(12, 43, 34, 0.86);
  border-color: rgba(255, 255, 255, 0.05);
  color: #F7F2E6;
  box-shadow:
    0 26px 46px rgba(7, 32, 25, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.abonement-card__section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.abonement-card__section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.abonement-card__section-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(12, 43, 34, 0.62);
}

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

.abonement-benefit {
  padding: 20px 18px;
  border-radius: 24px;
  background: rgba(255, 246, 225, 0.72);
  border: 1.5px solid rgba(224, 201, 158, 0.28);
  box-shadow: 0 12px 22px rgba(166, 125, 64, 0.14);
}

.abonement-benefit__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.abonement-benefit__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.abonement-plans {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
}

.abonement-plan {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 20px;
  border-radius: 28px;
  background: rgba(236, 250, 242, 0.82);
  border: 1.5px solid rgba(46, 120, 102, 0.24);
  box-shadow:
    0 18px 32px rgba(18, 66, 55, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.abonement-plan--highlighted {
  background: rgba(233, 247, 236, 0.94);
  border-color: rgba(241, 203, 107, 0.6);
  box-shadow:
    0 22px 40px rgba(12, 48, 38, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.abonement-plan__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abonement-plan__eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(12, 43, 34, 0.58);
}

.abonement-plan__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.abonement-plan__description {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.abonement-plan__perks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(12, 43, 34, 0.74);
}

.abonement-plan__perks li {
  position: relative;
  padding-left: 20px;
}

.abonement-plan__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(46, 120, 102, 0.8);
  box-shadow: 0 0 0 4px rgba(46, 120, 102, 0.12);
}

.abonement-plan__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abonement-plan__note {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: rgba(12, 43, 34, 0.64);
}

.abonement-plan__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: #0C2B22;
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(12, 43, 34, 0.14);
  box-shadow:
    0 14px 20px rgba(12, 43, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abonement-plan__action--primary {
  background: linear-gradient(135deg, #F1CB6B, #E0AE45);
  color: #0C2B22;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 16px 26px rgba(178, 145, 91, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.abonement-plan__action:hover,
.abonement-plan__action:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 18px 28px rgba(12, 43, 34, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  outline: none;
}

.abonement-plans__disclaimer {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.6);
  text-align: center;
}

.abonement-steps {
  counter-reset: abonement-step;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.abonement-step {
  position: relative;
  padding: 26px 20px 26px 68px;
  border-radius: 28px;
  background: rgba(236, 250, 242, 0.85);
  border: 1.5px solid rgba(46, 120, 102, 0.24);
  box-shadow: 0 16px 24px rgba(18, 66, 55, 0.16);
}

.abonement-step::before {
  counter-increment: abonement-step;
  content: counter(abonement-step, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 26px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(241, 203, 107, 0.95), rgba(224, 174, 69, 0.9));
  color: #0C2B22;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 18px rgba(178, 145, 91, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.abonement-step__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.abonement-step__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
}

.abonement-textures {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.abonement-textures__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.abonement-textures__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.abonement-textures__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.abonement-textures__list {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abonement-textures__visual {
  position: relative;
  min-height: 160px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(24, 68, 54, 0.9), rgba(10, 40, 32, 0.88));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abonement-textures__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 180, 136, 0.9) 0%, rgba(76, 180, 136, 0) 70%);
  opacity: 0.6;
}

.abonement-textures__ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 40px rgba(241, 203, 107, 0.25),
    inset 0 0 12px rgba(255, 255, 255, 0.2);
}

.abonement-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.abonement-cta__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #F7F2E6;
}

.abonement-cta__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 242, 230, 0.78);
}

.abonement-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abonement-cta__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: #0C2B22;
  background: rgba(247, 242, 230, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    0 16px 26px rgba(6, 32, 24, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abonement-cta__action--primary {
  background: linear-gradient(135deg, #F1CB6B, #E0AE45);
  color: #0C2B22;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 18px 32px rgba(178, 145, 91, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.abonement-cta__action:hover,
.abonement-cta__action:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 20px 30px rgba(6, 32, 24, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  outline: none;
}

.abonement-card__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.abonement-card__footer-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.6);
}

.abonement-card__back {
  align-self: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(12, 43, 34, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow:
    0 14px 20px rgba(12, 43, 34, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abonement-card__back:hover,
.abonement-card__back:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 18px 28px rgba(12, 43, 34, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  outline: none;
}

.masters-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.masters-card__hero {
  gap: 14px;
}

.masters-card__title {
  margin: 0;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.masters-card__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
  max-width: 520px;
}

.masters-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 6px 0 0;
  padding: 0;
}

.masters-card__section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(166, 125, 64, 0.08);
}

.masters-card__section--grid {
  gap: 22px;
}

.masters-card__section--cta {
  gap: 20px;
}

.masters-card__section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.masters-card__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.masters-card__section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.masters-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.master-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 18px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.04),
    0 16px 30px rgba(166, 125, 64, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.master-card__media {
  margin: -18px -18px 0;
  position: relative;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(206, 189, 150, 0.25));
  box-shadow: inset 0 -1px 0 rgba(12, 43, 34, 0.06);
  aspect-ratio: 2 / 3;
}

.master-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.master-card__media.is-video-active {
  background: #000;
}

.master-card__media.is-video-active img {
  opacity: 0;
  visibility: hidden;
}

.master-card__media-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: #000;
}

.master-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.master-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.master-card__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.master-card__role {
  font-size: 13px;
  color: rgba(12, 43, 34, 0.6);
  letter-spacing: 0.2px;
}

.master-card__bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.74);
}

.master-card__video {
  margin-top: 10px;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(12, 43, 34, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 237, 223, 0.96));
  box-shadow:
    0 18px 30px rgba(12, 43, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.master-card__video[data-video-state="loading"] {
  cursor: progress;
  pointer-events: none;
  opacity: 0.75;
}

.master-card__video[data-video-state="loading"] .master-card__video-icon svg {
  animation: master-card-video-spin 1s linear infinite;
}

.master-card__video-label {
  white-space: nowrap;
}

.master-card__video-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  box-shadow: none;
  flex-shrink: 0;
}

.master-card__video-icon svg {
  width: 22px;
  height: 22px;
  color: #0C2B22;
}

@keyframes master-card-video-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.master-card__video:hover,
.master-card__video:focus-visible {
  transform: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(238, 229, 213, 1));
  border-color: rgba(12, 43, 34, 0.3);
  box-shadow:
    0 24px 36px rgba(12, 43, 34, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  outline: none;
}

.master-card__details {
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(12, 43, 34, 0.68);
}

.master-card__details div {
  display: grid;
  gap: 2px;
}

.master-card__details dt {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.master-card__details dd {
  margin: 0;
  line-height: 1.5;
}

.masters-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.masters-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.6px solid rgba(12, 43, 34, 0.6);
  background: rgba(12, 43, 34, 0.05);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.masters-card__action:hover,
.masters-card__action:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  outline: none;
}

.masters-card__action--primary {
  background: linear-gradient(135deg, rgba(241, 203, 107, 0.92), rgba(222, 178, 72, 0.92));
  border: 1.6px solid rgba(166, 125, 64, 0.3);
  box-shadow:
    0 12px 24px rgba(166, 125, 64, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.masters-card__action--primary:hover,
.masters-card__action--primary:focus-visible {
  background: linear-gradient(135deg, rgba(241, 203, 107, 1), rgba(222, 178, 72, 1));
  box-shadow:
    0 18px 32px rgba(166, 125, 64, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.masters-card__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.masters-card__back {
  appearance: none;
  border: 1.6px solid rgba(12, 43, 34, 0.6);
  background: transparent;
  color: #0C2B22;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.masters-card__back:hover,
.masters-card__back:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  outline: none;
}

.services-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.services-card__hero {
  gap: 14px;
}

.services-card__title {
  margin: 0;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.services-card__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
  max-width: 520px;
}

.services-price-cta {
  width: min(100%, 560px);
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(12, 43, 34, 0.18);
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(255, 255, 255, 0.92), rgba(246, 234, 208, 0.88)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(246, 234, 208, 0.84));
  box-shadow:
    0 10px 22px rgba(120, 83, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.services-price-cta__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.46;
  color: rgba(12, 43, 34, 0.76);
}

.services-price-cta__button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(12, 43, 34, 0.24);
  background: linear-gradient(135deg, #1C5B4B, #0C2B22);
  box-shadow: 0 14px 26px rgba(12, 43, 34, 0.24);
  color: #FFF4DD;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.services-price-cta__button:hover,
.services-price-cta__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(12, 43, 34, 0.28);
  filter: saturate(1.06);
  outline: none;
}

.services-quick-nav {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 4px 2px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  align-self: stretch;
}

.services-quick-nav::-webkit-scrollbar {
  display: none;
}

.services-quick-nav__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 43, 34, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 236, 217, 0.9));
  box-shadow: none;
  color: rgba(12, 43, 34, 0.92);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.services-quick-nav__item:hover,
.services-quick-nav__item:focus-visible {
  border-color: rgba(12, 43, 34, 0.3);
  transform: translateY(-1px);
  outline: none;
}

.services-quick-nav__icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1C5B4B, #0C2B22);
  color: #FFF4DD;
  box-shadow: none;
  flex-shrink: 0;
}

.services-quick-nav__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-quick-nav__text {
  display: inline-block;
}

.services-quick-nav__slider {
  width: clamp(88px, 18vw, 132px);
  height: 4px;
  border-radius: 999px;
  background: rgba(12, 43, 34, 0.14);
  position: relative;
  overflow: hidden;
  align-self: center;
  margin-top: -2px;
}

.services-quick-nav__slider-thumb {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  border-radius: inherit;
  background: linear-gradient(135deg, #1C5B4B, #0C2B22);
  transform: translateX(0);
  transition: transform 0.12s linear;
}

.services-card__section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(166, 125, 64, 0.08);
}

.services-card__section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services-card__section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.services-card__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.services-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-card {
  border-radius: 24px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.04),
    0 16px 30px rgba(166, 125, 64, 0.08);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card[id] {
  scroll-margin-top: clamp(90px, 12vh, 124px);
}

.service-card--champagne {
  --champagne-block-gap: 12px;
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  gap: 12px;
  border: 1.5px solid rgba(182, 138, 66, 0.42);
  background:
    radial-gradient(120% 120% at 5% 0%, rgba(255, 255, 255, 0.98), rgba(247, 237, 217, 0.96)),
    linear-gradient(140deg, rgba(254, 250, 241, 0.98), rgba(243, 231, 203, 0.96));
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.04),
    0 24px 40px rgba(142, 101, 39, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.service-card--champagne::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -15%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.service-card--champagne > * {
  position: relative;
  z-index: 1;
}

.service-card__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.service-card__badge {
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.service-card__badge--champagne {
  border: 1px solid rgba(170, 127, 57, 0.36);
  background: linear-gradient(135deg, rgba(247, 230, 189, 0.9), rgba(236, 212, 159, 0.86));
  color: #6E4A14;
}

.service-card__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.service-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__desc--lead {
  font-size: 15px;
  line-height: 1.56;
  color: rgba(12, 43, 34, 0.82);
}

.service-card__feature-list {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-card__feature-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(12, 43, 34, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 236, 214, 0.92));
}

.service-card__feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1C5B4B, #0C2B22);
  box-shadow: 0 10px 16px rgba(12, 43, 34, 0.28);
  color: #FFF4DD;
}

.service-card__feature-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__feature-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.48;
  color: rgba(12, 43, 34, 0.76);
}

.service-card__feature-text strong {
  color: #0C2B22;
}

.service-card__desc--champagne {
  max-width: 90ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(12, 43, 34, 0.78);
}

.service-card__teasers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: static;
}

.service-card__teasers::-webkit-scrollbar {
  display: none;
}

.service-card__teasers::before,
.service-card__teasers::after {
  content: none;
}

.service-card__teasers::before {
  left: auto;
}

.service-card__teasers::after {
  right: auto;
}

.service-card__teasers[data-auto-scroll-enabled="true"]::before,
.service-card__teasers[data-auto-scroll-enabled="true"]::after {
  opacity: 0;
}

.service-card__teasers li {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(166, 119, 41, 0.24);
  background: rgba(255, 255, 255, 0.68);
  color: rgba(12, 43, 34, 0.78);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.service-card__teasers li::before {
  content: '+';
  font-size: 11px;
  line-height: 1;
  color: rgba(166, 119, 41, 0.9);
}

.service-card__fold {
  margin-top: 0;
}

.service-card__fold[open] {
  display: block;
}

.service-card__fold-summary {
  list-style: none;
  position: relative;
  display: grid;
  gap: 6px;
  padding: 14px 44px 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(12, 43, 34, 0.18);
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(255, 255, 255, 0.9), rgba(246, 234, 208, 0.88)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.84), rgba(246, 234, 208, 0.84));
  box-shadow:
    0 10px 22px rgba(120, 83, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  cursor: pointer;
}

.service-card__fold-summary::-webkit-details-marker {
  display: none;
}

.service-card__fold-summary::marker {
  content: '';
}

.service-card__fold-summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(12, 43, 34, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #0C2B22;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.service-card__fold-summary:hover {
  border-color: rgba(12, 43, 34, 0.3);
  background:
    radial-gradient(120% 140% at 10% 0%, rgba(255, 255, 255, 0.95), rgba(243, 229, 197, 0.92)),
    linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(243, 229, 197, 0.9));
}

.service-card__fold-summary:focus-visible {
  outline: 2px solid rgba(12, 43, 34, 0.35);
  outline-offset: 2px;
}

.service-card__fold-label {
  color: #0C2B22;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.service-card__fold-note {
  color: rgba(12, 43, 34, 0.68);
  font-size: 12.5px;
  letter-spacing: 0.15px;
  line-height: 1.4;
}

.service-card__fold-open {
  display: none;
}

.service-card__fold[open] .service-card__fold-summary::after {
  content: '-';
}

.service-card__fold[open] .service-card__fold-closed {
  display: none;
}

.service-card__fold[open] .service-card__fold-open {
  display: inline;
}

.service-card__fold[open] .service-card__desc--champagne,
.service-card__fold[open] .service-card__stages,
.service-card__fold[open] .service-card__champagne-note {
  margin-top: var(--champagne-block-gap);
}

.service-card__fold[open] .service-card__desc--champagne:first-of-type {
  margin-top: var(--champagne-block-gap);
}

.service-card__stages {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--champagne-block-gap);
}

.service-stage {
  border-radius: 18px;
  border: 1px solid rgba(170, 127, 57, 0.28);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(247, 236, 214, 0.92));
  box-shadow:
    0 10px 20px rgba(120, 83, 31, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-stage--focus {
  grid-column: 1 / -1;
}

.service-stage__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-stage__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1C5B4B, #0C2B22);
  box-shadow: 0 10px 16px rgba(12, 43, 34, 0.28);
  color: #FFF4DD;
}

.service-stage__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-stage__icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  filter: invert(1);
}

.service-stage__label {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(12, 43, 34, 0.56);
}

.service-stage__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0C2B22;
}

.service-stage__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.46;
  color: rgba(12, 43, 34, 0.76);
}

.service-stage__list {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 6px;
  color: rgba(12, 43, 34, 0.74);
  font-size: 13px;
  line-height: 1.52;
}

.service-card__champagne-note {
  margin: 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(170, 127, 57, 0.28);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(247, 236, 214, 0.92));
  box-shadow:
    0 10px 20px rgba(120, 83, 31, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.46;
  color: rgba(12, 43, 34, 0.76);
}

.service-card--champagne .service-card__video {
  margin-top: 0;
}

.service-card__video {
  margin-top: auto;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(12, 43, 34, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 237, 223, 0.96));
  box-shadow:
    0 18px 30px rgba(12, 43, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-family: inherit;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.service-card__video:hover,
.service-card__video:focus-visible {
  transform: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(238, 229, 213, 1));
  border-color: rgba(12, 43, 34, 0.3);
  box-shadow:
    0 24px 36px rgba(12, 43, 34, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  outline: none;
}

@media (max-width: 780px) {
  .service-card__stages {
    grid-template-columns: 1fr;
  }

  .service-stage--focus {
    grid-column: auto;
  }

  .services-price-cta__button {
    width: 100%;
  }
}

.tips-animate,
.page-animate {
  opacity: 1;
  transform: none;
  animation: none;
}

.tips-card,
.tips-master {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.tips-card::after,
.tips-master::after {
  content: '';
  position: absolute;
  inset: auto -30px -120px;
  height: 220px;
  background: radial-gradient(70% 100% at 50% 50%, rgba(10, 48, 39, 0.2), rgba(10, 48, 39, 0));
  opacity: 0.6;
  pointer-events: none;
}

.tips-card > *,
.tips-master > * {
  position: relative;
  z-index: 1;
}

.tips-card__hero,
.tips-master__hero {
  gap: 12px;
}

.tips-card__eyebrow,
.tips-master__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(12, 43, 34, 0.6);
}

.tips-card__title,
.tips-master__title {
  margin: 0;
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.tips-card__subtitle,
.tips-master__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
  max-width: 520px;
}

.tips-card__badge,
.tips-master__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(12, 43, 34, 0.18);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0C2B22;
  box-shadow:
    0 12px 22px rgba(12, 43, 34, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.tips-card__section,
.tips-master__section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  border: 1.5px solid rgba(224, 201, 158, 0.4);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(166, 125, 64, 0.08);
}

.tips-master__section--cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 237, 223, 0.9));
}

.tips-card__section--cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 234, 220, 0.92));
}

.tips-card__section-header,
.tips-master__section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tips-card__section-title,
.tips-master__section-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.tips-card__lead,
.tips-master__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.tips-highlights {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.tips-highlight {
  padding: 16px;
  border-radius: 20px;
  background: rgba(12, 43, 34, 0.06);
  border: 1px solid rgba(12, 43, 34, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tips-highlight__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #0C2B22;
}

.tips-highlight__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

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

.tips-master-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(224, 201, 158, 0.4);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.04),
    0 16px 30px rgba(166, 125, 64, 0.1);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tips-master-card:hover,
.tips-master-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(12, 43, 34, 0.3);
  box-shadow:
    0 18px 32px rgba(12, 43, 34, 0.16),
    0 1px 1px rgba(0, 0, 0, 0.05);
  outline: none;
}

.tips-master-card__media {
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(206, 189, 150, 0.3));
  aspect-ratio: 4 / 5;
}

.tips-master-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tips-master-card__content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.tips-master-card__role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(12, 43, 34, 0.6);
}

.tips-master-card__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
}

.tips-master-card__cta {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(12, 43, 34, 0.08);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #0C2B22;
}

.tips-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.tips-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.6px solid rgba(12, 43, 34, 0.4);
  background: rgba(12, 43, 34, 0.06);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tips-action:hover,
.tips-action:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  outline: none;
}

.tips-action--primary {
  background: linear-gradient(135deg, rgba(241, 203, 107, 0.96), rgba(222, 178, 72, 0.96));
  border: 1.6px solid rgba(166, 125, 64, 0.3);
  box-shadow:
    0 12px 24px rgba(166, 125, 64, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.tips-action--primary:hover,
.tips-action--primary:focus-visible {
  background: linear-gradient(135deg, rgba(241, 203, 107, 1), rgba(222, 178, 72, 1));
  box-shadow:
    0 18px 32px rgba(166, 125, 64, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.tips-action--ghost {
  background: rgba(255, 255, 255, 0.78);
  border: 1.5px solid rgba(12, 43, 34, 0.2);
}

.tips-card__footer,
.tips-master__footer {
  display: flex;
  justify-content: center;
}

.tips-card__back,
.tips-master__back {
  appearance: none;
  border: 1.6px solid rgba(12, 43, 34, 0.6);
  background: transparent;
  color: #0C2B22;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tips-card__back:hover,
.tips-card__back:focus-visible,
.tips-master__back:hover,
.tips-master__back:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  outline: none;
}

.tips-profile {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(224, 201, 158, 0.4);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.04),
    0 16px 30px rgba(166, 125, 64, 0.1);
}

.tips-profile__media-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tips-profile__media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(206, 189, 150, 0.3));
  aspect-ratio: 2 / 3;
}

.tips-profile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tips-profile__name {
  margin: 0;
  font-size: clamp(20px, 4.8vw, 26px);
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #0C2B22;
  text-align: center;
}

.tips-profile__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tips-profile__role {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 43, 34, 0.12);
  background: rgba(12, 43, 34, 0.06);
  font-size: 12px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgba(12, 43, 34, 0.7);
}

.tips-profile__bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.74);
}

.tips-profile__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.65);
}

.tips-pay-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tips-pay-button {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 20px;
  border: 1.5px solid rgba(12, 43, 34, 0.2);
  background: rgba(12, 43, 34, 0.05);
  color: #0C2B22;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tips-pay-button:hover,
.tips-pay-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  outline: none;
}

.tips-pay-button--primary {
  background: linear-gradient(135deg, rgba(241, 203, 107, 0.96), rgba(222, 178, 72, 0.96));
  border: 1.6px solid rgba(166, 125, 64, 0.3);
  box-shadow:
    0 12px 24px rgba(166, 125, 64, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.tips-pay-button--primary:hover,
.tips-pay-button--primary:focus-visible {
  background: linear-gradient(135deg, rgba(241, 203, 107, 1), rgba(222, 178, 72, 1));
  box-shadow:
    0 18px 32px rgba(166, 125, 64, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.tips-pay-button__icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0;
  line-height: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.tips-pay-button__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.tips-pay-button__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tips-pay-button__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.tips-pay-button__note {
  font-size: 12px;
  color: rgba(12, 43, 34, 0.65);
}

.tips-pay-button--copy {
  background: rgba(255, 255, 255, 0.85);
  justify-content: flex-start;
}

.tips-pay-button--copy .tips-pay-button__text {
  text-align: left;
  align-items: flex-start;
}

.tips-pay-button__icon--card svg {
  stroke: currentColor;
  fill: none;
}

.tips-pay-button.is-copied {
  border-color: rgba(166, 125, 64, 0.5);
}

.tips-review-block {
  margin-top: 14px;
  display: flex;
}

.tips-review-action {
  width: 100%;
  justify-content: center;
}

.tips-copy-toast {
  position: fixed;
  left: 50%;
  bottom: clamp(24px, 6vh, 48px);
  transform: translate(-50%, 12px);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(12, 43, 34, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: #0C2B22;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 30px rgba(12, 43, 34, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}

.tips-copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tips-fields {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tips-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tips-field__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(12, 43, 34, 0.78);
}

.tips-field__control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tips-field__control input {
  flex: 1;
  border-radius: 14px;
  border: 1.5px solid rgba(12, 43, 34, 0.18);
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #FFFFFF;
  color: #0C2B22;
}

.tips-field__control input:focus {
  outline: 2px solid rgba(241, 203, 107, 0.55);
  outline-offset: 2px;
}

.tips-field__copy {
  border-radius: 999px;
  border: 1.5px solid rgba(12, 43, 34, 0.2);
  padding: 10px 16px;
  background: rgba(12, 43, 34, 0.06);
  color: #0C2B22;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tips-field__copy:hover,
.tips-field__copy:focus-visible {
  transform: translateY(-1px);
  background: rgba(12, 43, 34, 0.1);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
  outline: none;
}

.tips-field__copy:disabled {
  opacity: 0.6;
  cursor: wait;
}

.tips-field__copy.is-copied {
  background: linear-gradient(135deg, rgba(241, 203, 107, 0.95), rgba(222, 178, 72, 0.95));
  border-color: rgba(166, 125, 64, 0.4);
}

.tips-field__hint {
  margin: 0;
  font-size: 12px;
  color: rgba(12, 43, 34, 0.6);
}

.quiz-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quiz-card__hero {
  gap: 12px;
}

.quiz-card__title {
  margin: 0;
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.quiz-card__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
}

.quiz-card__intro {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 16px 18px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(166, 125, 64, 0.06);
}

.quiz-card__note {
  margin: 0;
  font-size: 14px;
  color: rgba(12, 43, 34, 0.82);
  font-weight: 600;
}

.quiz-card__note--muted {
  font-weight: 400;
  color: rgba(12, 43, 34, 0.62);
}

.quiz {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.04),
    0 18px 32px rgba(166, 125, 64, 0.08);
}

.quiz:not(.quiz--results) .quiz-result {
  display: none;
}

.quiz.quiz--results .quiz__question {
  display: none;
}

.quiz.quiz--results .quiz__options,
.quiz.quiz--results .quiz__controls {
  display: none;
}

.quiz__progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz__progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quiz__step {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.quiz__restart-link {
  appearance: none;
  border: none;
  background: none;
  color: rgba(12, 43, 34, 0.7);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.quiz__restart-link:hover,
.quiz__restart-link:focus-visible {
  color: #0C2B22;
  outline: none;
}

.quiz__progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(12, 43, 34, 0.12);
  overflow: hidden;
}

.quiz__progress-value {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(241, 203, 107, 1), rgba(222, 178, 72, 1));
  width: 16%;
  transition: width 0.3s ease;
}

.quiz__question-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quiz__question {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.quiz__summary {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 600;
  color: #0C2B22;
}

.quiz__description {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
}

.quiz-result__eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(12, 43, 34, 0.6);
}

.quiz__options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.quiz-option {
  width: 100%;
  border-radius: 22px;
  border: 1.5px solid rgba(12, 43, 34, 0.18);
  padding: 16px 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.quiz-option:hover,
.quiz-option:focus-visible {
  border-color: rgba(12, 43, 34, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
  outline: none;
}

.quiz-option--selected {
  border-color: rgba(12, 43, 34, 0.65);
  background: rgba(241, 203, 107, 0.14);
  box-shadow:
    0 12px 26px rgba(166, 125, 64, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quiz-option__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.quiz-option__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(12, 43, 34, 0.68);
}

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

.quiz__button {
  appearance: none;
  border-radius: 999px;
  border: 1.6px solid rgba(12, 43, 34, 0.5);
  background: rgba(12, 43, 34, 0.05);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 12px 28px;
  cursor: pointer;
  min-width: 140px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.quiz__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.quiz__button:not(:disabled):hover,
.quiz__button:not(:disabled):focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
  outline: none;
}

.quiz__button--primary {
  background: linear-gradient(135deg, rgba(241, 203, 107, 1), rgba(222, 178, 72, 1));
  border-color: rgba(166, 125, 64, 0.4);
  color: #0C2B22;
  box-shadow:
    0 12px 24px rgba(166, 125, 64, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quiz__button--primary:disabled {
  background: rgba(241, 203, 107, 0.6);
  box-shadow: none;
}

.quiz__button--ghost {
  background: transparent;
}

.quiz-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 4px 0 0;
}

.quiz-result__list {
  display: grid;
  gap: 16px;
}

.quiz-result__item {
  padding: 18px;
  border-radius: 24px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.04),
    0 16px 26px rgba(166, 125, 64, 0.08);
  display: grid;
  gap: 8px;
}

.quiz-result__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quiz-result__identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quiz-result__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(241, 203, 107, 0.2);
  flex-shrink: 0;
  display: inline-flex;
  padding: 6px;
  box-sizing: border-box;
}

.quiz-result__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  border-radius: 50%;
}

.quiz-result__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quiz-result__name {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.quiz-result__role {
  margin: 0;
  font-size: 14px;
  color: rgba(12, 43, 34, 0.7);
}

.quiz-result__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.74);
}

.quiz-result__note {
  margin: 0;
  font-size: 13px;
  color: rgba(12, 43, 34, 0.65);
}

.quiz-result__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz-result__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quiz-result__action--primary {
  background: linear-gradient(135deg, rgba(15, 73, 59, 0.95), rgba(14, 47, 40, 0.95));
  color: #FFFFFF;
  box-shadow: 0 14px 24px rgba(15, 52, 43, 0.28);
}

.quiz-result__action--primary:hover,
.quiz-result__action--primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(15, 52, 43, 0.32);
  outline: none;
}

.quiz-result__actions-secondary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-result__action--secondary {
  color: #0C2B22;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(12, 43, 34, 0.25);
}

.quiz-result__action--secondary:hover,
.quiz-result__action--secondary:focus-visible {
  background: rgba(12, 43, 34, 0.05);
  outline: none;
}

.quiz-result__restart {
  border: none;
  background: none;
  color: rgba(12, 43, 34, 0.8);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  align-self: center;
  margin-top: 12px;
}

.quiz-result__restart:hover,
.quiz-result__restart:focus-visible {
  color: #0C2B22;
  outline: none;
}

@media (min-width: 768px) {
  .quiz-result__actions {
    flex-direction: row;
    align-items: flex-start;
  }

  .quiz-result__actions > * {
    flex: 1 1 0;
  }
}

.quiz-card__footer {
  display: flex;
  justify-content: center;
}

.quiz-card__back {
  width: min(240px, 100%);
}

.home-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.home-card__hero {
  gap: 14px;
  align-items: stretch;
}

.home-card__title {
  margin: 0;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #0C2B22;
}

.home-card__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.7);
  max-width: 520px;
}

.home-card__badges {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 12px 0 0;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 248, 235, 0.65);
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  border-radius: 999px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
}

.home-card__badges::before,
.home-card__badges::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  pointer-events: none;
  z-index: 1;
}

.home-card__badges::before {
  left: 0;
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 248, 235, 0.65), rgba(255, 248, 235, 0));
}

.home-card__badges::after {
  right: 0;
  position: absolute;
  background: linear-gradient(270deg, rgba(255, 248, 235, 0.65), rgba(255, 248, 235, 0));
}

.home-card__badges[data-auto-scroll-enabled="true"]::before,
.home-card__badges[data-auto-scroll-enabled="true"]::after {
  opacity: 0;
}

.home-card__badges::-webkit-scrollbar {
  display: none;
}

.home-card__badges li {
  flex: 0 0 auto;
}

.home-card__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 26px;
  border: 1.5px solid rgba(224, 201, 158, 0.35);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(166, 125, 64, 0.08);
}

.home-card__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.home-card__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-card__actions .link {
  background: linear-gradient(135deg, rgba(241, 203, 107, 0.92), rgba(222, 178, 72, 0.92));
  color: #0C2B22;
  min-height: 64px;
  grid-template-columns: 48px 1fr 24px;
  padding: 0 20px;
  border: 1.5px solid rgba(166, 125, 64, 0.25);
  box-shadow:
    0 12px 24px rgba(166, 125, 64, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.home-card__actions .link::after {
  display: none;
}

.home-card__actions .link:hover,
.home-card__actions .link:focus-visible {
  background: linear-gradient(135deg, rgba(241, 203, 107, 1), rgba(222, 178, 72, 1));
  box-shadow:
    0 18px 32px rgba(166, 125, 64, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.home-card__actions .link:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(166, 125, 64, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.home-card__actions .contact-trigger {
  background: linear-gradient(135deg, rgba(46, 120, 102, 0.96), rgba(11, 52, 43, 0.96));
  background-size: 180% 180%;
  background-position: 10% 50%;
  border: 1.5px solid rgba(66, 150, 128, 0.4);
  box-shadow:
    0 14px 28px rgba(9, 46, 35, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #F1FFF8;
  transform: translateY(0);
  transition:
    transform 240ms cubic-bezier(0.18, 0.89, 0.32, 1.28),
    box-shadow 260ms ease,
    background 340ms ease,
    background-position 340ms ease;
}

.home-card__actions .contact-trigger:hover,
.home-card__actions .contact-trigger:focus-visible {
  background: linear-gradient(135deg, rgba(58, 150, 128, 0.98), rgba(11, 52, 43, 0.98));
  background-position: 90% 50%;
  box-shadow:
    0 18px 34px rgba(9, 46, 35, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
}

.home-card__actions .contact-trigger:active {
  background: linear-gradient(135deg, rgba(32, 94, 79, 0.96), rgba(7, 36, 30, 0.96));
  background-position: 50% 55%;
  box-shadow:
    0 8px 18px rgba(9, 46, 35, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(0);
}

.home-highlights__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.home-highlights__subtitle {
  margin: 0 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
}

.home-highlights__list {
  list-style: none;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin: 0;
  padding: 0;
}

.home-highlight {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  padding: 18px;
  border: 1.5px solid rgba(224, 201, 158, 0.3);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 8px 18px rgba(166, 125, 64, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-highlight__heading {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.home-highlight__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
}

.home-reviews {
  gap: 20px;
}

.home-reviews__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-reviews__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.home-reviews__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.home-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.home-reviews__score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-reviews__average {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #0C2B22;
}

.home-reviews__totals {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.home-reviews__totals-label {
  opacity: 0.85;
}

.home-reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(241, 203, 107, 0.22);
  color: #0C2B22;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(241, 203, 107, 0.4);
  transition: background 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 4px 10px rgba(166, 125, 64, 0.12);
}

.home-reviews__link:hover,
.home-reviews__link:focus-visible {
  background: rgba(241, 203, 107, 0.32);
  box-shadow: 0 8px 18px rgba(166, 125, 64, 0.2);
}

.home-reviews__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0;
  padding: 4px 4px 8px;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.home-reviews__list::-webkit-scrollbar {
  display: none;
}

.home-reviews__item {
  flex: 0 0 clamp(240px, 70vw, 320px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  border: 1.5px solid rgba(224, 201, 158, 0.28);
}

.home-reviews__item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px 12px;
}

.home-reviews__author {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0C2B22;
}

.home-reviews__date {
  margin: 0;
  font-size: 13px;
  color: rgba(12, 43, 34, 0.6);
}

.home-reviews__item-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-reviews__stars {
  display: inline-flex;
  gap: 4px;
}

.home-reviews__star {
  line-height: 1;
  color: rgba(12, 43, 34, 0.25);
}

.home-reviews__stars--large .home-reviews__star {
  font-size: 22px;
}

.home-reviews__stars--compact .home-reviews__star {
  font-size: 16px;
}

.home-reviews__star--full {
  color: #F1CB6B;
}

.home-reviews__star--half {
  background: linear-gradient(
    90deg,
    #F1CB6B 0%,
    #F1CB6B 50%,
    rgba(12, 43, 34, 0.25) 50%,
    rgba(12, 43, 34, 0.25) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-reviews__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-reviews__source {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: rgba(12, 43, 34, 0.78);
  text-decoration: none;
  border-bottom: 1px dashed rgba(12, 43, 34, 0.42);
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}

.home-reviews__source:hover,
.home-reviews__source:focus-visible {
  color: #0C2B22;
  border-color: rgba(12, 43, 34, 0.72);
}

.home-reviews__empty,
.home-reviews__noscript {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.68);
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  border: 1.5px dashed rgba(224, 201, 158, 0.4);
}

.home-reviews__empty {
  flex: 0 0 100%;
  min-width: clamp(260px, 72vw, 360px);
}

.home-reviews__noscript a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
}

.home-card__footer {
  text-align: center;
}

.home-card__footer-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(12, 43, 34, 0.65);
}

.card {
  width: 100%;
  max-width: 600px;
  background: linear-gradient(
      145deg,
      rgba(39, 183, 150, 0.32),
      rgba(15, 73, 59, 0.18)
    );
  border-radius: 18px;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border: none;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  margin: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
}

.card > .hero {
  margin-bottom: -12px;
}

.home-page .card > .hero {
  margin-bottom: 0;
}

.hero__logo-link {
  display: inline-block;
  border-radius: 14px;
  text-decoration: none;
}

.hero__logo-link:focus-visible {
  outline: 3px solid rgba(12, 43, 34, 0.32);
  outline-offset: 4px;
}

.hero__logo {
  display: block;
  width: clamp(160px, 40vw, 220px);
  height: auto;
  filter: none;
  margin: 0 auto 12px;
}

.hero__divider {
  width: 400px;
  height: 3px;
  background: linear-gradient(90deg, rgba(241, 203, 107, 0) 0%, #F1CB6B 20%, #F1CB6B 80%, rgba(241, 203, 107, 0) 100%);
  border-radius: 4px;
  margin: -4px 0 4px;
}

.hero__status {
  display: inline-flex;
  margin-top: 4px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 246, 225, 0.28);
  color: #0C2B22;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.status-chip__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.status-chip__dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2E5C4A;
  position: absolute;
}

.status-chip__dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(46, 92, 74, 0.4);
  animation: status-chip-ping 1.6s ease-out infinite;
}

.status-chip--offline {
  background: rgba(12, 43, 34, 0.08);
  color: rgba(12, 43, 34, 0.8);
}

.status-chip--offline .status-chip__dot::before {
  background: #A94242;
}

.status-chip--offline .status-chip__dot::after {
  border-color: rgba(169, 66, 66, 0.4);
  animation: none;
}

.status-chip__label {
  white-space: nowrap;
}

.hero__status-note {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(12, 43, 34, 0.75);
  text-align: center;
  max-width: 320px;
}

.hero__status-note:empty {
  display: none;
}

@keyframes status-chip-ping {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.home-page .link-list {
  gap: 16px;
}

.link-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.link {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  column-gap: 12px;
  background: var(--accent);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.25px;
  border-radius: 18px;
  padding: 0 16px;
  height: 58px;
  border: 1.6px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.link::after {
  content: '';
  display: block;
  width: 40px;
  height: 0;
}

.link:hover,
.link:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 6px 16px rgba(0, 0, 0, 0.1);
  outline: none;
}

.link:active {
  transform: translateY(0);
  background: var(--accent-dark);
  box-shadow:
    inset 0 3px 6px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.08);
}

.contact-trigger {
  width: 100%;
  margin-top: 0;
  align-self: stretch;
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  column-gap: 12px;
  background: linear-gradient(135deg, #2E7A66, #0B3429);
  background-size: 180% 180%;
  background-position: 10% 50%;
  color: #F1FFF8;
  border: 1.5px solid rgba(66, 150, 128, 0.45);
  box-shadow:
    0 12px 26px rgba(8, 42, 33, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  cursor: pointer;
  user-select: none;
  transform: translateY(0);
  transition:
    transform 220ms cubic-bezier(0.18, 0.89, 0.32, 1.28),
    box-shadow 260ms ease,
    background 340ms ease,
    background-position 340ms ease,
    color 160ms ease;
}


.contact-trigger::after {
  content: none;
}

.contact-trigger:hover,
.contact-trigger:focus-visible {
  background: linear-gradient(135deg, #3A947B, #104136);
  background-position: 90% 50%;
  box-shadow:
    0 18px 34px rgba(8, 42, 33, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.contact-trigger:active {
  background: linear-gradient(135deg, #24705B, #082D23);
  background-position: 50% 55%;
  box-shadow:
    0 8px 18px rgba(8, 42, 33, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(0);
}

.contact-trigger .link__icon {
  position: static;
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: none;
  display: block;
  color: inherit;
}

.link__icon {
  width: 24px;
  height: 24px;
  color: #0C2B22;
  display: block;
  flex-shrink: 0;
}

.link__label {
  justify-self: center;
  text-align: center;
  line-height: 1.2;
}

.questions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 247, 230, 0.94);
  border-radius: 18px;
  padding: 24px;
  border: 1.6px solid rgba(0, 0, 0, 0.08);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

.questions h2 {
  color: rgba(12, 43, 34, 0.9);
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.questions .link-list {
  gap: 16px;
}

.contact-sheet {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}

.contact-sheet[aria-hidden="false"] {
  display: block;
}

.contact-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 246, 225, 0.92);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-sheet[aria-hidden="false"] .contact-sheet__backdrop {
  opacity: 1;
}

.contact-sheet__panel {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background: #FFF6E1;
  color: #0C2B22;
  border-radius: 20px 20px 0 0;
  border: 1.5px solid #E7E1CF;
  border-bottom: none;
  box-shadow: none;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 24px calc(32px + env(safe-area-inset-bottom, 0));
  max-height: min(560px, 80vh);
  overflow-y: auto;
}

.contact-sheet[aria-hidden="false"] .contact-sheet__panel {
  transform: translateY(0);
}

.call-sheet-open .contact-sheet__panel,
.call-sheet-open .contact-sheet__backdrop {
  display: none;
}

.contact-sheet.is-dragging .contact-sheet__panel {
  transition: none;
}

.contact-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-sheet__header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.contact-sheet__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(12, 43, 34, 0.15);
  background: rgba(255, 246, 225, 0.5);
  color: #0C2B22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-sheet__close:hover,
.contact-sheet__close:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  outline: none;
}

.contact-sheet__close .icon {
  width: 22px;
  height: 22px;
}

.contact-sheet__note {
  margin: -8px 0 0;
  color: rgba(12, 43, 34, 0.72);
  font-size: 14px;
  letter-spacing: 0.2px;
}

.call-sheet {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.call-sheet[aria-hidden="false"] {
  display: block;
}

.call-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 246, 225, 0.92);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.call-sheet[aria-hidden="false"] .call-sheet__backdrop {
  opacity: 1;
}

.call-sheet__panel {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background: #FFF6E1;
  color: #0C2B22;
  border-radius: 20px 20px 0 0;
  border: 1.5px solid #E7E1CF;
  border-bottom: none;
  box-shadow: none;
  padding: 28px 24px calc(32px + env(safe-area-inset-bottom, 0));
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  max-height: min(560px, 80vh);
  overflow-y: auto;
}

.call-sheet[aria-hidden="false"] .call-sheet__panel {
  transform: translateY(0);
}

.call-sheet__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.call-sheet__header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
}

.call-sheet__back {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(12, 43, 34, 0.18);
  background: rgba(255, 246, 225, 0.55);
  color: #0C2B22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-sheet__back {
  position: absolute;
  left: 0;
}

.call-sheet__back:hover,
.call-sheet__back:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  outline: none;
}

.call-sheet__back .icon {
  width: 20px;
  height: 20px;
}

.call-sheet__note {
  margin: -4px 0 12px;
  color: rgba(12, 43, 34, 0.72);
  font-size: 14px;
  letter-spacing: 0.2px;
  text-align: center;
}

.contact-sheet__actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-sheet__item--call {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-action {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  border: 1.5px solid #E7E1CF;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  background: #FFF6E1;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  user-select: none;
  width: 100%;
}

.contact-action--return {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.contact-action:hover,
.contact-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: none;
  outline: none;
  background: #FFECC0;
}

.contact-action:active {
  transform: translateY(0);
  box-shadow: none;
}


.contact-request {
  margin-top: 8px;
  padding: 24px 20px;
  border-radius: 18px;
  border: 1.5px solid #E7E1CF;
  background: #FFF6E1;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-request[hidden] {
  display: none;
}

.contact-request__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.contact-request__note {
  margin: -6px 0 8px;
  color: rgba(12, 43, 34, 0.72);
  font-size: 14px;
  letter-spacing: 0.2px;
}

.contact-request__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(12, 43, 34, 0.8);
}

.contact-request__field input,
.contact-request__field select {
  border-radius: 14px;
  border: 1.5px solid rgba(12, 43, 34, 0.15);
  padding: 10px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #FFFFFF;
  color: #0C2B22;
}

.contact-request__field input:focus,
.contact-request__field select:focus {
  outline: 2px solid rgba(241, 203, 107, 0.55);
  outline-offset: 2px;
}

.contact-request__field--slots {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-request__field--slots > legend {
  font-size: 14px;
  color: rgba(12, 43, 34, 0.8);
  font-weight: 600;
  margin-bottom: 6px;
  padding: 0;
}

.contact-request__slot-buttons {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 340px) {
  .contact-request__slot-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-request__slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1.5px solid #E7E1CF;
  background: #FFFAEF;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(12, 43, 34, 0.85);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-request__slot:hover,
.contact-request__slot:focus-within {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.12);
  background: #FFF2CC;
}

.contact-request__slot:active {
  transform: translateY(0);
}

.contact-request__slot.is-selected {
  background: #F1CB6B;
  color: #0C2B22;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(12, 43, 34, 0.15);
}

.contact-request__slot input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}


.contact-request__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.contact-request__submit {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  background: #2E5C4A;
  color: #FFF7EA;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-request__submit:hover,
.contact-request__submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: none;
  outline: none;
}

.contact-request__submit:active {
  transform: translateY(1px);
}

.contact-request__submit:disabled {
  background: rgba(12, 43, 34, 0.25);
  color: rgba(12, 43, 34, 0.55);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-request__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1.5px solid #E7E1CF;
  background: #FFF6E1;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #0C2B22;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  width: 100%;
  min-height: 54px;
}

.contact-request__back:hover,
.contact-request__back:focus-visible {
  transform: translateY(-2px);
  background: #FFECC0;
}

.contact-request__back:active {
  transform: translateY(0);
}

.contact-request__submit:disabled:hover,
.contact-request__submit:disabled:focus-visible,
.contact-request__submit:disabled:active {
  transform: none;
  box-shadow: none;
}

.contact-request__privacy {
  margin: 0;
  font-size: 12px;
  color: rgba(12, 43, 34, 0.55);
  text-align: center;
}

.contact-request__success {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #2E5C4A;
  text-align: center;
}

.contact-request__error {
  margin: 0;
  font-size: 12px;
  color: #B04832;
  text-align: center;
}

.contact-action__icon {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0C2B22;
}

.contact-action__icon .icon {
  width: 24px;
  height: 24px;
}

.contact-action__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-action__title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
}


.contact-action__meta {
  font-size: 14px;
  color: rgba(12, 43, 34, 0.7);
  margin: 0;
}

.contact-action__meta:empty {
  display: none;
}

/* Shared back button styling */
.page-back-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px clamp(26px, 5vw, 32px);
  gap: 12px;
  min-height: 52px;
  border-radius: 999px;
  border: 1.6px solid rgba(15, 52, 43, 0.24);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.036)),
    rgba(12, 43, 34, 0.06);
  color: #0C2B22;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.28px;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  line-height: 1;
  box-shadow:
    0 22px 44px -28px rgba(8, 34, 26, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.page-back-button::before {
  content: '←';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(20, 102, 80, 0.95), rgba(11, 62, 50, 0.78));
  color: #FFF6E1;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 14px 24px -16px rgba(8, 34, 26, 0.65);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-back-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 180% at 10% 50%, rgba(241, 203, 107, 0.22), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.page-back-button:hover,
.page-back-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(20, 102, 80, 0.45);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.06)),
    rgba(12, 43, 34, 0.08);
  box-shadow:
    0 26px 48px -24px rgba(8, 34, 26, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  outline: none;
}

.page-back-button:hover::before,
.page-back-button:focus-visible::before {
  transform: translateX(-2px);
  box-shadow: 0 16px 28px -16px rgba(8, 34, 26, 0.72);
}

.page-back-button:hover::after,
.page-back-button:focus-visible::after {
  opacity: 1;
}

.page-back-button:active {
  transform: translateY(0);
  box-shadow:
    0 18px 36px -22px rgba(8, 34, 26, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

@media (prefers-reduced-motion: reduce) {
  .contact-sheet__backdrop,
  .contact-sheet__panel,
  .contact-action,
  .contact-trigger,
  .contact-sheet__close,
  .call-sheet__backdrop,
  .call-sheet__panel,
  .call-sheet__close,
  .abonement-plan__action,
  .abonement-cta__action,
  .abonement-card__back,
  .page-back-button,
  .tips-action,
  .tips-master-card,
  .tips-field__copy,
  .tips-pay-button,
  .tips-copy-toast {
    transition: none;
  }

  .tips-animate,
  .page-animate {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .page-back-button::before,
  .page-back-button::after {
    transition: none;
  }
}

.info {
  max-width: 480px;
  width: 100%;
  margin-top: 32px;
  padding: 24px;
  color: #d7f1d7;
  line-height: 1.6;
}

.info h3 {
  margin-top: 0;
  color: var(--accent);
  letter-spacing: 0.5px;
}

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

@media (max-width: 520px) {
  body {
    padding: 24px 12px 60px;
  }

  .card {
    padding: 36px 18px 32px;
    border-radius: 28px;
    gap: 32px;
  }

  .link {
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 17px;
  }

  .certificate-preview {
    width: 100%;
    padding: 0;
  }

  .certificate-preview picture {
    display: block;
  }

  .certificate-preview img {
    border-radius: 18px;
    border-width: 2px;
  }

  .contact-trigger {
    position: static;
    transform: none;
    margin-top: 0;
    align-self: stretch;
  }

  .location-card__quick-nav {
    justify-content: flex-start;
    gap: 10px;
    padding-inline: 6px;
  }

  .location-quick-link {
    padding: 10px 14px;
    font-size: 13px;
  }

  .location-quick-link__label {
    white-space: nowrap;
  }

  .location-card {
    gap: 24px;
  }

  .location-card__section {
    padding: 18px;
    border-radius: 22px;
  }

  .location-card__intro {
    font-size: 14px;
  }

  .location-card__actions {
    gap: 10px;
    align-items: stretch;
  }

  .location-action {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 16px;
    width: 100%;
  }

  .location-action__icon {
    width: 40px;
    height: 40px;
  }

  .location-action__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .location-action__label {
    font-size: 15px;
  }

  .location-map {
    min-height: 220px;
  }

  .location-card__footer {
    gap: 12px;
  }

  .lozenge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .location-guides {
    gap: 12px;
  }

  .location-guide__summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 52px 16px 16px;
  }

  .location-guide__summary-text {
    font-size: 15px;
  }

  .location-guide__content {
    padding: 0 16px 16px;
    gap: 14px;
  }

  .location-guide__figure {
    padding: 10px;
  }

  .location-guide__figure figcaption {
    font-size: 12px;
  }

  .location-guide__steps {
    font-size: 13px;
    padding-left: 18px;
  }

  .location-summary {
    gap: 20px;
  }

  .location-summary__header {
    gap: 12px;
  }

  .location-summary__header-icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
  }

  .location-summary__grid {
    padding: 18px;
    gap: 16px;
  }

  .location-summary__column {
    gap: 16px;
  }

  .location-summary__facts {
    gap: 10px;
  }

  .location-summary__fact {
    padding: 12px 14px;
  }

  .location-summary__cta {
    width: 100%;
    justify-content: center;
  }

  .location-parking__actions {
    justify-content: center;
  }

  .home-card {
    gap: 28px;
  }

  .home-card__section {
    padding: 18px;
  }

  .home-card__actions {
    gap: 12px;
  }

  .home-card__actions .link {
    grid-template-columns: 44px 1fr 20px;
    padding-inline: 16px;
    min-height: 58px;
  }

  .home-card__subtitle,
  .home-card__lead {
    font-size: 14px;
  }

  .home-highlights__list {
    grid-template-columns: 1fr;
  }

  .faq-card {
    gap: 28px;
  }

  .faq-card__section {
    padding: 18px;
  }

  .faq-item__question {
    padding: 16px 50px 16px 18px;
    font-size: 14px;
  }

  .faq-item__answer {
    padding: 0 18px 18px;
    font-size: 13px;
  }

  .faq-card__footer-actions {
    flex-direction: column;
  }

  .masters-card {
    gap: 28px;
  }

  .masters-card__section {
    padding: 18px;
  }

  .masters-grid {
    grid-template-columns: 1fr;
  }

  .masters-card__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .masters-card__action {
    width: 100%;
  }

  .masters-steps {
    grid-template-columns: 1fr;
  }

  .tips-card,
  .tips-master {
    gap: 28px;
  }

  .tips-card__section,
  .tips-master__section,
  .tips-profile {
    padding: 18px;
  }

  .tips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .tips-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tips-action {
    width: 100%;
  }

  .tips-field__control {
    flex-direction: column;
    align-items: stretch;
  }

  .tips-field__copy {
    width: 100%;
  }

  .tips-card__back,
  .tips-master__back {
    width: 100%;
  }

  .certificate-cta__block {
    padding: 18px;
  }

  .certificate-cta__eyebrow {
    padding: 6px 16px;
    letter-spacing: 0.24em;
    font-size: 11px;
  }

  .certificate-abonement__action {
    width: 100%;
  }

  .certificate-card__footer {
    padding: 0 18px 20px;
  }

  .certificate-card__back {
    width: 100%;
  }

  .abonement-card {
    gap: 28px;
  }

  .abonement-card__section {
    padding: 22px 18px;
    border-radius: 26px;
  }

  .abonement-plan {
    padding: 20px 16px;
  }

  .abonement-plan__action {
    width: 100%;
  }

  .abonement-steps {
    gap: 18px;
  }

  .abonement-step {
    padding: 24px 16px 24px 60px;
  }

  .abonement-step::before {
    left: 16px;
  }

  .abonement-textures__visual {
    min-height: 140px;
  }

  .abonement-cta__actions {
    gap: 10px;
  }

  .abonement-card__back {
    width: 100%;
  }

.call-sheet__panel {
  inset-inline: 0;
  bottom: 0;
}
}

/* Floating scroll-to-top button */
.scroll-to-top {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 203, 107, 0.55);
  background: rgba(15, 52, 43, 0.35);
  color: #F1CB6B;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 999;
}

.scroll-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top:focus-visible {
  outline: 2px solid rgba(241, 203, 107, 0.85);
  outline-offset: 3px;
}

.scroll-to-top:hover {
  background: rgba(15, 52, 43, 0.55);
  box-shadow: none;
}

.scroll-to-top__icon {
  width: 22px;
  height: 22px;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-to-top {
    transition: none;
  }
}

/* Flatten modal surfaces: eliminate blur/shadow entirely */
.contact-sheet__panel,
.call-sheet__panel,
.contact-action,
.contact-request,
.contact-request__submit {
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}
