/* =========================================================
   Ricky's Fantasy Travel — Modern Luxury Design System
   ========================================================= */

:root {
  --navy:        #0A1F44;
  --navy-deep:   #061638;
  --navy-soft:   #1A3464;
  --gold:        #C9A961;
  --gold-light:  #E5C77F;
  --gold-dark:   #A88A47;
  --cream:       #FAF7F2;
  --cream-warm:  #F2EDE3;
  --white:       #FFFFFF;
  --charcoal:    #1A1A1A;
  --gray:        #6B6B6B;
  --gray-light:  #E5E5E5;
  --gray-soft:   #F5F5F5;

  --shadow-sm:   0 4px 12px rgba(10, 31, 68, 0.06);
  --shadow:      0 10px 40px rgba(10, 31, 68, 0.10);
  --shadow-lg:   0 24px 60px rgba(10, 31, 68, 0.18);

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   24px;

  --container:   1240px;
  --transition:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--transition); }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--charcoal); }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.eyebrow.light { color: var(--gold-light); }

.lead { font-size: 1.15rem; color: var(--gray); max-width: 60ch; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(60px, 9vw, 120px) 0; }

/* ===================== NAVIGATION ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(10, 31, 68, 0.0);
  transition: all 0.35s var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: grid; place-items: center;
  color: var(--navy); font-weight: 700; font-size: 1rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.nav.scrolled .brand { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.94rem; font-weight: 500;
  color: var(--white); position: relative;
}
.nav-links a:hover { color: var(--gold-light); }
.nav.scrolled .nav-links a { color: var(--navy); }
.nav.scrolled .nav-links a:hover { color: var(--gold-dark); }

.nav-cta {
  padding: 10px 22px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  transition: all 0.25s var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle { display: none; color: var(--white); font-size: 1.5rem; }
.nav.scrolled .nav-toggle { color: var(--navy); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--transition);
  cursor: pointer; border: 1.5px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-ghost { color: var(--gold-dark); padding: 0; }
.btn-ghost:hover { color: var(--navy); gap: 14px; }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,22,56,0.85) 0%, rgba(10,31,68,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px; padding-top: 80px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero p {
  font-size: 1.2rem; color: rgba(255,255,255,0.9);
  max-width: 56ch; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-meta {
  position: absolute; bottom: 40px; left: 0; right: 0; z-index: 2;
  display: flex; gap: 60px; flex-wrap: wrap;
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
}
.hero-meta strong { display: block; font-size: 1.6rem; color: var(--gold-light); font-family: 'Playfair Display', serif; font-weight: 600; }

/* Page hero (smaller, for sub-pages) */
.page-hero {
  position: relative; padding: 180px 0 80px;
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 60ch; margin: 0 auto; font-size: 1.1rem; }

/* ===================== SECTION HEADER ===================== */
.section-head { text-align: center; margin-bottom: 64px; }
.section-head.left { text-align: left; max-width: 720px; margin-left: 0; }
.section-head p { color: var(--gray); margin-top: 1rem; font-size: 1.08rem; }

/* ===================== ABOUT / VALUE ===================== */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--gold); border-radius: var(--radius-lg);
  transform: translate(20px, 20px); z-index: -1; opacity: 0.6;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--gray); margin-bottom: 1.25rem; font-size: 1.05rem; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--gray-light);
}
.about-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold-dark); }
.about-stat span { font-size: 0.85rem; color: var(--gray); letter-spacing: 0.05em; text-transform: uppercase; }

/* ===================== SPECIALTIES ===================== */
.specialties { background: var(--cream); }
.specialty-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.specialty-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.5s var(--transition);
}
.specialty-card:hover { transform: translateY(-6px); }
.specialty-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s var(--transition); }
.specialty-card:hover .specialty-card-bg { transform: scale(1.08); }
.specialty-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(6,22,56,0.85) 100%);
  z-index: 1;
}
.specialty-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 32px; color: var(--white);
}
.specialty-content h3 { color: var(--white); margin-bottom: 0.5rem; }
.specialty-content p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.specialty-tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(201, 169, 97, 0.95); color: var(--navy);
  border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}

/* ===================== DESTINATIONS GRID ===================== */
.destinations { background: var(--white); }
.dest-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 16px; height: 600px;
}
.dest-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer;
}
.dest-card:nth-child(1) { grid-row: 1 / 3; }
.dest-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s var(--transition); }
.dest-card:hover .dest-card-bg { transform: scale(1.06); }
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(6,22,56,0.85) 100%);
}
.dest-label {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  color: var(--white);
}
.dest-label h4 { color: var(--white); font-size: 1.4rem; margin-bottom: 4px; }
.dest-label span { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===================== PROCESS ===================== */
.process { background: var(--navy); color: var(--white); }
.process h2 { color: var(--white); }
.process .section-head p { color: rgba(255,255,255,0.7); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.process-step {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: all 0.3s var(--transition);
}
.process-step:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); transform: translateY(-4px); }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--gold);
  margin-bottom: 16px; line-height: 1;
}
.process-step h4 { color: var(--white); margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.1rem; }
.process-step p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: var(--cream-warm); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.testimonial {
  background: var(--white); padding: 36px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; font-size: 0.95rem; }
.testimonial-text { color: var(--charcoal); font-size: 1.02rem; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); display: grid; place-items: center;
  font-weight: 700; font-size: 1.1rem;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span { color: var(--gray); font-size: 0.85rem; }

/* ===================== BLOG TEASER ===================== */
.blog-teaser { background: var(--white); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 0.78rem; color: var(--gold-dark);
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.blog-card p { color: var(--gray); margin-bottom: 20px; flex: 1; font-size: 0.97rem; }
.blog-card a.read-more { color: var(--navy); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em; }
.blog-card a.read-more:hover { color: var(--gold-dark); }

/* ===================== CTA BAND ===================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 1.08rem; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

/* ===================== FORMS ===================== */
.form-section { background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-info h2 { margin-bottom: 1rem; }
.form-info p { color: var(--gray); margin-bottom: 2rem; font-size: 1.05rem; }
.form-info ul { list-style: none; }
.form-info li { padding: 14px 0; border-bottom: 1px solid var(--gray-light); display: flex; align-items: center; gap: 12px; }
.form-info li::before { content: '✓'; color: var(--gold-dark); font-weight: 700; font-size: 1.1rem; }

.form-card {
  background: var(--white);
  padding: 44px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 8px; }
.form-card .lead { font-size: 0.98rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 13px 16px;
  font-family: inherit; font-size: 0.97rem;
  background: var(--cream);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-card button[type="submit"] { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: 0.82rem; color: var(--gray); margin-top: 14px; text-align: center; }

/* ===================== BLOG PAGES ===================== */
.blog-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.article {
  max-width: 760px; margin: 0 auto; padding: 80px 24px 60px;
}
.article-meta { font-size: 0.85rem; color: var(--gold-dark); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.article h1 { margin-bottom: 1.5rem; }
.article-hero {
  width: 100%; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  border-radius: var(--radius); margin-bottom: 2.5rem;
}
.article p { font-size: 1.08rem; color: var(--charcoal); margin-bottom: 1.4rem; line-height: 1.8; }
.article h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.article h3 { font-size: 1.35rem; margin: 2rem 0 0.75rem; }
.article ul, .article ol { margin: 0 0 1.5rem 1.4rem; }
.article li { margin-bottom: 0.5rem; line-height: 1.7; }
.article blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 2rem 0; font-style: italic; color: var(--navy);
  font-size: 1.15rem;
}
.article-cta {
  background: var(--cream-warm); padding: 36px;
  border-radius: var(--radius); margin: 3rem 0 0;
  text-align: center;
}
.article-cta h3 { margin-bottom: 0.75rem; }
.article-cta p { margin-bottom: 1.5rem; color: var(--gray); }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.75); padding: 80px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.footer p { color: rgba(255,255,255,0.65); font-size: 0.93rem; max-width: 30ch; }
.footer h5 {
  font-family: 'Inter', sans-serif; font-weight: 600;
  color: var(--white); font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer ul a:hover { color: var(--gold-light); }

.socials { display: flex; gap: 12px; margin-top: 1.25rem; }
.social-link {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  color: rgba(255,255,255,0.8); transition: all 0.25s var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; font-size: 0.85rem; color: rgba(255,255,255,0.55);
  flex-wrap: wrap; gap: 16px;
}

/* ===================== UTILITIES ===================== */
.center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 24px;
    box-shadow: var(--shadow);
  }
  .nav.scrolled .nav-links.open a { color: var(--navy); }
  .nav-links.open a { color: var(--navy); }

  .about-grid, .form-grid, .cta-band-grid { grid-template-columns: 1fr; gap: 40px; }
  .specialty-grid, .blog-grid, .testimonial-grid, .blog-list-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .dest-card { aspect-ratio: 4/3; }
  .dest-card:nth-child(1) { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-actions { align-items: stretch; }
  .form-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 30px; }
}

@media (max-width: 560px) {
  section { padding: 60px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-meta { display: none; }
}
