/* ============================================
   FairwayFare — Shared Styles
   Design tokens match the landing page.
   ============================================ */

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

:root {
  --deep-green: #0d1b0a;
  --forest: #1a3a0a;
  --sage: #3d5a2e;
  --gold: #C5A55A;
  --gold-light: #D4BA7A;
  --cream: #F5F0E8;
  --warm-white: #FAF8F4;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b5e;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  background: rgba(13, 27, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 165, 90, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--deep-green) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- SHARED COMPONENTS ---- */
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

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

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  max-width: 560px;
  font-weight: 300;
}

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

.meta-sep {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--deep-green);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-gold.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}

.btn-outline:hover {
  background: rgba(197, 165, 90, 0.1);
  transform: translateY(-2px);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--deep-green);
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 28px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-copy p {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.25);
}

/* ============================================
   TRIPS INDEX PAGE
   ============================================ */

.trips-hero {
  min-height: 60vh;
  background: var(--deep-green);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.trips-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trips-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.trips-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

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

.trips-grid-section {
  padding: 80px 40px 100px;
  background: var(--warm-white);
}

.trips-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.trip-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-dark);
  border: 1px solid rgba(26, 58, 10, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(13, 27, 10, 0.1);
}

.trip-card-hero {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.trip-card-overlay {
  padding: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}

.trip-card-region {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.trip-card-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.trip-card-body {
  padding: 24px 28px 28px;
}

.trip-card-tagline {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 16px;
}

.trip-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trip-card-meta .meta-sep {
  color: rgba(0, 0, 0, 0.2);
}

.trip-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

.price-suffix {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* Trips CTA Section */
.trips-cta {
  padding: 100px 40px;
  background: var(--cream);
  text-align: center;
}

.trips-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.trips-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--forest);
  margin-bottom: 16px;
  font-weight: 700;
}

.trips-cta p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 32px;
}

/* ============================================
   TRIP DETAIL PAGE
   ============================================ */

.trip-hero {
  min-height: 55vh;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 40px 60px;
  position: relative;
  overflow: hidden;
}

.trip-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trip-hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.trip-back {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 32px;
  display: inline-block;
  transition: color 0.2s;
  font-weight: 400;
}

.trip-back:hover {
  color: var(--gold);
}

.trip-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.trip-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.trip-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
}

.trip-meta-item svg {
  opacity: 0.6;
}

.meta-price {
  color: var(--gold);
  font-weight: 600;
}

/* Trip sections shared */
.trip-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Overview */
.trip-overview {
  padding: 80px 40px;
  background: var(--warm-white);
}

.trip-overview-text {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 800px;
}

/* Courses */
.trip-courses {
  padding: 80px 40px 100px;
  background: var(--cream);
}

.trip-courses h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 48px;
  font-weight: 700;
}

.courses-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.course-card {
  display: flex;
  gap: 28px;
  padding: 36px 32px;
  background: var(--warm-white);
  border-radius: 16px;
  border: 1px solid rgba(26, 58, 10, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(13, 27, 10, 0.06);
}

.course-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(26, 58, 10, 0.08);
  flex-shrink: 0;
  line-height: 1;
  min-width: 50px;
}

.course-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 700;
}

.course-stats {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.course-stats .meta-sep {
  color: rgba(0, 0, 0, 0.2);
}

.course-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 12px;
}

.course-highlight {
  font-size: 0.88rem;
  color: var(--sage);
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}

.course-highlight strong {
  color: var(--forest);
  font-style: normal;
  font-weight: 600;
}

/* Culinary */
.trip-culinary {
  padding: 80px 40px 100px;
  background: var(--deep-green);
  color: var(--cream);
}

.trip-culinary h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 48px;
  font-weight: 700;
}

.culinary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.culinary-card {
  padding: 36px 28px;
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: 16px;
  transition: border-color 0.3s, background 0.3s;
}

.culinary-card:hover {
  border-color: var(--gold);
  background: rgba(197, 165, 90, 0.04);
}

.culinary-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--gold);
}

.culinary-icon svg {
  width: 100%;
  height: 100%;
}

.culinary-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  font-weight: 700;
}

.culinary-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
  font-weight: 300;
}

/* Itinerary */
.trip-itinerary {
  padding: 80px 40px 100px;
  background: var(--warm-white);
}

.trip-itinerary h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 48px;
  font-weight: 700;
}

.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.day-card {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(26, 58, 10, 0.08);
}

.day-card:last-child {
  border-bottom: none;
}

.day-marker {
  flex-shrink: 0;
  min-width: 160px;
}

.day-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 4px;
}

.day-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--forest);
  font-weight: 700;
  display: block;
}

.day-schedule {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-block {
  display: flex;
  gap: 16px;
}

.schedule-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  flex-shrink: 0;
  min-width: 80px;
  padding-top: 2px;
}

.schedule-block p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 300;
}

/* Pricing */
.trip-pricing {
  padding: 80px 40px 100px;
  background: var(--cream);
}

.trip-pricing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 48px;
  font-weight: 700;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--warm-white);
  border: 1px solid rgba(26, 58, 10, 0.06);
  border-radius: 16px;
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(13, 27, 10, 0.08);
}

.pricing-featured {
  border-color: var(--gold);
  border-width: 2px;
  background: white;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--deep-green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.pricing-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-includes {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-includes li {
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 58, 10, 0.04);
  font-weight: 300;
  padding-left: 24px;
  position: relative;
}

.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
}

.pricing-includes li:first-child {
  font-weight: 500;
  color: var(--forest);
}

.pricing-includes li:first-child::before {
  opacity: 0.6;
}

.btn-pricing {
  text-align: center;
  width: 100%;
  padding: 12px 24px;
  font-size: 0.9rem;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Trip Inquiry CTA */
.trip-inquiry-cta {
  padding: 100px 40px;
  background: var(--deep-green);
  text-align: center;
  color: var(--cream);
}

.trip-inquiry-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 700;
}

.trip-inquiry-cta p {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================
   INQUIRY FORM PAGE
   ============================================ */

.inquire-hero {
  min-height: 50vh;
  background: var(--deep-green);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.inquire-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.inquire-hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.inquire-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

.inquire-form-section {
  padding: 80px 40px 120px;
  background: var(--warm-white);
}

.inquire-form-inner {
  max-width: 720px;
  margin: 0 auto;
}

.inquiry-form {
  position: relative;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: #c44;
}

.form-group label .optional {
  font-weight: 300;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid rgba(26, 58, 10, 0.12);
  border-radius: 10px;
  background: white;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 107, 94, 0.5);
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236b6b5e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.form-actions {
  text-align: center;
  margin-top: 32px;
}

.form-actions .btn-gold {
  width: 100%;
  max-width: 320px;
}

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 16px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  color: var(--sage);
  margin-bottom: 24px;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 700;
}

.form-success p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.form-error {
  text-align: center;
  padding: 20px;
  background: rgba(204, 68, 68, 0.06);
  border-radius: 10px;
  margin-top: 16px;
}

.form-error p {
  font-size: 0.9rem;
  color: #a33;
}

.form-error a {
  color: var(--gold);
}

/* ============================================
   DEPOSIT / BOOKING STYLES
   ============================================ */

/* Hero deposit CTA */
.hero-cta-row {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-deposit-btn {
  position: relative;
  animation: depositPulse 3s ease-in-out infinite;
}

@keyframes depositPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(197, 165, 90, 0.3); }
  50% { box-shadow: 0 4px 32px rgba(197, 165, 90, 0.5); }
}

.hero-deposit-note {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Pricing card deposit buttons */
.btn-deposit {
  display: inline-block;
  background: var(--gold);
  color: var(--deep-green);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  width: 100%;
  margin-bottom: 8px;
}

.btn-deposit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 165, 90, 0.25);
}

.btn-deposit-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--gold);
}

.btn-deposit-outline:hover {
  background: rgba(197, 165, 90, 0.08);
  color: var(--forest);
}

.btn-inquiry-link {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  padding: 6px 0;
  transition: color 0.2s;
}

.btn-inquiry-link:hover {
  color: var(--gold);
}

/* Bottom deposit CTA */
.trip-deposit-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.deposit-trust-note {
  display: block;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.trip-deposit-cta .btn-outline {
  border-color: rgba(245, 240, 232, 0.3);
  color: rgba(245, 240, 232, 0.7);
}

.trip-deposit-cta .btn-outline:hover {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(245, 240, 232, 0.5);
  color: var(--cream);
}

/* Booking success page form overrides */
.booking-success .form-group {
  margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13, 27, 10, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(197, 165, 90, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .trips-hero,
  .trip-hero,
  .inquire-hero {
    padding: 100px 24px 60px;
  }

  .trips-grid-section,
  .trip-overview,
  .trip-courses,
  .trip-culinary,
  .trip-itinerary,
  .trip-pricing,
  .trip-inquiry-cta,
  .trips-cta,
  .inquire-form-section {
    padding: 60px 24px;
  }

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

  .course-card {
    flex-direction: column;
    gap: 16px;
  }

  .course-number {
    font-size: 1.8rem;
  }

  .day-card {
    flex-direction: column;
    gap: 12px;
  }

  .day-marker {
    min-width: auto;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }

  .schedule-block {
    flex-direction: column;
    gap: 4px;
  }

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

  .trip-meta-row {
    gap: 12px;
  }

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

  .hero-cta-row {
    align-items: stretch;
  }

  .hero-deposit-btn {
    text-align: center;
  }

  .trip-deposit-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trip-deposit-cta .cta-buttons .btn-gold,
  .trip-deposit-cta .cta-buttons .btn-outline {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .trips-hero h1,
  .trip-hero h1,
  .inquire-hero h1 {
    font-size: 2rem;
  }

  .trip-meta-row {
    flex-direction: column;
    gap: 8px;
  }

  .pricing-price {
    font-size: 2rem;
  }
}
