:root {
  --ink: #0d0d0d;
  --charcoal: #151515;
  --ivory: #f6f4f1;
  --paper: #fbfaf7;
  --muted: #5c5a56;
  --magenta: #e6007a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

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

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

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

::selection {
  background: var(--magenta);
  color: #ffffff;
}

.hero-stage {
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero-video {
  animation: hero-drift 18s ease-in-out infinite alternate;
  height: 106%;
  inset: -3%;
  object-fit: cover;
  position: absolute;
  transform: scale(1.02);
  width: 106%;
  will-change: transform;
  z-index: -2;
}

.hero-video-glow {
  animation: glow-sweep 7s ease-in-out infinite;
  background: linear-gradient(105deg, transparent 0%, rgba(230, 0, 122, 0.18) 42%, transparent 68%);
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.58;
  position: absolute;
  transform: translateX(-30%);
}

.hero-overlay {
  background:
    radial-gradient(circle at 32% 34%, rgba(230, 0, 122, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.64) 43%, rgba(13, 13, 13, 0.24) 100%);
  inset: 0;
  position: absolute;
}

.hero-top-fade {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  height: 10rem;
  inset: 0 0 auto;
  position: absolute;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 1.25rem 2rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

.brand-lockup {
  animation: rise-in 900ms 80ms cubic-bezier(0.22, 1, 0.36, 1) both;
  display: block;
  flex: 0 0 auto;
  transition: opacity 280ms ease, transform 280ms ease;
}

.brand-lockup:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.brand-lockup img {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.68));
  height: 3.75rem;
  object-fit: contain;
  object-position: left center;
  width: 13.5rem;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  position: relative;
  transition: color 250ms ease;
}

.nav-link::after {
  background: var(--magenta);
  bottom: -0.45rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
  width: 100%;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--magenta);
  border-radius: 20px;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.75rem 1.1rem;
  transition: background 250ms ease, transform 250ms ease;
}

.nav-cta:hover {
  background: var(--magenta);
  transform: translateY(-2px);
}

.hero-content {
  align-items: center;
  display: flex;
  flex: 1;
  margin: 0 auto;
  max-width: 1280px;
  padding: 1.5rem 2rem 4rem;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-copy-wrap {
  max-width: 48rem;
}

.hero-kicker {
  animation: rise-in 900ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
  color: var(--magenta);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.hero-copy {
  animation: rise-in 900ms 330ms cubic-bezier(0.22, 1, 0.36, 1) both;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.85;
  margin: 0 0 1.25rem;
  max-width: 42rem;
}

.hero-title {
  animation: rise-in 900ms 470ms cubic-bezier(0.22, 1, 0.36, 1) both;
  color: #ffffff;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.98;
  margin: 0;
  min-height: 1.96em;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.58);
}

.typewriter-caret {
  animation: caret-blink 900ms steps(1) infinite;
  border-right: 0.08em solid var(--magenta);
  display: inline-block;
  height: 0.82em;
  margin-left: 0.08em;
  transform: translateY(0.08em);
}

.hero-actions {
  animation: rise-in 900ms 610ms cubic-bezier(0.22, 1, 0.36, 1) both;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  border-radius: 20px;
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  overflow: hidden;
  padding: 1rem 1.45rem;
  position: relative;
  text-align: center;
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.button::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(-100%);
}

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

.button:hover::after {
  animation: button-sheen 850ms ease;
  opacity: 1;
}

.button-primary {
  background: var(--magenta);
  color: #ffffff;
}

.button-primary:hover {
  background: #c9006b;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.hero-services {
  animation: rise-in 900ms 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 1.2rem 2rem;
  position: relative;
  z-index: 1;
}

.hero-services-inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.service-pill {
  animation: service-rise 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  font-size: 0.9rem;
  position: relative;
}

.service-pill:nth-child(1) {
  animation-delay: 850ms;
}

.service-pill:nth-child(2) {
  animation-delay: 970ms;
}

.service-pill:nth-child(3) {
  animation-delay: 1090ms;
}

.service-pill:nth-child(4) {
  animation-delay: 1210ms;
}

.service-pill::before {
  background: var(--magenta);
  border-radius: 999px;
  content: "";
  height: 0.35rem;
  left: -0.85rem;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  transition: opacity 250ms ease, transform 250ms ease;
  width: 0.35rem;
}

.service-pill:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.section {
  padding: 6rem 2rem;
}

.section-light {
  background: var(--ivory);
  color: #111111;
}

.section-dark {
  background: #111111;
  color: var(--ivory);
}

.section-black {
  background: var(--ink);
  color: var(--ivory);
}

.container {
  margin: 0 auto;
  max-width: 1280px;
}

.two-column {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.8fr 1.2fr;
}

.section-heading {
  margin-bottom: 3rem;
}

.accent-label {
  color: var(--magenta);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  position: relative;
}

.accent-label::after {
  animation: line-glow 2.8s ease-in-out infinite;
  background: var(--magenta);
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.65rem;
  transform-origin: left;
  width: 4.5rem;
}

.centered::after {
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.08;
  margin: 0;
}

.journey-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.journey-card {
  animation: card-rise both;
  animation-range: entry 7% cover 34%;
  animation-timeline: view();
  background: #ffffff;
  color: #111111;
  display: block;
  border: 1px solid rgba(13, 13, 13, 0.06);
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(13, 13, 13, 0.08);
  overflow: hidden;
  transition: box-shadow 500ms ease, transform 500ms ease;
}

.journey-card:hover {
  box-shadow: 0 34px 70px rgba(13, 13, 13, 0.18);
  transform: translateY(-8px);
}

.journey-image {
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
}

.journey-image img {
  filter: saturate(0.94) contrast(1.04);
  height: 100%;
  object-fit: cover;
  transition: filter 700ms ease, transform 700ms ease;
  width: 100%;
}

.journey-card:hover .journey-image img {
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.06);
}

.journey-body {
  padding: 1.7rem;
}

.journey-body h3,
.process-step h3 {
  font-size: 2rem;
  line-height: 1.12;
  margin: 0;
}

.journey-body p,
.process-step p {
  color: #444444;
  font-size: 0.96rem;
  line-height: 1.8;
  margin: 1rem 0 0;
}

.destination-layout,
.process-layout,
.enquire-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1.05fr;
}

.section-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 36rem;
}

.destination-chips {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.destination-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.destination-chip:hover {
  border-color: rgba(230, 0, 122, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.destination-images {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.destination-image {
  animation: image-reveal both;
  animation-range: entry 12% cover 36%;
  animation-timeline: view();
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  filter: saturate(0.94) contrast(1.04);
  height: 100%;
  object-fit: cover;
  transition: filter 450ms ease, transform 450ms ease;
  width: 100%;
}

.destination-image:hover {
  filter: saturate(1.08) contrast(1.08);
  transform: translateY(-6px) scale(1.01);
}

.destination-image-offset {
  margin-top: 3rem;
}

.process-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.process-list {
  display: grid;
  gap: 0.25rem;
}

.process-step {
  animation: process-slide both;
  animation-range: entry 8% cover 30%;
  animation-timeline: view();
  border-top: 1px solid #d9d3cb;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 5.5rem 1fr;
  padding: 1.8rem 0;
  transition: border-color 300ms ease, transform 300ms ease;
}

.process-step:hover {
  border-color: rgba(230, 0, 122, 0.42);
  transform: translateX(4px);
}

.process-step > span {
  color: var(--magenta);
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-panel {
  background: #000000;
  overflow: hidden;
  padding: 6rem 2rem;
  position: relative;
  text-align: center;
}

.brand-panel-bg {
  animation: brand-breathe 12s ease-in-out infinite alternate;
  background:
    radial-gradient(circle at 50% 45%, rgba(230, 0, 122, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(246, 244, 241, 0.08), transparent 36%),
    #050505;
  inset: 0;
  position: absolute;
}

.brand-panel-content {
  margin: 0 auto;
  max-width: 56rem;
  position: relative;
}

.brand-panel-content img {
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.85));
  margin: 0 auto 2rem;
  width: 14rem;
}

.enquire-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.enquiry-form {
  animation: form-rise both;
  animation-range: entry 10% cover 32%;
  animation-timeline: view();
  background: var(--charcoal);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 2rem;
  transition: box-shadow 300ms ease, transform 300ms ease;
}

.enquiry-form:focus-within {
  box-shadow: 0 34px 90px rgba(230, 0, 122, 0.14);
}

.form-field {
  animation: field-rise both;
  animation-range: entry 8% cover 28%;
  animation-timeline: view();
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  font-size: 0.9rem;
  gap: 0.55rem;
}

.form-field-wide,
.form-button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  outline: none;
  padding: 0.9rem 1rem;
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field:focus-within input,
.form-field:focus-within select,
.form-field:focus-within textarea {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(230, 0, 122, 0.14);
  transform: translateY(-2px);
}

.site-footer { background: #171717; border-top: 1px solid rgba(255,255,255,.12); }
.footer-main, .footer-bottom { margin: 0 auto; max-width: 1280px; width: 100%; }
.footer-main { display: grid; gap: 2.5rem; grid-template-columns: 1.25fr repeat(3,.8fr) 1fr; padding: 4.5rem 2rem 4rem; }
.footer-logo { height: 4.2rem; object-fit: contain; object-position: left center; width: 14rem; }
.footer-tagline, .footer-column a, .footer-column span, .footer-connect, .footer-bottom { color: rgba(255,255,255,.66); font-size: .88rem; line-height: 1.7; }
.footer-tagline { margin: 1rem 0 0; max-width: 18rem; }
.footer-column, .footer-connect { align-items: flex-start; display: flex; flex-direction: column; gap: .5rem; }
.footer-column h2, .footer-connect h2 { color: #fff; font-family: Arial,Helvetica,sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .12em; margin: 0 0 .8rem; text-transform: uppercase; }
.footer-column a, .footer-connect a { transition: color 220ms ease, transform 220ms ease; }
.footer-column a:hover, .footer-connect a:hover { color: #fff; }
.footer-connect p { color: rgba(255,255,255,.72); margin: 0 0 .75rem; max-width: 13rem; }
.footer-cta { align-items: center; border: 1px solid var(--magenta); border-radius: 20px; display: inline-flex; justify-content: center; margin-bottom: .75rem; min-height: 2.8rem; padding: .65rem 1rem; text-transform: uppercase; width: 10.5rem; }
.footer-cta:hover { background: var(--magenta); }
.footer-bottom { align-items: center; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; padding: 1.2rem 2rem 1.5rem; }
.footer-bottom strong { color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-regulatory { border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.54); font-size: .72rem; letter-spacing: .03em; line-height: 1.6; padding: 1rem 2rem 1.25rem; position: relative; text-align: center; }

@media (max-width: 900px) { .footer-main { grid-template-columns: repeat(2,minmax(0,1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 640px) { .brand-lockup img { height: 3.2rem; width: 11rem; } .footer-main { grid-template-columns: 1fr; padding: 3.5rem 1.25rem 3rem; } .footer-brand { grid-column: auto; } .footer-bottom { align-items: flex-start; flex-direction: column; gap: .35rem; padding-left: 1.25rem; padding-right: 1.25rem; } }

.legal-page { background: var(--ivory); color: #111; min-height: 100vh; }
.legal-header { align-items: center; background: var(--ink); display: flex; justify-content: space-between; padding: 1.25rem max(2rem, calc((100vw - 1280px) / 2)); }
.legal-brand { align-items: center; display: flex; gap: .75rem; }
.legal-brand img { height: 3.5rem; object-fit: contain; object-position: left center; width: 13rem; }
.legal-content { margin: 0 auto; max-width: 850px; padding: 5rem 2rem 6rem; }
.legal-back { color: var(--magenta); display: inline-block; font-weight: 700; margin-bottom: 4rem; }
.legal-content h1 { font-family: Georgia, serif; font-size: clamp(3rem, 8vw, 6.5rem); line-height: .98; margin: 1.25rem 0 2rem; }
.legal-intro { border-bottom: 1px solid #d9d3cb; font-size: 1.15rem; line-height: 1.8; margin: 0 0 3rem; padding-bottom: 3rem; }
#legal-document h2 { border-top: 1px solid #d9d3cb; font-family: Georgia, serif; font-size: 1.8rem; margin: 2.5rem 0 1rem; padding-top: 2rem; }
#legal-document p, .legal-contact-note { color: #4a4844; line-height: 1.85; margin: 0 0 1rem; }
#legal-document a, .legal-contact-note a { color: #c9006b; text-decoration: underline; text-underline-offset: .18em; }
.legal-contact-note { border-top: 1px solid #d9d3cb; font-weight: 700; margin-top: 3rem; padding-top: 2rem; }
.legal-footer { background: var(--ink); display: flex; gap: 1.5rem; justify-content: center; padding: 1.5rem 2rem; }
.legal-footer a { color: rgba(255,255,255,.72); }

.reveal-section {
  animation: section-reveal both;
  animation-range: entry 8% cover 28%;
  animation-timeline: view();
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(-1%, -0.6%, 0);
  }

  to {
    transform: scale(1.12) translate3d(1.1%, 0.9%, 0);
  }
}

@keyframes glow-sweep {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-45%);
  }

  50% {
    opacity: 0.62;
    transform: translateX(25%);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes service-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes button-sheen {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes line-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(44px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes image-reveal {
  from {
    clip-path: inset(10% 8% 10% 8% round 1.5rem);
    opacity: 0;
    transform: translateY(32px) scale(0.97);
  }

  to {
    clip-path: inset(0 0 0 0 round 1.5rem);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes process-slide {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes form-rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes field-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brand-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

@keyframes caret-blink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }

  .hero-stage {
    min-height: 760px;
  }

  .hero-content,
  .site-header,
  .section,
  .hero-services {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-services-inner,
  .two-column,
  .journey-grid,
  .destination-layout,
  .process-layout,
  .enquire-layout {
    grid-template-columns: 1fr;
  }

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

  .destination-images {
    grid-template-columns: 1fr;
  }

  .destination-image-offset {
    margin-top: 0;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
}

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

  .typewriter-caret {
    display: none;
  }
}
