﻿@import url('../vendor/fonts/fonts.css');

:root {
  --green: #004d30;
  --green-mid: #1a6645;
  --green-light: #e8f0eb;
  --green-rgb: #e6e1da;
  --brown: #4a2c10;
  --brown-hover: #3a2008;
  --ivory: #faf7f2;
  --ivory-soft: #f4ece2;
  --cream: #fffdf9;
  --wgreen: #d7e7d4;
  --tblue: #e1eef3;
  --ctaorange: #fbcdaf;
  --text-main: #1a1a18;
  --text-muted: #6b6b63;
  --text-subtle: #9a9a90;
  --border: rgba(0, 0, 0, 0.09);
  --border-brown: rgba(74, 47, 27, 0.1);
  --white: #ffffff;
  --star: #d4850a;

  --rd-bg: var(--ivory);
  --rd-bg-soft: var(--ivory-soft);
  --rd-bg-strong: var(--green);
  --rd-surface: var(--cream);
  --rd-surface-muted: #e8ded2;
  --rd-line: var(--border);
  --rd-line-dark: rgba(255, 255, 255, 0.18);
  --rd-text: var(--text-main);
  --rd-muted: var(--text-muted);
  --rd-invert: var(--cream);
  --rd-invert-muted: rgba(255, 255, 255, 0.76);
  --rd-shadow: 0 4px 20px rgba(26, 26, 24, 0.07);
  --rd-shadow-lg: 0 22px 60px rgba(40, 25, 8, 0.14);
  --rd-radius-sm: 8px;
  --rd-radius-md: 12px;
  --rd-radius: 16px;
  --rd-radius-xl: 20px;
  --rd-shell: 1180px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--rd-bg);
  color: var(--rd-text);
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-menu-active="home"] {
  padding-top: 72px;
}

body.rd-modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.rd-home {
  overflow: hidden;
}

.rd-shell {
  width: min(var(--rd-shell), calc(100% - 32px));
  margin: 0 auto;
}

.rd-shell--narrow {
  width: min(860px, calc(100% - 32px));
}

.rd-section {
  padding: clamp(64px, 8vw, 112px) 0;
  scroll-margin-top: 88px;
}

.rd-section--light {
  background: var(--rd-bg-soft);
}

.rd-section--dark {
  background: var(--rd-bg-strong);
  color: var(--rd-invert);
}

.rd-section--pain {
  max-width: 100vw;
  overflow: hidden;
  background: var(--rd-bg);
}

.rd-section--pain .rd-shell {
  width: min(var(--rd-shell), calc(100% - 32px));
  max-width: calc(100vw - 32px);
}

.rd-pain-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: clamp(28px, 6vw, 88px);
  margin-bottom: clamp(30px, 4.5vw, 52px);
  color: var(--rd-text);
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.rd-pain-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(72px, 10vw, 132px);
  line-height: 0.88;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.rd-pain-head__copy {
  display: grid;
  gap: 12px;
  max-width: 420px;
  border-left: 2px solid var(--border-brown);
  padding-left: 24px;
}

.rd-pain-head__copy p {
  margin-bottom: 0;
  color: var(--rd-muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.5;
}

.rd-pain-head__copy strong {
  color: var(--rd-text);
  font-weight: 820;
}

.rd-section--gallery {
  background: linear-gradient(180deg, var(--ivory), var(--ivory-soft));
}

.rd-section--reviews {
  padding-bottom: clamp(80px, 8vw, 120px);
}

.rd-section-head {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.rd-section-head--duo {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: clamp(26px, 5vw, 72px);
  margin-bottom: clamp(30px, 4.5vw, 48px);
  text-align: left;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.rd-section-head--duo h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: 0.9;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.rd-section-head__copy {
  display: grid;
  gap: 10px;
  max-width: 420px;
  border-left: 2px solid var(--border-brown);
  padding-left: 22px;
}

.rd-section-head__copy p {
  margin-bottom: 0;
  color: var(--rd-muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.5;
}

.rd-section-head__copy strong {
  color: var(--rd-text);
  font-weight: 820;
}

.rd-section-head__copy .rd-button {
  width: max-content;
  margin-top: 8px;
}

.rd-section-head--left {
  margin-left: 0;
  text-align: left;
}

.rd-section-head--split {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.rd-section-head--split > div {
  width: min(760px, 100%);
}

.rd-section-head--invert {
  color: var(--rd-invert);
}

.rd-eyebrow {
  margin: 0 0 12px;
  color: var(--rd-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rd-section-head--invert .rd-eyebrow,
.rd-hero .rd-eyebrow {
  color: var(--rd-invert-muted);
}

.rd-home h1,
.rd-home h2,
.rd-home h3,
.rd-home p {
  margin-top: 0;
  overflow-wrap: break-word;
}

.rd-home h1,
.rd-home h2 {
  font-family: 'Charis SIL', Georgia, serif;
  letter-spacing: -0.02em;
}

.rd-home h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--rd-invert);
  font-size: clamp(38px, 7vw, 86px);
  line-height: 1;
  font-weight: 700;
  text-wrap: balance;
}

.rd-home h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.05;
  font-weight: 700;
}

.rd-home h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.rd-home .rd-pain-head,
.rd-home .rd-pain-head h2,
.rd-home .rd-section-head--duo,
.rd-home .rd-section-head--duo h2 {
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.rd-home .rd-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 0.96;
}

.rd-home .rd-pain-head h2 {
  max-width: 760px;
  font-size: clamp(72px, 10vw, 132px);
  line-height: 0.88;
}

.rd-home .rd-section-head--duo h2 {
  max-width: 760px;
  font-size: clamp(52px, 7.2vw, 96px);
  line-height: 0.9;
}

.rd-section-head p,
.rd-hero__lead {
  color: var(--rd-muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.55;
}

.rd-section-head--invert p,
.rd-hero__lead {
  color: var(--rd-invert-muted);
}

.rd-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--rd-radius);
  padding: 0 26px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.16s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rd-button:hover,
.rd-button:focus-visible {
  transform: translateY(-1px);
}

.rd-button--light {
  background: var(--cream);
  color: var(--rd-text);
  box-shadow: var(--rd-shadow);
}

.rd-button--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: var(--rd-invert);
  backdrop-filter: blur(8px);
}

.rd-button--dark {
  background: var(--brown);
  color: var(--rd-invert);
}

.rd-button--dark:hover,
.rd-button--dark:focus-visible {
  background: var(--brown-hover);
}

.rd-tag {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  border: 1px solid var(--rd-line);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.7);
  color: #4a4438;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rd-hero {
  position: relative;
  display: grid;
  min-height: min(760px, 82svh);
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  background: #2a2018;
  box-shadow: var(--rd-shadow-lg);
}

.rd-hero__picture,
.rd-hero__picture img,
.rd-hero__shade {
  position: absolute;
  inset: 0;
}

.rd-hero__picture {
  z-index: -2;
}

.rd-hero__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.rd-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(30, 18, 8, 0.82), rgba(30, 18, 8, 0.34) 58%, rgba(30, 18, 8, 0.05)),
    linear-gradient(0deg, rgba(20, 12, 4, 0.78), transparent 52%);
}

.rd-hero__content {
  width: min(960px, 100%);
  align-self: end;
  padding-bottom: clamp(76px, 9vw, 124px);
}

.rd-hero__lead {
  width: min(660px, 100%);
  margin-bottom: 28px;
}

.rd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rd-hero__guides {
  position: absolute;
  right: clamp(18px, 5vw, 56px);
  bottom: clamp(20px, 4vw, 44px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rd-guide-chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--rd-line-dark);
  border-radius: 100px;
  padding: 7px 12px 7px 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--rd-invert);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.rd-guide-chip__avatar {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--brown);
  font-family: 'Charis SIL', Georgia, serif;
  font-weight: 700;
}

.rd-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, 118px);
  grid-auto-flow: dense;
  gap: 14px;
}

.rd-bento__item {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  background: var(--ivory-soft);
  box-shadow: var(--rd-shadow);
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rd-bento__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--rd-shadow-lg);
}

.rd-bento__item--l {
  grid-column: span 6;
  grid-row: span 4;
}

.rd-bento__item--m {
  grid-column: span 6;
  grid-row: span 2;
}

.rd-bento__item--s {
  grid-column: span 3;
  grid-row: span 2;
}

.rd-bento__item--xs {
  grid-column: span 3;
  grid-row: span 1;
}

.rd-bento__item--excursions {
  grid-column: 1 / span 6;
  grid-row: 1 / span 4;
}

.rd-bento__item--transfer {
  grid-column: 7 / span 6;
  grid-row: 1 / span 2;
}

.rd-bento__item--airport {
  grid-column: 7 / span 3;
  grid-row: 3 / span 2;
}

.rd-bento__item--helicopter {
  grid-column: 10 / span 3;
  grid-row: 3 / span 2;
}

.rd-bento__item--plan {
  grid-column: 1 / span 3;
  grid-row: 5 / span 2;
}

.rd-bento__item--events-agent {
  grid-column: 4 / span 3;
  grid-row: 5 / span 2;
}

.rd-bento__item--carnival {
  grid-column: 7 / span 3;
  grid-row: 5 / span 1;
}

.rd-bento__item--photoshoot {
  grid-column: 10 / span 3;
  grid-row: 5 / span 1;
}

.rd-bento__item--consult {
  grid-column: 7 / span 3;
  grid-row: 6 / span 1;
}

.rd-bento__item--translator {
  grid-column: 10 / span 3;
  grid-row: 6 / span 1;
}

.rd-bento__item img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-bento__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.05), rgba(250, 247, 242, 0.92) 70%);
}

.rd-bento__item > div {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.rd-bento__item--l > div,
.rd-bento__item--m > div {
  padding: clamp(24px, 3vw, 34px);
}

.rd-bento__item--xs > div {
  padding: 16px;
}

.rd-bento__item--xs .rd-tag {
  margin-bottom: 8px;
}

.rd-bento__item--l h3 {
  max-width: 520px;
  font-size: clamp(32px, 4vw, 52px);
}

.rd-bento__item--m h3 {
  max-width: 620px;
  font-size: clamp(28px, 3vw, 38px);
}

.rd-bento__item--s h3 {
  font-size: clamp(21px, 2vw, 26px);
}

.rd-bento__item--xs h3 {
  margin-bottom: 0;
  font-size: clamp(17px, 1.7vw, 21px);
}

.rd-bento__item h3,
.rd-service-banner h3,
.rd-tour-card h3,
.rd-team-card h3,
.rd-feature-grid h3,
.rd-review-card__top h3,
.rd-event-card__title,
.rd-faq summary {
  font-family: 'Charis SIL', Georgia, serif;
  letter-spacing: -0.01em;
}

.rd-bento__item p,
.rd-tour-card p,
.rd-service-banner p,
.rd-feature-grid p,
.rd-team-card p,
.rd-review-card p,
.rd-pain-card p {
  margin-bottom: 0;
  color: var(--rd-muted);
  line-height: 1.5;
}

.rd-services-tilt {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(34px, 4.5vw, 58px);
  padding: clamp(18px, 2.8vw, 34px) clamp(8px, 1.5vw, 18px);
  min-width: 0;
}

.rd-services-tilt-card {
  --rd-service-bg: var(--rd-surface);
  --rd-service-text: var(--rd-text);
  --rd-service-title: var(--rd-text);
  --rd-service-accent: var(--rd-muted);
  --rd-service-icon-bg: var(--rd-bg-soft);
  --rd-service-icon-color: var(--rd-muted);
  --rd-service-border: var(--rd-line);
  --rd-card-rotate: 0deg;
  --rd-card-content-rotate: var(--rd-card-rotate);
  --rd-card-lift: 0px;
  position: relative;
  min-width: 0;
  min-height: clamp(360px, 31vw, 430px);
  overflow: hidden;
  border: 1px solid var(--rd-service-border);
  border-radius: var(--rd-radius-xl);
  background: var(--rd-service-bg);
  color: var(--rd-service-text);
  box-shadow: none;
  transform: translateY(var(--rd-card-lift)) rotateZ(var(--rd-card-rotate));
}

.rd-services-tilt-card--warm {
  --rd-service-bg: #efe1d0;
  --rd-service-text: #4a3220;
  --rd-service-title: #3a2310;
  --rd-service-accent: #a57b5b;
  --rd-service-icon-bg: rgba(165, 123, 91, 0.15);
  --rd-service-icon-color: #8b5e38;
  --rd-card-rotate: -1.8deg;
  --rd-card-lift: 14px;
}

.rd-services-tilt-card--rose {
  --rd-service-bg: #f0cecd;
  --rd-service-text: #5a2e2e;
  --rd-service-title: #4a2020;
  --rd-service-accent: #c07070;
  --rd-service-icon-bg: rgba(192, 112, 112, 0.15);
  --rd-service-icon-color: #a05050;
  --rd-card-rotate: 2.2deg;
  --rd-card-lift: -18px;
}

.rd-services-tilt-card--sky {
  --rd-service-bg: #b4c6db;
  --rd-service-text: #1e3a52;
  --rd-service-title: #12293c;
  --rd-service-accent: #4a729a;
  --rd-service-icon-bg: rgba(74, 114, 154, 0.18);
  --rd-service-icon-color: #2a5278;
  --rd-card-rotate: -0.7deg;
  --rd-card-lift: 8px;
}

.rd-services-tilt-card--neutral {
  --rd-service-bg: var(--cream);
  --rd-service-text: var(--rd-muted);
  --rd-service-title: var(--rd-text);
  --rd-service-accent: var(--rd-muted);
  --rd-service-icon-bg: var(--rd-bg-soft);
  --rd-service-icon-color: var(--rd-muted);
  --rd-service-border: var(--rd-line);
  --rd-card-rotate: 1.7deg;
  --rd-card-lift: -14px;
}

.rd-services-tilt-card__head,
.rd-services-tilt-card__divider,
.rd-services-list {
  position: relative;
  z-index: 1;
  transform: rotateZ(calc(var(--rd-card-content-rotate) * -1));
}

.rd-services-tilt-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px 15px;
  transform-origin: left top;
}

.rd-services-tilt-card__title {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rd-services-tilt-card__number {
  color: var(--rd-service-accent);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.1em;
}

.rd-services-tilt-card h3 {
  margin-bottom: 0;
  color: var(--rd-service-title);
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.rd-services-tilt-card__icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--rd-service-accent);
  font-size: 24px;
  line-height: 1;
  opacity: 0.5;
}

.rd-services-tilt-card__divider {
  height: 1px;
  margin: 0 22px;
  background: currentColor;
  opacity: 0.18;
  transform-origin: left center;
}

.rd-services-tilt-card--neutral .rd-services-tilt-card__divider {
  background: var(--rd-line);
  opacity: 1;
}

.rd-services-list {
  display: grid;
  gap: 0;
  padding: 4px 0 8px;
  transform-origin: left top;
}

.rd-services-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 22px;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s ease;
}

.rd-services-list__item:hover,
.rd-services-list__item:focus-visible {
  background: rgba(0, 0, 0, 0.04);
}

.rd-services-list__item:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}

.rd-services-list__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 8px;
  background: var(--rd-service-icon-bg);
  color: var(--rd-service-icon-color);
  font-size: 16px;
  line-height: 1;
}

.rd-services-list__text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.rd-services-list__text strong {
  color: var(--rd-service-title);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.rd-services-list__text span {
  color: var(--rd-service-text);
  font-size: 12px;
  line-height: 1.45;
  opacity: 0.65;
  overflow-wrap: anywhere;
}

.rd-section--segments {
  background: var(--rd-bg);
}

.rd-segments-head h2 span {
  display: block;
  color: var(--rd-muted);
}

.rd-segments-head h2 {
  letter-spacing: 0;
}

.rd-segments {
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.rd-segment-card {
  --rd-segment-bg: #efe1d0;
  --rd-segment-text: #2f3031;
  --rd-segment-border: rgba(74, 47, 27, 0.12);
  --rd-segment-answer-bg: rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  margin-top: -10px;
  border: 1px solid var(--rd-segment-border);
  border-radius: var(--rd-radius-xl);
  background: var(--rd-segment-bg);
  color: var(--rd-segment-text);
  box-shadow: var(--rd-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, margin 0.2s ease;
}

.rd-segment-card:first-child {
  margin-top: 0;
}

.rd-segment-card:hover {
  z-index: 3;
  transform: translateY(-2px);
  box-shadow: var(--rd-shadow-lg);
}

.rd-segment-card.is-open {
  z-index: 5;
  margin-top: 12px;
  margin-bottom: 12px;
}

.rd-segment-card:first-child.is-open {
  margin-top: 0;
}

.rd-segment-card:last-child.is-open {
  margin-bottom: 0;
}

.rd-segment-card--deep {
  --rd-segment-bg: #efe1d0;
  --rd-segment-text: #2f3031;
}

.rd-segment-card--calm {
  --rd-segment-bg: #f0cecd;
  --rd-segment-text: #2f3031;
}

.rd-segment-card--solo {
  --rd-segment-bg: #b4c6db;
  --rd-segment-text: #25313a;
}

.rd-segment-card--group {
  --rd-segment-bg: #a57b5b;
  --rd-segment-text: #fffdf9;
  --rd-segment-border: rgba(74, 47, 27, 0.18);
  --rd-segment-answer-bg: rgba(255, 255, 255, 0.13);
}

.rd-segment-card__button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 26px);
  align-items: start;
  border: 0;
  padding: clamp(22px, 3.3vw, 36px);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.rd-segment-card__summary {
  min-width: 0;
}

.rd-segment-card__number {
  display: block;
  margin-bottom: 12px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  opacity: 0.58;
  text-transform: uppercase;
}

.rd-segment-card__name {
  display: block;
  max-width: 860px;
  font-family: 'Charis SIL', Georgia, serif;
  font-size: clamp(34px, 5.6vw, 62px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

.rd-segment-card__type {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 10px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  opacity: 0.66;
  text-transform: uppercase;
}

.rd-segment-card__desc {
  display: block;
  max-width: 640px;
  margin-top: 14px;
  color: currentColor;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  opacity: 0.78;
}

.rd-segment-card__mark {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  font-size: 23px;
  line-height: 1;
  opacity: 0.5;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.rd-segment-card.is-open .rd-segment-card__mark {
  transform: rotate(45deg);
  opacity: 0.78;
}

.rd-segment-card__body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.36s ease, opacity 0.22s ease;
}

.rd-segment-card.is-open .rd-segment-card__body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.rd-segment-card__body-inner {
  overflow: hidden;
}

.rd-segment-card__content {
  padding: 0 clamp(22px, 3.3vw, 36px) clamp(22px, 3.3vw, 36px);
}

.rd-segment-card__line {
  height: 1px;
  margin-bottom: clamp(18px, 2vw, 24px);
  background: currentColor;
  opacity: 0.16;
}

.rd-segment-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(16px, 2.4vw, 24px);
  align-items: stretch;
}

.rd-segment-card__mini-title {
  margin-bottom: 12px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  opacity: 0.58;
  text-transform: uppercase;
}

.rd-segment-card__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rd-segment-card__list li {
  min-height: 100%;
  border: 1px solid currentColor;
  border-radius: var(--rd-radius-md);
  padding: 12px 13px;
  color: currentColor;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.84;
}

.rd-segment-card__answer {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--rd-radius);
  padding: clamp(18px, 2vw, 22px);
  background: var(--rd-segment-answer-bg);
}

.rd-segment-card__answer p {
  margin-bottom: 0;
  color: currentColor;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.52;
}

.rd-segment-card__tag {
  margin-top: 18px;
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  opacity: 0.62;
  text-transform: uppercase;
}

.rd-segments-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  color: var(--rd-muted);
}

.rd-segments-footer p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--rd-muted);
  font-size: 15px;
  line-height: 1.5;
}

.rd-pain-grid {
  min-width: 0;
  width: 100%;
  max-width: calc(100vw - 32px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  background: var(--rd-line);
  box-shadow: var(--rd-shadow);
}

.rd-pain-card {
  position: relative;
  min-width: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 2.4vw, 30px);
  background: var(--rd-surface);
}

.rd-pain-card::before {
  content: none;
}

.rd-pain-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.rd-pain-card__number {
  color: var(--text-muted);
  font-size: 12px;
  font-family: 'Charis SIL', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.rd-pain-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius-md);
  background: var(--rd-bg-soft);
  color: var(--text-muted);
}

.rd-pain-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.rd-pain-card__body {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.rd-pain-card h3 {
  margin-bottom: 0;
  color: var(--rd-text);
  font-family: 'Charis SIL', Georgia, serif;
  letter-spacing: -0.01em;
  font-size: clamp(30px, 2.35vw, 36px);
  line-height: 0.95;
}

.rd-pain-card .rd-pain-card__subtitle {
  color: var(--rd-text);
  font-size: 16px;
  font-weight: 820;
  line-height: 1.18;
}

.rd-pain-card p {
  color: var(--rd-muted);
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.rd-pain-tilt {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(38px, 5vw, 68px);
  padding: clamp(18px, 2.8vw, 34px) clamp(8px, 1.5vw, 18px);
}

.rd-pain-tilt-card {
  --rd-card-bg: var(--rd-surface);
  --rd-card-rotate: 0deg;
  --rd-card-content-rotate: var(--rd-card-rotate);
  --rd-card-lift: 0px;
  position: relative;
  min-height: clamp(360px, 31vw, 430px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius-xl);
  padding: clamp(24px, 2.4vw, 34px);
  background: var(--rd-card-bg);
  box-shadow: none;
  transform: translateY(var(--rd-card-lift)) rotateZ(var(--rd-card-rotate));
  transition: none;
}

.rd-pain-tilt-card--language {
  --rd-card-bg: #e9e4dc;
  --rd-card-rotate: -1.8deg;
  --rd-card-lift: 14px;
}

.rd-pain-tilt-card--place {
  --rd-card-bg: var(--wgreen);
  --rd-card-rotate: 2.2deg;
  --rd-card-lift: -18px;
}

.rd-pain-tilt-card--time {
  --rd-card-bg: #e9e4dc;
  --rd-card-rotate: -0.7deg;
  --rd-card-lift: 8px;
}

.rd-pain-tilt-card--price {
  --rd-card-bg: var(--wgreen);
  --rd-card-rotate: 1.7deg;
  --rd-card-lift: -14px;
}

.rd-pain-tilt-card__number {
  position: absolute;
  z-index: 2;
  top: clamp(20px, 2vw, 28px);
  left: clamp(20px, 2vw, 28px);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(26, 26, 24, 0.06);
  color: var(--rd-text);
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transform: rotateZ(calc(var(--rd-card-content-rotate) * -1));
}

.rd-pain-tilt-card__art {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  pointer-events: none;
}

.rd-pain-tilt-card__body {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  gap: 8px;
  transform: rotateZ(calc(var(--rd-card-content-rotate) * -1));
  transform-origin: left bottom;
}

.rd-pain-tilt-card h3 {
  margin-bottom: 0;
  color: var(--rd-text);
  font-family: 'Charis SIL', Georgia, serif;
  font-size: clamp(27px, 2.35vw, 36px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.rd-pain-tilt-card--place h3 {
  font-size: clamp(24px, 1.9vw, 30px);
}

.rd-pain-tilt-card .rd-pain-tilt-card__subtitle {
  margin-bottom: 0;
  color: var(--rd-text);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.18;
}

.rd-pain-tilt-card p {
  margin-bottom: 0;
  color: rgba(26, 26, 24, 0.74);
  font-size: 15px;
  line-height: 1.5;
}

.rd-tour-layout {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.rd-quick-services {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.rd-service-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  background: var(--rd-surface);
  box-shadow: var(--rd-shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rd-service-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--rd-shadow-lg);
}

.rd-service-banner--heli,
.rd-service-banner--transfer {
  grid-column: span 3;
}

.rd-service-banner img,
.rd-service-banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.rd-service-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0.02), rgba(250, 247, 242, 0.93) 72%);
}

.rd-service-banner > div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.rd-tour-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rd-tour-card,
.rd-team-card,
.rd-review-card,
.rd-feature-grid article {
  overflow: hidden;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  background: var(--rd-surface);
  box-shadow: var(--rd-shadow);
}

.rd-tour-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rd-tour-card > div,
.rd-team-card > div,
.rd-review-card {
  padding: 20px;
}

.rd-why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 24px;
}

.rd-why__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.rd-why__stats div {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  padding: 18px;
  background: var(--rd-surface);
  box-shadow: var(--rd-shadow);
}

.rd-why__stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  font-family: 'Charis SIL', Georgia, serif;
  font-weight: 700;
}

.rd-why__stats span {
  color: var(--rd-muted);
  font-size: 14px;
}

.rd-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rd-feature-grid article {
  padding: 22px;
}

.rd-faq {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.rd-faq details {
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  background: var(--rd-surface);
  box-shadow: var(--rd-shadow);
}

.rd-faq summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

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

.rd-faq summary::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.rd-faq details[open] summary::after {
  content: "-";
}

.rd-faq details p {
  margin: -4px 20px 20px;
  color: var(--rd-muted);
  line-height: 1.55;
}

.rd-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
}

.rd-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--rd-radius);
  background: var(--rd-surface-muted);
  box-shadow: var(--rd-shadow);
}

.rd-gallery__item--tall {
  grid-row: span 2;
}

.rd-gallery__item--wide {
  grid-column: span 2;
}

.rd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-section--feedback {
  background: var(--rd-bg-soft);
}

.rd-feedback-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}

.rd-feedback-copy {
  position: sticky;
  top: 104px;
  max-width: 500px;
}

.rd-feedback-copy h2 {
  margin: 0;
  color: var(--rd-text);
  font-size: clamp(54px, 7.4vw, 96px);
  line-height: 0.9;
}

.rd-feedback-copy p:last-child {
  max-width: 420px;
  margin: 24px 0 0;
  color: var(--rd-muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.5;
}

.rd-feedback-form {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 0;
  border: 1px solid rgba(0, 77, 48, 0.14);
  border-top: 5px solid var(--green-mid);
  border-radius: var(--rd-radius);
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--rd-shadow-lg);
}

.rd-feedback-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  pointer-events: none;
}

.rd-feedback-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rd-feedback-field {
  display: grid;
  gap: 8px;
}

.rd-feedback-field label {
  color: var(--rd-text);
  font-size: 14px;
  font-weight: 780;
}

.rd-feedback-field input,
.rd-feedback-field textarea {
  width: 100%;
  border: 1px solid rgba(74, 47, 27, 0.16);
  border-radius: calc(var(--rd-radius-sm) - 2px);
  padding: 13px 14px;
  background: var(--white);
  color: var(--rd-text);
  font: inherit;
  line-height: 1.35;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.rd-feedback-field textarea {
  min-height: 140px;
  resize: vertical;
}

.rd-feedback-field input:focus,
.rd-feedback-field textarea:focus {
  outline: 0;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 4px rgba(26, 102, 69, 0.14);
}

.rd-feedback-field.is-invalid input,
.rd-feedback-field.is-invalid textarea {
  border-color: #c2483b;
  background: #fff8f6;
}

.rd-feedback-note {
  margin: -2px 0 0;
  color: var(--rd-muted);
  font-size: 13px;
  line-height: 1.45;
}

.rd-feedback-status {
  min-height: 22px;
  color: var(--rd-muted);
  font-size: 14px;
  line-height: 1.5;
}

.rd-feedback-status--success {
  color: var(--green-mid);
}

.rd-feedback-status--error {
  color: #c2483b;
}

.rd-feedback-submit {
  width: fit-content;
  min-width: 180px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--rd-radius);
  padding: 0 24px;
  background: var(--green);
  color: var(--rd-invert);
  cursor: pointer;
  font: inherit;
  font-weight: 820;
  box-shadow: 0 14px 34px rgba(0, 77, 48, 0.18);
  transition: transform 160ms ease, background 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.rd-feedback-submit i {
  font-size: 20px;
}

.rd-feedback-submit:hover:not(:disabled),
.rd-feedback-submit:focus-visible:not(:disabled) {
  background: var(--green-mid);
  box-shadow: 0 18px 42px rgba(0, 77, 48, 0.22);
  transform: translateY(-1px);
}

.rd-feedback-submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.rd-events-panel {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.rd-events-panel__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 16px;
}

.rd-events-nav {
  display: flex;
  gap: 10px;
}

.rd-events-nav__btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--rd-text);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  box-shadow: var(--rd-shadow);
}

.rd-events-nav__btn:hover,
.rd-events-nav__btn:focus-visible {
  background: var(--rd-surface-muted);
}

.rd-events-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 188px;
  gap: 18px;
  overflow-x: auto;
  margin-right: -16px;
  padding: 2px 16px 18px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.rd-events-rail::-webkit-scrollbar {
  display: none;
}

.rd-events-empty {
  margin: 0;
  color: var(--rd-muted);
}

.rd-event-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--rd-text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  scroll-snap-align: start;
}

.rd-event-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--rd-radius);
  background: var(--rd-surface-muted);
  box-shadow: var(--rd-shadow);
}

.rd-event-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.rd-event-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rd-event-card__date {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--rd-surface);
  color: var(--rd-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.rd-event-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.18;
}

.rd-event-card__place {
  color: var(--rd-muted);
  font-size: 15px;
  line-height: 1.25;
}

.rd-event-card__price {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.rd-event-card__price::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
  border-radius: 2px;
  background: var(--green-mid);
  transform: skewX(-14deg);
  vertical-align: -1px;
}

.rd-events-all {
  display: flex;
  width: min(430px, 100%);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin: 22px auto 0;
  border-radius: var(--rd-radius);
  background: var(--brown);
  font-size: 17px;
  color: var(--cream);
  font-weight: 700;
  box-shadow: var(--rd-shadow);
  text-decoration: none;
}

.rd-events-all:hover,
.rd-events-all:focus-visible {
  background: var(--brown-hover);
}

.rd-event-card p {
  margin-bottom: 16px;
  color: var(--rd-muted);
  line-height: 1.45;
}

.rd-team-grid,
.rd-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rd-team-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

#team {
  --ink: #3d3d3d;
  --muted: #9d9d9d;
  --link: #1774aa;
  --placeholder: #bdbdbd;
  --like: #ee5061;
  --shadow: 0 18px 50px rgba(54, 46, 35, 0.14);
}

#team .section-intro {
  margin: 0;
  color: #555;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

#team .guides-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 403px));
  justify-content: center;
  align-items: start;
  gap: 42px;
  font-family: Arial, Helvetica, sans-serif;
}

#team .guides-grid button {
  font: inherit;
}

#team .guide-stack {
  display: grid;
  gap: 18px;
}

#team .guide-post-shell {
  width: min(100%, 403px);
  justify-self: center;
  filter: drop-shadow(var(--shadow));
}

#team .guide-bio {
  display: block;
  padding: 0 8px;
  text-decoration: none;
}

#team .avatar-button:focus-visible,
#team .photo-button:focus-visible,
#team .profile-text:focus-visible,
#team .guide-bio:focus-visible {
  outline: 3px solid var(--link);
  outline-offset: 6px;
}

#team .guide-bio h2 {
  margin: 0 0 8px;
  color: #2e2e2e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

#team .guide-bio p {
  margin: 0;
  color: #565656;
  font-size: 16px;
  line-height: 1.48;
}

#team .guide-post {
  width: 100%;
  aspect-ratio: 403 / 566;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 0;
}

#team .post-header {
  height: 60px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 15px;
  padding: 17px 22px 9px;
}

#team .avatar-button,
#team .photo-button {
  display: block;
  padding: 0;
  border: 0;
  appearance: none;
  cursor: pointer;
  background: transparent;
}

#team .avatar-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  outline-offset: 4px;
}

#team .avatar-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--placeholder);
}

#team .profile-text {
  min-width: 0;
  align-self: center;
  line-height: 1.15;
  text-decoration: none;
}

#team .nickname {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#team .location {
  display: block;
  margin-top: 1px;
  color: var(--ink);
  font-size: 12px;
}

#team .more-button {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

#team .more-button::before {
  width: 20px;
  height: 4px;
  content: "";
  transform: translateX(2px);
  background:
    radial-gradient(circle at 3px 50%, currentColor 1.9px, transparent 2px),
    radial-gradient(circle at 10px 50%, currentColor 1.9px, transparent 2px),
    radial-gradient(circle at 17px 50%, currentColor 1.9px, transparent 2px);
}

#team .photo-button {
  width: calc(100% - 48px);
  margin: 0 24px;
  aspect-ratio: 1;
  overflow: hidden;
  outline-offset: 4px;
  background: var(--placeholder);
}

#team .post-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--placeholder);
}

#team .post-actions {
  height: 48px;
  display: grid;
  grid-template-columns: 34px 34px 38px minmax(0, 1fr) 34px;
  align-items: center;
  column-gap: 14px;
  padding: 10px 22px 7px;
}

#team .icon-button {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

#team .icon-button img {
  display: block;
  max-width: 29px;
  max-height: 26px;
}

#team .like-button {
  color: var(--like);
}

#team .like-icon {
  width: 27px;
  height: 23px;
  display: block;
  overflow: visible;
}

#team .heart-shape {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
  transition: fill 180ms ease, stroke 180ms ease, transform 180ms ease;
  transform-origin: center;
}

#team .like-button[aria-pressed="false"] {
  color: var(--ink);
}

#team .like-button[aria-pressed="false"] .heart-shape {
  fill: transparent;
  stroke-width: 1.8px;
}

#team .like-button:active .heart-shape {
  transform: scale(0.9);
}

#team .slider {
  width: 59px;
  height: 8px;
  justify-self: center;
}

#team .save-button {
  justify-self: end;
}

#team .post-meta {
  padding: 0 22px 18px;
  font-size: 13px;
  line-height: 1.32;
}

#team .views {
  margin: 0 0 2px;
  color: var(--ink);
}

#team .caption-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
}

#team .caption {
  overflow: hidden;
  margin: 0;
  color: var(--ink);
  white-space: nowrap;
  text-overflow: ellipsis;
}

#team .tag {
  color: var(--link);
  text-decoration: none;
}

#team .comments,
#team .date {
  margin: 2px 0 0;
  color: var(--muted);
}

#team .date {
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 740px) {
  #team .section-intro {
    font-size: 16px;
  }

  #team .guides-grid {
    grid-template-columns: minmax(260px, 403px);
    align-items: start;
    gap: 30px;
  }
}

@media (max-width: 460px) {
  #team .guide-stack {
    gap: 14px;
  }

  #team .guide-post-shell {
    width: min(100%, 403px);
  }

  #team .guide-bio {
    width: calc(100% - 32px);
    margin: 0 auto 18px;
    padding: 0;
  }
}

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

.rd-review-carousel {
  min-width: 0;
}

.rd-review-carousel__viewport {
  overflow: hidden;
  margin: -8px;
  padding: 8px;
}

.rd-review-carousel__rail {
  display: grid;
  grid-auto-columns: calc((100% - 28px) / 3);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.rd-review-carousel__rail::-webkit-scrollbar {
  display: none;
}

.rd-review-carousel .rd-review-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-snap-align: start;
}

.rd-review-card--loading {
  align-items: center;
  justify-content: center;
  color: var(--rd-muted);
  font-weight: 700;
}

.rd-review-card__media {
  overflow: hidden;
  margin: -8px -8px 0;
  border-radius: calc(var(--rd-radius) - 8px);
  background: var(--rd-bg-soft);
}

.rd-review-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.rd-review-card__source {
  color: var(--rd-muted);
  font-size: 13px;
  font-weight: 700;
}

.rd-review-card__text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.rd-review-card__link {
  width: fit-content;
  margin-top: auto;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.rd-review-card__link:hover,
.rd-review-card__link:focus-visible {
  color: var(--brown);
}

.rd-review-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.rd-review-carousel__button {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--rd-line);
  border-radius: 50%;
  background: var(--rd-surface);
  color: var(--rd-text);
  box-shadow: var(--rd-shadow);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.rd-review-carousel__button:hover,
.rd-review-carousel__button:focus-visible {
  color: var(--green);
  box-shadow: var(--rd-shadow-lg);
  transform: translateY(-2px);
}

.rd-review-carousel__button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.rd-review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rd-review-carousel .rd-review-card__top {
  margin-bottom: 0;
}

.rd-review-card__top > div {
  min-width: 0;
}

.rd-review-card__top img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.rd-review-card__top h3 {
  margin-bottom: 3px;
  font-size: 18px;
}

.rd-review-card__top p {
  font-size: 13px;
}

.rd-stars {
  margin-bottom: 14px;
  color: var(--star);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.rd-event-modal[hidden] {
  display: none;
}

.rd-event-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.rd-event-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.rd-event-modal__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(720px, calc(100svh - 40px));
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  overflow: hidden;
  border-radius: var(--rd-radius);
  background: var(--rd-surface);
  box-shadow: var(--rd-shadow-lg);
}

.rd-event-modal__panel > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.rd-event-modal__content {
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
}

.rd-event-modal__content h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.rd-event-modal__content p {
  color: var(--rd-muted);
  line-height: 1.55;
}

.rd-event-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rd-line);
  border-radius: 50%;
  background: var(--rd-surface);
  color: var(--rd-text);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.rd-event-modal__meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 16px;
  margin: 24px 0;
  color: var(--rd-text);
}

.rd-event-modal__meta dt {
  color: var(--rd-muted);
  font-weight: 800;
}

.rd-event-modal__meta dd {
  margin: 0;
}

.rd-event-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.rd-event-modal__tags span {
  border: 1px solid var(--rd-line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--rd-muted);
  font-size: 13px;
}

.home-footer-fallback {
  padding: 48px 20px;
  background: var(--green-rgb);
  color: var(--text-muted);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 980px) {
  .rd-pain-grid,
  .rd-tour-grid,
  .rd-feature-grid,
  .rd-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rd-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 118px;
  }

  .rd-bento__item--l {
    grid-column: span 6;
    grid-row: span 3;
  }

  .rd-bento__item--m {
    grid-column: span 6;
    grid-row: span 2;
  }

  .rd-bento__item--s {
    grid-column: span 3;
    grid-row: span 2;
  }

  .rd-bento__item--xs {
    grid-column: span 3;
    grid-row: span 1;
  }

  .rd-review-carousel__rail {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .rd-services-tilt {
    max-width: 640px;
    grid-template-columns: 1fr;
    row-gap: 64px;
    margin-right: auto;
    margin-left: auto;
  }

  .rd-services-tilt-card {
    min-height: 0;
  }

  .rd-pain-grid {
    gap: 1px;
  }

  .rd-pain-tilt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .rd-pain-tilt-card {
    min-height: 360px;
  }

  .rd-service-banner--heli,
  .rd-service-banner--transfer {
    grid-column: 1 / -1;
  }

  .rd-why {
    grid-template-columns: 1fr;
  }

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

  .rd-feedback-layout {
    grid-template-columns: 1fr;
  }

  .rd-feedback-copy {
    position: static;
    max-width: 720px;
  }

  .rd-feedback-copy p:last-child {
    max-width: 560px;
  }
}

@media (max-width: 860px) {
  body[data-menu-active="home"] {
    padding-top: 64px;
  }
}

@media (max-width: 760px) {
  .rd-shell,
  .rd-shell--narrow {
    width: min(var(--rd-shell), calc(100% - 24px));
  }

  .rd-section--pain .rd-shell {
    width: auto;
    max-width: calc(100vw - 24px);
    margin-right: 12px;
    margin-left: 12px;
  }

  .rd-pain-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 24px;
  }

  .rd-home .rd-pain-head h2 {
    max-width: 366px;
    font-size: clamp(54px, 15vw, 60px);
    line-height: 0.88;
  }

  .rd-pain-head__copy {
    max-width: 336px;
    border-top: 1px solid var(--rd-line);
    border-left: 0;
    padding-top: 16px;
    padding-left: 0;
  }

  .rd-pain-head__copy p {
    font-size: 16px;
  }

  .rd-section {
    padding: 56px 0;
    scroll-margin-top: 76px;
  }

  .rd-section-head,
  .rd-section-head--left,
  .rd-section-head--split {
    max-width: calc(100vw - 48px);
    margin-bottom: 24px;
    text-align: left;
  }

  .rd-section-head p {
    max-width: 330px;
  }

  .rd-section-head--duo {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .rd-home .rd-section-head--duo h2 {
    max-width: 360px;
    font-size: clamp(44px, 13vw, 56px);
    line-height: 0.94;
  }

  .rd-section-head__copy {
    max-width: 336px;
    border-top: 1px solid var(--rd-line);
    border-left: 0;
    padding-top: 14px;
    padding-left: 0;
  }

  .rd-section-head--duo .rd-section-head__copy p {
    max-width: none;
    font-size: 16px;
  }

  .rd-segment-card {
    margin-top: -7px;
    border-radius: var(--rd-radius);
  }

  .rd-segment-card.is-open {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .rd-segment-card__button {
    gap: 14px;
    padding: 20px;
  }

  .rd-segment-card__name {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 0.96;
  }

  .rd-segment-card__desc {
    font-size: 14px;
  }

  .rd-segment-card__mark {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .rd-segment-card__content {
    padding: 0 20px 20px;
  }

  .rd-segment-card__grid,
  .rd-segment-card__list {
    grid-template-columns: 1fr;
  }

  .rd-segment-card__list li,
  .rd-segment-card__answer p,
  .rd-segments-footer p {
    font-size: 13px;
  }

  .rd-segment-card__answer {
    padding: 16px;
  }

  .rd-segments-footer {
    align-items: stretch;
  }

  .rd-segments-footer .rd-button {
    width: 100%;
  }

  .rd-section-head--split {
    display: grid;
    gap: 14px;
  }

  .rd-hero {
    min-height: min(680px, 82svh);
    padding: 24px 18px;
  }

  .rd-home h1 {
    max-width: 322px;
    font-size: clamp(30px, 8vw, 32px);
    line-height: 1.04;
    text-wrap: balance;
  }

  .rd-hero__lead {
    max-width: 330px;
    font-size: 16px;
  }

  .rd-hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.86)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent);
  }

  .rd-hero__content {
    padding-bottom: 146px;
  }

  .rd-hero__actions,
  .rd-button {
    width: 100%;
  }

  .rd-hero__actions {
    position: absolute;
    right: 18px;
    bottom: 24px;
    left: 18px;
    width: auto;
  }

  .rd-hero__actions .rd-button[href="#services"] {
    display: none;
  }

  .rd-hero__guides {
    right: 18px;
    left: 18px;
    width: calc(100% - 36px);
    flex-direction: column;
    justify-content: flex-start;
  }

  .rd-guide-chip {
    width: auto;
    flex: none;
    min-width: 0;
  }

  .rd-pain-grid,
  .rd-tour-layout,
  .rd-tour-grid,
  .rd-feature-grid,
  .rd-team-grid,
  .rd-review-grid {
    grid-template-columns: 1fr;
  }

  .rd-pain-tilt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
    padding: 10px 0 14px;
  }

  .rd-pain-tilt-card {
    --rd-card-lift: 0px;
    --rd-card-content-rotate: calc(var(--rd-card-rotate) * 0.45);
    min-height: 350px;
    border-radius: var(--rd-radius);
    padding: 18px 12px;
    transform: rotateZ(calc(var(--rd-card-rotate) * 0.45));
  }

  .rd-pain-tilt-card__number {
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .rd-pain-tilt-card__art {
    top: 0;
    width: 100%;
  }

  .rd-pain-tilt-card__body {
    gap: 5px;
  }

  .rd-pain-tilt-card h3 {
    font-size: clamp(20px, 5.4vw, 22px);
    line-height: 1;
  }

  .rd-pain-tilt-card--place h3 {
    font-size: clamp(18px, 4.8vw, 20px);
  }

  .rd-pain-tilt-card .rd-pain-tilt-card__subtitle {
    font-size: 12px;
    line-height: 1.12;
  }

  .rd-pain-tilt-card p {
    font-size: 12px;
    line-height: 1.35;
  }

  .rd-services-tilt {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
    padding: 10px 0 14px;
  }

  .rd-services-tilt-card {
    --rd-card-lift: 0px;
    --rd-card-content-rotate: calc(var(--rd-card-rotate) * 0.45);
    min-height: 0;
    border-radius: var(--rd-radius);
    transform: rotateZ(calc(var(--rd-card-rotate) * 0.45));
  }

  .rd-services-tilt-card__head {
    gap: 10px;
    padding: 14px 12px 10px;
  }

  .rd-services-tilt-card__number {
    font-size: 9px;
    line-height: 1.25;
  }

  .rd-services-tilt-card h3 {
    font-size: 15px;
    line-height: 1.14;
  }

  .rd-services-tilt-card__icon {
    font-size: 19px;
  }

  .rd-services-tilt-card__divider {
    margin: 0 12px;
  }

  .rd-services-list {
    padding: 3px 0 8px;
  }

  .rd-services-list__item {
    gap: 8px;
    padding: 9px 12px;
  }

  .rd-services-list__icon {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    font-size: 13px;
  }

  .rd-services-list__text strong {
    font-size: 11px;
    line-height: 1.22;
  }

  .rd-services-list__text span {
    font-size: 10px;
    line-height: 1.35;
  }

  .rd-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 112px;
  }

  .rd-bento__item--l {
    grid-column: span 2;
    grid-row: span 3;
  }

  .rd-bento__item--m {
    grid-column: span 2;
    grid-row: span 2;
  }

  .rd-bento__item--s {
    grid-column: span 2;
    grid-row: span 2;
  }

  .rd-bento__item--xs {
    grid-column: span 1;
    grid-row: span 1;
  }

  .rd-service-banner--heli,
  .rd-service-banner--transfer {
    grid-column: auto;
  }

  .rd-bento__item {
    min-height: 0;
  }

  .rd-bento__item > div {
    padding: 18px;
  }

  .rd-bento__item--xs > div {
    padding: 12px;
  }

  .rd-bento__item--xs .rd-tag {
    display: none;
  }

  .rd-bento__item--l h3,
  .rd-bento__item--m h3,
  .rd-bento__item--s h3 {
    font-size: 22px;
  }

  .rd-bento__item--xs h3 {
    font-size: 16px;
  }

  .rd-pain-card {
    min-height: 218px;
    gap: 24px;
    padding: 22px;
  }

  .rd-pain-card__icon {
    width: 38px;
    height: 38px;
  }

  .rd-section-head--invert h2 {
    max-width: 340px;
    font-size: 29px;
    line-height: 1.08;
  }

  .rd-pain-card h3 {
    font-size: 36px;
  }

  .rd-pain-card p {
    font-size: 14px;
  }

  .rd-pain-card .rd-pain-card__subtitle {
    font-size: 15px;
  }

  .rd-why__stats {
    grid-template-columns: 1fr;
  }

  .rd-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .rd-gallery__item--tall,
  .rd-gallery__item--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .rd-section--feedback {
    background: var(--rd-bg-soft);
  }

  .rd-feedback-copy h2 {
    max-width: 340px;
    font-size: clamp(46px, 13vw, 58px);
  }

  .rd-feedback-copy p:last-child {
    max-width: 336px;
    margin-top: 16px;
    font-size: 16px;
  }

  .rd-feedback-form {
    gap: 16px;
    border-radius: var(--rd-radius-sm);
    padding: 20px;
  }

  .rd-feedback-row {
    grid-template-columns: 1fr;
  }

  .rd-feedback-field textarea {
    min-height: 128px;
  }

  .rd-feedback-submit {
    width: 100%;
  }

  .rd-events-panel {
    padding: 0;
  }

  .rd-events-panel__head {
    margin-bottom: 0;
  }

  .rd-events-nav {
    display: none;
  }

  .rd-events-rail {
    grid-auto-columns: 128px;
    gap: 12px;
    margin-right: -12px;
    padding-right: 12px;
    padding-bottom: 8px;
  }

  .rd-event-card {
    gap: 8px;
  }

  .rd-event-card__title {
    font-size: 14px;
  }

  .rd-event-card__place {
    font-size: 13px;
  }

  .rd-event-card__price {
    font-size: 13px;
  }

  .rd-events-all {
    min-height: 48px;
    margin-top: 12px;
    font-size: 15px;
  }

  .rd-event-modal__panel {
    max-height: calc(100svh - 24px);
    grid-template-columns: 1fr;
  }

  .rd-event-modal__panel > img {
    height: 230px;
    min-height: 230px;
  }

  .rd-event-modal__content {
    max-height: calc(100svh - 254px);
  }
}

@media (max-width: 559px) {
  .rd-review-carousel__viewport {
    margin: -8px -2px;
    padding: 8px 2px;
  }

  .rd-review-carousel__rail {
    grid-auto-columns: calc(100% - 4px);
  }

  .rd-review-carousel__controls {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .rd-services-tilt {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 8px 0 10px;
  }

  .rd-services-tilt-card {
    --rd-card-content-rotate: calc(var(--rd-card-rotate) * 0.35);
    transform: translateY(var(--rd-card-lift)) rotateZ(calc(var(--rd-card-rotate) * 0.35));
  }

  .rd-services-tilt-card--warm {
    --rd-card-lift: 4px;
  }

  .rd-services-tilt-card--rose {
    --rd-card-lift: -4px;
  }

  .rd-services-tilt-card--sky {
    --rd-card-lift: 3px;
  }

  .rd-services-tilt-card--neutral {
    --rd-card-lift: -3px;
  }

  .rd-services-tilt-card__head {
    padding: 16px 16px 12px;
  }

  .rd-services-tilt-card__number {
    font-size: 10px;
  }

  .rd-services-tilt-card h3 {
    font-size: 17px;
    line-height: 1.18;
  }

  .rd-services-tilt-card__divider {
    margin: 0 16px;
  }

  .rd-services-list__item {
    padding: 10px 16px;
  }

  .rd-services-list__text strong {
    font-size: 13px;
    line-height: 1.28;
  }

  .rd-services-list__text span {
    font-size: 11px;
    line-height: 1.42;
  }
}

/* Trust section */
.rd-trust {
  background: var(--rd-bg-soft);
}

.rd-trust .rd-shell {
  overflow: visible;
}

.rd-trust__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: clamp(26px, 5vw, 72px);
  margin-bottom: clamp(30px, 4.5vw, 48px);
}

.rd-trust__title {
  max-width: 760px;
  margin: 0;
  color: #1a1714;
  font-family: 'Charis SIL', Georgia, 'Times New Roman', serif;
  font-size: clamp(52px, 7.2vw, 96px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.rd-trust__title-group p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #7a6f63;
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.rd-trust__copy {
  max-width: 720px;
  border-left: 2px solid var(--border-brown);
  padding-left: 22px;
}

.rd-trust__copy p {
  margin: 0;
  color: #7a6f63;
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
}

.rd-trust__copy strong {
  color: #1a1714;
  font-weight: 820;
}

.rd-trust__bento {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, auto) auto;
  gap: 14px;
}

.rd-trust-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.rd-trust-card--cream {
  border: 0.5px solid rgba(0, 0, 0, 0.07);
  background: #fff;
}

.rd-trust-card__media {
  overflow: hidden;
  background: #3a3028;
}

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

.rd-trust-card__media--varlamov,
.rd-trust-card__media--blogger {
  width: 100%;
  height: 280px;
}

.rd-trust-card__body {
  padding: 18px 20px 20px;
}

.rd-trust-card__tag {
  display: block;
  color: #a0917f;
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rd-trust-card__title {
  margin: 0;
  color: #1a1714;
  font-family: 'Charis SIL', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.rd-trust-card__text {
  margin: 0;
  color: #8a7d6f;
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.rd-trust-card__foreign-note {
  margin: 7px 0 12px;
  color: #b7afa6;
  font-family: 'Pobeda', Impact, 'Arial Narrow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.rd-trust-card__link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  margin-top: 12px;
  color: #9a7552;
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.rd-trust-card__link:hover {
  color: #6f5036;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rd-trust-card__link:focus-visible {
  border-radius: 4px;
  outline: 2px solid #9a7552;
  outline-offset: 3px;
}

.rd-trust-card__tag + .rd-trust-card__title {
  margin-top: 8px;
}

.rd-trust-card__title + .rd-trust-card__text {
  margin-top: 12px;
}

.rd-trust-card__foreign-note + .rd-trust-card__text {
  margin-top: 0;
}

.rd-trust-card__text + .rd-trust-card__text {
  margin-top: 8px;
}

.rd-trust__blogger {
  grid-column: 1;
  grid-row: 1 / 3;
}

.rd-trust__blogger-nav {
  grid-column: 1;
  grid-row: 3;
  align-self: start;
  justify-self: center;
}

.rd-trust-card--tv {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-column: 2 / 4;
}

.rd-trust-card--dozhd {
  grid-row: 1;
}

.rd-trust-card--rtp {
  grid-row: 2;
}

.rd-trust-card--tv .rd-trust-card__body {
  padding: 20px;
}

.rd-trust-card--tv .rd-trust-card__title {
  font-size: 15px;
}

.rd-trust-card__media--tv {
  width: clamp(300px, 40%, 370px);
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  background: #2a2622;
}

.rd-trust-card__media--tv img {
  object-fit: contain;
}

.rd-trust-blogger-stack {
  position: relative;
  z-index: 2;
}

.rd-trust-blogger-stack__stage {
  display: grid;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.rd-trust-blogger-card {
  grid-area: 1 / 1;
  min-width: 0;
  transition: transform 260ms ease, opacity 220ms ease, box-shadow 260ms ease;
  will-change: transform;
}

.rd-trust-blogger-card.is-active {
  z-index: 3;
  transform: translate(0, 0) rotate(0deg);
  box-shadow: none;
  pointer-events: auto;
}

.rd-trust-blogger-card.is-next {
  z-index: 2;
  transform: translate(12px, 8px) rotate(2.5deg);
  box-shadow: 0 12px 28px rgba(26, 23, 20, 0.06);
  cursor: pointer;
}

.rd-trust-blogger-card.is-next:hover {
  transform: translate(14px, 7px) rotate(2.5deg);
}

.rd-trust-blogger-card.is-hidden {
  z-index: 1;
  opacity: 0;
  transform: translate(18px, 10px) rotate(4deg);
  pointer-events: none;
}

.rd-trust-blogger-card--future {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 0.5px solid rgba(164, 98, 99, 0.16);
  background: #f0cecd;
}

.rd-trust-blogger-card--future .rd-trust-card__body {
  flex: 1;
}

.rd-trust-blogger-card__visual {
  display: flex;
  height: 280px;
  align-items: flex-end;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.rd-trust-blogger-card__label {
  margin: 0;
  color: #3a3430;
  font-family: 'Charis SIL', Georgia, 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.rd-trust-blogger-stack__indicators {
  display: grid;
  grid-template-columns: repeat(var(--rd-trust-indicator-count, 2), minmax(0, 1fr));
  width: min(258px, 72%);
  height: 28px;
  align-items: center;
  gap: var(--rd-trust-indicator-gap, 40px);
  margin: 18px auto 0;
}

.rd-trust-blogger-stack__indicator {
  width: 100%;
  min-width: 0;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(165, 123, 91, 0.4);
  color: #ffffff;
  cursor: pointer;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  transition: background-color 180ms ease;
}

.rd-trust-blogger-stack__indicator.is-active {
  background: #a57b5b;
}

.rd-trust-blogger-stack__indicator:focus-visible {
  outline: 2px solid #9a7552;
  outline-offset: 4px;
}

.rd-trust__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.rd-trust-fact {
  min-height: 220px;
  padding: 22px;
  border-radius: 16px;
}

.rd-trust-fact__icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
}

.rd-trust-fact__icon i {
  font-size: 18px;
}

.rd-trust-fact__title {
  margin: 0;
  color: #1a1714;
  font-family: 'Charis SIL', Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.rd-trust-fact__text {
  margin: 0;
  font-family: 'Inter', "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.rd-trust-fact__title + .rd-trust-fact__text {
  margin-top: 9px;
}

.rd-trust-fact__text + .rd-trust-fact__text {
  margin-top: 12px;
}

.rd-trust-fact--peach {
  border: 0.5px solid rgba(165, 123, 91, 0.18);
  background: #efe1d0;
}

.rd-trust-fact--peach .rd-trust-fact__icon {
  background: rgba(165, 123, 91, 0.12);
}

.rd-trust-fact--peach .rd-trust-fact__icon i {
  color: #a57b5b;
}

.rd-trust-fact--peach .rd-trust-fact__text {
  color: #806f63;
}

.rd-trust-fact--blue {
  border: 0.5px solid rgba(73, 103, 135, 0.18);
  background: #b4c6db;
}

.rd-trust-fact--blue .rd-trust-fact__icon {
  background: rgba(255, 255, 255, 0.25);
}

.rd-trust-fact--blue .rd-trust-fact__icon i,
.rd-trust-fact--blue .rd-trust-fact__text {
  color: #4f6379;
}

.rd-trust-fact--pink {
  border: 0.5px solid rgba(164, 98, 99, 0.16);
  background: #f0cecd;
}

.rd-trust-fact--pink .rd-trust-fact__icon {
  background: rgba(164, 98, 99, 0.12);
}

.rd-trust-fact--pink .rd-trust-fact__icon i {
  color: #a46263;
}

.rd-trust-fact--pink .rd-trust-fact__text {
  color: #7d6261;
}

.rd-trust-fact--white {
  border: 0.5px solid rgba(0, 0, 0, 0.07);
  background: #fff;
}

.rd-trust-fact--white .rd-trust-fact__icon {
  background: #efe1d0;
}

.rd-trust-fact--white .rd-trust-fact__icon i {
  color: #a57b5b;
}

.rd-trust-fact--white .rd-trust-fact__text {
  color: #8a7d6f;
}

@media (max-width: 980px) {
  .rd-trust__bento {
    grid-template-columns: 1fr;
  }

  .rd-trust__blogger,
  .rd-trust__blogger-nav,
  .rd-trust-card--tv {
    grid-column: auto;
    grid-row: auto;
  }

  .rd-trust-card__media--varlamov,
  .rd-trust-card__media--blogger,
  .rd-trust-blogger-card__visual {
    height: 360px;
  }

  .rd-trust-card--tv {
    flex-direction: row;
  }

  .rd-trust-card__media--tv {
    width: min(46%, 430px);
  }
}

@media (max-width: 620px) {
  .rd-trust__head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 1.5rem;
  }

  .rd-trust__title {
    max-width: 360px;
    font-size: clamp(44px, 13vw, 56px);
    line-height: 0.94;
  }

  .rd-trust__title-group p {
    max-width: 336px;
    margin-top: 14px;
    font-size: 16px;
  }

  .rd-trust__copy {
    max-width: 336px;
    border-top: 1px solid var(--rd-line);
    border-left: 0;
    padding-top: 14px;
    padding-left: 0;
  }

  .rd-trust__copy p {
    font-size: 16px;
  }

  .rd-trust__facts {
    grid-template-columns: 1fr;
  }

  .rd-trust-card--tv {
    display: block;
  }

  .rd-trust-card__media--varlamov,
  .rd-trust-card__media--blogger,
  .rd-trust-blogger-card__visual {
    height: 300px;
  }

  .rd-trust-card__media--tv {
    width: 100%;
  }

  .rd-trust-blogger-card.is-next {
    transform: translate(7px, 7px) rotate(1.8deg);
  }

  .rd-trust-blogger-card.is-next:hover {
    transform: translate(8px, 7px) rotate(1.8deg);
  }

  .rd-trust-card,
  .rd-trust-fact {
    border-radius: 12px;
  }

  .rd-trust-fact {
    min-height: 0;
  }
}

@media (max-width: 380px) {
  .rd-trust__title {
    font-size: 40px;
  }

  .rd-trust-card__media--varlamov,
  .rd-trust-card__media--blogger,
  .rd-trust-blogger-card__visual {
    height: 210px;
  }

  .rd-trust-card__body,
  .rd-trust-fact {
    padding: 16px;
  }
}

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