@font-face {
  font-family: "Vazirmatn Variable";
  src: url("fonts/vazirmatn-arabic-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Vazirmatn Variable";
  src: url("fonts/vazirmatn-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF;
}
:root {
  --ink: #0c2f2d;
  --muted: #607573;
  --cream: #f7f0e4;
  --cream-soft: #fffdf8;
  --teal: #0b5f5a;
  --teal-dark: #064743;
  --teal-deep: #033b39;
  --saffron: #f4a914;
  --saffron-dark: #d89416;
  --line: rgba(12, 75, 70, 0.14);
  --shadow: 0 18px 55px rgba(26, 69, 64, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-soft);
  color: var(--ink);
  font-family: "Vazirmatn Variable", Tahoma, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

button,
summary,
select {
  cursor: pointer;
}

.site-shell {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  padding-top: env(safe-area-inset-top, 0px);
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(11, 95, 90, 0.1);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(30deg, transparent 45%, rgba(216, 148, 22, 0.14) 45% 48%, transparent 48%),
    linear-gradient(150deg, transparent 45%, rgba(216, 148, 22, 0.14) 45% 48%, transparent 48%);
  background-size: 34px 58px;
}

.header-inner {
  position: relative;
  height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  margin-left: auto;
}

.brand-mark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 16px 16px 16px 5px;
  background: linear-gradient(145deg, #14958b, var(--teal));
  box-shadow: 0 9px 22px rgba(11, 95, 90, 0.22);
  transform: rotate(-4deg);
}

.brand-mark svg {
  transform: rotate(4deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -1.4px;
  color: var(--teal-dark);
}

.brand small {
  margin-top: 4px;
  color: #738582;
  font-size: 10px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav a {
  position: relative;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #d9d5ca;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--saffron-dark);
}

.account-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 45px;
  padding: 0 18px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--teal);
  border-radius: 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.account-button:hover {
  color: white;
  background: var(--teal);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 53px;
  left: 0;
  width: min(280px, calc(100vw - 32px));
  display: grid;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 650;
  border-radius: 11px;
}

.mobile-menu nav a:hover {
  background: var(--cream);
}

.hero {
  padding: 18px 0 0;
  background: var(--cream-soft);
}

.hero-frame {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  direction: ltr;
  min-height: 610px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: var(--teal);
}

.hero-photo {
  position: relative;
  min-width: 0;
  direction: rtl;
  background-image: linear-gradient(90deg, transparent 66%, rgba(7, 83, 78, 0.88) 100%),
    url("images/hero-coast.webp");
  background-size: cover;
  background-position: 34% center;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 65px 58px 138px 48px;
  color: white;
  overflow: hidden;
  isolation: isolate;
  direction: rtl;
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 70%, #063d3a 100%);
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.hero-copy::before {
  width: 330px;
  height: 330px;
  top: -180px;
  right: -120px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.018);
}

.hero-copy::after {
  inset: 0;
  border-radius: 0;
  opacity: 0.3;
  background-image: linear-gradient(30deg, transparent 45%, rgba(255, 255, 255, 0.09) 45% 47%, transparent 47%),
    linear-gradient(150deg, transparent 45%, rgba(255, 255, 255, 0.09) 45% 47%, transparent 47%);
  background-size: 44px 76px;
  mask-image: linear-gradient(to left, black, transparent 80%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 11px;
  color: #fff2cc;
  font-size: 12px;
  font-weight: 650;
  border: 1px solid rgba(255, 233, 178, 0.23);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.hero h1 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(45px, 4.4vw, 68px);
  line-height: 1.25;
  letter-spacing: -3.4px;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.14);
}

.hero-copy > p {
  max-width: 475px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 28px;
}

.primary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  color: #1e2d28;
  font-size: 15px;
  font-weight: 800;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffbd2d, var(--saffron));
  box-shadow: 0 12px 30px rgba(244, 169, 20, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(244, 169, 20, 0.36);
}

.text-button {
  padding: 8px 0;
  color: white;
  font-size: 14px;
  font-weight: 650;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.floating-offer {
  position: absolute;
  right: 26px;
  bottom: 118px;
  width: 350px;
  display: grid;
  grid-template-columns: 108px 1fr;
  overflow: hidden;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background: rgba(4, 65, 62, 0.93);
  box-shadow: 0 20px 45px rgba(5, 40, 39, 0.27);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease;
}

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

.offer-photo {
  background: url("images/tour-island.webp") center / cover;
}

.offer-content {
  padding: 15px 16px 14px;
}

.offer-content strong {
  display: block;
  margin: 7px 0 4px;
  font-size: 14px;
  line-height: 1.65;
}

.offer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fcd989;
  font-size: 10px;
  font-weight: 700;
}

.offer-content p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.offer-content p b {
  color: #ffc446;
  font-size: 17px;
}

.installment-pill {
  display: inline-flex;
  padding: 4px 10px;
  color: #31413c;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  background: #ffe7ae;
}

.search-panel {
  position: absolute;
  z-index: 5;
  right: 34px;
  left: 34px;
  bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 170px;
  align-items: stretch;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 22px 50px rgba(9, 60, 56, 0.2);
  backdrop-filter: blur(18px);
  direction: rtl;
}

.search-panel label {
  position: relative;
  display: grid;
  align-content: center;
  gap: 7px;
  min-width: 0;
  padding: 3px 23px;
}

.search-panel label:not(:first-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #e7dfd0;
}

.search-panel label > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #344c49;
  font-size: 12px;
  font-weight: 750;
}

.search-panel label svg {
  color: var(--teal);
}

.field-control {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.field-control svg {
  flex: 0 0 auto;
  color: #899997;
}

.search-panel select,
.search-panel input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: #7b8a87;
  font-size: 12px;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
}

.search-panel input::placeholder {
  color: #7b8a87;
  opacity: 1;
}

.search-panel .search-submit {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #273834;
  font-size: 14px;
  font-weight: 850;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffc13c, var(--saffron));
  box-shadow: 0 9px 24px rgba(216, 148, 22, 0.25);
  transition: transform 0.2s ease;
}

.search-panel .search-submit:hover {
  transform: translateY(-2px);
}

.trust-strip {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  margin-bottom: 26px;
  padding: 16px 22px;
  border: 1px solid #ede4d5;
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 35px rgba(38, 76, 71, 0.08);
}

.trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 49px;
}

.trust-strip > div:not(:last-child) {
  border-left: 1px solid #e7dfd3;
}

.trust-strip svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
  stroke-width: 1.7;
}

.trust-strip span,
.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  font-size: 14px;
}

.trust-strip small {
  margin-top: 3px;
  color: #80908d;
  font-size: 10px;
}

.promo-rail {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 14px;
  margin-top: 16px;
}

.promo-card {
  position: relative;
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.promo-card > svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 12px;
}

.promo-card span,
.promo-card strong,
.promo-card small {
  display: block;
}

.promo-card span {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
  opacity: 0.78;
}

.promo-card strong {
  font-size: 19px;
  line-height: 1.45;
}

.promo-card small {
  margin-top: 3px;
  font-size: 10px;
  opacity: 0.72;
}

.promo-card a {
  margin-right: auto;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
}

.promo-card-photo {
  color: white;
  background-image: linear-gradient(90deg, rgba(2, 50, 47, 0.12), rgba(3, 59, 57, 0.92) 68%),
    url("images/tour-island.webp");
  background-position: center 44%;
  background-size: cover;
  border-color: transparent;
}

.promo-card-photo a {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
}

.promo-card-rail {
  color: #5f3c00;
  background: linear-gradient(135deg, #fff3d8, #ffe4a4);
  border-color: #f3d38e;
}

.promo-card-rail > svg {
  color: #7a4a00;
  background: rgba(255, 255, 255, 0.55);
}

.promo-card-rail a {
  padding: 7px 11px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.66);
}

.promo-card-club {
  color: white;
  background: linear-gradient(135deg, #0b6963, #064743);
  border-color: transparent;
}

.promo-card-club::after {
  content: "";
  position: absolute;
  left: -34px;
  top: -42px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.03);
}

.promo-card-club > svg {
  color: #ffe0a0;
  background: rgba(255, 255, 255, 0.1);
}

.promo-card-club a {
  position: relative;
  z-index: 1;
  padding: 7px 11px;
  color: #3d2a05;
  border-radius: 9px;
  background: #f7c85d;
}

.content-section {
  padding-top: 68px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 27px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--saffron-dark);
  font-size: 11px;
  font-weight: 850;
}

.section-kicker.light {
  color: #ffdd8d;
}

.section-heading h2,
.installment-copy h2,
.club-copy h2,
.why-intro h2,
.faq-title h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 41px);
  line-height: 1.35;
  letter-spacing: -1.7px;
}

.section-heading p,
.faq-title > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.section-link {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  border-bottom: 1px solid rgba(11, 95, 90, 0.25);
}

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

.tour-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 95, 90, 0.13);
  border-radius: 23px;
  background: white;
  box-shadow: 0 13px 38px rgba(25, 71, 67, 0.075);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  scroll-margin-top: 95px;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(25, 71, 67, 0.13);
}

.tour-visual {
  position: relative;
  min-height: 226px;
  background-color: #d7e7e3;
  background-position: center;
  background-size: cover;
}

.tour-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 45, 43, 0.28), transparent 52%);
}

.tour-kish {
  background-image: url("images/tour-island.webp");
}

.tour-mashhad {
  background-image: linear-gradient(135deg, rgba(244, 169, 20, 0.08), rgba(11, 95, 90, 0.18)),
    url("images/tour-mashhad.webp");
}

.tour-istanbul {
  background-image: linear-gradient(135deg, rgba(4, 71, 67, 0.03), rgba(4, 71, 67, 0.2)),
    url("images/tour-istanbul.webp");
}

.card-badge,
.card-date {
  position: absolute;
  z-index: 2;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 27px;
  padding: 0 9px;
  font-size: 9px;
  font-weight: 800;
  border-radius: 9px;
  backdrop-filter: blur(10px);
}

.card-badge {
  right: 14px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.9);
}

.card-badge.hot {
  color: #5b3900;
  background: rgba(255, 224, 151, 0.94);
}

.card-badge.foreign {
  color: white;
  background: rgba(8, 93, 87, 0.9);
}

.card-date {
  left: 14px;
  color: white;
  background: rgba(3, 51, 48, 0.55);
}

.tour-content {
  padding: 18px 19px 17px;
}

.tour-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.tour-title-row span {
  color: #83928f;
  font-size: 9px;
  font-weight: 650;
}

.tour-title-row h3 {
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1.4;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  color: #bb7a00;
  font-size: 10px;
  font-weight: 800;
  border-radius: 8px;
  background: #fff5dc;
}

.tour-details {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-top: 16px;
  padding: 13px 0;
  border-top: 1px solid #eee8dd;
  border-bottom: 1px solid #eee8dd;
}

.tour-details span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #627572;
  font-size: 10px;
  font-weight: 620;
}

.tour-details svg {
  color: var(--teal);
}

.tour-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 15px;
}

.tour-footer small,
.tour-footer strong {
  display: block;
}

.tour-footer small {
  margin-bottom: 3px;
  color: #879592;
  font-size: 9px;
}

.tour-footer strong {
  color: var(--teal-dark);
  font-size: 17px;
}

.tour-footer strong i {
  font-size: 9px;
  font-style: normal;
}

.tour-footer .inquiry-price {
  font-size: 15px;
}

.tour-footer > a {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 13px;
  background: var(--teal);
  transition: background 0.2s ease, transform 0.2s ease;
}

.tour-footer > a:hover {
  background: var(--teal-dark);
  transform: translateX(-2px);
}

.tour-footer > a svg {
  width: 18px;
}

.price-note {
  margin: 12px 3px 0;
  color: #879491;
  font-size: 9px;
}

.services-section {
  margin-top: 68px;
  padding: 58px 0;
  overflow: hidden;
  background: var(--cream);
  border-block: 1px solid #eee2d0;
}

.services-layout {
  display: grid;
  grid-template-columns: 0.73fr 1.27fr;
  align-items: center;
  gap: 50px;
}

.compact-heading {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-card {
  position: relative;
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(11, 95, 90, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.86);
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  background: white;
  transform: translateY(-3px);
}

.service-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--teal);
  border-radius: 15px;
  background: #e4f0ed;
}

.service-icon svg {
  width: 22px;
}

.service-card h3 {
  margin: 0;
  font-size: 13px;
}

.service-card p {
  margin: 5px 0 0;
  color: #71827f;
  font-size: 9px;
}

.service-arrow {
  width: 16px;
  margin-right: auto;
  color: #9aaba7;
}

.installment-banner {
  position: relative;
  min-height: 510px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  color: white;
  border-radius: 29px;
  background: var(--teal-dark);
  box-shadow: var(--shadow);
  direction: ltr;
}

.installment-image {
  min-height: 100%;
  background: linear-gradient(90deg, transparent 72%, var(--teal-dark) 100%),
    url("images/installment-luggage.webp") center / cover;
}

.installment-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 55px 56px 112px 45px;
  isolation: isolate;
  direction: rtl;
}

.installment-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(30deg, transparent 45%, rgba(255, 255, 255, 0.12) 45% 47%, transparent 47%),
    linear-gradient(150deg, transparent 45%, rgba(255, 255, 255, 0.12) 45% 47%, transparent 47%);
  background-size: 42px 73px;
  mask-image: linear-gradient(to left, black, transparent);
}

.installment-copy > p {
  max-width: 520px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.95;
}

.feature-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 21px 0 24px;
  padding: 0;
  list-style: none;
}

.feature-checks li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  font-size: 9px;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-checks svg {
  width: 14px;
  color: #ffd474;
}

.cream-button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #4b350a;
  font-size: 12px;
  font-weight: 800;
  border-radius: 14px;
  background: #f8e5ba;
}

.cream-button svg {
  width: 17px;
}

.installment-steps {
  position: absolute;
  right: 30px;
  left: 30px;
  bottom: 25px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(13px);
  direction: rtl;
}

.installment-steps > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
}

.installment-steps b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #4d3503;
  border-radius: 8px;
  background: #ffd16c;
}

.installment-steps i {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.club-section {
  padding-top: 34px;
}

.club-card {
  position: relative;
  min-height: 388px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  overflow: hidden;
  color: white;
  border-radius: 29px;
  background: linear-gradient(135deg, #083f3d, #0b6b65);
}

.club-card::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  left: -210px;
  top: -215px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, 0.024), 0 0 0 130px rgba(255, 255, 255, 0.017);
}

.club-copy {
  position: relative;
  z-index: 2;
  padding: 50px 56px;
}

.club-copy > p {
  max-width: 550px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.9;
}

.club-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 22px 0 25px;
}

.club-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
}

.club-benefits svg {
  width: 17px;
  color: #ffd373;
}

.wallet-scene {
  position: relative;
  min-height: 330px;
}

.wallet-card {
  position: absolute;
  width: 330px;
  height: 198px;
  left: 50%;
  top: 50%;
  border-radius: 24px;
}

.back-card {
  background: linear-gradient(145deg, #d8a947, #f5c866);
  transform: translate(-47%, -47%) rotate(10deg);
  box-shadow: 0 25px 50px rgba(3, 39, 37, 0.26);
}

.front-card {
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 24px 26px;
  color: #214943;
  background: linear-gradient(145deg, #fff8e9, #f3e5c7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: translate(-53%, -53%) rotate(-5deg);
  box-shadow: 0 25px 55px rgba(3, 39, 37, 0.33);
}

.front-card > div:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  direction: ltr;
}

.front-card > div:first-child svg {
  width: 21px;
}

.front-card > strong {
  margin-top: auto;
  font-size: 25px;
}

.front-card > small {
  margin-top: 4px;
  font-size: 9px;
  opacity: 0.65;
}

.wallet-chip {
  position: absolute;
  top: 26px;
  right: 27px;
  width: 42px;
  height: 31px;
  border: 1px solid rgba(118, 78, 0, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, #e2b958, #f8db91);
}

.wallet-bubble {
  position: absolute;
  z-index: 3;
  left: 9%;
  bottom: 25px;
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  color: #573a00;
  border: 7px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: #ffc54a;
  background-clip: padding-box;
}


.club-stack {
  display: grid;
  gap: 18px;
}

.club-join-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding: 30px;
  border: 1px solid #e3ded2;
  border-radius: 27px;
  background: linear-gradient(180deg, #fffefb, #f8f4ea);
  box-shadow: 0 18px 44px rgba(25, 58, 53, 0.08);
}

.club-join-copy h3 {
  margin: 0;
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.45;
  color: #163834;
}

.club-join-copy > p {
  margin: 12px 0 0;
  max-width: 540px;
  color: #657673;
  font-size: 13px;
  line-height: 2;
}

.club-join-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  color: #523506;
  background: linear-gradient(135deg, #fff1c8, #ffd87b);
  box-shadow: 0 14px 24px rgba(214, 160, 38, 0.16);
}

.club-join-badge small {
  font-size: 11px;
  font-weight: 800;
  opacity: 0.86;
}

.club-join-badge strong {
  font-size: 22px;
  line-height: 1.5;
}

.club-join-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.club-join-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 12px;
  line-height: 1.95;
}

.club-join-alert svg {
  width: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
}

.club-join-alert--success,
.club-join-alert--info {
  color: #0b584f;
  border: 1px solid #b7e3d5;
  background: #effbf6;
}

.club-join-alert--warning,
.club-join-alert--error {
  color: #7a4a00;
  border: 1px solid #f1d397;
  background: #fff8e7;
}

.club-join-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid #e8e1d4;
  border-radius: 22px;
  background: white;
}

.club-join-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.club-join-field span {
  color: #334a46;
  font-size: 12px;
  font-weight: 800;
}

.club-join-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  color: #163834;
  font-size: 18px;
  font-weight: 800;
  border: 1px solid #d9dfde;
  border-radius: 16px;
  background: #fbfcfb;
}

.club-join-field input:focus {
  outline: none;
  border-color: #0b6b65;
  box-shadow: 0 0 0 4px rgba(11, 107, 101, 0.12);
}

.club-join-submit {
  justify-content: center;
  min-height: 56px;
}

.club-join-note {
  margin: 0;
  color: #7b8886;
  font-size: 11px;
  line-height: 1.9;
}

.club-join-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.why-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 45px;
  align-items: center;
}

.why-intro > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.agent-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 21px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #f6f0e4;
}

.agent-note > svg {
  width: 31px;
  height: 31px;
  padding: 6px;
  color: var(--teal);
  border-radius: 10px;
  background: white;
}

.agent-note strong,
.agent-note small {
  display: block;
}

.agent-note strong {
  font-size: 11px;
}

.agent-note small {
  margin-top: 2px;
  color: #7b8986;
  font-size: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.why-grid article {
  min-height: 152px;
  padding: 19px;
  border: 1px solid rgba(11, 95, 90, 0.12);
  border-radius: 19px;
  background: white;
}

.why-grid article > svg {
  width: 27px;
  color: var(--teal);
}

.why-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 12px;
}

.why-grid p {
  margin: 6px 0 0;
  color: #71827f;
  font-size: 9px;
  line-height: 1.8;
}

.faq-section {
  margin-top: 68px;
  padding: 58px 0;
  background: var(--cream);
  border-block: 1px solid #eee2d0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 55px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  border: 1px solid rgba(11, 95, 90, 0.12);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.84);
}

.faq-list summary {
  min-height: 59px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 11px 17px;
  font-size: 11px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary svg {
  width: 17px;
  margin-right: auto;
  color: var(--teal);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 17px 17px;
  color: #657774;
  font-size: 10px;
  line-height: 1.95;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  margin-bottom: 34px;
  padding: 33px 38px;
  color: white;
  border-radius: 24px;
  background: linear-gradient(135deg, #0a5e59, #064743);
}

.final-cta h2 {
  font-size: 30px;
}

.final-cta p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 11px;
}

.final-actions {
  display: flex;
  gap: 9px;
  min-width: max-content;
}

.final-actions .primary-button {
  min-height: 46px;
  font-size: 12px;
}

.outline-light-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 750;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
}

.site-footer {
  color: white;
  background: #062f2d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr 1fr;
  gap: 60px;
  padding-top: 48px;
  padding-bottom: 38px;
}

.light-brand {
  margin: 0;
}

.light-brand strong {
  color: white;
}

.light-brand small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand > p {
  max-width: 330px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.9;
}

.site-footer h3 {
  margin: 0 0 15px;
  color: #f9dda0;
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.footer-links a,
.footer-addresses p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  line-height: 1.9;
}

.footer-links a:hover {
  color: white;
}

.footer-addresses p {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0 0 9px;
}

.footer-addresses svg {
  width: 15px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #f4c75f;
}

.footer-bottom {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.mobile-dock {
  display: none;
}

:focus-visible {
  outline: 3px solid rgba(244, 169, 20, 0.65);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .account-button {
    margin-right: auto;
  }

  .mobile-menu {
    display: block;
  }

  .hero-frame {
    grid-template-columns: 1fr 1fr;
    min-height: 585px;
  }

  .hero-copy {
    padding: 44px 34px 150px 30px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .floating-offer {
    right: 18px;
    width: calc(100% - 36px);
    grid-template-columns: 86px 1fr;
  }

  .search-panel {
    grid-template-columns: 1fr 1fr 1fr 145px;
    right: 18px;
    left: 18px;
  }

  .search-panel label {
    padding-inline: 13px;
  }

  .promo-rail {
    grid-template-columns: 1fr 1fr;
  }

  .promo-card-photo {
    grid-column: 1 / -1;
  }

  .tour-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 42vw);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .tour-grid::-webkit-scrollbar,
  .promo-rail::-webkit-scrollbar {
    display: none;
  }

  .tour-card {
    scroll-snap-align: start;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .service-card {
    min-height: 126px;
    align-items: flex-start;
  }

  .service-arrow {
    display: none;
  }

  .installment-copy {
    padding-inline: 34px;
  }

  .installment-steps i {
    width: 32px;
  }

  .club-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .club-copy {
    padding: 42px 34px;
  }

  .wallet-card {
    width: 285px;
    height: 172px;
  }

  .why-section {
    gap: 28px;
  }

  .faq-layout {
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 24px, 560px);
  }

  .header-inner {
    min-height: 67px;
    height: 67px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px 13px 13px 4px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    display: none;
  }

  .account-button {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
    border-radius: 12px;
  }

  .account-button svg {
    display: none;
  }

  .hero {
    padding-top: 9px;
  }

  .hero-frame {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
    border-radius: 22px;
    background: transparent;
    box-shadow: none;
  }

  .hero-copy {
    order: 1;
    min-height: 360px;
    padding: 38px 24px 34px;
    border-radius: 22px 22px 0 0;
  }

  .hero-photo {
    order: 2;
    min-height: 276px;
    border-radius: 0 0 22px 22px;
    background-image: linear-gradient(to bottom, rgba(7, 83, 78, 0.32), transparent 34%),
      url("images/hero-coast.webp");
    background-position: 24% center;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 51px);
    line-height: 1.28;
    letter-spacing: -2.5px;
  }

  .hero-copy > p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.85;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .primary-button {
    min-height: 47px;
    font-size: 13px;
  }

  .text-button {
    font-size: 12px;
  }

  .floating-offer {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    max-width: 355px;
  }

  .search-panel {
    position: relative;
    order: 3;
    right: auto;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 10px;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(9, 60, 56, 0.11);
  }

  .search-panel label {
    min-height: 68px;
    padding: 8px 12px;
  }

  .search-panel label:not(:first-child)::after {
    display: none;
  }

  .search-panel label:nth-child(odd) {
    border-left: 1px solid #eee6d8;
  }

  .search-panel label:nth-child(-n + 2) {
    border-bottom: 1px solid #eee6d8;
  }

  .search-panel .search-submit {
    grid-column: 1 / -1;
    min-height: 51px;
    margin-top: 3px;
  }

  .trust-strip {
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 5px;
    border-radius: 18px;
  }

  .trust-strip > div {
    flex-direction: column;
    gap: 5px;
    min-height: 76px;
    padding: 8px 4px;
    text-align: center;
  }

  .trust-strip svg {
    width: 22px;
    height: 22px;
  }

  .trust-strip strong {
    font-size: 11px;
  }

  .trust-strip small {
    display: none;
  }

  body {
    padding-bottom: 68px;
  }

  .promo-rail {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 9px;
    margin-top: 10px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .promo-card,
  .promo-card-photo {
    grid-column: auto;
    min-height: 111px;
    padding: 16px;
    scroll-snap-align: start;
  }

  .promo-card strong {
    font-size: 16px;
  }

  .content-section {
    padding-top: 48px;
  }

  .section-heading {
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 20px;
  }

  .section-heading h2,
  .installment-copy h2,
  .club-copy h2,
  .why-intro h2,
  .faq-title h2 {
    font-size: 27px;
    letter-spacing: -1.1px;
  }

  .section-heading p,
  .faq-title > p {
    font-size: 11px;
  }

  .section-link {
    font-size: 10px;
  }

  .tour-grid {
    grid-auto-columns: 88%;
    gap: 11px;
    margin-left: -12px;
    margin-right: -12px;
    padding-inline: 12px;
    scroll-padding-inline: 12px;
  }

  .tour-visual {
    min-height: 211px;
  }

  .services-section {
    margin-top: 47px;
    padding: 43px 0;
  }

  .services-layout {
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .service-card {
    min-height: 133px;
    flex-direction: column;
    gap: 9px;
    padding: 13px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
  }

  .service-card h3 {
    font-size: 11px;
  }

  .service-card p {
    font-size: 8px;
    line-height: 1.65;
  }

  .installment-banner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 22px;
  }

  .installment-copy {
    order: 1;
    padding: 34px 23px 24px;
  }

  .installment-copy > p {
    font-size: 11px;
  }

  .feature-checks {
    gap: 6px;
    margin: 17px 0 20px;
  }

  .feature-checks li {
    font-size: 8px;
  }

  .installment-image {
    order: 2;
    min-height: 244px;
    background-image: linear-gradient(to bottom, var(--teal-dark), transparent 18%),
      url("images/installment-luggage.webp");
    background-position: center;
  }

  .installment-steps {
    position: relative;
    order: 3;
    right: auto;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    margin: 9px;
    padding: 10px 6px;
  }

  .installment-steps > div {
    flex-direction: column;
    gap: 4px;
    font-size: 8px;
  }

  .installment-steps i {
    display: none;
  }

  .club-section {
    padding-top: 18px;
  }

  .club-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 22px;
  }

  .club-copy {
    order: 1;
    padding: 34px 23px 15px;
  }

  .club-copy > p {
    font-size: 11px;
  }

  .club-benefits {
    gap: 8px 14px;
    margin: 17px 0 20px;
  }

  .club-benefits span {
    font-size: 8px;
  }

  .wallet-scene {
    order: 2;
    width: 100%;
    min-height: 270px;
  }

  .wallet-card {
    width: 270px;
    height: 162px;
  }

  .front-card {
    padding: 19px 20px;
  }

  .front-card > strong {
    font-size: 21px;
  }

  .wallet-bubble {
    left: 7%;
    bottom: 18px;
    width: 55px;
    height: 55px;
  }


  .club-stack {
    gap: 14px;
  }

  .club-join-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  .club-join-copy h3 {
    font-size: 23px;
  }

  .club-join-copy > p {
    font-size: 11px;
  }

  .club-join-badge {
    width: 100%;
    margin-top: 15px;
    padding: 14px 15px;
  }

  .club-join-badge strong {
    font-size: 18px;
  }

  .club-join-form {
    padding: 16px;
    border-radius: 18px;
  }

  .club-join-field input {
    min-height: 52px;
    font-size: 16px;
  }

  .why-section {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .why-intro > p {
    font-size: 11px;
  }

  .why-grid {
    gap: 7px;
  }

  .why-grid article {
    min-height: 143px;
    padding: 15px;
  }

  .faq-section {
    margin-top: 48px;
    padding: 43px 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .faq-list summary {
    min-height: 56px;
    font-size: 10px;
  }

  .faq-list details p {
    font-size: 9px;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .final-cta h2 {
    font-size: 25px;
  }

  .final-actions {
    width: 100%;
  }

  .final-actions a {
    flex: 1;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-top: 38px;
    padding-bottom: 28px;
  }

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

  .footer-bottom {
    min-height: 70px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .mobile-dock {
    position: fixed;
    z-index: 80;
    right: 8px;
    left: 8px;
    bottom: 8px;
    height: 58px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    color: #607471;
    border: 1px solid rgba(11, 95, 90, 0.14);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 14px 42px rgba(8, 54, 51, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 7px;
    font-weight: 750;
  }

  .mobile-dock a > svg {
    width: 18px;
    height: 18px;
  }

  .mobile-dock .dock-main {
    width: 48px;
    height: 48px;
    justify-self: center;
    color: white;
    border: 5px solid #fffdf8;
    border-radius: 16px;
    background: var(--teal);
    transform: translateY(-13px) rotate(-4deg);
    box-shadow: 0 8px 22px rgba(11, 95, 90, 0.28);
  }

  .mobile-dock .dock-main svg {
    transform: rotate(4deg);
  }
}

@media (max-width: 390px) {
  .account-button span {
    display: none;
  }

  .account-button svg {
    display: block;
  }

  .account-button {
    width: 40px;
    padding: 0;
  }

  .hero-copy {
    min-height: 347px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .promo-rail,
  .tour-grid {
    grid-auto-columns: 92%;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

/* Draft preview only; public homepage never renders this element. */
.homepage-preview-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  background: #b45309;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .16);
}
