@font-face {
  font-family: "Onest";
  src: url("/assets/fonts/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

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

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

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

:root {
  color-scheme: light;
  --ink: oklch(23% 0.045 264);
  --ink-soft: oklch(43% 0.035 264);
  --navy: oklch(27% 0.085 263);
  --navy-deep: oklch(20% 0.075 263);
  --coral: oklch(66% 0.215 29);
  --coral-deep: oklch(57% 0.225 28);
  --orange: oklch(76% 0.18 55);
  --sun: oklch(88% 0.18 93);
  --sun-soft: oklch(95% 0.08 99);
  --sky: oklch(84% 0.105 222);
  --sky-soft: oklch(95% 0.035 225);
  --pink: oklch(78% 0.13 350);
  --paper: oklch(99% 0.006 95);
  --paper-warm: oklch(97.5% 0.019 87);
  --line: oklch(88% 0.018 255);
  --white: #fff;
  --success: oklch(52% 0.145 150);
  --danger: oklch(54% 0.2 25);
  --shadow: 0 22px 70px oklch(20% 0.06 264 / 0.13);
  --shadow-small: 0 10px 30px oklch(20% 0.06 264 / 0.1);
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Onest", Arial, sans-serif;
  --radius-small: 8px;
  --radius: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 720;
  line-height: 1.07;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6.2vw, 6.25rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
}

p {
  max-width: 68ch;
}

address {
  font-style: normal;
}

::selection {
  background: var(--sun);
  color: var(--navy-deep);
}

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 820px);
}

.section {
  padding-block: clamp(76px, 10vw, 144px);
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.58;
}

.section-kicker,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--coral-deep);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::before,
.hero-kicker::before {
  width: 22px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

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

.sr-only,
.hp-field {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 11px;
  font-weight: 790;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-small);
}

.button:active {
  transform: translateY(0);
}

.button--small {
  min-height: 44px;
  padding: 9px 16px;
  font-size: 0.91rem;
}

.button--sun {
  border-color: var(--sun);
  background: var(--sun);
  color: var(--navy-deep);
}

.button--coral {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--white);
}

.button--navy {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button--ghost-light {
  border-color: rgb(255 255 255 / 0.6);
  background: transparent;
  color: var(--white);
}

.button--ghost-light:hover {
  background: var(--white);
  color: var(--navy);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral-deep);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  font-size: 1.5em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.utility-bar {
  min-height: 34px;
  background: var(--navy-deep);
  color: oklch(92% 0.02 235);
  font-size: 0.77rem;
  font-weight: 650;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner a {
  color: var(--white);
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(20 35 65 / 0.08);
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 8px 28px rgb(20 35 65 / 0.05);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--sun);
}

.brand-sun {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--coral);
}

.brand-route {
  position: absolute;
  right: -6px;
  bottom: 7px;
  width: 42px;
  height: 18px;
  transform: rotate(-17deg);
  border: 4px solid var(--navy);
  border-top: 0;
  border-left-color: transparent;
  border-radius: 0 0 50% 50%;
}

.brand-route::after {
  position: absolute;
  right: -3px;
  bottom: -5px;
  width: 0;
  height: 0;
  transform: rotate(-35deg);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--navy);
  content: "";
}

.brand-copy {
  display: grid;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.brand-copy b:last-child {
  color: var(--coral);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 27px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 720;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  background: var(--coral);
  content: "";
  transition: transform 170ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-phone {
  display: none;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 0;
  border-radius: 10px;
  background: var(--paper-warm);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin-block: 5px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 180ms ease;
}

.breadcrumbs {
  padding-block: 18px;
  font-size: 0.82rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  color: var(--coral);
  content: "/";
}

.breadcrumbs a {
  color: var(--ink-soft);
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 112px));
  overflow: hidden;
  background: var(--coral);
  isolation: isolate;
}

.hero-grid {
  display: grid;
  min-height: min(790px, calc(100vh - 112px));
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: 32px;
}

.hero-copy {
  z-index: 2;
  padding-block: 74px;
}

.hero-copy h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(3.25rem, 6.7vw, 7.3rem);
}

.hero-copy p {
  max-width: 610px;
  color: rgb(255 255 255 / 0.92);
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
}

.hero-kicker {
  color: var(--sun);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 650px;
}

.hero-julia {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: -5%;
  width: min(67%, 425px);
  max-height: 101%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 26px 24px rgb(72 24 15 / 0.22));
  animation: character-arrive 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-sun {
  position: absolute;
  z-index: 1;
  top: 15%;
  right: -3%;
  width: min(45vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  animation: sun-pulse 7s ease-in-out infinite;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  right: 2%;
  bottom: 14%;
  display: grid;
  width: 126px;
  aspect-ratio: 1;
  place-content: center;
  transform: rotate(8deg);
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-family: var(--display);
  font-size: 0.88rem;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow-small);
}

.hero-stamp b:last-child {
  color: var(--coral);
}

.hero-shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero-shape--one {
  top: -15%;
  left: -7%;
  width: 36vw;
  height: 36vw;
  transform: rotate(20deg);
  border: 58px solid rgb(255 255 255 / 0.07);
  border-radius: 50%;
}

.hero-shape--two {
  right: 33%;
  bottom: -120px;
  width: 220px;
  height: 420px;
  transform: rotate(28deg);
  border-radius: 110px;
  background: rgb(255 255 255 / 0.08);
}

.quick-search {
  position: relative;
  z-index: 6;
  padding-block: 42px 46px;
  background: var(--sun);
}

.quick-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
}

.quick-title-row h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.quick-title-row p {
  margin-bottom: 6px;
}

.quick-form {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 0.85fr 1fr auto;
  align-items: end;
  gap: 8px;
}

.quick-form > label:not(.quick-consent) {
  display: grid;
  gap: 6px;
}

.quick-form > label > span {
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.quick-form input:not([type="hidden"]):not([type="checkbox"]) {
  width: 100%;
  min-height: 53px;
  padding: 12px 13px;
  border: 2px solid transparent;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
}

.quick-form input:focus {
  border-color: var(--navy);
  outline: none;
}

.quick-consent {
  grid-column: 1 / -2;
  align-self: center;
  padding-top: 7px;
  font-size: 0.78rem;
}

.quick-consent input {
  margin-right: 7px;
  accent-color: var(--navy);
}

.quick-form .form-status {
  grid-column: 1 / -1;
}

.personal-section {
  background: var(--paper);
}

.personal-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.personal-photo {
  position: relative;
  max-width: 510px;
}

.personal-photo > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 14px 14px;
  object-fit: cover;
  object-position: 50% 42%;
  box-shadow: var(--shadow);
}

.photo-caption {
  position: absolute;
  right: -35px;
  bottom: 35px;
  display: grid;
  min-width: 210px;
  padding: 16px 20px;
  transform: rotate(-3deg);
  border: 2px solid var(--sun);
  border-radius: var(--radius-small);
  background: var(--navy);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--sun);
}

.photo-caption b {
  font-family: var(--display);
}

.photo-caption span {
  color: var(--sky);
  font-size: 0.84rem;
}

.personal-copy h2 {
  max-width: 780px;
}

.plain-features {
  display: grid;
  margin-block: 35px;
  border-top: 1px solid var(--line);
}

.plain-features article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 17px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.plain-features article > span {
  color: var(--coral);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 720;
}

.plain-features p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.directions-section {
  overflow: hidden;
  background: var(--navy-deep);
}

.directions-section h2,
.directions-section h3 {
  color: var(--white);
}

.stacked-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 46px;
}

.stacked-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.stacked-heading p {
  max-width: 500px;
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.directions-section .stacked-heading p {
  color: oklch(82% 0.025 240);
}

.direction-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-template-rows: 265px 265px;
  gap: 13px;
}

.direction {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 230ms ease,
    box-shadow 230ms ease;
}

.direction:hover {
  z-index: 2;
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: var(--shadow);
}

.direction--turkey {
  grid-row: 1 / 3;
  background: var(--coral);
  color: var(--white);
}

.direction--turkey h3 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

.direction--turkey p {
  color: rgb(255 255 255 / 0.84);
}

.direction--egypt {
  background: var(--sky);
}

.direction--thailand {
  grid-column: 3;
  grid-row: 1 / 3;
  background: var(--sun);
}

.direction--thailand h3 {
  font-size: clamp(1.7rem, 3vw, 3.5rem);
}

.direction--family {
  position: relative;
  color: var(--white);
}

.direction--family::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(17 28 54 / 0.87), transparent 68%);
  content: "";
}

.direction--family img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
}

.direction--family div {
  z-index: 1;
  margin-top: auto;
}

.direction-code {
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.direction h3 {
  margin-bottom: 8px;
}

.direction p {
  margin-bottom: 0;
  line-height: 1.5;
}

.direction-arrow {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 1.8rem;
}

.support-section {
  background: var(--paper-warm);
}

.support-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.45fr;
  gap: clamp(55px, 8vw, 120px);
}

.journey-line {
  position: relative;
  display: grid;
  gap: 0;
}

.journey-line::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 8px;
  width: 3px;
  border-radius: 3px;
  background: var(--line);
  content: "";
}

.journey-line article {
  position: relative;
  padding: 0 0 36px 46px;
}

.journey-line article::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 4px solid var(--paper-warm);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 2px var(--coral);
  content: "";
}

.journey-line article:nth-child(2)::before {
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}

.journey-line article:nth-child(3)::before {
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.journey-line article > span {
  color: var(--coral-deep);
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journey-line p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.social-section {
  padding-block: clamp(64px, 8vw, 105px);
  background: var(--sky);
}

.social-section--light {
  background: var(--paper-warm);
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.social-ticket {
  position: relative;
  display: grid;
  min-height: 155px;
  place-items: center;
  gap: 12px;
  padding: 20px 12px;
  overflow: hidden;
  border: 2px solid rgb(255 255 255 / 0.9);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-small);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.social-ticket::before,
.social-ticket::after {
  position: absolute;
  top: 50%;
  width: 16px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--sky);
  content: "";
}

.social-section--light .social-ticket::before,
.social-section--light .social-ticket::after {
  background: var(--paper-warm);
}

.social-ticket::before {
  left: -9px;
}

.social-ticket::after {
  right: -9px;
}

.social-ticket:hover {
  z-index: 2;
  transform: translateY(-5px) rotate(-1.5deg);
  box-shadow: var(--shadow);
}

.social-ticket:nth-child(2):hover {
  transform: translateY(-5px) rotate(1.5deg);
}

.social-glyph {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-soft);
}

.social-glyph img {
  width: 29px;
  height: 29px;
}

.social-ticket--telegram .social-glyph {
  background: #27a7e7;
}

.social-ticket--instagram .social-glyph {
  background: linear-gradient(135deg, #f9ce34 4%, #ee2a7b 47%, #6228d7 96%);
}

.social-glyph--max {
  overflow: hidden;
  background: var(--sun-soft);
}

.social-glyph--max img {
  width: 49px;
  height: 49px;
  object-fit: contain;
}

.social-ticket--telegram {
  border-bottom: 7px solid oklch(68% 0.14 234);
}

.social-ticket--max {
  border-bottom: 7px solid var(--sun);
}

.social-ticket--instagram {
  border-bottom: 7px solid var(--pink);
}

.social-name {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 720;
}

.social-links--compact {
  display: flex;
  grid-template-columns: none;
  gap: 8px;
}

.social-links--compact .social-ticket {
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.social-links--compact .social-ticket::before,
.social-links--compact .social-ticket::after,
.social-links--compact .social-name {
  display: none;
}

.social-links--compact .social-glyph {
  width: 44px;
  height: 44px;
}

.social-links--compact .social-glyph img {
  width: 23px;
  height: 23px;
}

.social-links--compact .social-glyph--max img {
  width: 38px;
  height: 38px;
}

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

.faq-section .narrow > h2 {
  margin-bottom: 40px;
}

.faq-list {
  border-top: 2px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 680;
  line-height: 1.3;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sun);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 15px;
  left: 9px;
  width: 14px;
  height: 2px;
  background: var(--navy);
  content: "";
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  padding: 0 62px 24px 0;
  color: var(--ink-soft);
}

.booking-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 125px);
  background: var(--navy);
  color: var(--white);
}

.booking-section::after {
  position: absolute;
  top: -180px;
  right: -130px;
  width: 460px;
  height: 460px;
  border: 80px solid rgb(255 255 255 / 0.04);
  border-radius: 50%;
  content: "";
}

.booking-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px, 0.65fr) minmax(520px, 1.35fr);
  align-items: start;
  gap: clamp(45px, 7vw, 100px);
}

.booking-copy {
  position: sticky;
  top: 120px;
}

.booking-copy h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  overflow-wrap: anywhere;
}

.booking-copy p {
  color: oklch(84% 0.025 245);
}

.booking-note {
  display: grid;
  gap: 5px;
  margin-top: 32px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: var(--radius-small);
  background: rgb(255 255 255 / 0.07);
}

.booking-note span {
  color: oklch(84% 0.025 245);
  font-size: 0.86rem;
}

.tour-form:not(.quick-form) {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  align-content: start;
  gap: 7px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > span {
  font-size: 0.84rem;
  font-weight: 780;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field textarea {
  min-height: 102px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px oklch(66% 0.215 29 / 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.quick-form input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px oklch(54% 0.2 25 / 0.12);
}

.field small {
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.35;
}

.form-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.check-field {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.check-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--coral);
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: 0.86rem;
  font-weight: 720;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.button-loader {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 650ms linear infinite;
}

.button--submit[aria-busy="true"] .button-loader {
  display: block;
}

.button--submit[aria-busy="true"] {
  cursor: wait;
  opacity: 0.78;
}

.page-hero,
.destination-hero,
.family-hero,
.about-hero,
.contacts-hero,
.guide-hero {
  overflow: hidden;
}

.page-hero--tours {
  padding-block: clamp(72px, 9vw, 132px);
  background: var(--navy);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  color: oklch(87% 0.025 240);
  font-size: 1.2rem;
}

.route-board {
  display: grid;
  transform: rotate(2deg);
  border: 2px solid rgb(255 255 255 / 0.35);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.08);
  box-shadow: var(--shadow);
}

.route-board div {
  display: grid;
  grid-template-columns: 44px 0.65fr 1fr;
  align-items: center;
  gap: 10px;
  padding: 18px 22px;
  border-bottom: 1px dashed rgb(255 255 255 / 0.25);
}

.route-board div:last-child {
  border-bottom: 0;
}

.route-board span {
  color: var(--sun);
  font-family: var(--display);
  font-size: 0.73rem;
  font-weight: 720;
}

.route-board small {
  color: oklch(82% 0.025 240);
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: 215px 215px;
  gap: 13px;
}

.scenario {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: end;
  padding: 25px;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease;
}

.scenario:hover {
  transform: translateY(-5px);
}

.scenario b {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  line-height: 1.05;
}

.scenario span {
  position: relative;
  z-index: 2;
}

.scenario--coral {
  grid-row: 1 / 3;
  background: var(--coral);
  color: var(--white);
}

.scenario--sky {
  background: var(--sky);
}

.scenario--sun {
  background: var(--sun);
}

.scenario--photo {
  grid-column: 2 / 4;
  color: var(--white);
}

.scenario--photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(17 28 54 / 0.85), transparent 75%);
  content: "";
}

.scenario--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.choice-section {
  background: var(--paper-warm);
}

.choice-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.choice-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}

.choice-list div {
  display: grid;
  gap: 7px;
  min-height: 180px;
  align-content: center;
  padding: 25px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.choice-list b {
  color: var(--coral-deep);
  font-family: var(--display);
}

.choice-list span {
  color: var(--ink-soft);
}

.booking-widget-section {
  padding-block: clamp(72px, 9vw, 120px);
  background: var(--paper-warm);
}

.booking-widget {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.julia-helper {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), 900px);
  min-height: 200px;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 30px;
  margin: 80px auto;
  padding: 28px 42px 28px 18px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: var(--sun-soft);
  box-shadow: 10px 10px 0 var(--sun);
}

.julia-helper img {
  align-self: end;
  width: 140px;
  max-height: 210px;
  margin-top: 0;
  object-fit: contain;
  object-position: bottom;
}

.julia-helper strong {
  display: block;
  margin-bottom: 7px;
  color: var(--coral-deep);
  font-family: var(--display);
}

.julia-helper p {
  margin-bottom: 0;
}

.destination-hero {
  padding-block: clamp(72px, 10vw, 140px);
}

.destination-hero--coral {
  background: var(--coral);
  color: var(--white);
}

.destination-hero--sky {
  background: var(--sky);
}

.destination-hero--sun {
  background: var(--sun);
}

.destination-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 60px;
}

.destination-hero--coral h1,
.destination-hero--coral .section-kicker {
  color: var(--white);
}

.destination-hero--coral p {
  color: rgb(255 255 255 / 0.9);
}

.destination-hero p {
  max-width: 650px;
  font-size: 1.2rem;
}

.country-letter {
  color: rgb(255 255 255 / 0.45);
  font-family: var(--display);
  font-size: clamp(8rem, 19vw, 17rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.8;
  text-align: center;
  text-shadow: 2px 2px 0 rgb(18 35 66 / 0.12);
}

.destination-hero--sky .country-letter,
.destination-hero--sun .country-letter {
  color: rgb(255 255 255 / 0.55);
}

.facts-section h2 {
  max-width: 800px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 45px;
  border-top: 2px solid var(--navy);
}

.facts-grid article {
  min-height: 215px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.facts-grid article:first-child {
  padding-left: 0;
}

.facts-grid article:last-child {
  border-right: 0;
}

.facts-grid p {
  color: var(--ink-soft);
}

.fit-section {
  background: var(--paper-warm);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fit-column {
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius);
}

.fit-column--yes {
  background: var(--sky);
}

.fit-column--no {
  background: var(--sun);
}

.fit-column h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.8rem);
}

.fit-column ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-column li {
  position: relative;
  padding-left: 30px;
}

.fit-column li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 13px;
  height: 7px;
  transform: rotate(-45deg);
  border-bottom: 3px solid var(--navy);
  border-left: 3px solid var(--navy);
  content: "";
}

.expert-section {
  background: var(--navy-deep);
  color: var(--white);
}

.expert-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 70px;
}

.expert-grid > img {
  width: 260px;
  max-height: 440px;
  margin: 0 auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 22px 24px rgb(0 0 0 / 0.25));
}

.expert-grid h2 {
  color: var(--white);
}

.expert-grid .lead {
  color: oklch(85% 0.025 240);
}

.family-hero {
  padding-block: clamp(65px, 9vw, 120px);
  background: var(--sky);
}

.family-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 80px;
}

.family-hero p {
  font-size: 1.2rem;
}

.family-image {
  position: relative;
  width: min(100%, 430px);
  justify-self: center;
}

.family-image::before {
  position: absolute;
  inset: -18px 22px 18px -22px;
  transform: rotate(-3deg);
  border: 4px solid var(--navy);
  border-radius: 50% 50% 14px 14px;
  content: "";
}

.family-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50% 50% 14px 14px;
  object-fit: cover;
  object-position: 66% 40%;
}

.family-checks h2 {
  max-width: 720px;
}

.check-orbit {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  margin-top: 50px;
}

.check-orbit article {
  min-height: 230px;
  padding: 22px;
  border: 2px solid var(--navy);
  border-radius: 50% 50% var(--radius) var(--radius);
  background: var(--paper);
}

.check-orbit article:nth-child(2),
.check-orbit article:nth-child(4) {
  transform: translateY(28px);
  background: var(--sun-soft);
}

.check-orbit b {
  color: var(--coral-deep);
  font-family: var(--display);
}

.check-orbit p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.calm-section {
  background: var(--paper-warm);
}

.calm-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.calm-grid img {
  width: 100%;
  aspect-ratio: 5 / 4;
  transform: rotate(2deg);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-hero {
  padding-block: clamp(65px, 9vw, 120px);
  background: var(--paper-warm);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.about-collage {
  position: relative;
  min-height: 620px;
}

.about-main-photo {
  width: 77%;
  height: 590px;
  border-radius: 50% 50% 14px 14px;
  object-fit: cover;
  object-position: 50% 38%;
  box-shadow: var(--shadow);
}

.about-small-photo {
  position: absolute;
  right: 0;
  bottom: 2%;
  width: 47%;
  height: 260px;
  transform: rotate(5deg);
  border: 8px solid var(--white);
  border-radius: var(--radius);
  background: var(--sun);
  object-fit: contain;
  object-position: 50% 100%;
  box-shadow: var(--shadow-small);
}

.about-copy h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.values-section {
  background: var(--navy);
  color: var(--white);
}

.values-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 90px;
}

.values-layout > h2 {
  color: var(--white);
}

.values-list {
  display: grid;
}

.values-list article {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid rgb(255 255 255 / 0.18);
}

.values-list article:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
}

.values-list b {
  color: var(--sun);
  font-family: var(--display);
}

.values-list p {
  margin-bottom: 0;
  color: oklch(84% 0.025 240);
}

.contacts-hero {
  padding-block: clamp(65px, 9vw, 120px);
  background: var(--sky);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: start;
  gap: 80px;
}

.contact-phone {
  display: block;
  margin-block: 30px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 3rem);
  font-weight: 750;
  text-decoration: none;
}

.contacts-hero .social-links {
  max-width: 540px;
}

.contacts-hero .social-ticket::before,
.contacts-hero .social-ticket::after {
  background: var(--sky);
}

.office-panel {
  padding: clamp(28px, 4vw, 50px);
  transform: rotate(1.5deg);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  background: var(--sun);
  box-shadow: 12px 12px 0 var(--navy);
}

.office-panel > span {
  color: var(--coral-deep);
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-panel h2 {
  margin-top: 14px;
  font-size: clamp(1.55rem, 2.8vw, 2.8rem);
}

.office-panel address {
  margin-bottom: 15px;
  font-size: 1.15rem;
  font-weight: 760;
}

.guide-hero {
  padding-block: clamp(75px, 10vw, 145px);
  background: var(--sun);
}

.guide-hero p {
  max-width: 680px;
  font-size: 1.22rem;
}

.article-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, minmax(240px, auto));
  gap: 13px;
}

.article-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.article-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.article-card > span {
  margin-bottom: 35px;
  color: var(--coral-deep);
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-card h2 {
  font-size: clamp(1.25rem, 2.25vw, 2.35rem);
}

.article-card p {
  margin-bottom: 0;
}

.article-card--featured {
  grid-row: 1 / 3;
  background: var(--navy);
  color: var(--white);
}

.article-card--featured h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.2vw, 3.5rem);
}

.article-card--featured > span,
.article-card--featured time {
  color: var(--sun);
}

.article-card--featured p {
  color: oklch(84% 0.025 240);
}

.article-card--coral {
  background: var(--coral);
  color: var(--white);
}

.article-card--coral h2,
.article-card--coral > span {
  color: var(--white);
}

.article-card--sky {
  background: var(--sky);
}

.article-card--sun {
  grid-column: 2 / 4;
  background: var(--sun);
}

.longread {
  padding-block: 70px 110px;
}

.longread-header {
  padding-bottom: 65px;
  border-bottom: 2px solid var(--navy);
}

.longread-header h1 {
  font-size: clamp(2.6rem, 6vw, 5.7rem);
}

.longread-header > p {
  color: var(--ink-soft);
  font-size: 1.25rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 35px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 720;
}

.longread-body {
  padding-top: 58px;
}

.longread-body section {
  margin-bottom: 54px;
}

.longread-body h2 {
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.longread-body p,
.longread-body li {
  font-size: 1.08rem;
}

.article-callout {
  margin-block: 55px;
  padding: 30px 34px;
  border: 2px solid var(--coral);
  border-radius: var(--radius-small);
  background: var(--sun-soft);
}

.article-callout b {
  font-family: var(--display);
}

.article-callout p {
  margin: 10px 0 0;
}

.legal-page {
  padding-block: 70px 120px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.legal-page h2 {
  margin-top: 45px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.legal-note {
  margin-top: 45px;
  padding: 25px;
  border: 2px solid var(--coral);
  border-radius: var(--radius-small);
  background: var(--paper-warm);
}

.site-footer {
  padding-block: 70px 28px;
  background: var(--navy-deep);
  color: oklch(83% 0.02 240);
}

.site-footer .brand-copy {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 55px;
  padding-bottom: 50px;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 24px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-column h2 {
  margin-bottom: 9px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 840;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a {
  color: oklch(83% 0.02 240);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--sun);
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-top: 25px;
  border-top: 1px solid rgb(255 255 255 / 0.14);
}

.footer-legal p {
  margin-bottom: 0;
  color: oklch(69% 0.018 240);
  font-size: 0.72rem;
}

.reveal {
  view-timeline-name: --reveal;
  view-timeline-axis: block;
  animation: reveal-up both;
  animation-timeline: --reveal;
  animation-range: entry 8% cover 32%;
}

@keyframes character-arrive {
  from {
    transform: translateY(70px) rotate(3deg);
    opacity: 0;
  }
  to {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
}

@keyframes sun-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes reveal-up {
  from {
    transform: translateY(45px);
    opacity: 0.2;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 15px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.83rem;
  }

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

  .quick-consent {
    grid-column: 1 / 3;
  }

  .direction-mosaic {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: repeat(2, 250px);
  }

  .direction--turkey {
    grid-row: 1 / 3;
  }

  .direction--thailand {
    grid-column: 2;
    grid-row: 2;
  }

  .direction--family {
    display: none;
  }

  .social-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .social-links {
    max-width: 680px;
  }

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

  .check-orbit article:nth-child(2),
  .check-orbit article:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 920px) {
  body {
    font-size: 16px;
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 70px 0 auto;
    display: grid;
    max-height: calc(100dvh - 70px);
    align-content: start;
    gap: 0;
    padding: 24px;
    overflow-y: auto;
    transform: translateY(-120%);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 180ms ease;
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    padding: 16px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .nav-phone {
    display: block;
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid,
  .personal-grid,
  .support-layout,
  .page-hero-grid,
  .destination-hero-grid,
  .family-hero-grid,
  .calm-grid,
  .about-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-copy {
    padding-block: 70px 20px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-julia {
    right: 19%;
    width: 300px;
  }

  .hero-sun {
    right: 14%;
    width: 410px;
  }

  .hero-stamp {
    right: 12%;
  }

  .quick-title-row {
    display: grid;
    gap: 10px;
  }

  .personal-photo {
    width: min(80%, 500px);
  }

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

  .booking-copy {
    position: static;
  }

  .scenario-grid {
    grid-template-columns: 1fr 1fr;
  }

  .scenario--photo {
    grid-column: 1 / 3;
  }

  .choice-grid,
  .values-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-collage {
    width: min(100%, 590px);
  }

  .contacts-grid {
    gap: 50px;
  }

  .article-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .article-card--sun {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  h1 {
    font-size: clamp(2.25rem, 11.5vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8.5vw, 2.9rem);
  }

  .section {
    padding-block: 72px;
  }

  .button {
    width: 100%;
  }

  .brand-mark {
    width: 41px;
    height: 41px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13.5vw, 4.5rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-julia {
    right: 8%;
    width: 255px;
  }

  .hero-sun {
    top: 8%;
    right: -20%;
    width: 370px;
  }

  .hero-stamp {
    right: 3%;
    bottom: 12%;
    width: 102px;
  }

  .quick-form {
    grid-template-columns: 1fr;
  }

  .quick-consent {
    grid-column: auto;
  }

  .quick-form .button {
    margin-top: 8px;
  }

  .personal-photo {
    width: calc(100% - 24px);
  }

  .photo-caption {
    right: -24px;
    min-width: 175px;
  }

  .plain-features article {
    grid-template-columns: 40px 1fr;
  }

  .stacked-heading {
    display: grid;
    gap: 15px;
    margin-bottom: 32px;
  }

  .direction-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 230px);
  }

  .direction--turkey,
  .direction--thailand {
    grid-column: auto;
    grid-row: auto;
  }

  .direction--family {
    display: flex;
  }

  .direction--egypt {
    display: none;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .social-ticket {
    min-height: 88px;
    grid-template-columns: 54px 1fr;
    justify-items: start;
    padding-inline: 25px;
    text-align: left;
  }

  .social-links--compact {
    grid-template-columns: none;
  }

  .social-links--compact .social-ticket {
    display: grid;
    min-height: 44px;
    grid-template-columns: auto;
    padding: 0;
  }

  .faq-list summary {
    font-family: var(--body);
    font-weight: 800;
  }

  .booking-layout {
    gap: 34px;
  }

  .tour-form:not(.quick-form) {
    padding: 22px 16px;
  }

  .form-grid,
  .form-footer {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .form-footer .button {
    grid-row: 1;
  }

  .route-board {
    transform: none;
  }

  .route-board div {
    grid-template-columns: 36px 1fr;
  }

  .route-board small {
    grid-column: 2;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }

  .scenario--coral,
  .scenario--photo {
    grid-column: auto;
    grid-row: auto;
  }

  .choice-list {
    grid-template-columns: 1fr;
  }

  .choice-list div {
    min-height: auto;
  }

  .julia-helper {
    width: min(calc(100% - 30px), 900px);
    grid-template-columns: 105px 1fr;
    gap: 15px;
    padding: 22px 18px 22px 8px;
    box-shadow: 7px 7px 0 var(--sun);
  }

  .julia-helper img {
    width: 86px;
    max-height: 132px;
    margin-top: 0;
  }

  .destination-hero-grid {
    gap: 35px;
  }

  .country-letter {
    font-size: 42vw;
    text-align: left;
  }

  .facts-grid,
  .fit-grid,
  .expert-grid,
  .values-list article {
    grid-template-columns: 1fr;
  }

  .facts-grid article,
  .facts-grid article:first-child {
    min-height: auto;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .expert-grid {
    gap: 0;
  }

  .expert-section {
    padding-block: 40px 64px;
  }

  .expert-grid > img {
    width: 230px;
    margin: 0 auto 8px;
  }

  .family-image {
    width: calc(100% - 28px);
  }

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

  .check-orbit article {
    min-height: 190px;
    padding: 17px;
  }

  .check-orbit article:last-child {
    grid-column: 1 / 3;
    min-height: 150px;
  }

  .about-collage {
    min-height: 480px;
  }

  .about-main-photo {
    height: 465px;
  }

  .about-small-photo {
    bottom: -10px;
  }

  .legal-page h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    overflow-wrap: anywhere;
  }

  .office-panel {
    transform: none;
    box-shadow: 7px 7px 0 var(--navy);
  }

  .contacts-hero .social-links {
    grid-template-columns: 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .article-card--featured {
    grid-row: auto;
  }

  .article-meta {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    animation: none;
  }
}
