/* Fox Touring & Adventures — site styles */

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  background: transparent;
  transition: background var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.site-header.header-backdrop { /* applied on scroll via JS */ }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 11px;
  color: var(--ink-56);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: var(--ink-72);
  font-weight: 500;
  font-size: 15px;
}
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-weight: 600;
}
@media (max-width: 820px) {
  .nav .nav-link-hide { display: none; }
}
@media (max-width: 600px) {
  .brand-sub { display: none; }
  .nav { gap: 14px; }
  .nav .nav-phone span { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 78vh;
  max-height: 820px;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(255,228,180,0.5), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(46,90,63,0.7), transparent 60%),
    linear-gradient(160deg, #2E5A3F 0%, #1F4530 30%, #3A5A78 70%, #1F1B16 100%);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('../assets/paper-noise.svg') center/300px,
    linear-gradient(180deg, rgba(31,27,22,0.15) 0%, rgba(31,27,22,0) 25%, rgba(31,27,22,0.7) 100%);
  opacity: 1;
  mix-blend-mode: normal;
}
/* Layered "mountain horizon" silhouette, hand-drawn with SVG */
.hero-horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  z-index: 1;
  pointer-events: none;
}
.hero-horizon svg { width: 100%; height: 100%; display: block; }
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(78vh - var(--header-h));
  padding-block: var(--space-9);
}
.hero h1 {
  color: #FAF7F2;
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  max-width: 920px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero h1 .accent-word {
  font-style: italic;
  font-weight: 500;
  color: #E8C893;
}
.hero .lead {
  color: rgba(250,247,242,0.88);
  font-size: clamp(17px, 1.4vw, 19px);
  max-width: 600px;
  margin-block: var(--space-5) var(--space-6);
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .eyebrow-rule {
  color: #FAF7F2;
}
.hero .eyebrow-rule::before { background: #FAF7F2; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: var(--space-6);
  color: rgba(250,247,242,0.7);
  font-size: 14px;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   TRUST STRIP — under hero
   ============================================================ */
.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--ink-12);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  padding-block: var(--space-6);
}
@media (max-width: 720px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-72);
}
.trust-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-item .num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}
.trust-item .lbl {
  font-size: 12px;
  color: var(--ink-56);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================================
   ABOUT — Eileen
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-9);
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-7); }
}
.about-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232,200,147,0.4), transparent 50%),
    linear-gradient(160deg, #2E5A3F 0%, #586A4E 50%, #A88862 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/paper-noise.svg');
  opacity: 0.15;
}
.about-portrait .badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-portrait .badge-overlay strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  display: block;
  line-height: 1.1;
}
.about-portrait .badge-overlay .role {
  font-size: 12px;
  color: var(--ink-56);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-text h2 { margin-bottom: var(--space-4); }
.about-text p { font-size: 17px; line-height: 1.65; color: var(--ink-72); }
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-text .lead { font-family: var(--font-display); font-size: 22px; line-height: 1.4; color: var(--ink); margin-bottom: var(--space-5); font-style: italic; font-weight: 400; }
.about-creds {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 600px) { .about-creds { grid-template-columns: 1fr; } }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-72);
  padding: 10px 0;
}
.cred-item-dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

/* ============================================================
   TRIP STYLES GRID
   ============================================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dest-grid { grid-template-columns: 1fr; } }
.dest-card {
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease);
  text-decoration: none;
  color: inherit;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.dest-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/paper-noise.svg');
  opacity: 0.2;
}
.dest-photo .protect {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31,27,22,0.65));
}
.dest-photo-icon {
  position: absolute;
  top: 20px; left: 20px;
  color: rgba(250,247,242,0.85);
  opacity: 0.8;
}
.dest-photo .meta {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #FAF7F2;
}
.dest-photo .name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}
.dest-photo .season {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}
.dest-card .blurb {
  font-size: 15px;
  color: var(--ink-72);
  margin-top: 14px;
  line-height: 1.55;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
}
@media (max-width: 720px) { .hiw { grid-template-columns: 1fr; } }
.hiw-step h3 { font-size: 24px; margin-bottom: 10px; }
.hiw-step .num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hiw-step p {
  color: var(--ink-72);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TRUST POINTS
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
@media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-1);
}
.trust-card .trust-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.trust-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 16px;
  color: var(--ink-72);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  padding: var(--space-6) var(--space-5) var(--space-5);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.test-card::before {
  content: '"';
  position: absolute;
  top: -14px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
  color: var(--accent-soft);
  font-weight: 600;
}
.stars-row {
  display: flex;
  gap: 2px;
  color: var(--star);
}
.test-card .quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.45;
  font-style: italic;
  flex-grow: 1;
  font-weight: 400;
}
.test-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-12);
}
.test-card .who .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  flex-shrink: 0;
}
.test-card .who-name {
  font-weight: 600;
  color: var(--ink);
}
.test-card .who-trip {
  color: var(--ink-56);
  font-size: 13px;
  margin-top: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--ink-12);
}
.faq-item:first-child { border-top: 1px solid var(--ink-12); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: -0.005em;
}
.faq-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--paper-tint);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease);
}
.faq-item.open .faq-toggle {
  background: var(--accent);
  color: var(--accent-ink);
}
.faq-a {
  padding-bottom: var(--space-5);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-72);
  max-width: 720px;
}

/* ============================================================
   BOOKING — embedded form on home page
   ============================================================ */
.booking-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(46,90,63,0.4), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(58,90,120,0.3), transparent 50%),
    url('../assets/paper-noise.svg');
  opacity: 0.5;
  pointer-events: none;
}
.booking-section .container {
  position: relative;
  z-index: 1;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-9);
  align-items: start;
}
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; gap: var(--space-7); }
}
.booking-intro h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
}
.booking-intro .lead {
  color: rgba(250,247,242,0.85);
  font-size: 18px;
  margin-bottom: var(--space-6);
}
.booking-intro .eyebrow-rule { color: rgba(250,247,242,0.85); }
.booking-intro .eyebrow-rule::before { background: rgba(250,247,242,0.85); }
.booking-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(250,247,242,0.78);
  line-height: 1.55;
}
.booking-bullets li svg {
  color: #C8B58A;
  flex-shrink: 0;
  margin-top: 4px;
}
.booking-card-wrap {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3);
  padding: var(--space-6);
}

/* Booking form internals (formerly booking kit styles) */
.stepper {
  display: flex;
  gap: 10px;
  margin-bottom: var(--space-6);
}
.step {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--paper-tint);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--duration-fast) var(--ease);
  font-family: var(--font-body);
}
.step.active { background: var(--ink); color: var(--paper); }
.step.done { background: var(--accent-soft); color: var(--accent-strong); }
.step .num {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  min-width: 20px;
}
.step .lbl { font-size: 13px; font-weight: 600; }
@media (max-width: 600px) {
  .step .lbl { display: none; }
  .step { justify-content: center; padding: 10px; }
}
.panel { background: transparent; }
.panel h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-bottom: 6px;
}
.panel .sub {
  color: var(--ink-72);
  margin-bottom: var(--space-5);
  font-size: 15px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 600px) { .choice-grid { grid-template-columns: 1fr !important; } }
.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid var(--ink-12);
  border-radius: var(--radius-md);
  background: var(--paper);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
  text-align: left;
  font-family: var(--font-body);
  color: var(--ink);
}
.choice:hover {
  border-color: var(--ink-40);
  transform: translateY(-1px);
}
.choice.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.choice-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--paper-tint);
  color: var(--ink-72);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.choice.selected .choice-icon {
  background: var(--accent);
  color: var(--accent-ink);
}
.choice-name { font-weight: 600; font-size: 14.5px; }
.choice-desc { font-size: 12.5px; color: var(--ink-56); margin-top: 2px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field-full { grid-column: 1 / -1; }
.req { color: var(--accent); font-weight: 600; }
.nav-btns {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-5);
  gap: 12px;
}
.review-list {
  background: var(--paper-tint);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
}
.review-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-12);
  font-size: 15px;
  gap: 12px;
}
.review-row:last-child { border-bottom: 0; }
.review-row .lbl { color: var(--ink-56); }
.review-row .val { color: var(--ink); font-weight: 500; text-align: right; }
.confirm-note {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.55;
}
.confirm-note strong { color: var(--accent-strong); }
.success { text-align: center; padding: var(--space-7) var(--space-4); }
.success .check {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  display: grid; place-items: center;
  margin: 0 auto var(--space-5);
}
.success h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 14px; }
.success p {
  max-width: 480px;
  margin: 0 auto;
  color: var(--ink-72);
  font-size: 16px;
  line-height: 1.6;
}
.success p strong { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #161310;
  color: var(--paper);
  padding-block: var(--space-9) var(--space-6);
}
.footer h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,247,242,0.5);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6) var(--space-5); }
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer li { font-size: 14.5px; color: rgba(250,247,242,0.7); }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--paper); text-decoration: none; }
.footer .footer-brand-blurb {
  margin-top: 16px;
  color: rgba(250,247,242,0.65);
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.6;
}
.footer .brand { color: var(--paper); }
.footer .brand-sub { color: rgba(250,247,242,0.5); }
.footer .legal {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(250,247,242,0.1);
  font-size: 12.5px;
  color: rgba(250,247,242,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(250,247,242,0.4);
}
.footer-affil {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(250,247,242,0.1);
}
.footer-affil-badge {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  padding: 6px 10px;
  border: 1px solid rgba(250,247,242,0.15);
  border-radius: var(--radius-sm);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  max-width: 720px;
  margin-bottom: var(--space-7);
}
.section-header h2 { margin-top: 12px; font-size: clamp(2rem, 3.6vw, 2.875rem); }
.section-header.center { text-align: center; margin-inline: auto; }
.section-header .lead { margin-top: 14px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 720px) { .cta-band { grid-template-columns: 1fr; padding: var(--space-6); } }
.cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--accent-strong);
}
.cta-band p {
  color: var(--ink-72);
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.55;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 720px) { .cta-band-actions { justify-content: flex-start; } }

/* ============================================================
   DARK SECTION OVERRIDES (booking)
   ============================================================ */
.booking-section input,
.booking-section .input,
.booking-section .textarea {
  font-family: var(--font-body);
}

.eyebrow-light {
  color: var(--accent);
}
