:root {
  --purple: #5f2878;
  --purple-dark: #3f174f;
  --purple-soft: #8f5aa6;
  --teal: #0c9ca6;
  --teal-dark: #08727b;
  --orange: #f39a18;
  --pink: #e43d87;
  --ink: #251d2a;
  --muted: #6e6771;
  --paper: #fffdf9;
  --cream: #f8f4ed;
  --line: rgba(73, 42, 82, 0.14);
  --shadow: 0 22px 60px rgba(56, 28, 62, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(95, 40, 120, 0.08);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand img {
  width: 48px;
  height: 58px;
  object-fit: contain;
}

.brand span,
.footer-brand span {
  display: grid;
  gap: 2px;
}

.brand strong,
.footer-brand strong {
  color: var(--purple);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand small,
.footer-brand small {
  color: var(--muted);
  font-size: 11px;
}

.site-header nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a {
  position: relative;
  padding: 12px 0;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 12px 19px;
  border-radius: 999px;
  color: white;
  background: var(--purple);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(95, 40, 120, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 70px;
  min-height: 730px;
  padding: 94px max(24px, calc((100vw - var(--max)) / 2)) 160px;
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 10%, rgba(12, 156, 166, 0.11), transparent 26%),
    radial-gradient(circle at 91% 8%, rgba(243, 154, 24, 0.12), transparent 23%),
    linear-gradient(140deg, #fffdf9 45%, #fbf4fb 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  width: 510px;
  height: 510px;
  top: -330px;
  right: 30%;
  border: 1px solid rgba(95, 40, 120, 0.15);
}

.hero::after {
  width: 180px;
  height: 180px;
  right: -95px;
  bottom: 100px;
  border: 40px solid rgba(12, 156, 166, 0.06);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.97;
}

h1 em {
  color: var(--purple);
  font-weight: 500;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), #7c3598);
  box-shadow: 0 16px 34px rgba(95, 40, 120, 0.23);
}

.button-primary span {
  font-size: 18px;
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 0;
  padding: 0;
  color: #554d58;
  font-size: 12px;
  font-weight: 750;
  list-style: none;
}

.trust-list span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 510px;
}

.visual-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 40px 18px 16px;
  color: white;
  background: linear-gradient(transparent, rgba(36, 17, 43, 0.88));
}

.visual-card figcaption strong {
  font-family: Georgia, serif;
  font-size: 22px;
}

.visual-card figcaption span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-card-main {
  z-index: 2;
  width: 61%;
  height: 430px;
  top: 35px;
  left: 5%;
  transform: rotate(-3deg);
}

.visual-card-main img {
  object-position: 55% 50%;
}

.visual-card-top {
  z-index: 1;
  width: 47%;
  height: 235px;
  top: 0;
  right: 0;
  transform: rotate(4deg);
}

.visual-card-top img {
  object-position: 52% 55%;
}

.visual-card-bottom {
  z-index: 3;
  width: 49%;
  height: 245px;
  right: 2%;
  bottom: 0;
  transform: rotate(2deg);
}

.visual-card-bottom img {
  object-position: 50% 55%;
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  right: 34%;
  bottom: -10px;
  display: grid;
  place-items: center;
  width: 114px;
  height: 114px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 16px 30px rgba(131, 78, 4, 0.2);
}

.hero-stamp strong {
  font-size: 18px;
}

.hero-stats {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  left: max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 112px;
  padding: 24px 0;
  border-radius: 30px 30px 0 0;
  color: white;
  background: linear-gradient(100deg, var(--purple-dark), var(--purple) 62%, var(--teal-dark));
  box-shadow: 0 -10px 40px rgba(64, 23, 80, 0.12);
}

.hero-stats div {
  display: grid;
  place-content: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  font-family: Georgia, serif;
  font-size: 26px;
}

.hero-stats span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalog {
  padding: 120px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(rgba(95, 40, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 40, 120, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 48px 48px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 46px;
}

.section-heading h2,
.contact-intro h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}

.section-heading > p {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.filters {
  display: grid;
  grid-template-columns: 230px 230px 1fr auto;
  align-items: end;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(95, 40, 120, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 45px rgba(57, 32, 60, 0.08);
}

.filters label,
.lead-form label {
  display: grid;
  gap: 8px;
}

.filters label > span,
.lead-form label > span {
  color: #63596a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filters select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(95, 40, 120, 0.15);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filters select {
  height: 46px;
  padding: 0 38px 0 13px;
}

.filters select:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(12, 156, 166, 0.1);
}

.type-filter {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
}

.chip {
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5c5360;
  background: white;
  font-size: 12px;
  font-weight: 800;
}

.chip.is-active {
  border-color: var(--purple);
  color: white;
  background: var(--purple);
}

.reset-button {
  height: 46px;
  padding: 0 8px;
  border: 0;
  color: var(--purple);
  background: transparent;
  font-size: 12px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.results-line {
  display: flex;
  justify-content: space-between;
  margin: 23px 4px;
  color: var(--muted);
  font-size: 12px;
}

.results-line span:first-child {
  color: var(--purple);
  font-weight: 850;
}

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

.trip-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(67, 39, 72, 0.09);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 15px 40px rgba(54, 31, 59, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(54, 31, 59, 0.15);
}

.trip-image {
  position: relative;
  height: 242px;
  overflow: hidden;
  background: #e9e2eb;
}

.trip-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 12, 37, 0.02) 42%, rgba(31, 12, 37, 0.48));
  content: "";
}

.trip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trip-card:hover .trip-image img {
  transform: scale(1.04);
}

.trip-badge,
.trip-availability {
  position: absolute;
  z-index: 2;
  top: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trip-badge {
  left: 16px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.92);
}

.trip-availability {
  right: 16px;
  color: white;
  background: rgba(12, 114, 123, 0.93);
}

.trip-month {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  color: white;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.photo-credit {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(30, 16, 35, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.photo-credit:hover,
.photo-credit:focus-visible {
  color: white;
  background: rgba(30, 16, 35, 0.78);
}

.trip-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.trip-location {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trip-card h3 {
  margin-bottom: 10px;
  color: var(--purple-dark);
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.trip-summary {
  min-height: 66px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.trip-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.trip-meta span {
  padding: 10px 11px;
  border-radius: 11px;
  background: var(--cream);
  color: #554d58;
  font-size: 11px;
  font-weight: 750;
}

.trip-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.trip-price small,
.dialog-price small {
  display: block;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trip-price strong {
  color: var(--purple);
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 600;
}

.details-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border: 0;
  color: var(--purple);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.details-button span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  background: var(--purple);
  font-size: 16px;
}

.empty-state {
  padding: 70px 20px;
  border: 1px dashed rgba(95, 40, 120, 0.26);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.empty-state > span {
  color: var(--orange);
  font-size: 40px;
}

.empty-state h3 {
  margin: 12px 0 7px;
  font-family: Georgia, serif;
  font-size: 28px;
}

.empty-state p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1fr);
  gap: 80px;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  color: white;
  background:
    radial-gradient(circle at 0 100%, rgba(12, 156, 166, 0.26), transparent 27%),
    radial-gradient(circle at 92% 5%, rgba(243, 154, 24, 0.2), transparent 21%),
    var(--purple-dark);
}

.eyebrow-light {
  color: #9fe5e4;
}

.contact-intro h2 {
  max-width: 620px;
  margin-bottom: 24px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 34px 0;
}

.contact-cards a {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-cards small {
  color: #9fe5e4;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-cards strong {
  font-size: 17px;
}

.offices {
  display: flex;
  gap: 40px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.6;
}

.offices strong {
  color: white;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: white;
  box-shadow: 0 28px 80px rgba(22, 8, 26, 0.32);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--purple);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.form-heading small {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(12, 156, 166, 0.09);
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 14px;
}

.lead-form input,
.lead-form select {
  height: 48px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.lead-form .privacy-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--purple);
}

.lead-form .privacy-check span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.button-submit {
  width: 100%;
  color: white;
  background: linear-gradient(135deg, #08727b, var(--teal));
  box-shadow: 0 14px 30px rgba(12, 156, 166, 0.22);
}

.form-note {
  margin-bottom: 0;
  color: #88808a;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(95, 40, 120, 0.08);
  background: white;
}

.footer-brand img {
  width: 35px;
  height: 43px;
  object-fit: contain;
}

footer > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 800;
}

.floating-wa {
  position: fixed;
  z-index: 45;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px 8px 8px;
  border: 2px solid white;
  border-radius: 999px;
  color: white;
  background: #178d4a;
  font-size: 12px;
  box-shadow: 0 12px 30px rgba(18, 91, 49, 0.3);
}

.floating-wa span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 900;
}

.trip-dialog {
  width: min(940px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  color: var(--ink);
  background: white;
  box-shadow: 0 35px 120px rgba(20, 8, 24, 0.38);
}

.trip-dialog::backdrop {
  background: rgba(35, 21, 39, 0.72);
  backdrop-filter: blur(7px);
}

.dialog-shell {
  position: relative;
  max-height: calc(100vh - 30px);
  overflow-y: auto;
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: white;
  background: rgba(37, 18, 43, 0.62);
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.dialog-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 310px;
  padding: 40px;
  overflow: hidden;
  color: white;
}

.dialog-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 12, 37, 0.06), rgba(31, 12, 37, 0.88));
  content: "";
}

.dialog-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-hero > .photo-credit {
  top: 16px;
  right: 70px;
  bottom: auto;
}

.dialog-title-wrap {
  position: relative;
  z-index: 2;
}

.dialog-title-wrap .trip-location {
  color: #9fe5e4;
}

.dialog-title-wrap h2 {
  margin: 0 0 8px;
  font-size: clamp(42px, 7vw, 66px);
}

.dialog-title-wrap p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.dialog-body {
  padding: 34px 40px 40px;
}

.dialog-keyfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.dialog-keyfacts div {
  min-height: 88px;
  padding: 14px;
  border-radius: 13px;
  background: var(--cream);
}

.dialog-keyfacts small {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dialog-keyfacts strong {
  font-size: 13px;
  line-height: 1.4;
}

.dialog-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.dialog-columns h3 {
  margin-bottom: 14px;
  color: var(--purple);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

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

.dialog-list li {
  position: relative;
  padding-left: 22px;
  color: #5c545f;
  font-size: 13px;
  line-height: 1.48;
}

.dialog-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--orange);
  content: "✦";
}

.dialog-note {
  margin: 30px 0 0;
  padding: 15px 17px;
  border-left: 3px solid var(--teal);
  color: var(--muted);
  background: rgba(12, 156, 166, 0.07);
  font-size: 11px;
  line-height: 1.55;
}

.dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.dialog-price strong {
  color: var(--purple);
  font-family: Georgia, serif;
  font-size: 34px;
}

.dialog-buttons {
  display: flex;
  gap: 10px;
}

.button-download {
  border: 1px solid var(--line);
  background: white;
  font-size: 12px;
}

.button-interest {
  color: white;
  background: var(--purple);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 0.82fr;
    gap: 30px;
  }

  .hero-visual {
    transform: scale(0.92);
    transform-origin: center;
  }

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

  .type-filter {
    grid-column: 1 / 2;
  }

  .reset-button {
    justify-self: end;
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 720px;
  }

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

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

  .hero-stats div:nth-child(2) {
    border-right: 0;
  }

  .hero-stats div:nth-child(-n + 2) {
    padding-bottom: 10px;
  }

  .hero {
    padding-bottom: 205px;
  }

  .section-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    gap: 46px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  footer > div {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 72px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .brand small,
  .brand span {
    display: none;
  }

  .brand img {
    width: 39px;
    height: 48px;
  }

  .header-cta {
    padding: 10px 16px;
  }

  .hero {
    min-height: 0;
    padding-top: 55px;
    padding-bottom: 210px;
  }

  h1 {
    font-size: 49px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 390px;
    margin: 10px -10px 0;
    transform: none;
  }

  .visual-card-main {
    width: 65%;
    height: 335px;
  }

  .visual-card-top,
  .visual-card-bottom {
    width: 50%;
    height: 178px;
  }

  .hero-stamp {
    right: 32%;
    width: 92px;
    height: 92px;
    font-size: 11px;
  }

  .hero-stamp strong {
    font-size: 14px;
  }

  .hero-stats {
    right: 16px;
    left: 16px;
  }

  .hero-stats div {
    padding: 0 12px;
  }

  .hero-stats strong {
    font-size: 21px;
  }

  .catalog,
  .contact-section {
    padding: 82px 16px;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 30px;
  }

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

  .type-filter,
  .reset-button {
    grid-column: 1;
  }

  .type-filter {
    flex-wrap: wrap;
  }

  .reset-button {
    justify-self: start;
  }

  .results-line span:last-child {
    display: none;
  }

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

  .trip-card {
    min-height: 0;
  }

  .contact-cards,
  .field-row,
  .dialog-keyfacts,
  .dialog-columns {
    grid-template-columns: 1fr;
  }

  .offices {
    display: grid;
    gap: 4px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .dialog-hero {
    min-height: 265px;
    padding: 30px 22px;
  }

  .dialog-body {
    padding: 26px 22px 30px;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dialog-buttons {
    display: grid;
  }

  .floating-wa strong {
    display: none;
  }

  .floating-wa {
    padding-right: 8px;
  }
}

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