:root {
  --navy: #071d3b;
  --navy-2: #0d2a4f;
  --ink: #102035;
  --muted: #697486;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #d9e0ea;
  --red: #e13d2f;
  --gold: #d6a24b;
  --shadow: 0 24px 70px rgba(7, 29, 59, 0.14);
  --radius: 28px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(246, 248, 251, 0.84);
  border-bottom: 1px solid rgba(217, 224, 234, 0.72);
  backdrop-filter: blur(18px);
}

.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .home-nav {
  width: min(1448px, calc(100% - 64px));
  min-height: 92px;
  position: relative;
  color: var(--white);
}

.home-brand {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.home-page .home-brand,
.home-page .home-brand span {
  color: var(--white);
}

.home-logo-mark {
  width: 28px;
  height: 25px;
  position: relative;
  display: block;
}

.home-logo-mark:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 25px solid var(--white);
}

.home-logo-mark:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-left: 5px solid var(--navy);
  border-bottom: 5px solid var(--navy);
  background: transparent;
}

.home-page .home-nav-left {
  margin-right: auto;
}

.home-page .nav-links a,
.nav-pill {
  padding: 11px 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-page .nav-links a:hover,
.home-page .nav-links a[aria-current="page"],
.nav-pill:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.home-nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pill {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}

.mobile-nav-only {
  display: none;
}

.nav-pill-light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 30px rgba(7, 29, 59, 0.14);
}

.nav-pill-light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand-logo {
  width: 116px;
  height: 58px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

.home-brand-logo {
  width: 122px;
  height: 68px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.28));
}

.site-footer .brand-logo {
  width: 170px;
  height: 128px;
}

.home-page .trip-ease,
.home-page .different-section,
.home-page .insta-section,
.home-page .popular-destinations,
.home-page .packages-home,
.home-page .testimonial-home,
.home-page .faq-home {
  display: none;
}

.home-page .breeza-way {
  min-height: auto;
  margin-bottom: 80px;
  padding: 64px 24px 70px;
}

.home-page .letter-gallery {
  min-height: 0;
  height: auto;
  margin: 34px auto 0;
}

.home-page .letter-tile {
  height: clamp(150px, 13vw, 210px);
}

.home-page .way-copy {
  margin-top: 54px;
}

.home-page .az-card:nth-child(n + 5) {
  display: none;
}

.home-page .numbers-intro p,
.home-page .number-card p,
.home-page .card-body p {
  display: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #314157;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(7, 29, 59, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 22px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 26px;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 59, 0.28);
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn:after {
  content: "→";
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 900;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover:after {
  transform: translateX(3px);
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(135deg, #0b2b52 0%, var(--navy) 58%, #041225 100%);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(7, 29, 59, 0.24);
}

.btn-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #0b2b52 0%, var(--navy) 70%, #041225 100%);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(7, 29, 59, 0.22);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: var(--navy);
  border-color: rgba(7, 29, 59, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.btn-primary:after,
.btn-dark:after {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-ghost:after,
.btn-light:after {
  background: rgba(7, 29, 59, 0.08);
  color: var(--navy);
}

.btn-primary:hover,
.btn-dark:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-primary:hover:after,
.btn-dark:hover:after {
  background: var(--navy);
  color: var(--white);
}

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

.btn-ghost:hover:after,
.btn-light:hover:after {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 0;
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.cinema-hero {
  width: min(1500px, calc(100% - 32px));
  min-height: calc(100vh - 32px);
  margin: 0 auto 0;
  padding: clamp(34px, 4vw, 48px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 28px 90px rgba(7, 29, 59, 0.28);
}

.cinema-video,
.cinema-shade {
  position: absolute;
  inset: 0;
}

.cinema-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.cinema-shade {
  background:
    radial-gradient(circle at 66% 34%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(2, 9, 20, 0.8) 0%, rgba(2, 9, 20, 0.34) 48%, rgba(2, 9, 20, 0.76) 100%),
    linear-gradient(180deg, rgba(2, 9, 20, 0.22) 0%, rgba(2, 9, 20, 0.35) 52%, rgba(2, 9, 20, 0.72) 100%);
}

.cinema-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
}

.cinema-copy {
  max-width: 820px;
  padding-top: 70px;
}

.cinema-copy h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(64px, 7.2vw, 104px);
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.cinema-copy p {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.cinema-copy .eyebrow {
  color: var(--white);
  font-size: 12px;
}

.cinema-copy .eyebrow:before,
.cinema-copy .eyebrow:after {
  display: none;
}

.cinema-copy h1 em {
  color: var(--white);
}

.hero-cta {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  background: rgba(246, 248, 251, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.hero-cta p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.hero-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.08;
  font-weight: 400;
}

.round-link {
  width: 58px;
  height: 58px;
  margin-top: 28px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  font-size: 20px;
}

.route-line {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(3, 14, 31, 0.42);
  backdrop-filter: blur(16px);
}

.route-track {
  position: absolute;
  left: 38px;
  right: 38px;
  top: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.route-track span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
  animation: lineTravel 3.4s ease-in-out infinite;
}

.route-step {
  position: relative;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.route-step:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(225, 61, 47, 0.18);
}

.route-step strong {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  color: var(--white);
}

.route-step span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.motion-dock {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.motion-dock article {
  min-height: 132px;
  padding: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.motion-dock article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(3, 14, 31, 0.82));
}

.motion-dock video,
.motion-dock img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motion-dock span,
.motion-dock strong {
  position: relative;
  z-index: 1;
}

.know-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(420px, calc(100% - 64px));
  min-height: 118px;
  display: block;
  color: var(--navy);
}

.know-main {
  grid-row: 1 / -1;
  padding: 30px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  color: var(--navy);
}

.know-main h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 46px);
  line-height: 0.95;
  font-weight: 400;
}

.know-main span {
  color: #536173;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.know-detail {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  padding: 22px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--paper);
}

.know-main strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.know-detail p {
  max-width: 180px;
  margin: 0;
  color: #3f4b5c;
  font-size: 13px;
  line-height: 1.35;
}

.know-video {
  width: 76px;
  height: 76px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed var(--navy);
  border-radius: 50%;
  background: var(--white);
}

.know-video video {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
  border-radius: 50%;
}

.know-video:after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(7, 29, 59, 0.2);
}

.know-video span {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  overflow: hidden;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
}

.know-arrow {
  width: 100%;
  min-height: 118px;
  padding: 0 42px 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
}

.know-arrow span {
  max-width: none;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
}

.know-arrow b {
  font-family: var(--sans);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.know-arrow:hover {
  background: var(--red);
  color: var(--white);
}

.motion-dock span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.motion-dock strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

@keyframes lineTravel {
  0% { transform: translateX(-110%); }
  55% { transform: translateX(170%); }
  100% { transform: translateX(170%); }
}

.hero-copy {
  min-height: 670px;
  padding: clamp(34px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.hero-copy:before {
  content: "";
  position: absolute;
  inset: auto -20% -34% -10%;
  height: 320px;
  background: radial-gradient(circle at 50% 50%, rgba(225, 61, 47, 0.32), transparent 62%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow:before,
.eyebrow:after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
.display {
  margin: 0;
  font-family: var(--serif);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(52px, 8vw, 102px);
  font-weight: 400;
}

h1 em,
h2 em,
.display em {
  color: var(--red);
  font-style: italic;
}

.hero-copy p {
  position: relative;
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  min-height: 670px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 20px;
}

.hero-card {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 29, 59, 0.1), rgba(7, 29, 59, 0.6)),
    url("https://ttw.wlimg.com/package-images/photo-big/dir_70/2082313/447798.jpg") center / cover;
  overflow: hidden;
  position: relative;
}

.hero-float {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.hero-float strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini {
  min-height: 130px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 24px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
  position: relative;
}

.mini:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 29, 59, 0.72));
}

.mini span,
.mini strong {
  position: relative;
}

.mini strong {
  font-family: var(--serif);
  font-size: 20px;
}

.mini-1 { background: url("https://ttw.wlimg.com/package-images/photo-big/dir_70/2082313/447764.jpg") center / cover; }
.mini-2 { background: url("https://ttw.wlimg.com/package-images/photo-big/dir_70/2082313/447799.jpg") center / cover; }
.mini-3 { background: url("https://ttw.wlimg.com/package-images/photo-big/dir_70/2082313/447800.jpg") center / cover; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 110px auto;
}

.section.narrow {
  width: min(900px, calc(100% - 40px));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
}

.section-head p,
.lede {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.page-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 0;
  min-height: 430px;
  padding: clamp(34px, 7vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(7, 29, 59, 0.18), rgba(7, 29, 59, 0.78)),
    var(--page-image, url("assets/popular/delhi.jpg")) center / cover;
  color: var(--white);
}

.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.services-hero {
  min-height: 500px;
  background:
    linear-gradient(90deg, rgba(7, 29, 59, 0.76), rgba(7, 29, 59, 0.2) 54%, rgba(7, 29, 59, 0.46)),
    linear-gradient(180deg, rgba(7, 29, 59, 0.04), rgba(7, 29, 59, 0.78)),
    var(--page-image, url("assets/services/airport-taxis.jpg")) center 46% / cover;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 29, 59, 0.06);
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 400;
}

.card p {
  margin: 0;
  color: var(--muted);
}

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

.services-showcase {
  margin-top: 72px;
}

.services-showcase .grid-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.service-photo-card {
  min-height: 430px;
  position: relative;
  display: flex;
  align-items: flex-end;
  border: 0;
  border-radius: 26px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 60px rgba(7, 29, 59, 0.14);
}

.service-photo-card:first-child {
  grid-row: span 2;
  min-height: 890px;
}

.service-photo-card .card-img {
  position: absolute;
  inset: 0;
  height: 100%;
  filter: saturate(1.04) contrast(1.02);
}

.service-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 11, 24, 0.04), rgba(2, 11, 24, 0.82)),
    radial-gradient(ellipse at 20% 10%, rgba(255, 255, 255, 0.14), transparent 34%);
}

.service-photo-card .card-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(22px, 3vw, 34px);
}

.service-photo-card .card-body span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-photo-card h3 {
  max-width: 420px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
}

.service-photo-card p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
}

.destination-card {
  min-height: 490px;
  display: flex;
  align-items: end;
  padding: 20px;
  border-radius: 26px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.video-destination video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}

.video-destination:hover video {
  transform: scale(1.08);
}

.destination-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 29, 59, 0.02), rgba(7, 29, 59, 0.84)),
    linear-gradient(90deg, rgba(7, 29, 59, 0.3), transparent 62%);
}

.destination-card > div {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.place-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.destination-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.destination-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

.dest-srinagar { background: url("https://ttw.wlimg.com/package-images/photo-big/dir_70/2082313/447798.jpg") center / cover; }
.dest-gulmarg { background: url("https://ttw.wlimg.com/package-images/photo-big/dir_70/2082313/447799.jpg") center / cover; }
.dest-pahalgam { background: url("https://ttw.wlimg.com/package-images/photo-big/dir_70/2082313/447800.jpg") center / cover; }

.editorial-destinations {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto 76px;
  padding: 54px 32px 48px;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background: #eef2f8;
}

.dest-heading {
  margin-bottom: 28px;
  text-align: center;
}

.dest-heading .eyebrow {
  justify-content: center;
}

.dest-heading h2 {
  margin: 22px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.96;
  font-weight: 400;
}

.feature-package,
.split-package {
  position: relative;
}

.feature-package {
  min-height: 650px;
  margin-bottom: 74px;
}

.feature-package > h3,
.split-package > h3 {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 28px 96px;
  background: #eef2f8;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  font-weight: 400;
}

.feature-package > h3 {
  left: 6%;
  top: -1px;
}

.feature-package > img {
  width: 76%;
  height: 640px;
  margin-left: 0;
  object-fit: cover;
}

.motion-clip {
  filter: saturate(1.05) contrast(1.04);
}

.package-panel {
  background: #eef2f8;
  color: var(--navy);
}

.feature-package .package-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(430px, 38%);
  padding: 46px 48px 12px;
}

.package-panel span {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.package-panel h4 {
  margin: 20px 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.04;
  font-weight: 400;
}

.package-panel p {
  margin: 0 0 18px;
  color: var(--navy);
}

.package-panel p strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.package-panel .price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.package-panel .price-line strong {
  font-size: 28px;
  white-space: nowrap;
}

.package-panel small {
  font-size: 15px;
}

.package-desc {
  line-height: 1.45;
}

.package-panel .btn {
  min-width: 180px;
  margin-top: 6px;
  border-color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.package-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}

.split-package {
  min-height: 640px;
}

.split-package > h3 {
  right: 0;
  top: 74px;
  padding: 24px 70px;
  font-size: 36px;
}

.split-package > img {
  width: 76%;
  height: 424px;
  object-fit: cover;
}

.split-package:nth-child(2) > img {
  width: 82%;
}

.split-package .package-panel {
  width: 56%;
  min-width: 300px;
  margin-top: -1px;
  padding: 28px 28px 0;
}

.split-package:nth-child(1) .package-panel {
  margin-left: 4%;
}

.split-package:nth-child(2) .package-panel {
  margin-left: 4%;
}

.split-package .package-panel h4 {
  font-size: 24px;
}

.split-package .package-panel .btn {
  min-width: 0;
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
}

.popular-destinations {
  margin-top: 78px;
  padding-top: 56px;
  border-top: 1px dashed rgba(7, 29, 59, 0.28);
}

.popular-copy {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.popular-copy .eyebrow {
  justify-content: center;
}

.popular-copy h3 {
  margin: 20px 0 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1;
  font-weight: 400;
}

.popular-copy p {
  margin: 0 auto;
  max-width: 650px;
  color: #2b3b51;
  font-size: 16px;
  line-height: 1.48;
}

.destination-reel {
  min-height: 360px;
  position: relative;
  margin: 0 0 32px;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
}

.destination-reel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
}

.destination-reel:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 14, 31, 0.82), rgba(3, 14, 31, 0.18)),
    linear-gradient(180deg, transparent, rgba(3, 14, 31, 0.66));
}

.destination-reel div {
  width: min(520px, calc(100% - 48px));
  min-height: 360px;
  position: relative;
  z-index: 1;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.destination-reel span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-reel h4 {
  margin: 14px 0 14px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 400;
}

.destination-reel p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

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

.popular-grid article {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  background: #dce4ef;
}

.popular-grid article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 14, 31, 0.05), rgba(3, 14, 31, 0.68));
}

.popular-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.popular-grid article:hover img {
  transform: scale(1.06);
}

.popular-grid span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 17px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.destination-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 34%);
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
}

.mini-destination-card {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
  scroll-snap-align: start;
}

.mini-destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.mini-destination-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 29, 59, 0.04), rgba(7, 29, 59, 0.84));
}

.mini-destination-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
}

.mini-destination-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-destination-card h3 {
  margin: 12px 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

.mini-destination-card .btn {
  width: 100%;
}

.custom-builder {
  width: min(1240px, calc(100% - 32px));
  margin: clamp(18px, 2.6vw, 34px) auto 66px;
  padding: clamp(22px, 2.8vw, 36px);
  display: grid;
  grid-template-columns: minmax(210px, 0.3fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: stretch;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 14% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #071d3b 0%, #092746 58%, #03101f 100%);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(7, 29, 59, 0.22);
}

.custom-intro {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-intro .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.custom-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: 0.96;
  font-weight: 400;
}

.custom-intro h2 em {
  color: var(--white);
}

.custom-intro p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

.custom-panel {
  min-width: 0;
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.custom-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.custom-progress span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-progress span.is-active {
  background: var(--white);
  color: var(--navy);
}

.custom-form {
  min-height: 0;
  min-width: 0;
}

.custom-step {
  display: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  overflow: hidden;
}

.custom-step.is-active {
  display: flex;
  flex-direction: column;
}

.custom-step legend {
  max-width: 100%;
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

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

.choice-grid label,
.hotel-list label {
  cursor: pointer;
}

.choice-grid input,
.hotel-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span,
.hotel-list > label > span {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.22;
  text-align: center;
  overflow-wrap: anywhere;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.choice-grid input:checked + span,
.hotel-list input:checked + span {
  transform: translateY(-1px);
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.custom-textarea,
.guest-input {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  min-width: 0;
}

.custom-textarea span,
.guest-input span,
.mini-label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-textarea textarea,
.guest-input input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.custom-textarea textarea {
  min-height: 86px;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.45;
  resize: vertical;
}

.custom-textarea textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.guest-input input {
  height: 72px;
  padding: 0 18px;
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.vehicle-suggestion {
  margin: 20px 0;
  padding: 20px;
  display: grid;
  gap: 4px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.vehicle-suggestion span,
.vehicle-suggestion small {
  color: rgba(7, 29, 59, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.vehicle-suggestion strong {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
}

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

.two-col {
  margin-top: 10px;
}

.ac-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.35;
}

.hotel-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.hotel-list > .mini-label {
  grid-column: 1 / -1;
}

.hotel-list > label > span {
  min-height: 68px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.hotel-list b {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
}

.hotel-list small {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.7;
}

.builder-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.builder-actions button,
.builder-next {
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
}

.builder-next,
.builder-actions .builder-next {
  margin-top: auto;
  align-self: flex-end;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.custom-step > .builder-next {
  width: min(180px, 100%);
  margin-top: 18px;
  margin-left: auto;
}

.custom-summary {
  display: grid;
  gap: 14px;
}

.custom-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.summary-row {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.summary-row span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-row strong {
  max-width: 62%;
  text-align: right;
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
}

.custom-submit {
  min-width: 220px;
  min-height: 62px;
}

.steps {
  counter-reset: step;
}

.step {
  padding: 28px;
  border-top: 1px dashed #b9c4d4;
}

.step:before {
  counter-increment: step;
  content: "Step #0" counter(step);
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.breeza-way {
  width: min(1500px, calc(100% - 32px));
  min-height: auto;
  margin: 0 auto;
  padding: 78px 24px 94px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background: #f3f6fa;
}

.breeza-way:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 28% 8%, rgba(7, 29, 59, 0.05), transparent 28%),
    radial-gradient(ellipse at 66% 18%, rgba(7, 29, 59, 0.045), transparent 24%),
    radial-gradient(ellipse at 48% 42%, rgba(7, 29, 59, 0.04), transparent 18%);
  pointer-events: none;
}

.way-title {
  position: relative;
  z-index: 2;
  text-align: center;
}

.way-title .eyebrow {
  justify-content: center;
}

.way-title h2 {
  margin: 22px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 70px);
  line-height: 0.86;
  font-weight: 400;
}

.letter-gallery {
  width: min(980px, 100%);
  min-height: 300px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(10px, 1.3vw, 18px);
  z-index: 1;
  margin: 44px auto 0;
}

.letter-tile {
  position: relative;
  width: 100%;
  height: clamp(190px, 18vw, 270px);
  margin: 0;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7, 29, 59, 0.08);
}

.letter-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.letter-tile span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--serif);
  font-size: 118px;
  line-height: 1;
  text-shadow: 0 8px 28px rgba(7, 29, 59, 0.34);
}

.tile-b { transform: translateY(-38px); }
.tile-r { transform: translateY(22px); }
.tile-e1 { transform: translateY(88px); }
.tile-e2 { transform: translateY(145px); }
.tile-z { transform: translateY(72px); }
.tile-a { transform: translateY(-28px); }

.way-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  margin: 54px auto 0;
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.way-copy p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(26px, 3.1vw, 38px);
  line-height: 1.1;
}

.way-copy .btn {
  min-width: 216px;
  border-color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.trip-ease {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 310px);
  border: 1px dashed rgba(7, 29, 59, 0.32);
  border-bottom: 0;
  background: #f3f6fa;
}

.ease-cell {
  min-height: 310px;
  position: relative;
  padding: 34px 38px;
  border-right: 1px dashed rgba(7, 29, 59, 0.32);
  border-bottom: 1px dashed rgba(7, 29, 59, 0.32);
}

.ease-cell:nth-child(3n) { border-right: 1px dashed rgba(7, 29, 59, 0.32); }
.ease-cell:nth-child(4),
.ease-cell:nth-child(7) { border-right: 0; }

.ease-art { grid-column: 1; grid-row: 1 / span 2; }
.ease-heading { grid-column: 2; grid-row: 1; }
.ease-step:nth-of-type(1) { grid-column: 2; grid-row: 2; }
.ease-step:nth-of-type(2) { grid-column: 3; grid-row: 2; }
.ease-step:nth-of-type(3) { grid-column: 1; grid-row: 3; }
.ease-step:nth-of-type(4) { grid-column: 2; grid-row: 3; }
.ease-cta { grid-column: 3; grid-row: 3; }

.ease-heading {
  display: grid;
  place-items: center;
  text-align: center;
}

.ease-heading h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 400;
}

.ease-art {
  display: grid;
  place-items: center;
}

.ease-art span {
  position: absolute;
  width: 188px;
  height: 188px;
  border: 1px dashed rgba(7, 29, 59, 0.26);
  border-radius: 50%;
}

.ease-art span:nth-child(1) { transform: translateX(-116px); }
.ease-art span:nth-child(2) { border-style: solid; border-color: rgba(7, 29, 59, 0.68); }
.ease-art span:nth-child(3) { transform: translateX(116px); }

.ease-step {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.step-kicker {
  position: absolute;
  top: 34px;
  left: 38px;
  right: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.step-kicker i {
  width: 38px;
  height: 8px;
  background: radial-gradient(circle, var(--navy) 0 3px, transparent 4px) 0 0 / 10px 8px repeat-x;
}

.ease-step img {
  width: 94px;
  height: 72px;
  margin-bottom: 22px;
  object-fit: cover;
  transform: rotate(-6deg);
  border: 5px solid var(--white);
  box-shadow: 0 12px 30px rgba(7, 29, 59, 0.18);
}

.ease-step h3,
.ease-cta h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 400;
}

.ease-step p {
  max-width: 360px;
  margin: 0;
  color: #1f2e42;
  font-size: 16px;
  line-height: 1.35;
}

.ease-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 96px;
}

.ease-cta .btn {
  width: 250px;
  border-color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.service-card {
  padding: 28px;
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 23px;
}

.az-services {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto 76px;
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  overflow: hidden;
  border-radius: 28px;
  background: #eef2f8;
}

.az-copy {
  min-height: 540px;
  padding: clamp(34px, 5vw, 66px) 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.az-copy h2 {
  margin: 26px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.98;
  font-weight: 400;
}

.az-copy p {
  max-width: 420px;
  margin: 0 0 28px;
  color: #28384f;
  font-size: 17px;
  line-height: 1.45;
}

.az-copy .btn {
  width: max-content;
  border-color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.az-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 42%);
  gap: 18px;
  overflow-x: auto;
  padding: 0 28px 18px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.az-card {
  min-height: 540px;
  scroll-snap-align: start;
  background: var(--white);
}

.az-card img,
.az-card video {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.az-card video {
  display: block;
  background: var(--navy);
}

.az-card div {
  padding: 28px 38px 34px;
}

.az-card span {
  display: inline-block;
  margin-right: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  vertical-align: top;
}

.az-card h3 {
  display: inline;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.08;
  font-weight: 400;
}

.az-card p {
  max-width: 470px;
  margin: 14px 0 0 38px;
  color: #27364d;
  font-size: 16px;
  line-height: 1.35;
}

.company-profile {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 0;
  overflow: hidden;
  border: 1px dashed rgba(7, 29, 59, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(7, 29, 59, 0.045), transparent 28%),
    radial-gradient(ellipse at 86% 18%, rgba(225, 61, 47, 0.055), transparent 22%),
    #eef2f8;
}

.company-copy,
.company-card {
  padding: clamp(34px, 5vw, 70px);
}

.company-copy {
  border-right: 1px dashed rgba(7, 29, 59, 0.28);
}

.company-copy h2 {
  margin: 24px 0 24px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(50px, 5.2vw, 78px);
  line-height: 0.95;
  font-weight: 400;
}

.company-copy p {
  max-width: 710px;
  margin: 0 0 18px;
  color: #23344c;
  font-size: 17px;
  line-height: 1.5;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.company-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.46);
}

.company-card img {
  width: 190px;
  height: 132px;
  margin-bottom: 24px;
  object-fit: contain;
  border-radius: 14px;
  background: #000;
}

.company-card dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.company-card div {
  padding: 0 0 14px;
  border-bottom: 1px dashed rgba(7, 29, 59, 0.2);
}

.company-card div:last-child {
  border-bottom: 0;
}

.company-card dt {
  margin-bottom: 3px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-card dd {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.08;
}

.company-card a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-services {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px dashed rgba(7, 29, 59, 0.3);
  border-radius: 28px;
  overflow: hidden;
  background: #f3f6fa;
}

.about-services article {
  min-height: 300px;
  padding: clamp(28px, 3.8vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px dashed rgba(7, 29, 59, 0.3);
}

.about-services article:last-child {
  border-right: 0;
}

.about-services span {
  margin-bottom: auto;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.about-services h3 {
  margin: 90px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.about-services p {
  margin: 0;
  color: #26364c;
  font-size: 15px;
  line-height: 1.42;
}

.different-section {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(620px, auto) minmax(360px, auto);
  overflow: hidden;
  border: 1px dashed rgba(7, 29, 59, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 28% 8%, rgba(7, 29, 59, 0.04), transparent 30%),
    radial-gradient(ellipse at 74% 16%, rgba(7, 29, 59, 0.035), transparent 26%),
    #f3f6fa;
}

.different-cell {
  min-height: 100%;
  position: relative;
  padding: clamp(34px, 4vw, 56px);
  border-right: 1px dashed rgba(7, 29, 59, 0.3);
  border-bottom: 1px dashed rgba(7, 29, 59, 0.3);
}

.different-cell:nth-child(2),
.different-cell:nth-child(5) {
  border-right: 0;
}

.different-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.different-copy:after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 100%;
  width: calc(100% + 1px);
  border-right: 1px dashed rgba(7, 29, 59, 0.3);
  border-bottom: 1px dashed rgba(7, 29, 59, 0.3);
  pointer-events: none;
}

.different-copy h1,
.different-copy h2 {
  margin: 26px 0 26px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 5.3vw, 72px);
  line-height: 0.98;
  font-weight: 400;
}

.different-copy h1 em,
.different-copy h2 em {
  color: var(--navy);
  font-style: italic;
}

.different-copy p {
  max-width: 470px;
  margin: 0 0 18px;
  color: #1c2b40;
  font-size: 16px;
  line-height: 1.42;
}

.different-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.different-actions .btn {
  min-width: 98px;
  min-height: 40px;
  padding: 10px 15px;
  font-size: 14px;
}

.different-photo {
  grid-column: 3;
  grid-row: 1;
  display: grid;
  place-items: center;
}

.different-photo:before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: 88px;
  border-top: 1px dashed rgba(7, 29, 59, 0.3);
}

.photo-stack {
  width: min(86%, 390px);
  height: 520px;
  position: relative;
}

.photo-stack img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 86%;
  height: 85%;
  object-fit: cover;
  border: 12px solid #e4ebf3;
  box-shadow: 0 18px 52px rgba(7, 29, 59, 0.18);
}

.photo-stack img:nth-child(1) {
  transform: translate(-54%, -49%) rotate(-8deg);
}

.photo-stack img:nth-child(2) {
  transform: translate(-46%, -50%) rotate(9deg);
}

.photo-stack img:nth-child(3) {
  width: 92%;
  height: 88%;
  border-color: #eef3f9;
  transform: translate(-50%, -50%) rotate(0deg);
  box-shadow: 0 24px 62px rgba(7, 29, 59, 0.2);
}

.different-benefit {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.different-section > .different-benefit:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.different-section > .different-benefit:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.different-section > .different-benefit:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.different-benefit i {
  position: absolute;
  top: 38px;
  right: 38px;
  width: 24px;
  height: 30px;
  opacity: 0.72;
  background: radial-gradient(circle, var(--navy) 0 2px, transparent 3px) 0 0 / 8px 8px repeat;
}

.benefit-icon {
  position: absolute;
  top: 38px;
  left: 38px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}

.different-benefit h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.12;
  font-weight: 400;
}

.different-benefit p {
  max-width: 390px;
  margin: 0;
  color: #26364c;
  font-size: 15px;
  line-height: 1.45;
}

.insta-section {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto 112px;
  padding: 82px 0 76px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 20% 18%, rgba(7, 29, 59, 0.04), transparent 28%),
    radial-gradient(ellipse at 76% 10%, rgba(225, 61, 47, 0.05), transparent 24%),
    #eef2f8;
}

.insta-head {
  width: min(620px, calc(100% - 36px));
  margin: 0 auto 36px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.insta-head .eyebrow {
  justify-content: center;
}

.insta-head h2 {
  margin: 22px 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 70px);
  line-height: 0.95;
  font-weight: 400;
}

.insta-head h2 em {
  color: var(--navy);
  font-style: italic;
}

.insta-head p {
  max-width: 430px;
  margin: 0 0 28px;
  color: #24364c;
  font-size: 15px;
  line-height: 1.35;
}

.insta-handle {
  min-width: 220px;
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border: 1px solid rgba(7, 29, 59, 0.86);
  border-radius: 999px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.insta-handle:hover {
  transform: translateY(-2px);
  background: var(--navy);
  color: var(--white);
}

.insta-carousel {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 18px;
}

.insta-track {
  width: max-content;
  display: flex;
  align-items: end;
  gap: 34px;
  padding: 10px 0;
  animation: instaSlide 42s linear infinite;
}

.insta-carousel:hover .insta-track {
  animation-play-state: paused;
}

.insta-card {
  width: clamp(230px, 20vw, 310px);
  height: clamp(330px, 30vw, 410px);
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  padding: 12px 12px 48px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 29, 59, 0.14);
}

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

.insta-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}

.tilt-left { transform: rotate(-4deg); }
.tilt-right { transform: rotate(5deg); }
.tilt-left-soft { transform: rotate(-2deg); }
.tilt-right-soft { transform: rotate(2.5deg); }

@keyframes instaSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 17px));
  }
}

.numbers-section {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px dashed rgba(7, 29, 59, 0.32);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(7, 29, 59, 0.04), transparent 42%),
    #f3f6fa;
}

.numbers-intro {
  min-height: 520px;
  padding: clamp(40px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px dashed rgba(7, 29, 59, 0.32);
}

.numbers-intro h2 {
  max-width: 560px;
  margin: 24px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1;
  font-weight: 400;
}

.numbers-intro p {
  max-width: 430px;
  margin: 0;
  color: #26364c;
  font-size: 17px;
  line-height: 1.45;
}

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

.number-card {
  min-height: 260px;
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px dashed rgba(7, 29, 59, 0.32);
  border-bottom: 1px dashed rgba(7, 29, 59, 0.32);
}

.number-card:nth-child(2n) {
  border-right: 0;
}

.number-card:nth-child(n + 3) {
  border-bottom: 0;
}

.number-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0;
}

.number-card span {
  margin-top: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.number-card p {
  max-width: 360px;
  margin: 12px 0 0;
  color: #28384f;
  font-size: 15px;
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: center;
}

.panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel.dark {
  background: var(--navy);
  color: var(--white);
}

.panel.dark p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
}

.feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf2f7;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.gallery button {
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery button:hover img {
  transform: scale(1.05);
}

.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }

.testimonial {
  padding: clamp(32px, 6vw, 70px);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.16;
}

.testimonial cite {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.faq {
  border-top: 1px dashed #b9c4d4;
}

.faq-item {
  border-bottom: 1px dashed #b9c4d4;
}

.faq-button {
  width: 100%;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  cursor: pointer;
}

.faq-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px dashed var(--navy);
  border-radius: 50%;
}

.faq-panel {
  display: none;
  max-width: 760px;
  padding: 0 0 28px;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  display: block;
}

.faq-item.is-open .faq-icon {
  background: var(--navy);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
}

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

.form-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 110px auto 0;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.cta-band h2 {
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 400;
}

.cta-band p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  width: min(1500px, calc(100% - 32px));
  min-height: 330px;
  margin: 28px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #062a50;
  color: rgba(255, 255, 255, 0.78);
}

.footer-video,
.footer-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer-video {
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(1) saturate(1.35) hue-rotate(168deg) brightness(0.46) contrast(1.22);
}

.footer-overlay {
  background:
    linear-gradient(180deg, rgba(2, 26, 52, 0.9), rgba(3, 43, 82, 0.88)),
    radial-gradient(ellipse at 22% 18%, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(ellipse at 78% 84%, rgba(45, 129, 211, 0.22), transparent 36%);
}

.site-footer:before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 1;
  opacity: 0.32;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.16), transparent 22%),
    radial-gradient(ellipse at 64% 54%, rgba(42, 130, 212, 0.24), transparent 26%),
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.06) 42%, transparent 64%);
  filter: blur(28px);
  animation: footerMotion 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.footer-shell {
  width: min(1370px, calc(100% - 56px));
  min-height: 330px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 38px 0 22px;
  display: flex;
  flex-direction: column;
}

.footer-brand-block {
  display: grid;
  justify-items: start;
  text-align: left;
}

.footer-brand {
  justify-content: flex-start;
}

.footer-logo {
  width: 132px;
  height: 80px;
  box-shadow: none;
}

.footer-brand-block p {
  display: none;
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.98;
}

.footer-main {
  margin-top: 18px;
  padding: 20px 0 22px;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(280px, 1.1fr) minmax(140px, 0.55fr);
  gap: 26px;
  align-items: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.34);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.34);
}

.footer-cta p,
.footer-contact span {
  display: none;
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 40px);
  line-height: 1.05;
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-kicker:before,
.footer-kicker:after {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.footer-button {
  width: min(250px, 100%);
  min-height: 66px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--serif);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.footer-button span {
  font-size: 24px;
  line-height: 1;
}

.footer-button small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

.footer-button:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.footer-contact {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  font-style: normal;
}

.footer-contact a,
.footer-socials a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-contact a + a {
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  align-content: start;
  align-items: flex-end;
  gap: 10px;
}

.footer-socials a {
  width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.footer-bottom {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-bottom a,
.footer-proprietor a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-proprietor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.footer-proprietor a {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

@keyframes footerMotion {
  from {
    transform: translate3d(-4%, -2%, 0) scale(1);
  }

  to {
    transform: translate3d(4%, 3%, 0) scale(1.08);
  }
}

.whatsapp-float {
  display: none;
}

.whatsapp-float:after {
  content: "WA";
  font-size: 15px;
  letter-spacing: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 10, 22, 0.84);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav {
    min-height: 70px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .home-page .nav-links {
    background: rgba(7, 29, 59, 0.92);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .home-page .nav-links a {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
  }

  .home-page .nav-links a:hover,
  .home-page .nav-links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
  }

  .mobile-nav-only {
    display: block;
  }

  .home-page .home-nav {
    min-height: 84px;
  }

  .home-page .home-brand {
    left: -42px;
    top: 50%;
    transform: translateY(-50%);
  }

  .home-brand-logo {
    width: 138px;
    height: 58px;
  }

  .home-nav-actions {
    display: none;
  }

  .home-page .menu-toggle {
    margin-left: auto;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    backdrop-filter: blur(12px);
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero,
  .cinema-content,
  .split,
  .contact-grid,
  .section-head,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media,
  .hero-card {
    min-height: auto;
  }

  .hero-copy {
    gap: 54px;
  }

  .hero-card {
    min-height: 460px;
  }

  .cinema-hero {
    min-height: 820px;
  }

  .cinema-content {
    min-height: 620px;
  }

  .cinema-copy {
    padding-top: 90px;
  }

  .cinema-shade {
    background:
      linear-gradient(180deg, rgba(3, 14, 31, 0.9), rgba(3, 14, 31, 0.58) 48%, rgba(3, 14, 31, 0.94)),
      linear-gradient(90deg, rgba(3, 14, 31, 0.78), rgba(3, 14, 31, 0.36));
  }

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

  .route-track {
    display: none;
  }

  .know-card {
    width: min(420px, calc(100% - 34px));
  }

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

  .breeza-way {
    min-height: auto;
    padding: 68px 20px;
  }

  .letter-gallery {
    min-height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .letter-tile {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 240px;
  }

  .tile-b,
  .tile-e1,
  .tile-z {
    transform: none;
  }

  .tile-r,
  .tile-e2,
  .tile-a {
    transform: translateY(28px);
  }

  .way-copy {
    margin-top: 62px;
  }

  .trip-ease {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .editorial-destinations {
    padding: 64px 24px;
  }

  .az-services {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .az-copy {
    min-height: auto;
    padding: 42px 32px 10px;
  }

  .az-copy p {
    max-width: 720px;
  }

  .az-rail {
    grid-auto-columns: minmax(360px, 64%);
    padding-left: 32px;
  }

  .az-card {
    min-height: 560px;
  }

  .az-card img {
    height: 360px;
  }

  .company-profile {
    grid-template-columns: 1fr;
  }

  .company-copy {
    border-right: 0;
    border-bottom: 1px dashed rgba(7, 29, 59, 0.28);
  }

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

  .about-services article:nth-child(2n) {
    border-right: 0;
  }

  .about-services article:nth-child(-n + 2) {
    border-bottom: 1px dashed rgba(7, 29, 59, 0.3);
  }

  .feature-package {
    min-height: auto;
  }

  .feature-package > img {
    width: 100%;
    height: 520px;
  }

  .feature-package .package-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, 88%);
    margin: -90px 0 0 auto;
  }

  .package-pair {
    gap: 32px;
  }

  .split-package {
    min-height: auto;
  }

  .split-package > img,
  .split-package:nth-child(2) > img {
    width: 100%;
    height: 360px;
  }

  .split-package > h3 {
    top: 0;
    right: 0;
  }

  .split-package .package-panel {
    width: 82%;
    min-width: 0;
    margin-top: -48px;
  }

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

  .popular-grid article {
    min-height: 230px;
  }

  .ease-art,
  .ease-heading,
  .ease-step:nth-of-type(1),
  .ease-step:nth-of-type(2),
  .ease-step:nth-of-type(3),
  .ease-step:nth-of-type(4),
  .ease-cta {
    grid-column: auto;
    grid-row: auto;
  }

  .ease-cell:nth-child(3n) {
    border-right: 1px dashed rgba(7, 29, 59, 0.32);
  }

  .ease-cell:nth-child(2n) {
    border-right: 0;
  }

  .different-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .different-copy,
  .different-photo,
  .different-section > .different-benefit:nth-child(3),
  .different-section > .different-benefit:nth-child(4),
  .different-section > .different-benefit:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .different-copy {
    min-height: 540px;
  }

  .different-copy:after,
  .different-photo:before {
    display: none;
  }

  .different-cell:nth-child(2) {
    border-right: 0;
  }

  .different-cell:nth-child(3),
  .different-cell:nth-child(5) {
    border-right: 1px dashed rgba(7, 29, 59, 0.3);
  }

  .different-cell:nth-child(4) {
    border-right: 0;
  }

  .different-photo {
    min-height: 540px;
  }

  .photo-stack {
    height: 440px;
  }

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

  .insta-track {
    gap: 26px;
  }

  .insta-card {
    width: 280px;
    height: 380px;
  }

  .numbers-section {
    grid-template-columns: 1fr;
  }

  .numbers-intro {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px dashed rgba(7, 29, 59, 0.32);
  }

  .site-footer {
    min-height: auto;
  }

  .footer-shell {
    min-height: auto;
  }

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

  .footer-socials {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .nav,
  .hero,
  .page-hero,
  .section,
  .section.narrow,
  .cta-band {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 48px;
  }

  .cinema-hero {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
    padding: 22px;
    border-radius: 24px;
    min-height: clamp(430px, 64svh, 620px);
  }

  .cinema-content {
    min-height: clamp(360px, 56svh, 540px);
  }

  .cinema-copy {
    padding-top: 42px;
  }

  .cinema-copy h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .cinema-copy p {
    max-width: 310px;
    font-size: 17px;
  }

  .cinema-copy .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .know-card {
    width: calc(100% - 22px);
    min-height: 112px;
  }

  .know-arrow {
    min-height: 112px;
    padding: 0 26px;
    flex-direction: row;
  }

  .know-arrow span {
    font-size: 30px;
  }

  .know-arrow b {
    font-size: 34px;
  }

  .hero-cta {
    padding: 22px;
  }

  .route-line {
    padding: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .route-step strong {
    font-size: 24px;
  }

  .motion-dock {
    grid-template-columns: 1fr;
  }

  .hero-strip,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .services-showcase {
    margin-top: 42px;
  }

  .services-showcase .grid-3 {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-photo-card,
  .service-photo-card:first-child {
    min-height: 390px;
    grid-row: auto;
    border-radius: 22px;
  }

  .breeza-way {
    width: min(100% - 20px, 1180px);
    padding: 54px 14px;
    border-radius: 24px;
  }

  .letter-gallery {
    height: auto;
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .letter-tile {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 190px;
  }

  .tile-b,
  .tile-r,
  .tile-e1,
  .tile-e2,
  .tile-z,
  .tile-a {
    transform: none;
  }

  .letter-tile span {
    font-size: 82px;
  }

  .home-page .breeza-way {
    padding: 38px 18px 44px;
    margin-bottom: 62px;
  }

  .home-page .way-title h2 {
    font-size: 46px;
  }

  .home-page .letter-gallery {
    display: none;
  }

  .way-copy {
    margin-top: 28px;
  }

  .way-copy p {
    font-size: clamp(22px, 7vw, 27px);
    line-height: 1.08;
  }

  .trip-ease {
    width: min(100% - 20px, 1180px);
    margin-bottom: 80px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .editorial-destinations {
    width: min(100% - 20px, 1180px);
    padding: 44px 14px 64px;
    border-radius: 24px;
  }

  .az-services {
    width: min(100% - 20px, 1180px);
    margin-bottom: 80px;
    border-radius: 24px;
  }

  .az-copy {
    min-height: auto;
    padding: 32px 22px 4px;
  }

  .az-copy h2 {
    font-size: 48px;
  }

  .az-rail {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding: 20px 14px 18px;
  }

  .az-card {
    min-height: auto;
  }

  .az-card img,
  .az-card video {
    display: block;
    height: 220px;
  }

  .home-page .az-card div {
    padding: 24px;
  }

  .home-page .az-card {
    min-height: auto;
  }

  .home-page .numbers-section {
    margin-bottom: 74px;
  }

  .home-page .numbers-intro,
  .home-page .number-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .home-page .number-card strong {
    font-size: 44px;
  }

  .home-page .section {
    margin-bottom: 74px;
  }

  .az-card div {
    padding: 24px;
  }

  .az-card h3 {
    display: block;
    margin-top: 8px;
    font-size: 28px;
  }

  .az-card p {
    margin-left: 0;
  }

  .company-profile,
  .about-services {
    width: min(100% - 20px, 1180px);
    border-radius: 24px;
  }

  .company-copy,
  .company-card {
    padding: 30px 22px;
  }

  .company-copy h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .company-copy p {
    font-size: 16px;
  }

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

  .company-card img {
    width: 156px;
    height: 104px;
  }

  .company-card dd {
    font-size: 22px;
  }

  .about-services {
    grid-template-columns: 1fr;
  }

  .about-services article,
  .about-services article:nth-child(2n),
  .about-services article:nth-child(-n + 2) {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px dashed rgba(7, 29, 59, 0.3);
  }

  .about-services article:last-child {
    border-bottom: 0;
  }

  .about-services h3 {
    margin-top: 54px;
  }

  .dest-heading {
    margin-bottom: 28px;
  }

  .dest-heading h2 {
    font-size: clamp(42px, 12vw, 54px);
    line-height: 0.98;
  }

  .feature-package,
  .split-package {
    min-height: auto;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(7, 29, 59, 0.1);
    border-radius: 24px;
    background: #f7f9fc;
  }

  .feature-package {
    margin-bottom: 34px;
  }

  .feature-package > h3,
  .split-package > h3 {
    position: relative;
    inset: auto;
    order: 1;
    padding: 18px 34px;
    background: #f7f9fc;
    font-size: 32px;
  }

  .feature-package > h3 {
    left: 0;
  }

  .feature-package > img,
  .split-package > img,
  .split-package:nth-child(2) > img {
    order: 2;
    width: 100%;
    height: 310px;
    margin: 0;
  }

  .feature-package .package-panel,
  .split-package .package-panel {
    position: relative;
    order: 3;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 26px 22px 34px;
    background: #f7f9fc;
  }

  .package-pair {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .package-panel h4,
  .split-package .package-panel h4 {
    margin: 14px 0 14px;
    font-size: 24px;
    line-height: 1.08;
  }

  .package-panel .price-line {
    display: block;
  }

  .package-panel .price-line strong {
    display: block;
    margin-top: 2px;
    font-size: 28px;
  }

  .package-desc {
    font-size: 15px;
  }

  .package-panel .btn,
  .split-package .package-panel .btn {
    width: 100%;
    margin-top: 10px;
  }

  .popular-destinations {
    margin-top: 54px;
    padding-top: 42px;
  }

  .destination-reel {
    min-height: 420px;
  }

  .destination-reel div {
    min-height: 420px;
    padding: 28px;
  }

  .popular-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .popular-grid article {
    width: 230px;
    min-width: 230px;
    min-height: 300px;
    scroll-snap-align: start;
  }

  .package-panel p strong {
    font-size: 30px;
  }

  .package-panel .price-line strong {
    font-size: 26px;
  }

  .ease-cell,
  .ease-cell:nth-child(2n),
  .ease-cell:nth-child(3n) {
    min-height: 260px;
    padding: 28px;
    border-right: 0;
  }

  .ease-art {
    display: none;
  }

  .ease-heading {
    min-height: 210px;
  }

  .ease-step img {
    width: 86px;
    height: 66px;
  }

  .ease-cta {
    gap: 28px;
  }

  .different-section {
    width: min(100% - 20px, 1180px);
    grid-template-columns: 1fr;
    margin-bottom: 76px;
    border-radius: 24px;
  }

  .different-cell,
  .different-cell:nth-child(2),
  .different-cell:nth-child(3),
  .different-cell:nth-child(4),
  .different-cell:nth-child(5) {
    min-height: auto;
    border-right: 0;
  }

  .different-copy {
    min-height: auto;
    padding: 46px 28px;
  }

  .different-copy h1,
  .different-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .different-photo {
    min-height: 430px;
    padding: 28px;
  }

  .photo-stack {
    width: min(100%, 330px);
    height: 360px;
  }

  .photo-stack img {
    border-width: 9px;
  }

  .different-benefit {
    min-height: 280px;
    padding: 108px 28px 34px;
  }

  .benefit-icon {
    top: 34px;
    left: 28px;
  }

  .different-benefit i {
    top: 34px;
    right: 28px;
  }

  .insta-section {
    width: min(100% - 20px, 1180px);
    margin-bottom: 76px;
    padding: 54px 0 50px;
    border-radius: 24px;
  }

  .insta-head {
    margin-bottom: 24px;
  }

  .insta-head h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .insta-handle {
    min-width: 190px;
    min-height: 62px;
    font-size: 21px;
  }

  .insta-track {
    gap: 18px;
    animation-duration: 34s;
  }

  .insta-card {
    width: 232px;
    height: 326px;
    padding: 9px 9px 42px;
  }

  .insta-card figcaption {
    left: 15px;
    bottom: 12px;
    font-size: 18px;
  }

  .numbers-section {
    width: min(100% - 20px, 1180px);
    margin-bottom: 76px;
    border-radius: 24px;
  }

  .numbers-intro {
    padding: 42px 28px;
  }

  .numbers-intro h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

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

  .number-card,
  .number-card:nth-child(2n),
  .number-card:nth-child(n + 3) {
    min-height: 230px;
    padding: 34px 28px;
    border-right: 0;
    border-bottom: 1px dashed rgba(7, 29, 59, 0.32);
  }

  .number-card:last-child {
    border-bottom: 0;
  }

  .number-card strong {
    font-size: 58px;
  }

  .site-footer {
    width: min(100% - 20px, 1180px);
    border-radius: 24px 24px 0 0;
  }

  .footer-shell {
    width: min(100% - 36px, 1180px);
    padding: 54px 0 24px;
  }

  .footer-logo {
    width: 154px;
    height: 98px;
  }

  .footer-brand-block p {
    font-size: 26px;
  }

  .footer-main {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-cta p,
  .footer-contact span {
    font-size: 27px;
  }

  .footer-button {
    min-height: 68px;
  }

  .footer-nav a {
    font-size: 35px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .destination-card {
    min-height: 390px;
  }

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

  .span-4,
  .span-5,
  .span-7,
  .span-8 {
    grid-column: span 1;
  }

  .hero-float {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .destination-carousel {
    grid-auto-columns: 86%;
    gap: 14px;
    padding-bottom: 14px;
  }

  .mini-destination-card {
    min-height: 430px;
    border-radius: 20px;
  }

  .mini-destination-card div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .mini-destination-card h3 {
    font-size: 28px;
  }

  .home-page .az-services {
    padding-bottom: 18px;
  }

  .home-page .az-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 18px 14px 22px;
    scroll-snap-type: x mandatory;
  }

  .home-page .az-card {
    min-height: 390px;
    border-radius: 20px;
    overflow: hidden;
  }

  .home-page .az-card img,
  .home-page .az-card video {
    display: block;
    height: 205px;
  }

  .home-page .az-card div {
    padding: 22px;
  }

  .home-page .numbers-section {
    display: block;
  }

  .home-page .numbers-intro {
    padding: 26px 22px 8px;
    border-right: 0;
  }

  .home-page .numbers-intro h2 {
    margin-bottom: 0;
    font-size: 34px;
  }

  .home-page .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 12px 12px;
    gap: 10px;
  }

  .home-page .number-card,
  .home-page .number-card:nth-child(2n),
  .home-page .number-card:nth-child(n + 3) {
    min-height: 138px;
    padding: 18px 14px;
    border: 1px dashed rgba(7, 29, 59, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.48);
  }

  .home-page .number-card strong {
    font-size: 34px;
  }

  .home-page .number-card span {
    font-size: 12px;
  }
}

@media (max-width: 680px) {
  .btn {
    min-height: 50px;
    padding: 12px 20px;
    font-size: 19px;
  }

  .btn:after {
    width: 29px;
    height: 29px;
    font-size: 15px;
  }

  .site-footer {
    min-height: auto;
  }

  .footer-shell {
    width: min(100% - 28px, 1180px);
    padding: 28px 0 18px;
  }

  .footer-logo {
    width: 106px;
    height: 66px;
  }

  .footer-brand-block p {
    max-width: 310px;
    font-size: 27px;
  }

  .footer-main {
    margin-top: 18px;
    padding: 18px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-cta p,
  .footer-contact span {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .footer-button {
    width: min(100%, 310px);
    min-height: 68px;
  }

  .footer-button span {
    font-size: 23px;
  }

  .footer-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .footer-nav {
    display: flex;
    gap: 8px;
  }

  .footer-nav a {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 10px;
  }

  .footer-socials {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

  .custom-intro {
    min-height: auto;
  }

  .custom-intro p {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  .custom-builder {
    width: min(100% - 16px, 1180px);
    margin: 18px auto 48px;
    padding: 18px 12px 14px;
    border-radius: 24px;
    gap: 14px;
    position: relative;
    z-index: 3;
    border: 1px solid rgba(7, 29, 59, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 242, 248, 0.96));
    color: var(--navy);
    box-shadow: 0 18px 52px rgba(7, 29, 59, 0.12);
  }

  .custom-intro h2 {
    margin: 0;
    padding: 4px 6px 2px;
    color: var(--navy);
    font-size: 29px;
    line-height: 1.08;
  }

  .custom-intro p {
    display: none;
  }

  .custom-panel {
    padding: 14px;
    border-radius: 20px;
    background:
      radial-gradient(ellipse at 12% 0%, rgba(255, 255, 255, 0.1), transparent 36%),
      linear-gradient(135deg, #071d3b 0%, #102f50 70%, #06162b 100%);
  }

  .custom-progress {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 12px;
  }

  .custom-progress span {
    min-height: 30px;
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .custom-form,
  .custom-step {
    min-height: auto;
  }

  .custom-step {
    padding: 16px 14px;
    border-radius: 18px;
  }

  .custom-step legend {
    margin-bottom: 16px;
    font-size: 27px;
    line-height: 1.02;
  }

  .choice-grid,
  .vehicle-grid,
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-options {
    grid-template-columns: 1fr;
  }

  .choice-grid span {
    min-height: 48px;
    padding: 10px 11px;
    border-radius: 14px;
    font-size: 13px;
  }

  .vehicle-grid label:last-child:nth-child(odd) {
    grid-column: span 2;
  }

  .custom-textarea,
  .guest-input {
    margin-top: 14px;
  }

  .custom-textarea textarea {
    min-height: 78px;
    padding: 14px 15px;
    border-radius: 16px;
  }

  .guest-input input {
    height: 62px;
    font-size: 28px;
  }

  .vehicle-suggestion {
    margin: 14px 0;
    padding: 15px;
    border-radius: 16px;
  }

  .vehicle-suggestion strong {
    font-size: 30px;
  }

  .split-options,
  .hotel-list {
    gap: 14px;
  }

  .hotel-list {
    margin-top: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hotel-list > label > span {
    min-height: 92px;
    padding: 12px;
    border-radius: 16px;
  }

  .hotel-list b {
    font-size: 18px;
    line-height: 1.05;
  }

  .hotel-list small {
    font-size: 11px;
    line-height: 1.25;
  }

  .builder-actions {
    margin-top: 16px;
    flex-direction: row;
    justify-content: stretch;
  }

  .builder-actions button,
  .builder-actions .btn,
  .builder-next {
    width: 100%;
    min-height: 48px;
    font-size: 18px;
  }

  .custom-step > .builder-next {
    width: min(190px, 100%);
    margin-top: 14px;
  }

  .summary-row {
    display: grid;
    gap: 6px;
    padding: 14px 0;
  }

  .summary-row strong {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 920px) and (max-height: 520px) {
  .cinema-hero {
    min-height: 380px;
  }

  .cinema-content {
    min-height: 310px;
  }

  .cinema-copy {
    max-width: 640px;
    padding-top: 30px;
  }

  .cinema-copy h1 {
    font-size: clamp(44px, 8vw, 62px);
  }

  .custom-builder {
    margin-top: 18px;
  }
}
