/* ==========================================================================
   Reset & base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --navy: #0f1f3d;
  --maroon: #9c2a3a;
  --rose: #e7b7a9;
  --cream: #f7f3ea;
  --cream-dark: #efe8d9;
  --border-cream: #d9d2c1;
  --text-body: #59606e;
  --text-body-light: #757575;
  --text-on-navy: #b7c0d4;
  --text-on-navy-soft: #aeb8cc;
  --text-on-navy-softer: #c9d2e3;
  --text-on-navy-muted: #8e9bb8;
  --text-on-navy-faint: #7b88a3;
  --gold: #b08a3e;
  --white: #ffffff;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max-width: 1240px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 32px;
}

.icon {
  display: block;
  flex-shrink: 0;
}

/* ==========================================================================
   Buttons & links
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 27px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.145px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--maroon);
  color: var(--white);
}

.btn--primary:hover {
  background: #832332;
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--outline-light:hover {
  border-color: var(--white);
}

.btn--outline-navy {
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.39px;
  color: var(--maroon);
}

.text-link .icon {
  width: 13px;
  height: 13px;
}

/* ==========================================================================
   Section headings
   ========================================================================== */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  color: var(--maroon);
}

.eyebrow--on-navy {
  color: var(--rose);
}

.eyebrow__rule {
  width: 26px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-optical-sizing: auto;
  color: var(--navy);
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.44px;
  margin-top: 15px;
}

.section-title--on-navy {
  color: var(--white);
}

.section-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 10px;
}

.section-lede--on-navy {
  color: var(--text-on-navy);
}

.section-head {
  max-width: 640px;
}

.section-head--center {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.section-head--split .section-lede {
  max-width: 320px;
}

.section {
  padding-block: 112px;
}

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

.section--cream-dark {
  background: var(--cream-dark);
}

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: var(--navy);
}

.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 11px;
  font-size: 14px;
}

.topbar__contacts {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-on-navy);
  font-size: 14.5px;
  opacity: 0.9;
}

.topbar__contact .icon {
  width: 13px;
  height: 13px;
}

.topbar__social {
  display: flex;
  gap: 12px;
}

.topbar__social a {
  color: var(--text-on-navy);
  opacity: 0.85;
}

.topbar__social a:hover {
  opacity: 1;
}

/* ==========================================================================
   Site header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--border-cream);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 10px;
}

.site-header__logo img {
  height: 88px;
  width: auto;
}

.nav {
  display: flex;
  gap: 34px;
}

.nav a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: var(--navy);
  padding-block: 6px;
}

.nav a:hover {
  color: var(--maroon);
}

.nav a.is-active {
  color: var(--maroon);
  position: relative;
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 1px;
  background: var(--maroon);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero__bg img.is-active {
  opacity: 1;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 31, 61, 0.55) 0%,
    rgba(15, 31, 61, 0.65) 40%,
    #091120 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 60px 76px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
}

.hero__eyebrow {
  color: var(--rose);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--white);
  font-size: 72px;
  line-height: 1.04;
  letter-spacing: -0.72px;
  margin-top: 19px;
}

.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

.hero__desc {
  max-width: 520px;
  color: var(--text-on-navy-softer);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero__aside {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 41px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.hero__aside p {
  color: var(--text-on-navy-softer);
  font-size: 15px;
  line-height: 1.75;
}

/* ==========================================================================
   Stats bar
   ========================================================================== */
.stats {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stats__row {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding-block: 26px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 220px;
  max-width: 376px;
  padding-block: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:last-child {
  border-right: none;
}

.stat__value {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--white);
}

.stat__label {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--text-on-navy);
}

/* ==========================================================================
   Segments / boarding passes (Four ways to travel)
   ========================================================================== */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 64px;
}

.segment-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(15, 31, 61, 0.35);
  display: flex;
  flex-direction: column;
}

.segment-card__media {
  position: relative;
  height: 170px;
}

.segment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.segment-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 31, 61, 0.85);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 1.56px;
  padding: 5px 10px;
  border-radius: 3px;
}

.segment-card__body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.segment-card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.21px;
  color: var(--navy);
}

.segment-card__desc {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
}

.segment-card__footer {
  position: relative;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px dashed var(--border-cream);
}

.segment-card__footer::before,
.segment-card__footer::after {
  content: "";
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--navy);
  border-radius: 50%;
  transform: translateY(-50%);
}

.segment-card__footer::before {
  left: -22px;
}

.segment-card__footer::after {
  right: -22px;
}

/* ==========================================================================
   Story / About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

.about-media__badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 6px;
  padding: 24px 26px;
  width: 190px;
  box-shadow: 0 20px 50px -20px rgba(15, 31, 61, 0.35);
}

.about-media__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 36px;
}

.about-media__badge span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: #f1d2ce;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

.about-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.24px;
  color: var(--navy);
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
}

.about-text p + p {
  margin-top: 16px;
}

.about-facts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--cream-dark);
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  padding: 23px 25px;
}

.about-facts__item strong {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--maroon);
}

.about-facts__item span {
  font-size: 13px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.about-list li {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-body);
}

.about-list .icon {
  width: 18px;
  height: 18px;
  color: var(--maroon);
  margin-top: 2px;
}

/* ==========================================================================
   Who we serve
   ========================================================================== */
.serve-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-cream);
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  overflow: hidden;
}

.serve-card {
  background: var(--cream);
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.serve-card .icon {
  width: 38px;
  height: 38px;
  color: var(--maroon);
}

.serve-card__title {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.16px;
  color: var(--navy);
}

.serve-card__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-body);
}

/* ==========================================================================
   Offers
   ========================================================================== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 64px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 30px -18px rgba(15, 31, 61, 0.3);
  display: flex;
  flex-direction: column;
}

.offer-card__media {
  position: relative;
  height: 220px;
}

.offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--maroon);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.575px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}

.offer-card__body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-card__route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.39px;
  color: var(--text-body);
}

.offer-card__route .icon {
  width: 14px;
  height: 14px;
  color: var(--maroon);
}

.offer-card__title {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: var(--navy);
}

.offer-card__desc {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
}

.offer-card__footer {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px dashed var(--border-cream);
}

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.process-step {
  position: relative;
  padding-right: 20px;
}

.process-step__num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 16px;
}

.process-step__title {
  margin-top: 13px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.18px;
  color: var(--white);
}

.process-step__desc {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-on-navy-soft);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-slider {
  width: 100%;
  margin-top: 64px;
}

.testimonial-slider__track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-slider__track::-webkit-scrollbar {
  display: none;
}

.testimonial-slider__track .testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 52px) / 3);
  min-width: 260px;
}

.testimonial-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}

.testimonial-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-cream);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.testimonial-slider__arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.testimonial-slider__arrow .icon {
  width: 18px;
  height: 18px;
}

.testimonial-slider__dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.testimonial-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border-cream);
  transition: background 0.2s, transform 0.2s;
}

.testimonial-slider__dot.is-active {
  background: var(--maroon);
  transform: scale(1.35);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  padding: 33px 29px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-body);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--text-body);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-panel {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 8px;
  box-shadow: 0 20px 50px -20px rgba(15, 31, 61, 0.35);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  padding: 0 33px;
}

.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.26px;
  margin-top: 3px;
}

.contact-info__lede {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-on-navy);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 21px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--rose);
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 10px;
  letter-spacing: 0.92px;
  text-transform: uppercase;
  color: var(--white);
}

.contact-detail__value {
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-on-navy);
  line-height: 1.5;
}

.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 23px;
}

.contact-social a {
  width: 24px;
  height: 24px;
  color: var(--white);
  opacity: 0.85;
}

.contact-social a:hover {
  opacity: 1;
}

.contact-form {
  padding: 56px 46px;
}

.contact-form__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.25px;
  color: var(--text-body);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  background: var(--cream);
  border: 1px solid var(--border-cream);
  border-radius: 4px;
  padding: 14px 15px;
  color: var(--navy);
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #757575;
}

.contact-form .btn {
  width: 100%;
  margin-top: 26px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  padding-bottom: 57px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  height: 96px;
  width: auto;
  background: var(--cream);
  padding: 14px 22px;
  border-radius: 6px;
}

.footer-brand p {
  margin-top: 17px;
  max-width: 280px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-on-navy-muted);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.78px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-col ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col a,
.footer-col p {
  font-size: 14px;
  color: var(--text-on-navy);
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 28px;
  font-size: 12.5px;
  color: var(--text-on-navy-faint);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ==========================================================================
   Sub-hero (interior pages)
   ========================================================================== */
.sub-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 60px;
}

.sub-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sub-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 31, 61, 0.5) 0%,
    rgba(15, 31, 61, 0.6) 45%,
    #091120 100%
  );
}

.sub-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-on-navy);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb__current {
  color: var(--white);
}

.sub-hero__eyebrow {
  margin-top: 31px;
}

.sub-hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--white);
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: -0.58px;
  max-width: 760px;
  margin-top: 15px;
}

.sub-hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

.sub-hero__desc {
  max-width: 600px;
  color: var(--text-on-navy-softer);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 20px;
}

.sub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

/* ==========================================================================
   Pillars (two disciplines)
   ========================================================================== */
.pillars-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  margin-top: 36px;
}

.pillar-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(15, 31, 61, 0.35);
  align-items: stretch;
}

.pillar-card--reverse .pillar-card__media {
  order: 2;
}

.pillar-card__media {
  position: relative;
  min-height: 420px;
}

.pillar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-card__tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(15, 31, 61, 0.85);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 1.3px;
  padding: 6px 14px;
  border-radius: 3px;
}

.pillar-card__body {
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillar-card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.28px;
  color: var(--navy);
}

.pillar-card__desc {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-body);
}

.pillar-card__list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pillar-card__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-body);
}

.pillar-card__list .icon {
  width: 17px;
  height: 17px;
  color: var(--maroon);
  margin-top: 2px;
}

/* ==========================================================================
   Features grid (navy, 3x2)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 64px;
  width: 100%;
}

.feature-cell {
  background: #16294d;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-cell .icon {
  width: 34px;
  height: 34px;
  color: var(--rose);
}

.feature-cell__title {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.17px;
  color: var(--white);
}

.feature-cell__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-on-navy-soft);
}

/* ==========================================================================
   MICE steps
   ========================================================================== */
.mice-grid {
  display: flex;
  gap: 26px;
  width: 100%;
  margin-top: 64px;
}

.mice-step {
  flex: 1 1 0;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 8px;
  padding: 39px 27px 31px;
  min-height: 209px;
}

.mice-step__num {
  position: absolute;
  top: 18px;
  right: 21px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: var(--cream-dark);
}

.mice-step__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.17px;
  color: var(--navy);
  max-width: 75%;
}

.mice-step__desc {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ==========================================================================
   Sectors row
   ========================================================================== */
.sectors-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border-cream);
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 64px;
  width: 100%;
}

.sector-item {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 18px;
  text-align: center;
}

.sector-item .icon {
  width: 30px;
  height: 30px;
  color: var(--maroon);
}

.sector-item__label {
  font-weight: 600;
  font-size: 12.5px;
  color: var(--navy);
}

/* ==========================================================================
   Package types (leisure)
   ========================================================================== */
.package-grid {
  display: flex;
  gap: 22px;
  width: 100%;
  margin-top: 64px;
}

.package-card {
  flex: 1 1 0;
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 8px;
  padding: 33px 27px;
}

.package-card .icon {
  width: 36px;
  height: 36px;
  color: var(--maroon);
}

.package-card__title {
  margin-top: 19px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.18px;
  color: var(--navy);
}

.package-card__desc {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ==========================================================================
   Destinations grid
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 64px;
}

.destination-card {
  position: relative;
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(15, 31, 61, 0.35);
  display: flex;
  flex-direction: column;
}

.destination-card__media {
  position: relative;
  height: 190px;
}

.destination-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card__route {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 31, 61, 0.85);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 1.3px;
  padding: 5px 11px;
  border-radius: 3px;
}

.destination-card__route .icon {
  width: 12px;
  height: 12px;
}

.destination-card__specialty {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 3px;
}

.destination-card__specialty .icon {
  width: 12px;
  height: 12px;
}

.destination-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.destination-card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: var(--navy);
}

.destination-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-body);
}

.destination-card__footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px dashed var(--border-cream);
}

.destination-card__footer::before,
.destination-card__footer::after {
  content: "";
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--navy);
  border-radius: 50%;
  transform: translateY(-50%);
}

.destination-card__footer::before {
  left: -22px;
}

.destination-card__footer::after {
  right: -22px;
}

.destination-card__nights {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

/* ==========================================================================
   Specialty card (reuses pillar-card shape)
   ========================================================================== */
.pillar-card--specialty {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.pillar-card__tag--gold {
  background: var(--gold);
}

/* ==========================================================================
   Package cards (religious — image + route badge + category badge)
   ========================================================================== */
.pkg-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(15, 31, 61, 0.35);
  display: flex;
  flex-direction: column;
}

.pkg-card__media {
  position: relative;
  height: 190px;
}

.pkg-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-card__route {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 31, 61, 0.85);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 1.3px;
  padding: 5px 11px;
  border-radius: 3px;
}

.pkg-card__route .icon {
  width: 12px;
  height: 12px;
}

.pkg-card__category {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--maroon);
  color: var(--white);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.33px;
  padding: 5px 10px;
  border-radius: 3px;
}

.pkg-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.pkg-card__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: var(--navy);
}

.pkg-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-body);
  flex: 1;
}

.pkg-card__footer {
  position: relative;
  padding-top: 13px;
  border-top: 1px dashed var(--border-cream);
}

.pkg-card__footer::before,
.pkg-card__footer::after {
  content: "";
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--navy);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pkg-card__footer::before {
  left: -22px;
}

.pkg-card__footer::after {
  right: -22px;
}

/* ==========================================================================
   FAQ list
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-cream);
  border: 1px solid var(--border-cream);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  margin-top: 64px;
}

.faq-item {
  background: var(--white);
  padding: 26px 30px;
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.155px;
  color: var(--navy);
}

.faq-item__question .icon {
  width: 16px;
  height: 16px;
  color: var(--maroon);
  flex-shrink: 0;
}

.faq-item__answer {
  margin-top: 8px;
  margin-left: 28px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-body);
}

/* ==========================================================================
   Map
   ========================================================================== */
.map-frame {
  position: relative;
  height: 420px;
  margin-top: 64px;
  border: 1px solid var(--border-cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(15, 31, 61, 0.35);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-frame__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(15, 31, 61, 0.2);
}

.map-frame__badge .icon {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   Legal content (privacy policy / terms)
   ========================================================================== */
.legal-header {
  margin-bottom: 24px;
}

.legal-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.4px;
  color: var(--navy);
}

.legal-eyebrow {
  margin-top: 16px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  color: var(--maroon);
}

.legal-content h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-body);
  margin-top: 28px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-body);
  margin-top: 28px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  margin-top: 6px;
}

.legal-content ul {
  margin-top: 6px;
  padding-left: 20px;
  list-style: disc;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  margin-top: 4px;
}

/* ==========================================================================
   Filter pills
   ========================================================================== */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.filter-pill {
  background: var(--white);
  border: 1px solid var(--border-cream);
  color: var(--text-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.27px;
  padding: 12px 23px;
  border-radius: 30px;
}

.filter-pill:hover {
  border-color: var(--navy);
}

.filter-pill.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ==========================================================================
   Offer tiles (offers page grid)
   ========================================================================== */
.offers-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: 100%;
  margin-top: 52px;
}

.offer-tile {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 30px -18px rgba(15, 31, 61, 0.3);
  display: flex;
  flex-direction: column;
}

.offer-tile__media {
  position: relative;
  height: 210px;
}

.offer-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-tile__category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--maroon);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.575px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}

.offer-tile__type {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 31, 61, 0.85);
  color: var(--white);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.33px;
  padding: 6px 11px;
  border-radius: 3px;
}

.offer-tile__body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-tile__route {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.39px;
  color: var(--text-body);
}

.offer-tile__route .icon {
  width: 14px;
  height: 14px;
  color: var(--maroon);
}

.offer-tile__title {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.2px;
  color: var(--navy);
}

.offer-tile__desc {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
}

.offer-tile__footer {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px dashed var(--border-cream);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.offer-tile__price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.25;
}

.offer-tile__price-note {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 400;
  font-family: var(--font-sans);
  color: var(--text-body);
}

.offer-tile__enquire {
  border: 1px solid var(--navy);
  border-radius: 2px;
  padding: 10px 17px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.13px;
  color: var(--navy);
  white-space: nowrap;
}

.offer-tile__enquire:hover {
  background: var(--navy);
  color: var(--white);
}

/* ==========================================================================
   Offers CTA banner
   ========================================================================== */
.offers-cta {
  background: var(--navy);
  border-radius: 10px;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.offers-cta__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.28px;
  color: var(--white);
}

.offers-cta__desc {
  margin-top: 10px;
  max-width: 440px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-on-navy);
}

/* ==========================================================================
   Newsletter bar
   ========================================================================== */
.newsletter {
  background: var(--white);
  border: 1px solid var(--border-cream);
  border-radius: 10px;
  padding: 45px 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.24px;
  color: var(--navy);
}

.newsletter__desc {
  margin-top: 8px;
  max-width: 420px;
  font-size: 14px;
  color: var(--text-body);
}

.newsletter__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter__form input {
  background: var(--cream);
  border: 1px solid var(--border-cream);
  border-radius: 4px;
  padding: 15px;
  font-size: 14px;
  color: var(--navy);
  width: 260px;
  max-width: 100%;
}

.newsletter__form input::placeholder {
  color: #757575;
}

/* ==========================================================================
   Contact Form 7 compatibility
   ========================================================================== */
.contact-form .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.contact-form .wpcf7-form .hidden-fields-container {
  display: none;
}

/* CF7's own stylesheet is intentionally dequeued (it conflicts with Enfold),
   but that stylesheet is also what normally hides this element — it's a
   screen-reader-only summary of validation errors, not meant to be visible.
   Without it, the error list renders as a raw, unstyled block at the top
   of the form. Standard visually-hidden pattern: still there for assistive
   tech, invisible and out of layout for everyone else. */
.contact-form .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form .wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--maroon) !important;
}

.contact-form .wpcf7-form .form-field p {
  margin: 0;
}

.contact-form .wpcf7-form .wpcf7-form-control-wrap input,
.contact-form .wpcf7-form .wpcf7-form-control-wrap select,
.contact-form .wpcf7-form .wpcf7-form-control-wrap textarea {
  width: 100%;
}

.contact-form .wpcf7-form .wpcf7-form-control-wrap textarea {
  height: 100px;
  min-height: 100px;
}

.contact-form .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
}

/* CF7 wraps the [submit] tag in a bare <p> with no class, and that <p> —
   not the <input> inside it — is the actual grid item. The form-field--full
   class was being put on the <input>, which has no effect since it isn't
   a direct child of the grid, so the button's row never spanned full width. */
.contact-form .wpcf7-form > p {
  grid-column: 1 / -1;
  position: relative;
}

/* .contact-form .btn has margin-top:26px for the original design, where the
   button sat directly in the grid. Now that CF7's <p> wrapper is the real
   grid item, that margin just pads the top of the <p> instead, throwing off
   both the vertical centering below and the spacing above the button. */
.contact-form .wpcf7-form .wpcf7-submit {
  margin-top: 0;
}

/* <input> is a replaced element — ::after generated content doesn't render
   on it in any browser — so the arrow icon has to be drawn on the wrapping
   <p> instead. display:flex on an <input> doesn't turn its own value text
   into a real flex child, so the text is just plain centered on its own
   (not centered as a group with the icon) — the icon needs to sit just
   past the text's right edge instead. "Send Enquiry" renders at ~95.2px
   wide at this font/weight/size, so the text's right edge sits at
   50% + 95.2/2 = 50% + 47.6px, plus a 10px gap = 50% + 58px for the
   icon's left edge — a fixed offset from center that holds regardless of
   how wide the button itself is. */
.contact-form .wpcf7-form > p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 58px);
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background-color: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='2' x2='11' y2='13'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='2' x2='11' y2='13'/%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'/%3E%3C/svg%3E") no-repeat center / contain;
  pointer-events: none;
}

.contact-form .wpcf7-not-valid-tip {
  display: block;
  color: var(--maroon);
  font-size: 12px;
  margin-top: 4px;
}

.contact-form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  border-color: var(--border-cream) !important;
}

.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form .wpcf7 form.payment-required .wpcf7-response-output {
  color: var(--maroon);
  border-color: var(--maroon) !important;
}

.contact-form .wpcf7 form.sent .wpcf7-response-output {
  color: #2f6f3e;
  border-color: #2f6f3e !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .container {
    padding-inline: 24px;
  }

  .section {
    padding-block: 80px;
  }

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

  .hero__aside {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 24px;
  }

  .hero__title {
    font-size: 52px;
  }

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

  .about-media__badge {
    left: 16px;
    bottom: -20px;
  }

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

  .serve-card:last-child {
    grid-column: 1 / -1;
  }

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

  .process-grid::before {
    display: none;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .section-head--split {
    align-items: flex-start;
  }

  .sub-hero__title {
    font-size: 42px;
  }

  .pillar-card {
    grid-template-columns: 1fr;
  }

  .pillar-card--reverse .pillar-card__media {
    order: 0;
  }

  .pillar-card__media {
    min-height: 300px;
  }

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

  .mice-grid {
    flex-wrap: wrap;
  }

  .mice-step {
    flex-basis: calc(50% - 13px);
  }

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

  .package-grid {
    flex-wrap: wrap;
  }

  .package-card {
    flex-basis: calc(50% - 11px);
  }

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

  .pillar-card--specialty {
    grid-template-columns: 1fr;
  }

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

  .offers-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter__form {
    width: 100%;
  }

  .newsletter__form input {
    width: auto;
    flex: 1;
  }

  .testimonial-slider__track .testimonial-card {
    flex: 0 0 calc((100% - 26px) / 2);
  }
}

@media (max-width: 720px) {
  .topbar__contacts {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border-cream);
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.22s;
    pointer-events: none;
  }

  .nav a {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.is-open .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
  }

  .site-header.is-open .nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-open .nav a:nth-child(1) { transition-delay: 0.05s; }
  .site-header.is-open .nav a:nth-child(2) { transition-delay: 0.09s; }
  .site-header.is-open .nav a:nth-child(3) { transition-delay: 0.13s; }
  .site-header.is-open .nav a:nth-child(4) { transition-delay: 0.17s; }
  .site-header.is-open .nav a:nth-child(5) { transition-delay: 0.21s; }

  .stats__row {
    gap: 0;
  }

  .stat {
    flex-basis: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    max-width: none;
  }

  .stat:last-child {
    border-bottom: none;
  }

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

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

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

  .form-field--full {
    grid-column: auto;
  }

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

  .section-title {
    font-size: 32px;
  }

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

  .mice-step {
    flex-basis: 100%;
  }

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

  .package-card {
    flex-basis: 100%;
  }

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

  .sub-hero__title {
    font-size: 36px;
  }

  .legal-title {
    font-size: 30px;
  }

  .offers-tile-grid {
    grid-template-columns: 1fr;
  }

  .offers-cta__title,
  .newsletter__title {
    font-size: 22px;
  }

  .testimonial-slider__track .testimonial-card {
    flex: 0 0 88%;
  }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal-init {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.reveal-init.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card grids: items sweep in left-to-right, staggered by DOM order */
.segments-grid > *,
.serve-grid > *,
.offers-grid > *,
.process-grid > *,
.pillars-grid > *,
.features-grid > *,
.mice-grid > *,
.sectors-row > *,
.destinations-grid > *,
.package-grid > *,
.offers-tile-grid > *,
.about-facts > *,
.stats__row > * {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(0.15s + var(--stagger-index, 0) * 150ms);
}

.reveal-init.is-visible .segments-grid > *,
.reveal-init.is-visible .serve-grid > *,
.reveal-init.is-visible .offers-grid > *,
.reveal-init.is-visible .process-grid > *,
.reveal-init.is-visible .pillars-grid > *,
.reveal-init.is-visible .features-grid > *,
.reveal-init.is-visible .mice-grid > *,
.reveal-init.is-visible .sectors-row > *,
.reveal-init.is-visible .destinations-grid > *,
.reveal-init.is-visible .package-grid > *,
.reveal-init.is-visible .offers-tile-grid > *,
.reveal-init.is-visible .about-facts > *,
.stats.is-visible .stats__row > * {
  opacity: 1;
  transform: translateX(0);
}

/* Vertical lists (FAQ): items settle in top-to-bottom, staggered */
.faq-list > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(0.15s + var(--stagger-index, 0) * 130ms);
}

.reveal-init.is-visible .faq-list > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-init,
  .segments-grid > *,
  .serve-grid > *,
  .offers-grid > *,
  .process-grid > *,
  .pillars-grid > *,
  .features-grid > *,
  .mice-grid > *,
  .sectors-row > *,
  .destinations-grid > *,
  .package-grid > *,
  .offers-tile-grid > *,
  .about-facts > *,
  .stats__row > *,
  .faq-list > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}

/* ==========================================================================
   Page transitions
   ========================================================================== */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: page-fade-out 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

::view-transition-new(root) {
  animation: page-fade-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes page-fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-14px);
  }
}

@keyframes page-fade-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CSS-only entrance fade for first paint, and for browsers without native View Transitions */
body {
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@starting-style {
  body {
    opacity: 0;
    transform: translateY(14px);
  }
}

/* JS fallback: fades the page out before navigating away, browsers without native support only */
body.is-leaving {
  opacity: 0;
  transform: translateY(-14px);
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }

  body,
  body.is-leaving {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .nav,
  .nav a,
  .nav-toggle span {
    transition: none !important;
  }
}

/* ==========================================================================
   Sticky WhatsApp button
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@media (max-width: 720px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}
