:root {
  --purple: #77379a;
  --purple-dark: #3f145d;
  --purple-ink: #2d173d;
  --purple-soft: #f1e8f6;
  --green: #77bf25;
  --green-dark: #4d8615;
  --ink: #182033;
  --muted: #647084;
  --line: #e7e9ef;
  --soft: #f6f7fa;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(34, 18, 58, 0.12);
  --shadow-soft: 0 12px 30px rgba(34, 18, 58, 0.07);
  --radius: 24px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
  font-weight: 500;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--purple-dark);
  color: var(--white);
  padding: 10px 16px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 44px rgba(20, 24, 38, 0.07);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 44px rgba(20, 24, 38, 0.07);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 7px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--purple-dark);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
}

.topbar p {
  margin: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 11px 20px;
}

.brand {
  flex: 0 0 auto;
  margin-right: auto;
}

.brand img {
  width: 145px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  color: #2d3547;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-menu a {
  white-space: nowrap;
  line-height: 1;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--purple);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--purple-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta {
  min-height: 40px;
  padding: 9px 14px;
  white-space: nowrap;
  font-size: 0.78rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid rgba(119, 55, 154, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  padding: 3px;
  color: var(--purple-dark);
  cursor: pointer;
}

.lang-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 8px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}

.lang-toggle [data-lang-option].active {
  background: var(--purple);
  color: var(--white);
}

.nav-cta,
.button-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(119, 55, 154, 0.25);
}

.button-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--purple-dark);
}

.button-outline {
  border-color: rgba(119, 55, 154, 0.24);
  background: var(--white);
  color: var(--purple-dark);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(119, 55, 154, 0.28);
}

.button:focus,
.nav a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(119, 191, 37, 0.35);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/images/hero-wheelchair-outdoors.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  filter: saturate(0.94) contrast(1.02) brightness(0.98);
}

.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(20, 12, 35, 0.72) 0%,
    rgba(20, 12, 35, 0.48) 42%,
    rgba(20, 12, 35, 0.18) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.32fr);
  gap: 56px;
  align-items: end;
  min-height: 640px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 138px 20px 54px;
}

.hero-copy {
  max-width: 680px;
  padding-left: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero h1,
.section h2,
.accommodation-card h2,
.cta-inner h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  line-height: 1.05;
  font-weight: 800;
}

.hero p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-lead {
  margin-top: 22px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.58;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-card {
  align-self: end;
  max-width: 284px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 18px;
  box-shadow: 0 18px 44px rgba(34, 18, 58, 0.14);
  backdrop-filter: blur(14px);
}

.hero-card img {
  width: 68px;
  margin-bottom: 12px;
}

.hero-card strong {
  display: block;
  color: var(--purple-dark);
  font-size: 1rem;
  line-height: 1.32;
}

.hero-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.hero-card span {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  background: #f1f8ea;
  color: var(--green-dark);
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

.section {
  padding: 104px 20px;
}

.about-section,
.why-section,
.partners-section {
  background: var(--soft);
}

.split-layout,
.section-intro,
.offer-grid,
.why-grid,
.cta-inner,
.testimonial-grid,
.partner-grid,
.contact-card,
.footer-inner,
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 84px;
  align-items: center;
}

.section-copy {
  max-width: 570px;
}

.section h2,
.accommodation-card h2,
.cta-inner h2,
.contact-card h2 {
  color: var(--purple-ink);
  font-size: clamp(2rem, 3.7vw, 3.85rem);
  line-height: 1.08;
  font-weight: 800;
}

.section-copy p,
.section-intro p,
.accommodation-card p,
.cta-inner p,
.contact-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.section-copy p + p {
  margin-top: 18px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.trust-list span,
.feature-cloud span,
.audience-chips span {
  border-radius: 999px;
  background: var(--white);
  color: var(--purple-dark);
  padding: 9px 13px;
  border: 1px solid rgba(119, 55, 154, 0.12);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
}

.provider-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.provider-stats div {
  border: 1px solid rgba(119, 55, 154, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.provider-stats strong {
  display: block;
  color: var(--purple);
  font-size: 1.65rem;
  line-height: 1;
}

.provider-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.audience-strip {
  display: grid;
  grid-template-columns: minmax(390px, 0.48fr) 1fr;
  gap: 30px;
  align-items: start;
  max-width: var(--max);
  margin: 58px auto 0;
  border: 1px solid rgba(119, 55, 154, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(24px, 3.5vw, 34px);
  box-shadow: var(--shadow-soft);
}

.audience-strip h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  line-height: 1.12;
}

.audience-strip p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-detail {
  min-width: 0;
}

.audience-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.audience-mini-grid article {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(119, 55, 154, 0.12);
  border-radius: 18px;
  background: var(--white);
  padding: 16px;
}

.audience-mini-grid svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.audience-mini-grid strong {
  color: var(--purple-dark);
  font-size: 0.9rem;
  line-height: 1.25;
}

.audience-mini-grid span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.45;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  box-shadow: var(--shadow);
  filter: saturate(0.88) contrast(1.01) brightness(1.02);
}

.floating-note {
  position: absolute;
  left: -28px;
  bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  width: min(390px, 90%);
  border-radius: 22px;
  background: var(--white);
  padding: 17px;
  box-shadow: var(--shadow-soft);
  color: var(--purple-dark);
  font-weight: 800;
  line-height: 1.45;
}

.floating-note div {
  display: grid;
  gap: 4px;
}

.floating-note strong {
  color: var(--purple-dark);
  font-size: 1rem;
  line-height: 1.2;
}

.floating-note span {
  color: #465168;
  font-size: 0.88rem;
}

.floating-note small {
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
}

.floating-note svg,
.why-item svg,
.partner-card svg {
  flex: 0 0 auto;
  color: var(--green);
}

.section-intro {
  max-width: 770px;
  text-align: center;
}

.section-intro p {
  margin: 18px auto 0;
}

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

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

@media (min-width: 1121px) {
  .offer-grid > .service-detail-card:nth-last-child(2):nth-child(4n + 1) {
    grid-column: 2;
  }
}

.offer-panel,
.service-detail-card,
.testimonial-card,
.partner-card,
.why-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.offer-panel {
  padding: clamp(28px, 4vw, 42px);
}

.service-detail-card {
  display: flex;
  flex-direction: column;
  min-height: 286px;
  padding: 24px;
}

.service-detail-card svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.service-detail-card h3 {
  margin: 18px 0 10px;
  color: var(--purple-dark);
  font-size: 1.05rem;
  line-height: 1.28;
}

.service-detail-card p {
  min-height: 84px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.service-more {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.service-more[open] {
  align-self: stretch;
}

.service-more summary {
  cursor: pointer;
  color: var(--purple);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1;
}

.service-more summary:focus {
  outline: 3px solid rgba(119, 191, 37, 0.35);
  outline-offset: 4px;
  border-radius: 8px;
}

.service-more ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.service-more li {
  position: relative;
  padding-left: 18px;
  color: #435067;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.45;
}

.service-more li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.offer-panel h3 {
  margin: 0 0 20px;
  color: var(--purple-dark);
  font-size: 1.55rem;
}

.accent-panel {
  background:
    linear-gradient(145deg, rgba(119, 191, 37, 0.12), transparent 44%),
    var(--purple-dark);
  color: var(--white);
}

.accent-panel h3,
.accent-panel .check-list li {
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #334056;
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(119, 191, 37, 0.14);
}

.transition-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) 1fr;
  gap: 34px;
  max-width: var(--max);
  margin: 28px auto 0;
  border: 1px solid rgba(119, 55, 154, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(241, 232, 246, 0.9), rgba(255, 255, 255, 0.96)),
    var(--white);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-soft);
}

.transition-panel h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
}

.transition-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.transition-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.process-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) 1fr;
  gap: 28px;
  border-top: 1px solid rgba(119, 55, 154, 0.14);
  padding-top: 28px;
}

.process-strip p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.process-list li {
  display: grid;
  gap: 10px;
  align-content: start;
  border: 1px solid rgba(119, 55, 154, 0.12);
  border-radius: 18px;
  background: var(--white);
  padding: 16px;
}

.process-list span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
}

.process-list strong {
  color: var(--purple-dark);
  font-size: 0.82rem;
  line-height: 1.42;
}

.accommodation-section {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 20px;
}

.accommodation-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(37, 16, 51, 0.38), rgba(37, 16, 51, 0.12) 56%, rgba(37, 16, 51, 0.02)),
    url("assets/images/accommodation-accessible-kitchen.jpg");
  background-size: cover;
  background-position: center;
}

.accommodation-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(32px, 4.8vw, 52px);
  box-shadow: 0 24px 62px rgba(34, 18, 58, 0.16);
  backdrop-filter: blur(12px);
}

.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.feature-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  background: #f6f2f8;
  border-color: rgba(119, 55, 154, 0.12);
}

.brand-statement {
  background:
    radial-gradient(circle at 82% 18%, rgba(119, 191, 37, 0.18), transparent 32%),
    linear-gradient(135deg, #3a1454, #673085);
  color: var(--white);
  padding: 78px 20px;
}

.brand-statement-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.brand-statement .eyebrow {
  color: #d8ffad;
}

.brand-statement h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
  line-height: 1.08;
  font-weight: 800;
}

.brand-statement p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  line-height: 1.75;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.why-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  min-height: 172px;
  padding: 26px;
}

.why-item svg {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #f2f8eb;
  padding: 11px;
}

.why-item h3 {
  margin: 0 0 8px;
  color: var(--purple-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.why-item p {
  margin: 0;
  color: #4c586d;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.6;
}

.cta-section {
  background:
    linear-gradient(90deg, rgba(37, 16, 51, 0.76), rgba(37, 16, 51, 0.54)),
    url("assets/images/cta-purple-landscape.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cta-inner h2 {
  font-size: clamp(2.3rem, 4.2vw, 4.25rem);
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-line a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(119, 55, 154, 0.14);
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  padding: 10px 16px;
  font-weight: 950;
  line-height: 1;
}

.cta-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: #f2f8eb;
  color: var(--green-dark);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.testimonial-card {
  margin: 0;
  padding: 28px;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
}

.testimonial-card cite {
  display: block;
  margin-top: 20px;
  color: var(--purple);
  font-style: normal;
  font-weight: 950;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
  border: 1px solid rgba(119, 55, 154, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.partner-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 142px;
  padding: 18px;
  text-align: left;
  color: var(--purple-dark);
  font-weight: 800;
  box-shadow: none;
}

.partner-card svg {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #f2f8eb;
  color: var(--green);
  padding: 8px;
}

.partner-card strong {
  display: block;
  color: var(--purple-dark);
  font-size: 0.96rem;
  line-height: 1.25;
}

.partner-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.55;
}

.contact-section {
  background: linear-gradient(180deg, var(--white), var(--soft));
  padding: 92px 20px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 44px;
  padding: clamp(28px, 5vw, 54px);
}

.referral-form {
  display: grid;
  gap: 14px;
}

.referral-form.is-submitting {
  opacity: 0.78;
}

.referral-form label {
  display: grid;
  gap: 7px;
  color: #394356;
  font-weight: 850;
}

.referral-form input,
.referral-form select,
.referral-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcff;
  color: var(--ink);
  padding: 14px 15px;
}

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

.referral-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.form-note.error {
  color: #b3261e;
}

.acknowledgement-section {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 20px;
}

.ack-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
}

.ack-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.ack-flags img {
  display: block;
  width: 42px !important;
  height: auto !important;
  max-width: 42px !important;
  max-height: 28px !important;
  object-fit: contain !important;
  flex-shrink: 0;
  border-radius: 3px;
  background: var(--white);
}

.ack-text {
  flex: 1;
  min-width: 280px;
}

.acknowledgement-section h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.25;
}

.acknowledgement-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  line-height: 1.5;
}

.acknowledgement-section p + p {
  margin-top: 8px;
}

.footer {
  background:
    radial-gradient(circle at 8% 0%, rgba(119, 191, 37, 0.1), transparent 30%),
    #311746;
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(160px, 0.7fr));
  gap: 46px;
  padding: 56px 20px 32px;
}

.footer-brand img {
  width: 210px;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--white);
  padding: 10px 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.footer-brand p {
  max-width: 460px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
}

.footer a,
.footer span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.country {
  margin-top: 18px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 20px 24px;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .brand img {
    width: 136px;
  }

  .nav {
    gap: 12px;
  }

  .nav-menu {
    gap: 7px;
    font-size: 0.72rem;
  }

  .nav-cta {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.74rem;
  }

  .lang-toggle span {
    min-width: 34px;
    padding: 0 7px;
    font-size: 0.72rem;
  }

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

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

@media (max-width: 960px) {
  .topbar {
    display: none;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 44px rgba(20, 24, 38, 0.08);
  }

  .nav {
    padding: 12px 18px;
  }

  .brand img {
    width: 160px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 13px 14px;
    border-radius: 14px;
  }

  .nav-menu a:hover {
    background: var(--purple-soft);
  }

  .hero-inner,
  .split-layout,
  .transition-panel,
  .process-strip,
  .audience-strip,
  .cta-inner,
  .contact-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 122px;
  }

  .hero-card {
    max-width: 420px;
  }

  .testimonial-grid,
  .why-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section .split-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .about-section .section-copy {
    position: relative;
    z-index: 2;
    max-width: none;
  }

  .about-section .image-stack {
    width: 100%;
    margin-top: 8px;
    position: relative;
    z-index: 1;
  }

  .about-section .image-stack img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .about-section .floating-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 16px 0 0;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .section,
  .contact-section {
    padding: 76px 18px;
  }

  .brand img {
    width: 150px;
  }

  .hero,
  .hero-inner {
    min-height: 740px;
  }

  .hero-inner {
    padding: 104px 18px 38px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.6rem);
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-actions,
  .button,
  .cta-actions {
    width: 100%;
  }

  .check-list.columns,
  .transition-list,
  .process-list,
  .audience-mini-grid,
  .why-grid,
  .testimonial-grid,
  .offer-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    width: auto;
    margin: -28px 18px 0;
  }

  .accommodation-section {
    align-items: end;
    min-height: 700px;
    padding: 42px 18px;
  }

  .accommodation-card {
    margin: 0;
  }

  .ack-strip {
    align-items: flex-start;
    gap: 12px;
  }

  .ack-flags img {
    width: 38px !important;
    max-width: 38px !important;
    max-height: 25px !important;
  }
}

@media (max-width: 768px) {
  .about-section .split-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    align-items: stretch !important;
  }

  .about-section .section-copy,
  .about-section .image-stack,
  .about-section .floating-note {
    position: static !important;
    transform: none !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
  }

  .about-section .section-copy {
    order: 1 !important;
    z-index: 2 !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .about-section .image-stack {
    order: 2 !important;
    margin: 24px 0 0 !important;
    z-index: 1 !important;
  }

  .about-section .image-stack img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
  }

  .about-section .floating-note {
    margin: 16px 0 0 !important;
  }
}
