/* SuperVan Adventures — classic CSS (not a SPA). */

:root {
  --rust: #A34F26;
  --sage: #2D4636;
  --cream: #F5F3EF;
  --cream-border: #E6E0D6;
  --charcoal: #2C2C2C;
  --page: #F5F3EF;
  --white: #fff;
  --muted: #6b7280;
  --radius: 0.75rem;
  --header: 4.85rem;
  --container: 1180px;
  --font: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: var(--font);
  color: #1f2937;
  background: var(--page);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rust);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.ce-container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.ce-main { min-height: 60vh; }

/* Icons */
.ce-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.ce-icon-sm { width: 1rem; height: 1rem; }
.ce-icon-xs { width: 0.75rem; height: 0.75rem; }
.ce-icon-xl { width: 4rem; height: 4rem; }
.ce-icon-accent { color: var(--rust); }
.is-gold { color: #facc15; }
.is-rust { color: var(--rust); }

/* Buttons */
.ce-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
}
.ce-btn-primary {
  background: var(--rust);
  color: #fff;
  border-radius: 0.45rem;
  padding: 0.7rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: none;
  letter-spacing: 0.01em;
}
.ce-btn-primary:hover { background: #8a3f1c; }
.ce-btn-ghost { background: transparent; color: var(--rust); }
.ce-btn-ghost:hover { background: rgba(163, 79, 38, 0.08); }
.ce-btn-outline { background: #fff; border: 1px solid #e5e7eb; color: #111; border-radius: 0.5rem; }
.ce-btn-block { width: 100%; }
.ce-btn-hero {
  background: var(--rust);
  color: #fff;
  font-size: 1.1rem;
  padding: 1rem 1.85rem;
  border-radius: 0.45rem;
  box-shadow: 0 16px 32px rgba(0,0,0,0.28);
  border: 2px solid transparent;
}
.ce-btn-hero:hover { background: #8a3f1c; border-color: rgba(255,255,255,0.3); transform: scale(1.03); }
.ce-btn-gradient,
.ce-btn-orange {
  background: var(--rust);
  color: #fff;
  font-size: 1.15rem;
  padding: 1.1rem 2.25rem;
  border: 1px solid transparent;
  border-radius: 0.45rem;
}
.ce-btn-gradient:hover,
.ce-btn-orange:hover { background: #8a3f1c; transform: scale(1.03); }
.ce-btn-light { background: #fff; color: var(--charcoal); }

/* Header */
.ce-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: var(--cream);
  border-bottom: 1px solid var(--cream-border);
  box-shadow: none;
  display: flex;
  align-items: center;
  overflow: visible;
}
.ce-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  gap: 1rem;
  height: 100%;
  overflow: visible;
}
.ce-header-logo {
  justify-self: start;
  align-self: center;
  display: flex;
  align-items: center;
  z-index: 3;
}
.ce-nav { justify-self: center; }
.ce-header-actions { justify-self: end; }
.ce-logo, .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: none;
}
.ce-logo-img, .custom-logo {
  max-height: 88px;
  max-width: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: none;
}
@media (min-width: 768px) {
  .ce-logo-img, .custom-logo { max-height: 108px; max-width: 108px; }
}
.ce-header .ce-logo,
.ce-mobile-nav .ce-logo,
.ce-login-logo .ce-logo {
  width: 88px;
  height: 88px;
  border-radius: 0;
  overflow: visible;
  background: none;
  box-shadow: none;
}
.ce-header .ce-logo {
  width: 3.5rem;
  height: 3.5rem;
  transform: none;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}
@media (min-width: 768px) {
  .ce-header .ce-logo {
    width: 4.25rem;
    height: 4.25rem;
  }
}
body.home:not(.is-scrolled) .ce-header-logo {
  align-self: end;
  align-items: flex-end;
  height: var(--header);
}
body.home:not(.is-scrolled) .ce-header .ce-logo {
  width: 6.5rem;
  height: 6.5rem;
  transform: translateY(50%);
}
@media (min-width: 768px) {
  body.home:not(.is-scrolled) .ce-header .ce-logo {
    width: 8.25rem;
    height: 8.25rem;
  }
}
.ce-header .ce-logo-img,
.ce-mobile-nav .ce-logo-img,
.ce-login-logo .ce-logo-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  background: none;
}
.ce-footer .ce-logo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  box-shadow: none;
}
.ce-footer .ce-logo-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  background: none;
}
.ce-nav-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.25rem;
}
.ce-nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #374151;
}
.ce-nav-list a:hover,
.ce-nav-list .current-menu-item > a {
  color: var(--sage);
  text-decoration: none;
}
.ce-header-actions { display: flex; align-items: center; gap: 0.65rem; }
.ce-header-cta {
  white-space: nowrap;
  display: inline-flex !important;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}
.ce-link-quiet { font-size: 0.75rem; font-weight: 600; color: var(--sage); }
.ce-nav-toggle { background: none; border: 0; color: var(--charcoal); cursor: pointer; padding: 0.35rem; }
@media (min-width: 768px) {
  .ce-nav-list { display: flex; }
  .ce-nav-toggle { display: none; }
  .ce-hide-mobile { display: inline-flex !important; }
}
.ce-hide-mobile { display: none !important; }

.ce-mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(22rem, 100%);
  background: var(--cream);
  border-left: 1px solid var(--cream-border);
  z-index: 60;
  padding: 2rem 1.5rem;
  overflow: auto;
}
.ce-mobile-nav[hidden] { display: none; }
.ce-mobile-nav-inner { display: flex; flex-direction: column; gap: 1.25rem; }
.ce-mobile-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.ce-mobile-login { display: flex; align-items: center; gap: 0.5rem; color: var(--rust); font-weight: 500; }
.ce-divider { border: 0; border-top: 1px solid var(--cream-border); width: 100%; }

/* Hero */
.ce-home { background: var(--page); }
.ce-hero {
  position: relative;
  overflow: visible;
  color: #fff;
  padding-bottom: 3.25rem;
  background: var(--page);
}
.ce-hero-media {
  position: relative;
  height: min(62vw, 620px);
  min-height: 420px;
  overflow: hidden;
}
.ce-hero-bg, .ce-hero-overlay { position: absolute; inset: 0; }
.ce-hero-bg {
  background-size: cover;
  background-position: 58% 42%;
}
.ce-hero-overlay {
  background: linear-gradient(90deg, rgba(18, 16, 12, 0.28) 0%, rgba(18, 16, 12, 0.08) 38%, rgba(18, 16, 12, 0) 62%);
}
.ce-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 2.5rem 0 6.5rem;
}
.ce-hero-copy { max-width: 22rem; }
@media (min-width: 768px) {
  .ce-hero-copy { max-width: 28rem; }
}
.ce-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-shadow: 0 10px 28px rgba(0,0,0,0.28);
  margin: 0;
  color: #fff;
}
.ce-hero-sub {
  margin: 1.05rem 0 0;
  font-family: var(--font);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.28);
}
.ce-hero-copy .ce-btn-hero {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  padding: 0.8rem 1.45rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}
.ce-feature-bar {
  position: relative;
  z-index: 3;
  margin-top: -5.75rem;
  background: #f7f4ef;
  border-radius: 0.85rem;
  box-shadow: 0 16px 40px rgba(44, 44, 44, 0.1);
  display: grid;
  gap: 0;
  padding: 1.35rem 0.75rem;
}
@media (min-width: 768px) {
  .ce-feature-bar { grid-template-columns: 1fr 1fr; padding: 1.5rem 0.5rem; }
}
@media (min-width: 1024px) {
  .ce-feature-bar {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.65rem 0.35rem;
  }
}
.ce-feature-bar article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--charcoal);
  padding: 0.85rem 1.25rem;
}
@media (min-width: 1024px) {
  .ce-feature-bar article {
    border-right: 1px solid #e6e0d6;
  }
  .ce-feature-bar article:last-child { border-right: 0; }
}
.ce-feature-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border: 0;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--sage);
  margin-top: 0.05rem;
}
.ce-feature-bar .ce-icon {
  width: 1.85rem;
  height: 1.85rem;
  color: var(--sage);
  stroke-width: 1.7;
}
.ce-feature-bar h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 0.3rem;
}
.ce-feature-bar p { font-size: 0.8rem; line-height: 1.45; color: #5c6458; margin: 0; }

/* Story */
.ce-story {
  position: relative;
  overflow: hidden;
  color: var(--charcoal);
  padding: 5.5rem 1.5rem 4.5rem;
  margin-top: 1.5rem;
  background: var(--page);
}
.ce-story-blobs { display: none; }
.ce-story-grid { position: relative; z-index: 1; display: grid; gap: 3rem; }
@media (min-width: 1024px) { .ce-story-grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; gap: 4.5rem; } }
.ce-story h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.35rem;
}
.ce-story h2 span { color: var(--rust); }
.ce-rule { width: 4.5rem; height: 3px; background: var(--rust); border-radius: 999px; margin-bottom: 1.75rem; }
.ce-story-copy > p {
  background: #fff;
  padding: 1.15rem 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid var(--cream-border);
  box-shadow: 0 8px 24px rgba(44, 44, 44, 0.04);
  color: #4b5348;
  font-size: 1.05rem;
  line-height: 1.65;
}
.ce-story-copy em { color: var(--sage); font-style: italic; }
.ce-founder { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.ce-founder-mark {
  width: 3rem; height: 3rem; border-radius: 999px;
  background: var(--rust); color: #fff;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700;
}
.ce-founder strong { color: var(--charcoal); }
.ce-founder span { display: block; color: #6b6b63; font-size: 0.875rem; }
.ce-story-panel {
  position: relative;
  background: #f7f4ef;
  border: 1px solid var(--cream-border);
  border-radius: 1.15rem;
  padding: 1.75rem;
  box-shadow: 0 16px 40px rgba(44, 44, 44, 0.06);
}
.ce-story-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ce-story-card {
  background: #fff;
  border: 1px solid var(--cream-border);
  border-radius: 0.85rem;
  padding: 1.35rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.ce-story-card h3 { font-family: var(--font); font-size: 0.95rem; font-weight: 700; color: var(--sage); margin: 0; }
.ce-story-card p { font-size: 0.8rem; color: #6b6b63; margin: 0; }
.ce-story-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(45, 70, 54, 0.1); color: var(--sage);
}
.ce-story-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0.75rem;
  border-radius: 999px;
  border: 3px solid var(--cream);
  color: var(--rust);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(44, 44, 44, 0.08);
}
.ce-story-quote .ce-icon { width: 1.35rem; height: 1.35rem; }

.ce-barry {
  display: grid;
  background: var(--sage);
  color: #fff;
}
.ce-barry-media { min-height: 20rem; }
.ce-barry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 22%;
  min-height: 20rem;
}
.ce-barry-copy { padding: 3.2rem 1.5rem 3.4rem; }
.ce-barry .ce-kicker { color: #f3e6d4; margin: 0 0 0.65rem; }
.ce-barry h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  color: #fff;
  max-width: 18ch;
  margin: 0 0 0.35rem;
}
.ce-barry .ce-rule { background: var(--rust); }
.ce-barry-copy p { color: rgba(255,255,255,0.86); max-width: 38rem; font-size: 1.05rem; }
.ce-barry-sign {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f3e6d4 !important;
}
@media (min-width: 900px) {
  .ce-barry {
    grid-template-columns: minmax(280px, 0.9fr) 1.15fr;
    min-height: 34rem;
  }
  .ce-barry-media,
  .ce-barry-media img { min-height: 34rem; }
  .ce-barry-copy {
    padding: 5rem 8vw 5rem 4.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.ce-projects { padding: 5.2rem 0; background: var(--page); }
.ce-projects .ce-section-intro { margin-bottom: 2.5rem; }
.ce-projects .ce-section-intro .ce-rule { margin-inline: auto; }
.ce-projects .ce-kicker { color: var(--rust); margin: 0 0 0.55rem; }
.ce-project-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .ce-project-grid { grid-template-columns: 1fr 1fr; } }
.ce-project {
  background: #fff;
  border: 1px solid var(--cream-border);
  border-radius: 0.85rem;
  box-shadow: 0 16px 40px rgba(44, 44, 44, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ce-project-mark {
  display: grid;
  place-items: center;
  min-height: 11rem;
  padding: 1.6rem 1.4rem 0.6rem;
  background: #f7f4ef;
}
.ce-project-mark img { width: min(11rem, 70%); height: auto; }
.ce-project-body { padding: 1.2rem 1.5rem 0.6rem; flex: 1; }
.ce-project-body .ce-kicker {
  margin: 0 0 0.35rem;
  color: var(--rust);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ce-project-body h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--charcoal);
  margin: 0 0 0.5rem;
}
.ce-project-body p { color: #5c6458; }
.ce-project-go {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding: 1rem 1.5rem 1.3rem;
  color: var(--sage);
  border-top: 1px solid var(--cream-border);
}
.ce-project-go-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ce-project-go .ce-icon { color: var(--rust); }
.ce-project-go:hover { color: var(--rust); background: #f7f4ef; }

/* Expedition CTA */
.ce-expedition { position: relative; overflow: hidden; padding: 6.5rem 0; color: #fff; text-align: center; }
.ce-expedition-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ce-expedition-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(18, 16, 12, 0.62) 0%, rgba(45, 70, 54, 0.45) 100%);
}
.ce-expedition-inner { position: relative; z-index: 1; max-width: 44rem; margin-inline: auto; padding: 0 1.5rem; }
.ce-expedition .ce-icon-xl { display: block; color: #fff; margin: 0 auto 1rem; }
.ce-expedition h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  text-shadow: 0 8px 24px rgba(0,0,0,0.28);
}
.ce-expedition p { font-size: 1.15rem; color: rgba(255,255,255,0.92); max-width: 36rem; margin: 1rem auto 1.75rem; }
.ce-expedition .ce-btn-hero { margin-inline: auto; }

/* Services */
.ce-services { padding: 6rem 0; background: #fff; }
.ce-section-intro { text-align: center; max-width: 44rem; margin: 0 auto 3.5rem; }
.ce-section-intro h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--charcoal);
  margin: 0 0 0.6rem;
}
.ce-section-intro p { color: #6b6b63; font-size: 1.1rem; }
.ce-section-intro.is-light h2, .ce-section-intro.is-light p { color: inherit; }
.ce-service-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .ce-service-grid { grid-template-columns: repeat(3, 1fr); } }
.ce-service {
  background: #f7f4ef;
  padding: 2rem 1.6rem;
  border-radius: 0.85rem;
  box-shadow: none;
  border: 1px solid var(--cream-border);
  border-top: 3px solid var(--sage);
}
.ce-service.is-rust { border-top-color: var(--rust); }
.ce-service.is-sage { border-top-color: var(--sage); }
.ce-service.is-charcoal { border-top-color: var(--charcoal); }
.ce-service-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 999px;
  display: grid; place-items: center; margin-bottom: 1.25rem;
  background: rgba(45, 70, 54, 0.1); color: var(--sage);
}
.ce-service.is-rust .ce-service-icon { background: rgba(163, 79, 38, 0.12); color: var(--rust); }
.ce-service.is-sage .ce-service-icon { background: rgba(45, 70, 54, 0.1); color: var(--sage); }
.ce-service.is-charcoal .ce-service-icon { background: rgba(44, 44, 44, 0.08); color: var(--charcoal); }
.ce-service h3 { font-family: var(--font); font-size: 1.05rem; color: var(--sage); }
.ce-service p { color: #5c6458; margin: 0; font-size: 0.95rem; }

/* Thrill */
.ce-thrill { padding: 5.5rem 0; background: var(--sage); color: #fff; }
.ce-thrill-badge {
  width: 3rem; height: 3rem; margin: 0 auto 1rem; border-radius: 999px;
  background: rgba(255,255,255,0.12); display: grid; place-items: center; color: #f3e6d4;
}
.ce-thrill .ce-section-intro h2 { color: #fff; }
.ce-thrill .ce-section-intro p { color: rgba(255,255,255,0.82); }
.ce-thrill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .ce-thrill-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .ce-thrill-grid { grid-template-columns: repeat(7, 1fr); } }
.ce-thrill-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0.75rem;
  padding: 1rem 0.7rem;
  text-align: center;
  min-height: 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}
.ce-thrill-card .ce-icon { width: 1.85rem; height: 1.85rem; color: #f3e6d4; }
.ce-thrill-card h3 { font-size: 0.8rem; color: #fff; margin: 0; font-family: var(--font); font-weight: 600; }
.ce-center { text-align: center; }
.ce-thrill .ce-btn-primary { background: var(--rust); }

/* Footer */
.ce-footer { background: #24362b; color: var(--cream); border-top: 1px solid #3d5344; padding: 4rem 0; }
.ce-footer-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .ce-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.ce-brand-lockup { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.ce-brand-mark { background: var(--rust); color: #fff; padding: 0.5rem; border-radius: 0.5rem; font-weight: 700; }
.ce-brand-name { display: block; color: #fff; font-weight: 700; }
.ce-brand-sub { display: block; color: #d7c9b6; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.ce-footer p, .ce-footer a { color: #c9d4cc; }
.ce-footer h3 { color: #fff; font-family: var(--font); font-size: 1.125rem; margin-bottom: 1.5rem; }
.ce-footer-links, .ce-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.ce-footer-links a:hover { color: #f3e6d4; }
.ce-contact-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.ce-social { display: flex; gap: 1rem; margin-bottom: 2rem; }
.ce-social a { background: #3d5344; color: #fff; padding: 0.5rem; border-radius: 999px; display: grid; place-items: center; }
.ce-social a:hover { background: var(--rust); }
.ce-copy { font-size: 0.75rem; color: #a8b5ac !important; }

/* Pages */
.ce-page-hero { background: var(--charcoal); color: #fff; padding: 6rem 0 4rem; text-align: center; }
.ce-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.ce-page-hero p { color: #d1d5db; max-width: 42rem; margin: 0 auto; }
.ce-browse { margin-top: -2rem; padding-bottom: 4rem; }
.ce-filters {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 1.5rem;
  margin-bottom: 3rem;
  display: grid;
  gap: 1.5rem;
}
.ce-filters-label { display: flex; align-items: center; gap: 0.5rem; }
.ce-filters-icon { background: var(--page); padding: 0.5rem; border-radius: 999px; color: var(--rust); }
.ce-filters-label span { display: block; font-size: 0.75rem; color: #6b7280; }
.ce-filters-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .ce-filters-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .ce-filters-grid { grid-template-columns: repeat(7, 1fr); } }
.ce-filters label { display: grid; gap: 0.35rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; color: #6b7280; }
.ce-filters select, .ce-filters input[type="search"], .ce-plan-form select, .ce-inquiry input, .ce-inquiry select, .ce-inquiry textarea, .ce-contact-form input, .ce-contact-form select, .ce-contact-form textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  color: #111;
  text-transform: none;
  font-weight: 500;
}
.ce-filters input[type="range"] {
  width: 100%;
  accent-color: var(--rust);
  cursor: pointer;
}
.ce-trip-card[hidden],
.ce-activity-card[hidden] {
  display: none !important;
}
.ce-card-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .ce-card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ce-card-grid { grid-template-columns: repeat(3, 1fr); } }

.ce-trip-card, .ce-activity-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  border: 1px solid #f3f4f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ce-trip-card:hover, .ce-activity-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.ce-trip-media { position: relative; height: 14rem; display: block; color: #fff; }
.ce-trip-media img, .ce-activity-media img { width: 100%; height: 100%; object-fit: cover; }
.ce-trip-badges { position: absolute; top: 1rem; left: 1rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.ce-badge { font-size: 0.75rem; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 999px; color: #fff; }
.ce-badge.is-easy { background: #22c55e; }
.ce-badge.is-moderate { background: #eab308; }
.ce-badge.is-hard { background: #ef4444; }
.ce-badge.is-region { background: rgba(37, 99, 235, 0.9); }
.ce-trip-title { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; }
.ce-trip-title h3 { margin: 0 0 0.35rem; font-size: 1.25rem; text-shadow: 0 2px 8px #000; }
.ce-trip-title p { margin: 0; font-size: 0.75rem; display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.ce-trip-body, .ce-activity-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.ce-trip-actions { display: grid; gap: 0.6rem; margin-top: auto; }
@media (min-width: 480px) { .ce-trip-actions { grid-template-columns: 1fr 1fr; } }
.ce-trip-actions .ce-btn { justify-content: center; text-align: center; }
.ce-trip-meta { display: flex; justify-content: space-between; font-size: 0.875rem; color: #6b7280; border-bottom: 1px solid #f3f4f6; padding-bottom: 0.85rem; }
.ce-trip-meta span, .ce-activity-body ul li { display: flex; align-items: center; gap: 0.35rem; }
.ce-empty { text-align: center; padding: 4rem 1rem; background: #fff; border: 1px dashed #d1d5db; border-radius: 0.75rem; }
.ce-results-count { font-weight: 700; color: #1f2937; }

.ce-activities { background: #f9fafb; padding: 3rem 0 5rem; }
.ce-activities-head { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid #e5e7eb; padding-bottom: 1.5rem; margin-bottom: 2rem; }
.ce-activities-head h1 { font-size: 2.25rem; }
.ce-activity-media { position: relative; height: 12rem; }
.ce-activity-media .ce-badge { position: absolute; top: 0.75rem; left: 0.75rem; }
.ce-activity-body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; font-size: 0.875rem; color: #4b5563; }
.ce-activity-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }

.ce-plan { background: var(--page); padding: 3rem 0 5rem; }
.ce-plan-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .ce-plan-grid { grid-template-columns: 1fr 2fr; } }
.ce-card { background: #fff; border-radius: 0.75rem; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.ce-plan-form { padding: 1.5rem; display: grid; gap: 1.25rem; }
.ce-plan-form h2 { font-family: var(--font); font-size: 1.125rem; border-bottom: 1px solid #eee; padding-bottom: 0.75rem; }
.ce-plan-form label, .ce-inquiry label, .ce-contact-form label { display: grid; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; }
.ce-muted { color: #9ca3af; font-style: italic; font-size: 0.875rem; }
.ce-stops { list-style: none; padding: 0; margin: 0 0 0.75rem; display: grid; gap: 0.4rem; }
.ce-stops li, .ce-stop-item {
  background: #f9fafb; padding: 0.5rem 0.75rem; border-radius: 0.4rem; font-size: 0.875rem;
  display: flex; align-items: center; gap: 0.5rem; border: 1px solid #e5e7eb; cursor: grab;
}
.ce-stop-item.is-over { outline: 2px dashed var(--rust); }
.ce-stop-item.is-dragging { opacity: 0.55; }
.ce-stop-grip { color: #9ca3af; font-size: 0.75rem; letter-spacing: -0.08em; }
.ce-stop-num { background: #2563eb; color: #fff; border-radius: 999px; min-width: 1.35rem; height: 1.35rem; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; }
.ce-stop-name { flex: 1; font-weight: 600; }
.ce-stop-remove { border: 0; background: transparent; color: #9ca3af; font-size: 1.1rem; line-height: 1; cursor: pointer; padding: 0 0.15rem; }
.ce-stop-remove:hover { color: #dc2626; }
.ce-estimate { background: var(--charcoal); color: #fff; border-radius: 0.75rem; padding: 1.5rem; margin-top: 1.5rem; }
.ce-estimate h3 { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font); }
.ce-estimate-price { font-size: 1.875rem; color: var(--cream); font-weight: 700; margin: 0.25rem 0 0.75rem; }
.ce-estimate p { color: #9ca3af; font-size: 0.875rem; }
.ce-estimate-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.ce-plan-map {
  min-height: 600px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #e5e7eb;
  position: relative;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.ce-plan-route-map { width: 100%; height: 600px; }
.ce-map-tools, .ce-sv-map-tools {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 500;
  display: flex; flex-wrap: wrap; gap: 0.45rem;
}
.ce-map-tool, .ce-sv-map-tool {
  border: 0; background: rgba(255,255,255,0.95); color: #374151;
  padding: 0.45rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.ce-map-tool.is-on, .ce-sv-map-tool.is-on { background: #2563eb; color: #fff; }
.ce-map-tool:hover, .ce-sv-map-tool:hover { background: #eff6ff; }
.ce-map-tool.is-on:hover, .ce-sv-map-tool.is-on:hover { background: #1d4ed8; color: #fff; }
.ce-sv-map-tools { top: 0.65rem; left: 0.65rem; }
.ce-sv-map-tool svg { width: 0.85rem; height: 0.85rem; stroke: currentColor; fill: none; stroke-width: 2; }
.ce-map-hint {
  position: absolute; left: 0.75rem; bottom: 0.75rem; z-index: 500;
  background: rgba(255,255,255,0.92); padding: 0.45rem 0.75rem; border-radius: 0.4rem;
  font-size: 0.75rem; color: #4b5563; margin: 0; max-width: calc(100% - 1.5rem);
}
.ce-route-marker { background: transparent; border: 0; }
.ce-route-marker-num {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 999px;
  background: #2563eb; color: #fff; font-size: 0.75rem; font-weight: 700;
  border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.ce-route-marker-start .ce-route-marker-num { background: #16a34a; }
.ce-route-marker-end .ce-route-marker-num { background: #dc2626; }
.ce-map-placeholder { background: rgba(255,255,255,0.9); padding: 1.5rem; border-radius: 0.75rem; text-align: center; max-width: 22rem; }
.ce-map-note { color: var(--sage); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.ce-login { min-height: calc(100vh - 16rem); display: grid; place-items: center; padding: 2rem 1rem; background: var(--page); }
.ce-login-card { width: min(100%, 28rem); text-align: center; }
.ce-login-logo { display: flex; justify-content: center; transform: scale(1.25); margin-bottom: 1rem; }
.ce-login-lead { color: #5c6458; }
.ce-login-card > .ce-form-status { text-align: left; margin: 0 0 1rem; }
.ce-tabs { display: grid; grid-template-columns: 1fr 1fr; background: #ece7df; border-radius: 0.5rem; padding: 0.25rem; margin: 1.5rem 0; }
.ce-tabs button { border: 0; background: transparent; padding: 0.6rem; border-radius: 0.4rem; cursor: pointer; font-weight: 600; color: var(--charcoal); }
.ce-tabs button.is-active { background: #fff; color: var(--sage); }
.ce-auth-card { position: relative; text-align: left; padding: 1.5rem; border-top: 3px solid var(--sage); }
.ce-auth-card.is-register { border-top-color: var(--rust); }
.ce-auth-card.is-forgot { border-top-color: var(--sage); }
.ce-auth-card p { color: #5c6458; }
.ce-auth-form,
.ce-auth-card form { display: grid; gap: 0.85rem; }
.ce-auth-card label { display: grid; gap: 0.35rem; margin: 0; font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.ce-auth-card input[type="text"],
.ce-auth-card input[type="email"],
.ce-auth-card input[type="password"] {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--cream-border);
  border-radius: 0.45rem;
  background: #fff;
  color: var(--charcoal);
  font-weight: 500;
}
.ce-auth-card .login-remember {
  margin: 0.15rem 0 0;
}
.ce-auth-card .login-remember label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
.ce-auth-card input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  margin: 0;
  padding: 0;
  accent-color: var(--rust);
  cursor: pointer;
  flex-shrink: 0;
}
.ce-auth-card .button,
.ce-auth-card input[type="submit"],
.ce-auth-form .ce-btn {
  width: 100%;
  margin-top: 0.25rem;
  background: var(--rust);
  color: #fff;
  border: 0;
  padding: 0.75rem;
  border-radius: 0.45rem;
  cursor: pointer;
  font-weight: 600;
}
.ce-auth-card .button:hover,
.ce-auth-card input[type="submit"]:hover {
  background: #8a3f1c;
}
.ce-auth-switch { margin: 0.85rem 0 0; text-align: center; font-size: 0.9rem; }
.ce-auth-switch a { color: var(--rust); font-weight: 600; }
.ce-auth-switch a:hover { text-decoration: underline; }

.ce-planner { background: var(--page); padding: 3rem 0 5rem; }
.ce-planner-head { text-align: center; max-width: 44rem; margin: 0 auto 2rem; }
.ce-inquiry { padding: 2rem; display: grid; gap: 1.25rem; max-width: 56rem; margin-inline: auto; }
.ce-form-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .ce-form-grid { grid-template-columns: 1fr 1fr 1fr; } }
.ce-form-status { margin: 0; font-weight: 600; }
.ce-form-status.is-ok { color: var(--sage); }
.ce-form-status.is-err { color: #b91c1c; }

/* Contact */
.ce-contact { background: var(--page); padding: 4.25rem 0 5.5rem; }
.ce-contact-head { max-width: 40rem; margin: 0 0 2.75rem; }
.ce-contact-kicker {
  margin: 0 0 0.65rem;
  color: var(--rust);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ce-contact-head h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  color: var(--charcoal);
  margin: 0 0 0.35rem;
}
.ce-contact-head p { color: #5c6458; font-size: 1.08rem; }
.ce-contact-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 900px) { .ce-contact-grid { grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; } }
.ce-contact-form {
  position: relative;
  background: #fff;
  border: 1px solid var(--cream-border);
  border-radius: 1.15rem;
  padding: 1.75rem 1.6rem 1.85rem;
  box-shadow: 0 16px 40px rgba(44, 44, 44, 0.06);
  display: grid;
  gap: 1.15rem;
}
.ce-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ce-contact-fields { display: grid; gap: 1rem; }
@media (min-width: 640px) { .ce-contact-fields { grid-template-columns: 1fr 1fr; } }
.ce-contact-form textarea { min-height: 8.5rem; resize: vertical; }
.ce-contact-form .ce-btn { justify-self: start; }
.ce-contact-aside { display: grid; gap: 0.85rem; }
.ce-contact-card {
  background: #fff;
  border: 1px solid var(--cream-border);
  border-radius: 0.85rem;
  padding: 1.15rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}
.ce-contact-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(45, 70, 54, 0.1); color: var(--sage);
}
.ce-contact-card h2 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 0.25rem;
}
.ce-contact-card p { margin: 0; color: #5c6458; font-size: 0.95rem; }
.ce-contact-card a { color: var(--charcoal); }
.ce-contact-card a:hover { color: var(--rust); }
.ce-contact-plan {
  background: var(--sage);
  color: #fff;
  border-radius: 0.85rem;
  padding: 1.5rem 1.35rem;
  margin-top: 0.35rem;
}
.ce-contact-plan h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  color: #fff;
  margin: 0 0 0.45rem;
}
.ce-contact-plan p { color: rgba(255,255,255,0.82); margin: 0 0 1.1rem; }
.ce-contact-plan .ce-btn-hero {
  box-shadow: none;
  font-size: 0.95rem;
  padding: 0.75rem 1.35rem;
}
.ce-contact-faq {
  margin-top: 3.5rem;
  max-width: 48rem;
}
.ce-contact-faq h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--charcoal);
  margin: 0 0 1.25rem;
}
.ce-faq-list { display: grid; gap: 0.65rem; }
.ce-faq-item {
  background: #fff;
  border: 1px solid var(--cream-border);
  border-radius: 0.75rem;
  padding: 0.15rem 1.1rem;
}
.ce-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--sage);
  padding: 0.85rem 0;
  list-style: none;
}
.ce-faq-item summary::-webkit-details-marker { display: none; }
.ce-faq-item p {
  margin: 0 0 1rem;
  color: #5c6458;
  line-height: 1.6;
}

.ce-news {
  padding: 4.5rem 0;
  background: var(--sage);
  color: #fff;
  text-align: center;
}
.ce-news-inner { max-width: 40rem; }
.ce-news-kicker { color: #f3e6d4; margin: 0 0 0.65rem; }
.ce-news h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: #fff;
  margin: 0 0 0.35rem;
}
.ce-news .ce-rule { margin-inline: auto; background: var(--rust); }
.ce-news p { color: rgba(255,255,255,0.82); font-size: 1.08rem; }
.ce-news-form-wrap { margin-top: 1.35rem; }
.ce-news-form {
  display: grid;
  gap: 0.7rem;
}
.ce-news-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.45rem;
  background: #fff;
  color: var(--charcoal);
  font-weight: 500;
}
.ce-news-form .ce-btn { justify-content: center; }
.ce-news-form .ce-form-status { grid-column: 1 / -1; margin: 0; min-height: 1.3em; color: #f3e6d4; }
.ce-news .ce-form-status.is-ok { color: #f3e6d4; }
.ce-news .ce-form-status.is-err { color: #ffc4b0; }
.ce-news-success {
  margin: 1.4rem 0 0;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
}
@media (min-width: 640px) {
  .ce-news-form { grid-template-columns: 1fr auto; align-items: stretch; }
}

.ce-content { padding: 3rem 0 5rem; }
.ce-entry-content { font-size: 1.05rem; }
.ce-single-hero {
  min-height: 22rem;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: grid;
  align-items: end;
  padding: 3rem 0;
  position: relative;
}
.ce-single-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); }
.ce-single-hero .ce-container { position: relative; z-index: 1; }
.ce-kicker { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; }
.ce-single-body { display: grid; gap: 2rem; padding: 3rem 0 5rem; }
@media (min-width: 900px) { .ce-single-body { grid-template-columns: 2fr 1fr; } }
.ce-single-aside { background: #fff; padding: 1.5rem; border-radius: 0.75rem; box-shadow: 0 8px 20px rgba(0,0,0,0.06); height: fit-content; display: grid; gap: 0.75rem; }
.ce-trip-details,
.ce-activity-details { display: grid; gap: 0.85rem; margin: 0; }
.ce-trip-details dt,
.ce-activity-details dt { font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ce-rust, #A34F26); }
.ce-trip-details dd,
.ce-activity-details dd { margin: 0.2rem 0 0; line-height: 1.5; }

.ce-search-item { padding: 1.25rem 0; border-bottom: 1px solid #eee; }

body.admin-bar .ce-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .ce-header { top: 46px; }
}
