@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
  --navy: #06132b;
  --navy-2: #0a1d3e;
  --ivory: #f7f1e8;
  --ivory-soft: #fbf7f0;
  --warm: #efe2cf;
  --gold: #d4af37;
  --gold-soft: #f3df92;
  --gold-deep: #9e7515;
  --text: #112037;
  --muted: #526176;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 19, 43, 0.16);
  --shadow-strong: 0 28px 90px rgba(6, 19, 43, 0.28);
  --radius: 26px;
  --display: "Cinzel", serif;
  --body: "Plus Jakarta Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--navy);
  font-size: 18px;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(6, 19, 43, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.force-dark {
  background: rgba(6, 19, 43, 0.98);
  box-shadow: 0 16px 50px rgba(6, 19, 43, 0.24);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 22px rgba(212, 175, 55, 0.18));
  outline: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
  transition: transform 0.55s var(--ease);
}

.brand:hover .brand-mark svg,
.brand:focus-visible .brand-mark svg {
  transform: rotate(45deg) scale(1.08);
}

.brand-text {
  font-family: var(--display);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
}

.brand-text span {
  color: var(--gold);
}

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

.nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 900;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.25s ease, transform 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-soft);
  transform: translateY(-2px);
  outline: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.28s ease;
}

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

.nav-cta {
  text-decoration: none;
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-weight: 900;
  transition: all 0.28s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 14px;
  width: 48px;
  height: 44px;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.menu-btn:hover,
.menu-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.16);
  border-color: rgba(212, 175, 55, 0.72);
  outline: none;
}

.menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.28s var(--ease), opacity 0.2s ease, background 0.25s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  min-height: 58px;
  padding: 1rem 1.65rem;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.32) 44%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.015);
  outline: none;
}

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

.btn-gold {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 45%, var(--gold-deep));
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.26);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 24px 44px rgba(212, 175, 55, 0.36);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.btn-glass:hover,
.btn-glass:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(243, 223, 146, 0.86);
}

/* HERO */

.hero-shell {
  position: relative;
  height: 380vh;
  background: var(--navy);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-master,
.hero-scrim,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-master {
  background-image: url("assets/hero-master.png");
  background-size: cover;
  background-position: center 58%;
  transform-origin: center 62%;
  backface-visibility: hidden;
  will-change: transform, filter;
}

.hero-scrim {
  background:
    linear-gradient(
      180deg,
      rgba(6, 19, 43, 0.24),
      rgba(6, 19, 43, 0.04) 30%,
      rgba(6, 19, 43, 0.16) 72%,
      rgba(6, 19, 43, 0.44)
    ),
    radial-gradient(
      circle at 50% 40%,
      transparent 0 32%,
      rgba(6, 19, 43, 0.08) 58%,
      rgba(6, 19, 43, 0.36) 100%
    );
}

.hero-glow {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 244, 208, 0.12), transparent 22%),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.07), transparent 18%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 50%;
  z-index: 4;
  width: min(760px, 90vw);
  text-align: center;
  color: var(--white);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: opacity, transform;
}

.hero-content--intro {
  top: 48%;
  opacity: 1;
}

.hero-content--mid {
  top: 43%;
}

.hero-content--late {
  top: 40%;
}

.hero-badge,
.story-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 223, 146, 0.9);
  background: rgba(6, 19, 43, 0.52);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.7rem 1.2rem;
  margin-bottom: 1rem;
}

.hero-content h1,
.hero-content h2 {
  font-family: var(--display);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0;
}

.hero-content h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.hero-content h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.hero-content p {
  max-width: 620px;
  margin: 1rem auto 0;
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  z-index: 6;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
  pointer-events: none;
  will-change: opacity;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 44px;
  margin: 0.7rem auto 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), transparent);
  animation: cuePulse 1.6s ease-in-out infinite;
}

@keyframes cuePulse {
  0% { transform: scaleY(0.3); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.45; }
}

/* SECTION HEADINGS */

.section-head {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.section-head span,
.contact-copy > span,
.reviews-count {
  display: block;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.section-head h2,
.contact-copy h2,
.reviews-toolbar h2 {
  margin: 0;
  font-family: var(--display);
  color: var(--navy);
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-head p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.65;
}

/* TRIPS */

.trips-section {
  position: relative;
  padding: 7rem 0 7.5rem;
  overflow: hidden;
  background: var(--ivory-soft);
}

.section-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 241, 232, 0.92), rgba(247, 241, 232, 0.97)),
    url("assets/section-bg-navy.png");
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  pointer-events: none;
}

.trips-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.trips-grid--clean {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
}

.trip-card {
  min-height: 100%;
  padding: 1.4rem;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 252, 245, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}


.trip-card.reveal {
  transition: opacity 0.75s var(--ease), transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}

.trip-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.2));
}

.trip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-strong);
}

.trip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 1.05rem;
}

.trip-label,
.trip-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trip-label {
  color: var(--navy);
  background: var(--warm);
}

.trip-status {
  color: var(--gold-deep);
  background: rgba(212, 175, 55, 0.13);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.trip-card h3 {
  min-height: 2.55em;
  margin: 0 0 0.45rem;
  font-family: var(--display);
  color: var(--navy);
  font-size: clamp(1.6rem, 1.9vw, 2rem);
  line-height: 1.08;
  display: flex;
  align-items: flex-end;
}

.trip-date {
  margin: 0 0 1.05rem;
  color: var(--gold-deep);
  font-weight: 900;
  font-size: 1.05rem;
}

.trip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: grid;
  gap: 0.65rem;
}

.trip-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.35;
}

.trip-list li::before {
  content: "✓";
  color: var(--gold-deep);
  font-weight: 900;
}

.trip-card--full {
  background: rgba(255, 255, 255, 0.78);
}

.trip-status--full {
  color: #6b5a3a;
  background: rgba(17, 32, 55, 0.08);
  border-color: rgba(17, 32, 55, 0.16);
}

.trip-card--full .trip-list li::before {
  content: "• ";
}

.trip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  width: 100%;
  min-height: 46px;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, var(--navy), #12345f 58%, var(--gold-deep));
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: 0 14px 28px rgba(6, 19, 43, 0.15);
  font-weight: 900;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.trip-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.6s var(--ease);
}

.trip-link::after {
  content: "→";
  transition: transform 0.28s var(--ease);
}

.trip-link:hover,
.trip-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.72);
  box-shadow: 0 18px 34px rgba(6, 19, 43, 0.22);
  outline: none;
}

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

.trip-link:hover::after,
.trip-link:focus-visible::after {
  transform: translateX(5px);
}

/* CONTACT */

.contact-section {
  padding: 7rem 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(212, 175, 55, 0.12), transparent 22%),
    linear-gradient(180deg, var(--ivory), #f2e7d8);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-details div {
  padding: 1.15rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 16px 45px rgba(6, 19, 43, 0.08);
}

.contact-details strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.contact-details span {
  color: var(--muted);
  font-weight: 700;
}

.contact-form {
  padding: 1.85rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea,
.reviews-controls input,
.reviews-controls select {
  width: 100%;
  border: 1px solid rgba(17, 32, 55, 0.14);
  border-radius: 18px;
  padding: 1rem 1rem;
  min-height: 56px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.reviews-controls input:focus,
.reviews-controls select:focus {
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  border: 0;
}

/* REVIEWS */

.reviews-page-main {
  background:
    radial-gradient(circle at 18% 10%, rgba(212,175,55,0.12), transparent 28%),
    linear-gradient(180deg, var(--navy) 0, var(--navy-2) 360px, var(--ivory) 360px, var(--ivory) 100%);
}

.reviews-hero {
  padding: 10rem 0 4rem;
  color: var(--white);
}

.reviews-hero-card {
  border-radius: 36px;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(212,175,55,0.24);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    url("assets/section-bg-navy.png");
  background-size: cover;
  box-shadow: var(--shadow-strong);
}

.reviews-hero-card h1 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0;
}

.reviews-page-section {
  padding: 4rem 0 8rem;
}

.reviews-toolbar {
  margin-bottom: 2rem;
}

.reviews-controls {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.reviews-controls label {
  display: grid;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 900;
}

.reviews-empty {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: #fff7dc;
  color: var(--navy);
  border: 1px solid rgba(212,175,55,0.25);
  margin-bottom: 1.4rem;
  font-weight: 900;
}

.reviews-masonry {
  columns: 3 300px;
  column-gap: 1.3rem;
}

.review-tile {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.3rem;
  break-inside: avoid;
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(6,19,43,0.08);
  box-shadow: 0 18px 50px rgba(6,19,43,0.08);
}

.review-tile p {
  color: var(--muted);
  margin: 0 0 1.3rem;
  font-weight: 700;
}

.review-tile strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.review-tile span {
  color: var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 900;
}

.review-tile time {
  display: block;
  margin-top: 0.35rem;
  color: rgba(6,19,43,0.48);
  font-size: 0.82rem;
  font-weight: 800;
}

/* FOOTER */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.84);
  padding: 1.7rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 900;
}

/* MODAL */

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 19, 43, 0.74);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.form-modal.active {
  opacity: 1;
  visibility: visible;
}

.form-modal__card {
  position: relative;
  width: min(480px, 100%);
  padding: 2.2rem;
  border-radius: 26px;
  background: var(--ivory-soft);
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.form-modal__close {
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.form-modal__check {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy);
  font-weight: 900;
  font-size: 1.8rem;
}

.form-modal__card h3 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 2rem;
  margin: 0 0 0.7rem;
}

.form-modal__card p {
  color: var(--muted);
  font-weight: 700;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

/* RESPONSIVE */

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

@media (max-width: 980px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .nav.open {
    position: fixed;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    background: rgba(6, 19, 43, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
  }

  .nav.open a {
    padding: 1.1rem 1.2rem;
    font-size: 1.05rem;
  }

  .trips-grid,
  .contact-grid,
  .form-row,
  .reviews-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 17px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-shell {
    height: 330vh;
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .hero-content h2 {
    font-size: clamp(2.4rem, 10vw, 3.8rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: min(100%, 310px);
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
}

/* PLAYFUL POLISH + MOBILE COMFORT */

.trip-card::after,
.contact-details div::after,
.review-tile::after {
  content: "";
  position: absolute;
  inset: -45% -25% auto;
  height: 90%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 62%);
  opacity: 0;
  transform: translate3d(-12px, 18px, 0) scale(0.88);
  transition: opacity 0.34s var(--ease), transform 0.34s var(--ease);
  pointer-events: none;
}

.trip-card:hover::after,
.trip-card:focus-within::after,
.contact-details div:hover::after,
.review-tile:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.trip-card:hover .trip-label,
.trip-card:hover .trip-status,
.trip-card:focus-within .trip-label,
.trip-card:focus-within .trip-status {
  transform: translateY(-1px) scale(1.03);
}

.trip-label,
.trip-status {
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s ease;
}

.trip-card:hover .trip-label,
.trip-card:focus-within .trip-label {
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18);
}

.trip-card h3,
.trip-date,
.trip-list li {
  transition: transform 0.28s var(--ease), color 0.28s ease;
}

.trip-card:hover h3,
.trip-card:focus-within h3 {
  transform: translateX(2px);
}

.trip-card:hover .trip-list li,
.trip-card:focus-within .trip-list li {
  color: #3f4d61;
}

.contact-details div,
.contact-form,
.review-tile {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.contact-details div:hover,
.review-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 22px 58px rgba(6, 19, 43, 0.13);
}

.contact-form:focus-within {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 28px 76px rgba(6, 19, 43, 0.16);
}

.contact-form input,
.contact-form textarea,
.reviews-controls input,
.reviews-controls select {
  transition: transform 0.24s var(--ease), border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.contact-form input:hover,
.contact-form textarea:hover,
.reviews-controls input:hover,
.reviews-controls select:hover {
  border-color: rgba(212, 175, 55, 0.36);
  background: #fffdf8;
}

.contact-form input:focus,
.contact-form textarea:focus,
.reviews-controls input:focus,
.reviews-controls select:focus {
  transform: translateY(-1px);
}

.form-modal__card,
.trip-modal__card {
  animation: modalFloatIn 0.35s var(--ease) both;
}

@keyframes modalFloatIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .nav.open {
    top: 78px;
    transform-origin: top center;
    animation: mobileMenuDrop 0.28s var(--ease) both;
  }

  .nav.open a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    transition: background 0.22s ease, padding-left 0.22s var(--ease), color 0.22s ease;
  }

  .nav.open a::before {
    content: "✦";
    color: var(--gold);
    opacity: 0.72;
  }

  .nav.open a:hover,
  .nav.open a:focus-visible {
    padding-left: 1.45rem;
    background: rgba(212, 175, 55, 0.1);
  }
}

@keyframes mobileMenuDrop {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  body {
    overscroll-behavior-y: auto;
  }

  .nav-wrap {
    min-height: 70px;
    gap: 0.75rem;
  }

  .hero-shell {
    height: 300vh;
  }

  .hero-sticky {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-content {
    width: min(92vw, 430px);
  }

  .hero-content--intro {
    top: 48%;
  }

  .hero-content--mid,
  .hero-content--late {
    top: 45%;
  }

  .trips-section,
  .contact-section {
    padding-block: 5rem;
  }

  .trip-card {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .trip-card h3 {
    min-height: auto;
  }

  .trip-card:hover,
  .contact-details div:hover,
  .review-tile:hover {
    transform: translateY(-2px);
  }

  .trip-link,
  .btn {
    min-height: 52px;
  }

  .contact-form {
    padding: 1.25rem;
    border-radius: 24px;
  }
}

@media (hover: none) {
  .trip-card:hover,
  .contact-details div:hover,
  .review-tile:hover,
  .btn:hover,
  .trip-link:hover,
  .nav a:hover,
  .brand:hover,
  .menu-btn:hover {
    transform: none;
  }

  .trip-card:active,
  .contact-details div:active,
  .review-tile:active,
  .btn:active,
  .trip-link:active,
  .menu-btn:active {
    transform: scale(0.985);
  }
}

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

/* =========================================================
   TRIP PHOTO CARDS + TRIP POPUP
========================================================= */

.trip-photo {
  min-height: 190px;
  border-radius: 22px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(6,19,43,0.05), rgba(6,19,43,0.78)),
    var(--trip-image),
    linear-gradient(135deg, #06132b, #12345f, #d4af37);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.trip-photo span {
  color: white;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  text-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

.trip-photo-istanbul {
  background:
    linear-gradient(180deg, rgba(6,19,43,0.05), rgba(6,19,43,0.78)),
    var(--trip-image),
    linear-gradient(135deg, #06132b, #0e4b50, #d4af37);
  background-size: cover;
  background-position: center;
}

.trip-photo-dubai {
  background:
    linear-gradient(180deg, rgba(6,19,43,0.05), rgba(6,19,43,0.78)),
    var(--trip-image),
    linear-gradient(135deg, #06132b, #2b4268, #d4af37);
  background-size: cover;
  background-position: center;
}

.trip-photo-cairo {
  background:
    linear-gradient(180deg, rgba(6,19,43,0.05), rgba(6,19,43,0.78)),
    var(--trip-image),
    linear-gradient(135deg, #06132b, #4a3517, #d4af37);
  background-size: cover;
  background-position: center;
}

.trip-more {
  cursor: pointer;
  font-family: inherit;
}

.trip-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 19, 43, 0.76);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.trip-modal.active {
  opacity: 1;
  visibility: visible;
}

.trip-modal__card {
  width: min(760px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--ivory-soft);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.trip-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.trip-modal__image {
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(6,19,43,0), rgba(6,19,43,0.45)),
    linear-gradient(135deg, #06132b, #12345f, #d4af37);
  background-size: cover;
  background-position: center;
}

.trip-modal__content {
  padding: 2rem;
}

.trip-modal__content span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 0.82rem;
}

.trip-modal__content h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.trip-modal__content p,
.trip-modal__content li {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.trip-modal__content ul {
  margin: 0 0 1.4rem;
  padding-left: 1.25rem;
}

.trip-modal__content .btn {
  margin-top: 0.6rem;
}

#trip-modal-date {
  color: var(--gold-deep);
  font-weight: 900;
  margin-bottom: 1rem;
}

/* =========================================================
   FRONTEND ADD REVIEW FORM
========================================================= */

.add-review-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding: 1.3rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow);
}

.add-review-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  max-width: 620px;
}

.review-form {
  margin-bottom: 1.6rem;
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: var(--shadow);
}

.review-form h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  color: var(--navy);
  font-size: 2rem;
}

.review-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 1rem;
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  border: 1px solid rgba(17, 32, 55, 0.14);
  border-radius: 18px;
  padding: 1rem;
  min-height: 56px;
  background: white;
  color: var(--text);
  outline: none;
}

.review-form textarea {
  resize: vertical;
}

.review-form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-light {
  background: white;
  color: var(--navy);
  border-color: rgba(17, 32, 55, 0.16);
}

@media (max-width: 760px) {
  .add-review-panel {
    align-items: stretch;
    flex-direction: column;
  }
}