/* =============================================
   COOEE TOURS — Shared Design System
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --ochre:       #C8652A;
  --ochre-light: #E07A40;
  --ochre-dark:  #A04E1C;
  --green:       #2E5E3E;
  --green-light: #3D7A52;
  --green-pale:  #EBF3EE;
  --cream:       #FAF6F0;
  --sand:        #F0E6D3;
  --charcoal:    #1C1C1C;
  --mid:         #4A4A4A;
  --subtle:      #8A8A8A;
  --border:      #E0D8CC;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w: 1180px;
  --rad:   8px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(16px,4vw,48px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ochre);
  text-decoration: none;
  letter-spacing: -.01em;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: .9rem; font-weight: 500;
  color: var(--mid); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ochre); }
.nav-cta {
  background: var(--ochre);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--ochre-dark) !important; color: var(--white) !important; }

/* ---- HERO ---- */
.page-hero {
  background: var(--green);
  color: var(--white);
  padding: clamp(60px,10vw,120px) clamp(16px,4vw,48px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: var(--max-w);
  margin: auto;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 20px;
}
.hero-inner h1 em { font-style: italic; color: #F4C47A; }
.hero-desc {
  font-size: 1.1rem;
  max-width: 620px;
  opacity: .85;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: .85rem; opacity: .75;
}
.hero-meta span { display: flex; align-items: center; gap: 6px; }

/* ---- LAYOUT ---- */
.page-wrap {
  max-width: var(--max-w);
  margin: auto;
  padding: 0 clamp(16px,4vw,48px);
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  padding: 64px 0;
}
@media(max-width:900px){
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}
.prose { max-width: 740px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 48px 0 16px;
  padding-top: 8px;
  border-top: 3px solid var(--ochre);
  display: inline-block;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 18px; color: var(--mid); }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; color: var(--mid); }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--charcoal); font-weight: 600; }
.prose a { color: var(--ochre); text-decoration: underline; text-underline-offset: 3px; }

/* ---- ACTIVITY CARDS ---- */
.activity-card {
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  margin-bottom: 32px;
  transition: box-shadow .25s, transform .25s;
}
.activity-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-head {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream);
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.card-num {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--ochre);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
}
.card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.card-tag {
  margin-left: auto;
  background: var(--green-pale);
  color: var(--green);
  font-size: .75rem; font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.card-body { padding: 20px 24px; }
.card-body p { margin-bottom: 10px; font-size: .95rem; color: var(--mid); }
.card-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: .82rem; color: var(--subtle);
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--border);
}
.card-meta span { display: flex; align-items: center; gap: 5px; }

/* ---- ITINERARY TIMELINE ---- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content:'';
  position: absolute; left: 12px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-day {
  position: relative;
  margin-bottom: 48px;
}
.timeline-day::before {
  content:'';
  position: absolute; left: -34px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ochre);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--ochre);
}
.day-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ochre);
  margin-bottom: 6px;
}
.day-title {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 12px;
}
.day-stops { display: flex; flex-direction: column; gap: 12px; }
.stop {
  background: var(--cream);
  border-radius: var(--rad);
  padding: 14px 18px;
  border-left: 3px solid var(--green);
}
.stop-time { font-size: .8rem; font-weight: 600; color: var(--ochre); margin-bottom: 4px; }
.stop-name { font-weight: 600; font-size: .95rem; margin-bottom: 4px; }
.stop-desc { font-size: .88rem; color: var(--mid); }

/* ---- COMPARISON TABLE ---- */
.compare-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: .9rem; }
.compare-table th {
  background: var(--green);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  vertical-align: top;
}
.compare-table tr:nth-child(even) td { background: var(--cream); }
.rating-stars { color: var(--ochre); letter-spacing: 2px; }
.best-badge {
  background: var(--ochre);
  color: var(--white);
  font-size: .7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 50px;
  margin-left: 6px;
}

/* ---- SIDEBAR ---- */
.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ochre);
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--mid);
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--ochre); text-decoration: none; font-weight: 500; }
.cta-card {
  background: var(--green);
  color: var(--white);
  border-radius: var(--rad);
  padding: 28px;
  margin-bottom: 24px;
  text-align: center;
}
.cta-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 10px;
}
.cta-card p { font-size: .88rem; opacity: .85; margin-bottom: 20px; }
.btn {
  display: inline-block;
  background: var(--ochre);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--ochre-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--green); }
.info-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--rad) var(--rad) 0;
  padding: 16px 20px;
  margin: 28px 0;
  font-size: .9rem;
  color: var(--mid);
}
.warning-box {
  background: #FFF8EE;
  border-left: 4px solid var(--ochre);
  border-radius: 0 var(--rad) var(--rad) 0;
  padding: 16px 20px;
  margin: 28px 0;
  font-size: .9rem;
  color: var(--mid);
}
.info-box strong, .warning-box strong { color: var(--charcoal); }

/* ---- QUICK FACTS ---- */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.fact {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--rad);
  padding: 16px;
  text-align: center;
}
.fact-icon { font-size: 1.6rem; margin-bottom: 6px; }
.fact-value { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--charcoal); }
.fact-label { font-size: .78rem; color: var(--subtle); margin-top: 2px; }

/* ---- TRIP CARDS ---- */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin: 28px 0;
}
.trip-card {
  border: 1px solid var(--border);
  border-radius: var(--rad);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.trip-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.trip-card-img {
  height: 180px;
  display: flex; align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.trip-card-img-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.trip-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
}
.trip-card-distance {
  position: relative;
  background: var(--ochre);
  color: var(--white);
  font-size: .78rem; font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.trip-card-body { padding: 18px; }
.trip-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px; color: var(--charcoal);
}
.trip-card-body p { font-size: .88rem; color: var(--mid); margin-bottom: 12px; }
.trip-tags { display: flex; flex-wrap: gap: 6px; }
.trip-tag {
  background: var(--green-pale);
  color: var(--green);
  font-size: .72rem; font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  padding: 14px 0;
  font-size: .82rem;
  color: var(--subtle);
}
.breadcrumb a { color: var(--ochre); text-decoration: none; }
.breadcrumb span { margin: 0 8px; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 18px 0;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; color: var(--ochre); font-size: 1.4rem; font-weight: 300; }
.faq-a { padding: 0 0 18px; color: var(--mid); font-size: .95rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: clamp(40px,6vw,72px) clamp(16px,4vw,48px) 32px;
  margin-top: 80px;
}
.footer-inner { max-width: var(--max-w); margin: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
@media(max-width:768px){
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.footer-brand-name span { color: var(--ochre); }
.footer-desc { font-size: .88rem; line-height: 1.65; }
.footer-col h5 {
  color: var(--white);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--ochre); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }