/* New England Fall 2026 — autumn road-trip theme */
:root {
  --burgundy: #5c1a1b;
  --burgundy-deep: #3d0f12;
  --maple: #b33a2b;
  --maple-bright: #c94b3a;
  --gold: #c9a227;
  --gold-soft: #e8c84a;
  --gold-pale: #f5e6b8;
  --forest: #1e3d2f;
  --forest-mid: #2d5a43;
  --forest-soft: #3d6b52;
  --cream: #f7f0e4;
  --cream-warm: #efe4d0;
  --paper: #faf6ee;
  --ink: #2a1f1a;
  --ink-soft: #5a4a42;
  --muted: #7a6a60;
  --white: #fffcf7;
  --card: rgba(255, 252, 247, 0.92);
  --shadow: 0 8px 28px rgba(61, 15, 18, 0.12);
  --shadow-sm: 0 2px 10px rgba(61, 15, 18, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --nav-h: 56px;
  --strip-h: 48px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--strip-h) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(201, 162, 39, 0.08), transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(179, 58, 43, 0.06), transparent 45%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(90, 74, 66, 0.015) 3px,
      rgba(90, 74, 66, 0.015) 4px
    );
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--maple); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--burgundy); }
ul { list-style: none; }

.wrap {
  width: min(960px, calc(100% - 2rem));
  margin-inline: auto;
}

/* —— Sticky nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(61, 15, 18, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  display: flex;
  align-items: center;
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1100px, calc(100% - 1.5rem));
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-pale);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, #000 85%, transparent);
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  color: rgba(247, 240, 228, 0.78);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-pale);
  background: rgba(201, 162, 39, 0.15);
}

/* —— Map strip —— */
.map-strip {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  height: var(--strip-h);
  background: linear-gradient(90deg, var(--forest) 0%, var(--forest-mid) 55%, #2a4f3a 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(30, 61, 47, 0.25);
}

.map-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(1100px, calc(100% - 1.5rem));
}

.map-route {
  font-size: 0.72rem;
  color: rgba(247, 240, 228, 0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.map-route span { color: var(--gold-soft); margin: 0 0.2rem; }

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--burgundy-deep);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.btn-maps:hover {
  background: var(--gold-soft);
  color: var(--burgundy-deep);
  transform: translateY(-1px);
}

.btn-maps svg { width: 14px; height: 14px; flex-shrink: 0; }

/* —— Hero —— */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  min-height: clamp(22rem, 52vw, 32rem);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(165deg, rgba(28, 8, 12, 0.78) 0%, rgba(61, 15, 18, 0.62) 42%, rgba(40, 18, 12, 0.7) 100%),
    url("assets/hero-foliage.jpg") center 40% / cover no-repeat;
  color: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 85%, rgba(201, 162, 39, 0.18), transparent 42%),
    linear-gradient(to top, rgba(28, 8, 12, 0.35), transparent 45%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 48px;
  background: linear-gradient(to top, var(--paper), transparent);
}

.hero .wrap { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.6rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 252, 247, 0.12);
  border: 1px solid rgba(245, 230, 184, 0.28);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.hero-photo-credit {
  margin: 1.25rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 240, 228, 0.55);
}
.hero-route {
  font-size: 0.9rem;
  color: rgba(247, 240, 228, 0.8);
  max-width: 36rem;
  line-height: 1.6;
}

.hero-route strong { color: var(--gold-pale); font-weight: 600; }

/* —— Sections —— */
section {
  padding: 2.75rem 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 650;
  color: var(--burgundy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.section-head p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maple);
  margin-bottom: 0.4rem;
}

/* —— Route overview —— */
.route-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
}

.route-stop {
  background: var(--card);
  border: 1px solid rgba(92, 26, 27, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.7rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.route-stop:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.route-stop .n {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  color: var(--maple);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.route-stop .place {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.route-stop .dates {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.route-stop.home {
  background: linear-gradient(160deg, var(--forest), var(--forest-mid));
  border-color: transparent;
  color: var(--cream);
}

.route-stop.home .n { color: var(--gold-soft); }
.route-stop.home .place { color: var(--cream); }
.route-stop.home .dates { color: rgba(247, 240, 228, 0.7); }

/* —— Day cards —— */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--maple), var(--forest));
  opacity: 0.35;
  border-radius: 2px;
}

@media (min-width: 640px) {
  .timeline::before { left: 22px; }
}

.day-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(92, 26, 27, 0.1);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1.15rem 2.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.day-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(179, 58, 43, 0.25);
}

.day-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 1.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--maple);
  border: 2px solid var(--gold-pale);
  box-shadow: 0 0 0 3px rgba(179, 58, 43, 0.2);
}

@media (min-width: 640px) {
  .day-card { padding-left: 3.25rem; }
  .day-card::before { left: 16px; width: 14px; height: 14px; }
}

.day-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.75rem;
  margin-bottom: 0.65rem;
}

.day-date {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--burgundy);
}

.day-place {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--forest-mid);
}

.day-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--burgundy-deep);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.day-notes {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.day-notes li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.3rem;
}

.day-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--cream-warm);
  color: var(--ink);
  border: 1px solid rgba(92, 26, 27, 0.08);
  transition: background 0.2s var(--ease);
}

.chip:hover { background: var(--gold-pale); }

.chip.boat {
  background: rgba(30, 61, 47, 0.08);
  border-color: rgba(30, 61, 47, 0.2);
  color: var(--forest);
}

.chip.boat.lean {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(201, 162, 39, 0.12));
  border-color: var(--gold);
  color: var(--burgundy-deep);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.3);
}

.chip.boat.lean::before {
  content: "★ ";
  color: var(--gold);
  font-size: 0.7em;
}

.chip-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100%;
  margin-top: 0.35rem;
  margin-bottom: 0.15rem;
}

/* —— Lodging —— */
.lodge-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lodge-grid { grid-template-columns: 1fr 1fr; }
}

.lodge-card {
  background: var(--card);
  border: 1px solid rgba(92, 26, 27, 0.1);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.lodge-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lodge-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.lodge-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--burgundy-deep);
  line-height: 1.2;
}

.lodge-where {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.pay-badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
}

.pay-badge.cash {
  background: var(--cream-warm);
  color: var(--forest);
  border: 1px solid rgba(30, 61, 47, 0.2);
}

.pay-badge.bonvoy {
  background: linear-gradient(135deg, #1a365d, #2c5282);
  color: #e2e8f0;
}

.lodge-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.conf-badge {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--burgundy-deep);
  color: var(--gold-pale);
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.conf-badge.alt {
  background: var(--forest);
}

.lodge-cost {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maple);
}

.lodge-notes {
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px dashed rgba(92, 26, 27, 0.15);
  padding-top: 0.55rem;
  margin-top: auto;
}

.cancel-ok { color: var(--forest-mid); font-weight: 600; }
.cancel-warn { color: var(--maple); font-weight: 700; }

/* —— Costs —— */
.cost-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cost-card {
  flex: 1 1 140px;
  background: var(--card);
  border: 1px solid rgba(92, 26, 27, 0.1);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
}

.cost-card:hover { transform: translateY(-2px); }

.cost-card.hero-cost {
  background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy));
  border: none;
  color: var(--cream);
  flex: 1.4 1 180px;
}

.cost-card.hero-cost .cost-label { color: rgba(247, 240, 228, 0.7); }
.cost-card.hero-cost .cost-val { color: var(--gold-soft); }

.cost-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.cost-val {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
  color: var(--burgundy);
  line-height: 1.1;
}

.cost-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.cost-card.hero-cost .cost-sub { color: rgba(247, 240, 228, 0.65); }

.fee-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.fee-pill {
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--cream-warm);
  border: 1px solid rgba(92, 26, 27, 0.08);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: var(--ink-soft);
}

.fee-pill em {
  font-style: normal;
  color: var(--maple);
  font-weight: 700;
}

/* —— Boats —— */
.boats-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .boats-grid { grid-template-columns: 1fr 1fr; }
}

.boat-panel {
  background: var(--card);
  border: 1px solid rgba(30, 61, 47, 0.15);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.boat-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
}

.boat-panel h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.boat-panel .when {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.not-booked {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(179, 58, 43, 0.1);
  color: var(--maple);
  border: 1px solid rgba(179, 58, 43, 0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.boat-opt {
  padding: 0.7rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(30, 61, 47, 0.1);
  background: var(--paper);
  margin-bottom: 0.5rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.boat-opt.lean {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.18), rgba(247, 240, 228, 0.9));
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25);
}

.boat-opt .opt-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.lean-tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--burgundy-deep);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.boat-opt .opt-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
}

.boat-opt .opt-price {
  font-weight: 700;
  color: var(--maple);
}

.boat-opt a {
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 0.3rem;
}

.boat-also {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(30, 61, 47, 0.15);
}

/* —— TODOs —— */
.todo-list {
  background: var(--card);
  border: 1px solid rgba(92, 26, 27, 0.1);
  border-radius: var(--radius);
  padding: 0.5rem 0.25rem;
  box-shadow: var(--shadow-sm);
}

.todo-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(92, 26, 27, 0.08);
  cursor: pointer;
  transition: background 0.2s var(--ease);
  border-radius: 0;
  user-select: none;
}

.todo-item:last-child { border-bottom: none; }
.todo-item:hover { background: rgba(201, 162, 39, 0.08); }

.todo-item input {
  appearance: none;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 2px solid var(--maple);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.todo-item input:checked {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
}

.todo-item input:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.todo-item input:checked + .todo-text {
  text-decoration: line-through;
  color: var(--muted);
  opacity: 0.7;
}

.todo-text {
  font-size: 0.92rem;
  color: var(--ink);
  transition: color 0.2s, opacity 0.2s;
}

.todo-text strong { color: var(--burgundy); font-weight: 700; }
.todo-item input:checked + .todo-text strong { color: inherit; }

/* —— Downloads —— */
.dl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.dl-btn:hover {
  background: var(--forest-mid);
  color: var(--cream);
  transform: translateY(-1px);
}

/* —— Footer —— */
.site-footer {
  padding: 2.5rem 0 3rem;
  background: var(--burgundy-deep);
  color: rgba(247, 240, 228, 0.7);
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer strong {
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.4rem;
}

/* —— Reveal motion —— */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* —— Misc —— */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

@media (max-width: 480px) {
  .map-route { display: none; }
  .hero { padding: 2.75rem 0 2.5rem; }
  .day-card { padding-left: 2.5rem; }
}


/* —— Charging —— */
.charge-rule {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: rgba(30, 61, 47, 0.08);
  border: 1px solid rgba(30, 61, 47, 0.15);
  font-size: 0.95rem;
  line-height: 1.45;
}
.subhead {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  margin: 1.75rem 0 0.85rem;
  color: var(--burgundy-deep);
}
.badge-yes {
  background: rgba(30, 61, 47, 0.12);
  color: var(--forest);
}
.badge-soft {
  background: rgba(201, 162, 39, 0.2);
  color: #6b5310;
}
.charge-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(61, 15, 18, 0.1);
  background: var(--card);
}
.charge-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.charge-table th,
.charge-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(61, 15, 18, 0.08);
  vertical-align: top;
}
.charge-table th {
  background: rgba(61, 15, 18, 0.06);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.charge-table tr:last-child td { border-bottom: none; }
.charge-foot {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(61, 15, 18, 0.75);
}
