﻿/* Tours & Travels — Static site styles */
:root {
  --ink: #0a1f2e;
  --ink-soft: #1c3a4d;
  --ocean: #0e4d5c;
  --teal: #1a7a8c;
  --teal-light: #2a9aad;
  --sand: #e8d5b5;
  --gold: #c4a35a;
  --gold-bright: #d4b86a;
  --cream: #f7f3eb;
  --fog: #eef4f6;
  --white: #ffffff;
  --muted: #5a7380;
  --border: rgba(10, 31, 46, 0.12);
  --shadow: 0 18px 50px rgba(10, 31, 46, 0.12);
  --radius: 4px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --nav-h: 80px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Nav ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(247, 243, 235, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.scrolled .logo,
.site-header.solid .logo,
.site-header.scrolled .nav-links a,
.site-header.solid .nav-links a,
.site-header.scrolled .nav-toggle,
.site-header.solid .nav-toggle {
  color: var(--ink);
}

.nav-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  transition: color 0.3s;
}

.logo span:not(.amp) {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.15rem;
}

.amp {
  display: inline;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
  padding: 0 0.08em;
}

.site-header.scrolled .amp,
.site-header.solid .amp {
  color: var(--teal);
}

.hero-brand .amp {
  color: var(--gold-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--gold-bright);
}

.site-header.scrolled .nav-links a.active,
.site-header.solid .nav-links a.active {
  color: var(--teal);
}

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold-bright);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.4rem;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
  margin-inline: auto;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 46, 0.35) 0%, rgba(10, 31, 46, 0.25) 40%, rgba(10, 31, 46, 0.78) 100%),
    linear-gradient(90deg, rgba(10, 31, 46, 0.45) 0%, transparent 55%);
}

/* Hero slider */
.hero-slider {
  align-items: center;
}

.hero-slider .hero-slides {
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease), visibility 1.2s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12) translateX(1.5%);
  transition: transform 7.5s linear;
  will-change: transform;
  filter: saturate(1.05) contrast(1.03);
}

.hero-slide.is-active img {
  transform: scale(1) translateX(0);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(10, 31, 46, 0.15) 0%, rgba(10, 31, 46, 0.55) 70%, rgba(10, 31, 46, 0.78) 100%),
    linear-gradient(180deg, rgba(10, 31, 46, 0.45) 0%, transparent 28%, transparent 48%, rgba(10, 31, 46, 0.88) 100%);
}

.hero-side-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 31, 46, 0.28);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, opacity 0.3s;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) 0.9s forwards;
}

.hero-side-prev {
  left: 1.6rem;
}

.hero-side-next {
  right: 1.6rem;
}

.hero-side-arrow:hover {
  background: rgba(196, 163, 90, 0.92);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-50%) scale(1.04);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 5.5rem;
  max-width: 36rem;
}

.hero-slider .hero-content {
  max-width: none;
  width: min(100% - 7rem, 820px);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 4.5rem;
}

.hero-slider .hero-brand,
.hero-slider h1,
.hero-slider .hero-lead,
.hero-slider .hero-place,
.hero-slider .hero-content p {
  max-width: none;
  width: 100%;
}

.hero-slider h1 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
}

.hero-slider .hero-content p.hero-lead {
  margin-inline: auto;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-slider .hero-actions {
  justify-content: center;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero-brand em {
  font-style: italic;
  color: var(--sand);
}

.hero-place {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.25s forwards;
  transition: opacity 0.35s, transform 0.45s var(--ease);
}

.hero-place.is-swap,
#hero-title.is-swap,
#hero-lead.is-swap {
  opacity: 0;
  transform: translateY(10px);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 0 1.35rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.75s forwards;
}

.hero-controls-inner {
  width: calc(100% - 2.5rem);
  max-width: 920px;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
}

.hero-progress {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex: 1;
}

.hero-dot {
  position: relative;
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0.55rem 0 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.hero-dot-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-dot-bar {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.hero-dot-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--sand));
}

.hero-dot.is-active {
  color: var(--white);
}

.hero-dot.is-active .hero-dot-bar::after {
  animation: heroProgress 6.5s linear forwards;
}

.hero-dot:hover {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes heroProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.15rem;
}

.hero-count {
  min-width: 3.6rem;
  text-align: right;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
}

.hero-count strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-right: 0.2rem;
}

.hero-count i {
  font-style: normal;
  margin: 0 0.15rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.35s forwards;
  transition: opacity 0.35s, transform 0.45s var(--ease);
}

.hero p.hero-lead,
.hero .hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 28rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.45s forwards;
  transition: opacity 0.35s, transform 0.45s var(--ease);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.6s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--ocean);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--teal);
}

.btn-outline {
  background: transparent;
  border-color: var(--ocean);
  color: var(--ocean);
}

.btn-outline:hover {
  background: var(--ocean);
  color: var(--white);
}

/* ——— Page hero (inner) ——— */
.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.page-hero .hero-media img {
  animation: none;
  transform: scale(1);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 3.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.1s forwards;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 32rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.25s forwards;
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--fog);
}

.section-dark {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ocean) 100%);
  color: var(--white);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

.section-dark .eyebrow {
  color: var(--gold);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.section-dark .section-head h2 {
  color: var(--white);
}

.section-head p {
  color: var(--muted);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Feature strip ——— */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.intro-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.intro-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.intro-visual {
  position: relative;
  min-height: 420px;
}

.intro-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.intro-accent {
  position: absolute;
  inset: auto -1.25rem -1.25rem auto;
  width: 55%;
  height: 45%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--ocean) 100%);
  z-index: -1;
}

/* ——— Destination / package lists ——— */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dest-item {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  color: var(--white);
  display: block;
}

.dest-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.dest-item:hover img {
  transform: scale(1.07);
}

.dest-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 31, 46, 0.88) 100%);
}

.dest-item .dest-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.5rem;
}

.dest-item h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.dest-item p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.dest-item .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.4rem;
}

/* Packages */
.pkg-list {
  display: grid;
  gap: 1.25rem;
}

.pkg-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.pkg-row:first-child {
  border-top: 1px solid var(--border);
}

.pkg-row img {
  width: 220px;
  height: 150px;
  object-fit: cover;
}

.pkg-row h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.pkg-row p {
  color: var(--muted);
  font-size: 0.98rem;
}

.pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
}

.pkg-price {
  text-align: right;
  white-space: nowrap;
}

.pkg-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ocean);
}

.pkg-price span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0.75rem 0 0.5rem;
}

.why-item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.why-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}

/* About story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.story-grid img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.story-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.values h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--ocean);
}

.values p {
  font-size: 0.92rem;
  margin: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}

.service-block {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.service-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.service-block p {
  color: var(--muted);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.35rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.contact-detail p,
.contact-detail a {
  color: var(--ink-soft);
}

.contact-detail a:hover {
  color: var(--teal);
}

.enquiry-form {
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.enquiry-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.enquiry-form > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  background: var(--fog);
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-group .error {
  display: none;
  color: #b33a3a;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.form-group.invalid .error {
  display: block;
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #b33a3a;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success.show {
  display: block;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ocean);
}

.form-success p {
  color: var(--muted);
}

.enquiry-form.submitted .form-fields {
  display: none;
}

/* CTA band */
.cta-band {
  padding: 4.5rem 0;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(14, 77, 92, 0.92), rgba(10, 31, 46, 0.88)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  margin-inline: auto;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.footer-brand p {
  max-width: 22rem;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--gold);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold-bright);
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .intro-grid,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pkg-row {
    grid-template-columns: 160px 1fr;
  }

  .pkg-price {
    grid-column: 2;
    text-align: left;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    color: var(--ink) !important;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border: 0 !important;
  }

  .hero-content {
    margin-bottom: 4rem;
  }

  .hero-side-arrow {
    display: none;
  }

  .hero-slider .hero-content {
    width: calc(100% - 2.5rem);
    padding-bottom: 5.5rem;
    margin-bottom: 0;
  }

  .hero-controls {
    padding-bottom: 0.9rem;
  }

  .hero-controls-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-progress {
    gap: 0.55rem;
  }

  .hero-dot-label {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
  }

  .hero-nav {
    justify-content: flex-end;
  }

  .dest-grid,
  .services-grid,
  .form-row,
  .values,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pkg-row {
    grid-template-columns: 1fr;
  }

  .pkg-row img {
    width: 100%;
    height: 200px;
  }

  .enquiry-form {
    padding: 1.5rem;
  }

  .intro-visual {
    min-height: 280px;
  }

  .intro-visual img {
    height: 280px;
  }

  .story-grid img {
    height: 300px;
  }
}
