/* Main visual system overrides for Travels Designers */

:root {
  --td-bg: #F4E8DA;
  --td-bg-alt: #FBF7F1;
  --td-sand: #F1E2D1;
  --td-surface: rgba(255, 251, 246, .82);
  --td-surface-strong: rgba(255, 253, 249, .98);
  --td-ink: #181412;
  --td-muted: rgba(24, 20, 18, .66);
  --td-line: rgba(201, 152, 82, .22);
  --td-line-strong: rgba(201, 152, 82, .55);
  --td-gold: #C9964D;
  --td-gold-dark: #AB7730;
  --td-black: #090909;
  --td-shadow: 0 18px 50px rgba(19, 15, 12, .08);
  --td-shadow-strong: 0 30px 80px rgba(19, 15, 12, .18);
  --td-radius-xl: 30px;
  --td-radius-lg: 22px;
  --td-radius-md: 16px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--td-bg);
  color: var(--td-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body, input, textarea, select, button {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .brand__fallback {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
}

img, video { display:block; max-width:100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(100% - 32px, 1240px);
}

.section {
  padding: clamp(72px, 9vw, 122px) 0;
}

.section--light {
  background: linear-gradient(180deg, rgba(251,247,241,.60), rgba(251,247,241,.28));
}

.section--sand {
  background: linear-gradient(180deg, rgba(241,226,209,.82), rgba(241,226,209,.70));
}

.section--feature,
.section--destinations,
.section--allies,
.section--leadership,
.section--cta {
  background: linear-gradient(180deg, rgba(244,232,218,.30), rgba(244,232,218,.12));
}

.section-title {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: .95;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.section-title--center {
  text-align: center;
}

.section-title--small {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
}
.section-title--highlights {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  max-width: 24ch;
  margin-inline: auto;
}


.section-kicker {
  margin: 0 0 14px;
  font-size: .76rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--td-gold-dark);
  font-weight: 600;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 36px;
}

.section-heading__label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--td-gold-dark);
  font-size: .78rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading__label i {
  width: min(120px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,152,82,.72), transparent);
  display: inline-block;
}

.section-heading--compact {
  margin-bottom: 28px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1100;
  padding-top: 14px;
  background: linear-gradient(180deg, rgba(10,10,10,.14), rgba(10,10,10,0));
  border-bottom: none;
  backdrop-filter: none;
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home .site-header__inner {
  justify-content: flex-start;
}

.home .site-header .nav {
  display: none;
}

.site-header--standard {
  position: sticky;
  top: 0;
  background: rgba(245, 236, 224, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(25, 18, 12, .08);
}

.hero-scrolled .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.brand img {
  height: 54px;
}

.home .brand img {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
}

.nav__link,
.nav .btn--nav {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav__link {
  position: relative;
  padding: 10px 4px;
  color: rgba(24,20,18,.82);
  transition: transform .42s cubic-bezier(.2,.9,.2,1), color .42s ease;
  transform-origin: center;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--td-gold-dark);
  transform: translateY(-2px) scale(1.055);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #D9A85A 0%, #BE8B40 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 16px 34px rgba(201, 152, 82, .20);
  transform: translateZ(0);
  transition: transform .42s cubic-bezier(.2,.9,.2,1), box-shadow .42s cubic-bezier(.2,.9,.2,1), filter .42s ease, opacity .42s ease;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.24) 18%, transparent 34%);
  transform: translateX(-130%);
  transition: transform .75s cubic-bezier(.2,.9,.2,1);
  z-index: -1;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 28px 60px rgba(201, 152, 82, .26);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(130%);
}

.btn--ghost {
  background: rgba(255,255,255,.84);
  color: var(--td-ink);
  border-color: rgba(24,20,18,.10);
  box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 30px rgba(24,20,18,.10);
}

.btn--dark {
  background: linear-gradient(180deg, #131313 0%, #060606 100%);
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
}

.btn--nav {
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  background: #000;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  filter: saturate(1.04) brightness(.90) contrast(1.04);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245,236,224,.44) 0%, rgba(245,236,224,.16) 46%, rgba(10,10,10,.12) 100%),
    linear-gradient(180deg, rgba(10,10,10,.20) 0%, rgba(10,10,10,.14) 42%, rgba(10,10,10,.28) 100%);
}

.hero__shine {
  position: absolute;
  inset: auto 0 0 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(245,236,224,0) 0%, rgba(245,236,224,.18) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(120px, 16vh, 200px) 0 clamp(84px, 10vh, 120px);
}

.hero__copy {
  width: min(100%, 960px);
  margin-inline: auto;
  color: #fff;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 18px;
  font-size: .74rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
}

.hero__title {
  margin: 0 auto;
  max-width: 12ch;
  font-size: clamp(3.05rem, 5.7vw, 5.6rem);
  line-height: .88;
  letter-spacing: -0.055em;
  font-weight: 400;
  text-wrap: balance;
}

.hero__text {
  width: min(100%, 620px);
  margin: 22px auto 0;
  font-size: 1.02rem;
  color: rgba(255,255,255,.84);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn--hero {
  min-height: 54px;
  padding-inline: 26px;
  box-shadow: 0 20px 42px rgba(201,152,82,.34), 0 0 0 0 rgba(201,152,82,.00);
}

.btn--hero:hover,
.btn--hero:focus-visible {
  box-shadow: 0 26px 60px rgba(201,152,82,.34), 0 0 28px rgba(201,152,82,.22);
}

.btn--hero-ghost {
  color: var(--td-ink);
}

.home-nav {
  position: sticky;
  top: 0;
  z-index: 980;
  background: rgba(247, 240, 230, .90);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(24,20,18,.08);
  box-shadow: 0 10px 32px rgba(24,20,18,.05);
}

.home-nav__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-nav .nav {
  width: auto;
  justify-content: center;
}

.home-nav .btn--nav {
  margin-left: 8px;
}

.section--feature {
  padding-top: clamp(76px, 9vw, 120px);
}

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

.feature-card {
  padding: 28px 22px 26px;
  border-radius: var(--td-radius-lg);
  background: rgba(255, 252, 247, .88);
  border: 1px solid rgba(201,152,82,.12);
  box-shadow: var(--td-shadow);
  text-align: center;
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(201,152,82,.12), rgba(255,255,255,.78));
  border: 1px solid rgba(201,152,82,.14);
  overflow: hidden;
}

.feature-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.08;
  font-weight: 400;
}

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

.section-title--destinations {
  margin-bottom: 32px;
  font-size: clamp(2.1rem, 3.8vw, 3.55rem);
  font-weight: 400;
}

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

.dest-card {
  position: relative;
  min-height: 360px;
  border-radius: var(--td-radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--td-shadow);
  transform: translateZ(0);
  transition: transform .48s cubic-bezier(.2,.9,.2,1), box-shadow .48s cubic-bezier(.2,.9,.2,1);
}

.dest-card:hover,
.dest-card:focus-within {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--td-shadow-strong);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,12,.02) 0%, rgba(12,12,12,.12) 32%, rgba(12,12,12,.66) 100%),
    linear-gradient(90deg, rgba(12,12,12,.18), rgba(12,12,12,0));
}

.dest-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 28px;
  color: rgba(255,255,255,.98);
}

.dest-card h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.dest-card p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255,255,255,.90);
}

.dest-card .btn {
  margin-top: 18px;
}

.section--sand {
  background: linear-gradient(180deg, rgba(241,226,209,.96), rgba(241,226,209,.80));
}

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

.experience-card {
  position: relative;
  border-radius: var(--td-radius-xl);
  overflow: hidden;
  background: rgba(255, 252, 247, .88);
  box-shadow: var(--td-shadow);
  transition: transform .52s cubic-bezier(.2,.9,.2,1), box-shadow .52s cubic-bezier(.2,.9,.2,1);
  will-change: transform;
}

.experience-card:hover,
.experience-card:focus-within {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 34px 84px rgba(19, 15, 12, .18);
}

.experience-card.is-expanded {
  transform: translateY(-10px) scale(1.045);
  box-shadow: 0 40px 96px rgba(19, 15, 12, .22);
}

.experience-card__toggle {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  display: block;
}

.experience-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.experience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .95s cubic-bezier(.2,.9,.2,1), filter .95s ease;
}

.experience-card:hover .experience-card__media img,
.experience-card.is-expanded .experience-card__media img {
  transform: scale(1.10);
}

.experience-card__shade {
  position: absolute;
  inset: 0 0 auto 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,0));
}

.experience-card__tap {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  font-size: .75rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(24,20,18,.70);
  backdrop-filter: blur(10px);
  transition: opacity .42s ease, transform .42s cubic-bezier(.2,.9,.2,1);
}

.experience-card.is-expanded .experience-card__tap {
  opacity: 0;
  transform: translateY(8px);
}

.experience-card__body {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height .72s cubic-bezier(.2,.9,.2,1), padding .48s ease;
}

.experience-card.is-expanded .experience-card__body {
  max-height: 720px;
  padding: 22px 22px 26px;
}

.experience-card__body h3 {
  margin: 0 0 10px;
  font-size: 1.85rem;
  line-height: 1.02;
  font-weight: 400;
}

.experience-card__summary {
  margin: 0 0 16px;
  color: var(--td-muted);
}

.experience-card__bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(24,20,18,.86);
}

.experience-card__bullets li + li { margin-top: 8px; }

.experience-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.partner-spotlight {
  position: relative;
  overflow: hidden;
  background: #0A0A0A;
  color: #fff;
}

.partner-spotlight__media {
  position: absolute;
  inset: 0;
}

.partner-spotlight__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.72);
  transform: scale(1.02);
}

.partner-spotlight__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 48%, rgba(0,0,0,.70) 100%),
    linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.50));
}

.partner-spotlight__content {
  position: relative;
  z-index: 1;
}

.partner-spotlight__card {
  width: min(100%, 760px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--td-radius-xl);
  background: rgba(10, 10, 10, .44);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 34px 96px rgba(0,0,0,.28);
}

.partner-spotlight__subtitle {
  margin: 12px 0 10px;
  font-size: 1.04rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

.partner-spotlight__text,
.partner-spotlight__bullets {
  color: rgba(255,255,255,.86);
}

.partner-spotlight__bullets {
  margin: 16px 0 0;
  padding-left: 18px;
}

.partner-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.partner-spotlight--c4jump .section-title {
  color: #fff;
}

.partner-spotlight--c4jump .btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

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

.allies-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: center;
  min-height: 160px;
  padding: 18px;
  border-radius: var(--td-radius-lg);
  background: rgba(255, 252, 247, .88);
  border: 1px solid rgba(201,152,82,.12);
  box-shadow: var(--td-shadow);
  text-align: center;
  overflow: hidden;
  transition: transform .42s cubic-bezier(.2,.9,.2,1), box-shadow .42s cubic-bezier(.2,.9,.2,1);
}

.allies-card:hover,
.allies-card:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--td-shadow-strong);
}

.allies-card__logo {
  width: 102px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(201,152,82,.12), rgba(255,255,255,.88));
  border: 1px solid rgba(201,152,82,.15);
  overflow: hidden;
}

.allies-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.allies-card__fallback {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  color: var(--td-gold-dark);
}

.allies-card__name {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(24,20,18,.78);
}

.strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--td-radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 244, .86), rgba(255, 246, 236, .90));
  border: 1px solid rgba(201,152,82,.14);
  box-shadow: var(--td-shadow);
}

.strip__copy {
  max-width: 760px;
}

.strip__copy p:last-child {
  margin: 14px 0 0;
  color: var(--td-muted);
  max-width: 56ch;
}

.strip__actions {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
}

.section--leadership {
  padding-top: 0;
}

.leadership {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--td-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(250,244,236,.92));
  border: 1px solid rgba(201,152,82,.12);
  box-shadow: var(--td-shadow);
}

.leadership__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(24,20,18,.12);
  aspect-ratio: 3 / 4;
  background: #e9dfd0;
}

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

.leadership__role {
  margin: 4px 0 14px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .76rem;
  color: var(--td-gold-dark);
  font-weight: 700;
}

.leadership__text {
  margin: 0;
  color: var(--td-muted);
  max-width: 66ch;
}

.leadership__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.leadership__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(24,20,18,.10);
  box-shadow: 0 12px 26px rgba(24,20,18,.06);
  transition: transform .38s cubic-bezier(.2,.9,.2,1), box-shadow .38s cubic-bezier(.2,.9,.2,1);
}

.leadership__link:hover,
.leadership__link:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 36px rgba(24,20,18,.10);
}

.leadership__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.leadership__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  background: linear-gradient(180deg, rgba(248,243,236,.92), rgba(245,237,226,.98));
  border-top: 1px solid rgba(24,20,18,.08);
}

.footer__window {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(260px, 34vw, 460px);
  background: #d9d0c5;
}

.footer__window-image {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.footer__window-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,243,236,.10) 0%, rgba(248,243,236,.22) 52%, rgba(248,243,236,.86) 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 28px 0 30px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
}

.footer p,
.footer a {
  margin: 0;
  color: rgba(24,20,18,.76);
  font-size: .95rem;
}

.footer p + p {
  margin-top: 10px;
}

.footer__bottom {
  border-top: 1px solid rgba(24,20,18,.08);
  background: transparent;
}

.footer__bottom-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copyright a {
  color: #000;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  text-align: center;
}

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1400;
  display: grid;
  gap: 14px;
  justify-items: end;
  pointer-events: none;
}

.whatsapp-widget__trigger,
.whatsapp-widget__panel {
  pointer-events: auto;
}

.whatsapp-widget__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 16px;
  border: 0;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  transform: translateY(18px) scale(.82);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.9,.2,1), opacity .55s ease, box-shadow .55s ease;
  cursor: pointer;
}

.whatsapp-widget.is-visible .whatsapp-widget__trigger {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.whatsapp-widget__trigger:hover,
.whatsapp-widget__trigger:focus-visible,
.whatsapp-widget.is-open .whatsapp-widget__trigger {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 22px 42px rgba(0,0,0,.22);
}

.whatsapp-widget__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.whatsapp-widget__panel {
  width: min(92vw, 420px);
  border-radius: 26px;
  background: rgba(255, 252, 247, .98);
  border: 1px solid rgba(201, 152, 82, .14);
  box-shadow: 0 30px 80px rgba(19, 15, 12, .22);
  backdrop-filter: blur(18px);
  padding: 20px;
  opacity: 0;
  transform: translateY(18px) scale(.96);
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity .42s ease, transform .42s cubic-bezier(.2,.9,.2,1), max-height .50s cubic-bezier(.2,.9,.2,1), padding .42s ease;
}

.whatsapp-widget.is-open .whatsapp-widget__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  max-height: 780px;
}

.whatsapp-widget__header h3 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  line-height: 1.04;
  font-weight: 400;
}

.whatsapp-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.whatsapp-form label {
  display: grid;
  gap: 8px;
}

.whatsapp-form span {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--td-muted);
}

.whatsapp-form input,
.whatsapp-form textarea,
.whatsapp-form select {
  width: 100%;
  border: 1px solid rgba(24,20,18,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  color: var(--td-ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.whatsapp-form input:focus,
.whatsapp-form textarea:focus,
.whatsapp-form select:focus {
  border-color: rgba(201,152,82,.45);
  box-shadow: 0 0 0 4px rgba(201,152,82,.12);
}

.whatsapp-form__row {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 12px;
}

.whatsapp-widget__status {
  margin: 4px 0 0;
  min-height: 1.2em;
  color: var(--td-gold-dark);
  font-size: .95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px) scale(.985);
  transition:
    opacity 1.35s cubic-bezier(.16,.84,.22,1),
    transform 1.55s cubic-bezier(.16,.84,.22,1),
    filter 1.55s ease;
  will-change: opacity, transform;
}

.ptd-js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(42px) scale(.985);
}

.ptd-js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero__copy[data-reveal] {
  transition-delay: .12s;
}

.feature-grid .feature-card:nth-child(2) { transition-delay: .05s; }
.feature-grid .feature-card:nth-child(3) { transition-delay: .10s; }
.feature-grid .feature-card:nth-child(4) { transition-delay: .15s; }

@media (max-width: 1180px) {
  .feature-grid,
  .allies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 960px) {
  .cards-grid--2,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 140px;
  }

  .strip {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .strip__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    min-height: 64px;
  }

  .brand img {
    height: 46px;
  }

  .nav {
    gap: 12px;
  }

  .nav__link {
    font-size: .76rem;
  }

  .hero__content {
    padding: 128px 0 72px;
  }

  .hero__title {
    font-size: clamp(2.9rem, 12vw, 4.2rem);
    max-width: 11ch;
  }

  .hero__text {
    font-size: .98rem;
  }

  .hero__actions {
    gap: 12px;
  }

  .feature-grid,
  .allies-grid,
  .footer__grid,
  .whatsapp-form__row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .section-heading__label i {
    width: min(54px, 13vw);
  }

  .dest-card {
    min-height: 300px;
  }

  .footer__window {
    height: 220px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-widget__panel {
    width: min(88vw, 390px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal],
  .btn,
  .nav__link,
  .dest-card,
  .experience-card,
  .allies-card,
  .leadership__link,
  .whatsapp-widget__trigger,
  .whatsapp-widget__panel,
  .footer__window-image {
    transform: none !important;
  }
}

.editorial-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #071319;
}

.editorial-hero__media,
.editorial-hero__overlay {
  position: absolute;
  inset: 0;
}

.editorial-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.03) brightness(.90);
  transform: scale(1.025);
}

.editorial-hero__overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.12) 48%, rgba(0,0,0,.40)),
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 36%, rgba(0,0,0,.12));
}

.editorial-hero__content {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(42px, 7vh, 74px) 22px clamp(46px, 7vh, 82px);
}

.editorial-logo img {
  width: clamp(172px, 15vw, 242px);
}

.editorial-menu {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4.8vw, 72px);
  margin-top: clamp(28px, 4vh, 44px);
}

.editorial-menu a {
  position: relative;
  color: #fff;
  font-size: clamp(.82rem, 1.15vw, 1.04rem);
  font-weight: 400;
  letter-spacing: .16em;
  transition: transform .58s cubic-bezier(.2,.9,.2,1), opacity .58s ease;
}

.editorial-menu a:hover,
.editorial-menu a:focus-visible {
  transform: scale(1.1);
  opacity: .84;
}

.editorial-title {
  max-width: 14ch;
  margin: auto 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.9rem, 7.5vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
  text-align: center;
  text-wrap: balance;
}

.home-nav .nav__link {
  font-weight: 500;
}

@media (max-width: 1180px) {
  .allies-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .editorial-hero {
    min-height: 86svh;
  }

  .editorial-hero__content {
    min-height: 86svh;
    padding-inline: 18px;
  }

  .editorial-menu {
    width: 100%;
    gap: 14px 20px;
    flex-wrap: wrap;
  }

  .editorial-menu a {
    font-size: .70rem;
    letter-spacing: .11em;
  }

  .editorial-title {
    max-width: 12ch;
    font-size: clamp(3rem, 14vw, 5.15rem);
  }

  .home-nav__inner {
    min-height: 72px;
    overflow-x: auto;
  }

  .home-nav .nav {
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .home-nav .nav__link,
  .home-nav .btn--nav {
    flex: 0 0 auto;
    font-size: .68rem;
  }

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

/* Phase 1: editorial luxury refinement */
.btn,
.btn--gold {
  border-color: rgba(255, 229, 176, .46);
  background:
    linear-gradient(135deg, rgba(255,255,255,.20), transparent 36%),
    linear-gradient(180deg, #dcb467 0%, #bd873d 58%, #a96e29 100%);
  box-shadow:
    0 12px 28px rgba(171, 119, 48, .22),
    0 2px 0 rgba(255, 240, 198, .40) inset,
    0 -2px 0 rgba(108, 66, 20, .18) inset;
  text-shadow: 0 1px 0 rgba(88, 55, 14, .22);
  transition:
    transform .48s cubic-bezier(.2,.9,.2,1),
    box-shadow .48s cubic-bezier(.2,.9,.2,1),
    filter .48s ease,
    opacity .48s ease;
}

.btn:hover,
.btn:focus-visible,
.btn--gold:hover,
.btn--gold:focus-visible {
  transform: translate3d(0, -4px, 0) scale(1.045);
  filter: saturate(1.06) brightness(1.04);
  box-shadow:
    0 20px 42px rgba(171, 119, 48, .30),
    0 0 24px rgba(220, 180, 103, .22),
    0 2px 0 rgba(255, 244, 211, .52) inset,
    0 -2px 0 rgba(108, 66, 20, .15) inset;
}

.btn--ghost {
  border-color: rgba(24,20,18,.10);
  background: rgba(255,255,255,.86);
  color: var(--td-ink);
  box-shadow: 0 10px 24px rgba(24,20,18,.06);
  text-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 34px rgba(24,20,18,.12);
}

.btn--dark {
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, #171717, #050505);
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
  text-shadow: none;
}

.editorial-hero {
  min-height: 100svh;
  background: #06141b;
}

.editorial-hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}

.editorial-hero__video {
  filter: saturate(.88) contrast(1.06) brightness(.78);
  transform: scale(1.045);
}

.editorial-hero__overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.16) 38%, rgba(0,0,0,.56) 100%),
    linear-gradient(90deg, rgba(0,12,18,.28), transparent 42%, rgba(0,12,18,.16));
}

.editorial-hero__content {
  justify-content: flex-start;
  padding: clamp(38px, 5.5vh, 62px) clamp(26px, 5vw, 84px) clamp(38px, 5.5vh, 62px);
}

.editorial-logo {
  transition: transform .55s cubic-bezier(.2,.9,.2,1), opacity .55s ease;
}

.editorial-logo:hover,
.editorial-logo:focus-visible {
  opacity: .88;
  transform: scale(1.035);
}

.editorial-logo img {
  width: clamp(142px, 12vw, 190px);
}

.editorial-menu {
  gap: clamp(20px, 3.8vw, 58px);
  margin-top: clamp(22px, 3vh, 32px);
}

.editorial-menu a {
  font-size: clamp(.70rem, .88vw, .82rem);
  font-weight: 500;
  letter-spacing: .20em;
  opacity: .94;
}

.editorial-hero__statement {
  display: grid;
  gap: clamp(16px, 2.6vh, 26px);
  margin: auto 0;
  text-align: center;
}

.editorial-hero__eyebrow {
  margin: 0;
  color: rgba(232, 195, 127, .94);
  font-size: clamp(.62rem, .82vw, .74rem);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.editorial-title {
  display: grid;
  gap: .02em;
  max-width: none;
  margin: 0;
  font-size: clamp(3.15rem, 5.45vw, 6.45rem);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: .96;
}

.editorial-title span {
  display: block;
  white-space: nowrap;
}

.editorial-hero__scroll {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255,255,255,.80);
  font-size: .60rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  transition: color .42s ease, transform .42s cubic-bezier(.2,.9,.2,1);
}

.editorial-hero__scroll i {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), transparent);
  transition: transform .42s cubic-bezier(.2,.9,.2,1);
}

.editorial-hero__scroll:hover,
.editorial-hero__scroll:focus-visible {
  color: #fff;
  transform: translateY(3px);
}

.editorial-hero__scroll:hover i,
.editorial-hero__scroll:focus-visible i {
  transform: scaleY(1.22);
}

.section--cta {
  padding-block: clamp(72px, 9vw, 126px);
}

.strip--cta-editorial {
  position: relative;
  isolation: isolate;
  min-height: clamp(280px, 30vw, 390px);
  align-items: end;
  overflow: hidden;
  padding: clamp(30px, 5vw, 60px);
  border-color: rgba(255,255,255,.26);
  background-image:
    linear-gradient(90deg, rgba(7,16,17,.86) 0%, rgba(7,16,17,.58) 50%, rgba(7,16,17,.30) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.48)),
    var(--cta-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 74px rgba(38,28,17,.18);
  color: #fff;
}

.strip--cta-editorial::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: calc(var(--td-radius-xl) - 8px);
  pointer-events: none;
}

.strip--cta-editorial .section-title {
  max-width: 16ch;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.strip--cta-editorial .strip__copy p:last-child {
  color: rgba(255,255,255,.78);
}

.strip--cta-editorial .btn--ghost {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.10);
  color: #fff;
  box-shadow: none;
}

.strip--cta-editorial .btn--ghost:hover,
.strip--cta-editorial .btn--ghost:focus-visible {
  background: rgba(255,255,255,.18);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.footer__window {
  height: clamp(250px, 29vw, 390px);
  perspective: 1000px;
  background: #173c42;
}

.footer__window-image {
  height: calc(100% + 72px);
  transform: translate3d(0, 0, 0) scale3d(1.075, 1.075, 1);
  transform-origin: center;
  backface-visibility: hidden;
}

.footer__window-overlay {
  background:
    linear-gradient(180deg, rgba(5,23,27,.18), rgba(5,23,27,.02) 48%, rgba(248,243,236,.76)),
    linear-gradient(90deg, rgba(5,23,27,.16), transparent 54%);
}

.footer__copyright {
  perspective: 700px;
  text-align: center;
}

.footer__copyright a {
  display: grid;
  gap: 3px;
  color: #000;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(.68rem, .86vw, .78rem);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.45;
  text-align: center;
  transition: transform .52s cubic-bezier(.2,.9,.2,1), text-shadow .52s ease, opacity .52s ease;
}

.footer__copyright a span[lang="en"] {
  font-size: .90em;
  opacity: .62;
}

.footer__copyright a:hover,
.footer__copyright a:focus-visible {
  opacity: .94;
  transform: translate3d(0, -2px, 18px) scale(1.035);
  text-shadow: 0 9px 18px rgba(24,20,18,.16);
}

@media (max-width: 720px) {
  .editorial-hero {
    min-height: 88svh;
  }

  .editorial-hero::after {
    inset: 10px;
  }

  .editorial-hero__content {
    min-height: 88svh;
    padding: 32px 22px 30px;
  }

  .editorial-menu {
    gap: 12px 18px;
    margin-top: 24px;
  }

  .editorial-menu a {
    font-size: .62rem;
    letter-spacing: .14em;
  }

  .editorial-hero__statement {
    gap: 14px;
  }

  .editorial-hero__eyebrow {
    max-width: 28ch;
    margin-inline: auto;
    font-size: .56rem;
    line-height: 1.7;
  }

  .editorial-title {
    gap: .12em;
    font-size: clamp(1.92rem, 9vw, 3.75rem);
    line-height: .98;
  }

  .strip--cta-editorial {
    min-height: 390px;
    background-position: 56% center;
  }

  .strip--cta-editorial .section-title {
    max-width: 13ch;
    font-size: clamp(2.05rem, 9vw, 2.8rem);
  }

  .footer__window {
    height: 240px;
  }

  .footer__copyright a {
    font-size: .62rem;
    letter-spacing: .045em;
  }
}
