:root {
  --void: #020304;
  --deep: #050810;
  --surface: #0a0e18;
  --panel: #0f1420;
  --edge: rgba(255, 255, 255, 0.06);
  --edge2: rgba(255, 255, 255, 0.1);
  --gold: #c8a96e;
  --gold2: #e8cc94;
  --gold-dim: rgba(200, 169, 110, 0.15);
  --gold-glow: rgba(200, 169, 110, 0.04);
  --white: #ffffff;
  --off: #f0ece4;
  --muted: rgba(240, 236, 228, 0.45);
  --faint: rgba(240, 236, 228, 0.2);
  --accent: #4a9e8a;
  --accent2: #2d7a68;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--void);
  color: var(--off);
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

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

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

#cursor {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}

#cursor-ring {
  position: fixed;
  z-index: 9998;
  pointer-events: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.4);
  transform: translate(-50%, -50%);
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: linear-gradient(to bottom, rgba(2, 3, 4, 0.9), transparent);
  transition: background 0.4s;
}

nav.scrolled {
  background: rgba(5, 8, 16, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--edge);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}

.logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-center {
  display: flex;
  gap: 40px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta,
.btn-fill,
.btn-submit {
  color: var(--void);
  background: var(--gold);
  transition: background 0.3s, transform 0.3s;
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  font-weight: 600;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover,
.btn-fill:hover,
.btn-submit:hover {
  background: var(--gold2);
}

main {
  display: block;
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(74, 158, 138, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, rgba(200, 169, 110, 0.05) 0%, transparent 50%),
    linear-gradient(160deg, #020304 0%, #050a10 40%, #020608 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(200, 169, 110, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 1) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb1 {
  width: 500px;
  height: 500px;
  right: -100px;
  top: 10%;
  background: radial-gradient(circle, rgba(74, 158, 138, 0.12) 0%, transparent 70%);
  animation: float1 8s ease-in-out infinite;
}

.orb2 {
  width: 300px;
  height: 300px;
  left: 10%;
  bottom: 20%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.08) 0%, transparent 70%);
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, 40px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(20px, -30px);
  }
}

.hero-content,
.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

.hero-tag {
  margin-bottom: 40px;
  opacity: 0;
  animation: revealUp 0.8s 0.3s forwards;
}

.hero-tag::before,
.eyebrow::before {
  content: '';
  height: 1px;
  background: var(--gold);
}

.hero-tag::before {
  width: 40px;
}

.eyebrow {
  margin-bottom: 24px;
}

.eyebrow::before {
  width: 32px;
}

.hero h1,
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.92;
  margin-bottom: 48px;
  opacity: 0;
  animation: revealUp 0.9s 0.5s forwards;
}

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

.hero h1 .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
  color: transparent;
}

.hero-sub,
.body-text {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--muted);
}

.hero-sub {
  max-width: 460px;
  margin-bottom: 56px;
  opacity: 0;
  animation: revealUp 0.9s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: revealUp 0.9s 0.9s forwards;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
}

.btn-fill {
  padding: 18px 40px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-fill:hover {
  transform: translateX(4px);
}

.btn-ghost {
  color: var(--muted);
  padding: 18px 0;
  border-bottom: 1px solid var(--edge2);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: var(--gold);
}

.btn-ghost::after {
  content: ' →';
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: revealUp 0.8s 1.2s forwards;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--edge2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scanline 2s linear infinite;
}

@keyframes scanline {
  to {
    left: 100%;
  }
}

.scroll-text,
.hstat-label,
.dest-type,
.team-role,
.c-detail-label,
.footer-col h4 {
  text-transform: uppercase;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--faint);
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 48px;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: revealUp 0.8s 1.1s forwards;
}

.hstat {
  text-align: right;
}

.hstat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.hstat-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--faint);
  margin-top: 4px;
}

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 18px 0;
  background: var(--deep);
}

.marquee-inner {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeRun 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 500;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

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

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

.section {
  padding: 140px 0;
}

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

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

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

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

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

.display {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
}

.display-compact {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 24px;
}

.intro-layout,
.about-strip-inner,
.about-hero-layout,
.contact-layout {
  display: grid;
  gap: 100px;
}

.intro-layout {
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.intro-visual {
  position: relative;
  height: 580px;
}

.intro-card-main {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  overflow: hidden;
}

.intro-card-main::before,
.about-hero-right::before,
.sf-visual::before {
  content: '';
  position: absolute;
  inset: 0;
}

.intro-card-main::before {
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(74, 158, 138, 0.12), transparent);
}

.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--void);
  padding: 24px 28px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.intro-badge span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.divider,
.gold-line {
  width: 60px;
  height: 1px;
}

.divider {
  background: var(--edge2);
}

.gold-line {
  background: var(--gold);
  margin: 32px 0;
}

.feature-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--edge);
}

.feature-row:first-of-type {
  border-top: 1px solid var(--edge);
}

.feature-icon,
.team-emoji,
.c-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--edge);
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  font-size: 16px;
}

.feature-row h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-row p,
.team-card p {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.7;
}

.services-bento,
.values-grid,
.team-strip,
.dest-masonry {
  display: grid;
  gap: 2px;
  background: var(--edge);
  border: 1px solid var(--edge);
}

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

.svc-tile,
.val-card,
.team-card,
.dest-card {
  position: relative;
  overflow: hidden;
}

.svc-tile {
  display: block;
  background: var(--deep);
  padding: 56px 48px;
  transition: background 0.4s;
}

.svc-tile:hover {
  background: var(--surface);
}

.svc-tile-wide {
  grid-column: span 2;
}

.svc-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-tile:hover::after {
  transform: scaleX(1);
}

.svc-num,
.val-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--edge2);
  line-height: 1;
  position: absolute;
}

.svc-num {
  font-size: 72px;
  top: 24px;
  right: 32px;
  transition: color 0.4s;
}

.svc-tile:hover .svc-num {
  color: var(--gold-dim);
}

.svc-emoji {
  font-size: 32px;
  margin-bottom: 24px;
  display: block;
}

.svc-tile h3,
.dest-main-content h2,
.dest-card-content h3,
.val-card h3,
.team-card h4,
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--white);
}

.svc-tile h3 {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.svc-tile p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}

.svc-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  color: var(--muted);
  font-size: 18px;
  transition: all 0.3s;
}

.svc-arrow-gold {
  color: var(--gold);
}

.svc-tile:hover .svc-arrow {
  color: var(--gold);
  transform: translate(4px, -4px);
}

.svc-cta {
  background: var(--gold-glow);
  border-top: 1px solid var(--gold-dim);
}

.svc-cta h3 {
  font-size: 28px;
}

.dest-showcase {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2px;
  background: var(--edge);
  min-height: 600px;
}

.dest-main {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 56px;
  min-height: 600px;
}

.dest-main-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 180px;
  transition: transform 0.4s, filter 0.4s;
  opacity: 0.7;
}

.dest-main:hover .dest-main-emoji {
  transform: translate(-50%, -65%) scale(1.05);
  filter: blur(1px);
}

.dest-main::before,
.dest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dest-main::before {
  background: linear-gradient(to top, rgba(5, 8, 16, 0.95) 0%, rgba(5, 8, 16, 0.3) 50%, transparent 100%);
}

.dest-main-content,
.dest-card-content {
  position: relative;
  z-index: 2;
}

.dest-main-content h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.dest-main-content p {
  font-size: 14px;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.7;
}

.dest-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--void);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.dest-list {
  display: flex;
  flex-direction: column;
}

.dest-list-item {
  padding: 28px 32px;
  background: var(--deep);
  border: 0;
  border-bottom: 1px solid var(--edge);
  color: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s;
}

.dest-list-item:hover {
  background: var(--surface);
  padding-left: 40px;
}

.dest-list-item.active {
  background: var(--panel);
  border-left: 2px solid var(--gold);
}

.dest-list-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.dest-list-emoji {
  font-size: 24px;
  flex-shrink: 0;
}

.dest-list-info h4 {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}

.dest-list-info p {
  font-size: 12px;
  color: var(--faint);
}

.dest-arrow {
  color: var(--muted);
  font-size: 16px;
  transition: all 0.3s;
}

.dest-list-item:hover .dest-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

.about-strip {
  background: var(--surface);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 100px 0;
}

.about-strip-inner,
.about-hero-layout {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  font-style: italic;
}

.about-quote::before {
  content: '"';
  display: block;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 24px;
}

.page-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  background: var(--deep);
}

.page-hero-void {
  background: var(--void);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg-services {
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(74, 158, 138, 0.08), transparent);
}

.page-hero-bg-destinations {
  background: radial-gradient(ellipse 80% 60% at 40% 50%, rgba(74, 158, 138, 0.08), transparent);
}

.page-hero-bg-about {
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(200, 169, 110, 0.06), transparent);
}

.page-hero-bg-contact {
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(74, 158, 138, 0.06), transparent);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.service-section {
  border-top: 1px solid var(--edge);
}

.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.sf-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 140px;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.sf-visual span,
.about-hero-right span {
  position: relative;
  z-index: 1;
}

.sf-gold {
  background: var(--surface);
}

.sf-gold::before {
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.06), transparent 70%);
}

.sf-accent {
  background: var(--deep);
}

.sf-accent::before {
  background: radial-gradient(ellipse at center, rgba(74, 158, 138, 0.08), transparent 70%);
}

.sf-text {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--deep);
  border-left: 1px solid var(--edge);
}

.sf-text-alt {
  background: var(--surface);
  border-left: none;
  border-right: 1px solid var(--edge);
}

.service-title,
.contact-title {
  font-size: clamp(32px, 3.5vw, 52px);
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 36px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--edge);
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

.features-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.service-action {
  margin-top: 40px;
}

.destinations-intro {
  background: var(--void);
  padding: 80px 0;
}

.intro-copy,
.centered-copy {
  max-width: 600px;
}

.intro-copy {
  margin-bottom: 64px;
}

.centered-copy {
  margin: 0 auto 48px;
}

.dest-masonry,
.values-grid,
.team-strip {
  grid-template-columns: repeat(3, 1fr);
}

.dest-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 32px 28px;
  background: var(--deep);
}

.dest-card-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  transition: transform 0.4s;
}

.dest-card:hover .dest-card-emoji {
  transform: translate(-50%, -55%) scale(1.1);
}

.dest-card::before {
  background: linear-gradient(to top, rgba(5, 8, 16, 0.95) 0%, rgba(5, 8, 16, 0.4) 50%, transparent 100%);
}

.dest-card:hover::before {
  background: linear-gradient(to top, rgba(5, 8, 16, 0.98) 0%, rgba(5, 8, 16, 0.6) 60%, rgba(5, 8, 16, 0.1) 100%);
}

.dest-card-content h3 {
  font-size: 26px;
  margin-bottom: 4px;
}

.dest-card-content p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}

.dest-card:hover .dest-card-content p {
  max-height: 80px;
}

.dest-type {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.dest-card-tall {
  min-height: 440px;
}

.dest-sigiriya {
  background: linear-gradient(135deg, #0a1808, #1a2e10);
}

.dest-kandy {
  background: linear-gradient(135deg, #080a18, #10183a);
}

.dest-ella {
  background: linear-gradient(135deg, #0a1808, #152510);
}

.dest-mirissa {
  background: linear-gradient(135deg, #08151a, #102530);
}

.dest-yala {
  background: linear-gradient(135deg, #0f0a06, #251508);
}

.dest-galle {
  background: linear-gradient(135deg, #0a0810, #181025);
}

.dest-trinco {
  background: linear-gradient(135deg, #080f18, #102030);
}

.dest-nuwara {
  background: linear-gradient(135deg, #081208, #102010);
}

.dest-udawalawe {
  background: linear-gradient(135deg, #12100a, #25200e);
}

.about-hero-left,
.contact-left {
  background: var(--surface);
  border-right: 1px solid var(--edge);
}

.about-hero-left {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy {
  margin-bottom: 20px;
}

.about-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160px;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.about-hero-right::before {
  background: radial-gradient(ellipse at center, rgba(74, 158, 138, 0.1) 0%, transparent 70%);
}

.values-section,
.team-section {
  padding: 100px 0;
}

.values-section {
  background: var(--void);
}

.team-section {
  background: var(--deep);
}

.values-title {
  margin-bottom: 64px;
}

.val-card,
.team-card {
  background: var(--deep);
  padding: 56px 48px;
}

.val-card::before,
.c-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.val-num {
  font-size: 88px;
  top: 16px;
  right: 24px;
}

.val-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.team-card {
  border-bottom: 2px solid transparent;
  transition: all 0.4s;
}

.team-card:hover {
  background: var(--surface);
  border-bottom-color: var(--gold);
}

.team-emoji {
  width: 72px;
  height: 72px;
  font-size: 28px;
  margin-bottom: 28px;
}

.team-card h4 {
  font-size: 24px;
  margin-bottom: 4px;
}

.team-role,
.c-detail-label,
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
}

.team-role {
  margin-bottom: 16px;
  display: block;
}

.contact-layout {
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  min-height: 600px;
}

.contact-left {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 56px;
}

.contact-right {
  padding: 100px 80px;
  background: var(--deep);
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.c-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  font-size: 18px;
  position: relative;
}

.c-detail-label {
  font-size: 9px;
  margin-bottom: 4px;
}

.c-detail-val {
  font-size: 15px;
  color: var(--muted);
}

.form-title {
  font-size: 38px;
  margin-bottom: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--edge);
  color: var(--off);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  font-weight: 300;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field select option {
  background: var(--surface);
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--faint);
}

.btn-submit {
  width: 100%;
  padding: 20px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

footer {
  background: var(--void);
  padding: 80px 60px 48px;
  border-top: 1px solid var(--edge);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-brand-logo span {
  color: var(--gold);
  font-style: italic;
}

.footer-desc {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.8;
  max-width: 260px;
  font-weight: 300;
}

.footer-col h4 {
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 12px;
  transition: color 0.3s;
  font-weight: 300;
}

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

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--edge);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.5px;
}

.footer-crafted {
  color: var(--gold) !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9000;
  background: var(--gold);
  color: var(--void);
  padding: 20px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.section-copy {
  margin-bottom: 32px;
}

.section-title-gap {
  margin-bottom: 24px;
}

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

@media (max-width: 1100px) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-ring {
    display: none;
  }

  nav {
    padding: 0 24px;
  }

  .nav-center {
    position: static;
    transform: none;
    gap: 18px;
  }

  .hero-content,
  .container,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro-layout,
  .about-strip-inner,
  .service-full,
  .about-hero-layout,
  .contact-layout,
  .dest-showcase {
    grid-template-columns: 1fr;
  }

  .services-bento,
  .values-grid,
  .team-strip,
  .dest-masonry {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-stats,
  .hero-scroll-indicator {
    position: static;
    margin-top: 32px;
  }

  .hero {
    min-height: 100vh;
    height: auto;
    padding: 140px 0 60px;
  }

  .contact-left,
  .contact-right,
  .about-hero-left,
  .sf-text {
    padding: 64px 24px;
  }
}

@media (max-width: 760px) {
  nav {
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-center {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .page-hero {
    margin-top: 132px;
  }

  .hero-content,
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section,
  .about-strip,
  .values-section,
  .team-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero-actions,
  .footer-bottom,
  .form-row {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .services-bento,
  .values-grid,
  .team-strip,
  .dest-masonry {
    grid-template-columns: 1fr;
  }

  .svc-tile-wide {
    grid-column: span 1;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hstat {
    text-align: left;
  }

  .dest-main,
  .sf-visual,
  .intro-card-main,
  .about-hero-right {
    min-height: 360px;
  }

  .intro-visual {
    height: 360px;
  }

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