/* ═══════════════════════════════════════════
   AURAVIA — Global Styles
   Luxury Travel, Redefined
   ═══════════════════════════════════════════ */

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

:root {
  --ink: #0a0a0a;
  --cream: #f8f5f0;
  --warm: #e8e0d4;
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --muted: #8a8279;
  --error: #c47070;
  --success: #6ec49a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo a { color: var(--gold); }
.logo a:hover { color: var(--gold-light); }

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

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.4);
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
  color: var(--cream) !important;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
}

.btn-outline:hover {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
  color: var(--cream);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 0.8rem;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(201,169,110,0.03) 0%, transparent 60%),
    var(--ink);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(201,169,110,0.02) 100px, rgba(201,169,110,0.02) 101px);
  pointer-events: none;
}

.hero-overline {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
  position: relative;
}

.hero-overline::before,
.hero-overline::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 1rem;
  opacity: 0.4;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 2rem;
  color: var(--cream);
  position: relative;
}

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

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── PHILOSOPHY STRIP ── */
.philosophy {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--ink) 0%, #0e0d0b 100%);
  border-top: 1px solid rgba(201,169,110,0.08);
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.philosophy blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
}

.philosophy .attribution {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .overline,
.overline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
}

/* ── JOURNEYS GRID ── */
.journeys {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.journey-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.journey-card .card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0, 0, 1);
}

.journey-card:hover .card-bg {
  transform: scale(1.05);
}

.journey-card:nth-child(1) .card-bg {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%),
    linear-gradient(135deg, #2a1f1f 0%, #1a1520 40%, #0d0a0a 100%);
}

.journey-card:nth-child(2) .card-bg {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%),
    linear-gradient(135deg, #0d1a2a 0%, #0a1520 40%, #0a0f15 100%);
}

.journey-card:nth-child(3) .card-bg {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%),
    linear-gradient(135deg, #1a1a0d 0%, #15120a 40%, #0d0a07 100%);
}

.journey-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  z-index: 2;
}

.journey-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.journey-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.journey-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.journey-price {
  margin-top: 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
}

.journey-card .view-trip {
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}

.journey-card:hover .view-trip {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONCIERGE SECTION ── */
.concierge {
  padding: 8rem 2rem;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(201,169,110,0.04) 0%, transparent 70%),
    #0e0d0b;
  border-top: 1px solid rgba(201,169,110,0.08);
}

.concierge-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.concierge-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.concierge-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.concierge-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  padding: 1.75rem 2rem;
  border: 1px solid rgba(201,169,110,0.12);
  background: rgba(201,169,110,0.02);
  transition: all 0.4s ease;
}

.feature-item:hover {
  border-color: rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.04);
}

.feature-number {
  font-family: var(--serif);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.feature-item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── CLOSING CTA ── */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 70%),
    var(--ink);
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}

.closing p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.08);
  background: var(--ink);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

footer p {
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   TRIP DETAIL PAGES
   ═══════════════════════════════════════════ */

.trip-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 2rem 5rem;
  position: relative;
}

.trip-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trip-hero-content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(201,169,110,0.4); margin: 0 0.5rem; }

.trip-meta {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,0.12);
}

.trip-meta-item {
  display: flex;
  flex-direction: column;
}

.trip-meta-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.trip-meta-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
}

/* Trip sections */
.trip-section {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.trip-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 3rem;
  text-align: center;
}

.trip-section .overline {
  text-align: center;
  display: block;
  margin-bottom: 0.75rem;
}

/* Highlights grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.highlight-card {
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.1);
  background: rgba(201,169,110,0.02);
  transition: all 0.4s ease;
}

.highlight-card:hover {
  border-color: rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.04);
}

.highlight-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Includes list */
.includes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
}

.includes-list li {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(201,169,110,0.06);
}

.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* Trip CTA */
.trip-cta {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201,169,110,0.05) 0%, transparent 70%),
    #0e0d0b;
  border-top: 1px solid rgba(201,169,110,0.08);
}

.trip-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}

.trip-cta p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.trip-cta .btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   REQUEST FORM
   ═══════════════════════════════════════════ */

.form-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 4rem;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,169,110,0.06) 0%, transparent 70%),
    var(--ink);
}

.form-section {
  padding: 0 2rem 8rem;
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(248,245,240,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  transition: all 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a96e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
  cursor: pointer;
}

.form-group select option {
  background: var(--ink);
  color: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: 3rem;
  text-align: center;
}

.form-submit .btn {
  width: 100%;
  max-width: 400px;
}

.form-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
  text-align: center;
}

.form-error {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(196,112,112,0.1);
  border: 1px solid rgba(196,112,112,0.3);
  color: var(--error);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-error.visible {
  display: block;
}

/* ═══════════════════════════════════════════
   CONFIRMATION PAGE
   ═══════════════════════════════════════════ */

.confirmation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,169,110,0.06) 0%, transparent 70%),
    var(--ink);
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.confirmation-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confirmation-page h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.confirmation-page .subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.next-steps {
  max-width: 500px;
  margin-bottom: 3rem;
  text-align: left;
}

.next-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.next-step-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 2rem;
}

.next-step-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.confirmation-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.divider-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2.5rem 0;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .hero-overline::before,
  .hero-overline::after {
    width: 20px;
  }

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

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .journey-card {
    aspect-ratio: 4/3;
  }

  .concierge-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .journeys, .concierge {
    padding: 5rem 1.5rem;
  }

  .trip-hero {
    min-height: 50vh;
    padding: 7rem 1.5rem 3rem;
  }

  .trip-meta {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

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

  .includes-list {
    grid-template-columns: 1fr;
  }

  .trip-cta {
    padding: 5rem 1.5rem;
  }

  .trip-cta .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .form-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .form-section {
    padding: 0 1.5rem 5rem;
  }

  .confirmation-page {
    padding: 7rem 1.5rem;
  }

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