:root {
  --bg: #f4efe4;
  --bg-soft: #fbf8f1;
  --surface: #fffdf8;
  --ink: #21313b;
  --muted: #5c6f79;
  --line: #d8e1e3;
  --accent: #2f6e8d;
  --index-title-blue: #2f6e8d;
  --accent-soft: #dcebf4;
  --link: #1f4f78;
  --link-hover: #163854;
  --shadow: 0 14px 36px rgba(33, 49, 59, 0.08);
  --radius: 28px;
  --body-leading: 1.6;
  --page-max-width: 980px;
  --hero-standard-image-width: clamp(108px, 18vw, 184px);
  --hero-standard-title-size: clamp(1.95rem, 4.8vw, 3.3rem);
  --hero-standard-image-width-medium: clamp(86px, 20vw, 128px);
  --hero-standard-title-size-medium: clamp(1.72rem, 7.4vw, 2.55rem);
  --hero-standard-image-width-small: clamp(74px, 18vw, 106px);
  --hero-standard-title-size-small: clamp(1.52rem, 7vw, 2.08rem);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(196, 220, 232, 0.8), transparent 28%),
    linear-gradient(180deg, #eef4f7 0%, var(--bg) 22%, #f7f2e8 100%);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: var(--body-leading);
}
a[href] {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.12em;
}
a[href]:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
.site-title-link,
.pill-link,
.button-link,
.topic-tile,
.book-cover-link,
.social-links a {
  text-decoration: none !important;
}
.site-title-link:hover,
.pill-link:hover,
.button-link:hover,
.topic-tile:hover,
.book-cover-link:hover,
.social-links a:hover {
  text-decoration: none !important;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
}
.site-shell {
  width: min(var(--page-max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
}
.home-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #356f8a 0%, #2d6784 28%, #285c76 100%);
}
.home-page .hero,
.home-page .card,
.home-page .topic-preview,
.home-page .topic-control {
  box-shadow:
    0 22px 52px rgba(13, 33, 46, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.38) inset;
}
.home-page .hero {
  position: relative;
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(255, 255, 255, 0.24);
  padding-top: 24px;
  padding-bottom: 22px;
}
.home-page .hero-portrait {
  width: var(--hero-standard-image-width);
  margin-bottom: 12px;
}
.home-page .site-title {
  font-size: var(--hero-standard-title-size);
  line-height: 1;
}
.home-page .card,
.home-page .topic-preview,
.home-page .topic-control {
  background: rgba(255, 253, 248, 0.95);
  border-color: rgba(255, 255, 255, 0.24);
}
.home-page .topic-preview {
  background: linear-gradient(180deg, #316a86 0%, #24526b 55%, #1c4258 100%);
  border-color: rgba(214, 233, 243, 0.52);
  box-shadow:
    0 20px 40px rgba(8, 24, 34, 0.26),
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    inset 0 0 0 2px rgba(214, 233, 243, 0.32);
}
.home-page .topic-preview-title {
  color: #fff;
}
.home-page .topic-preview-copy {
  color: rgba(245, 250, 253, 0.92);
}
.home-page .topic-control-primary {
  background: var(--accent);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.home-page .topic-control-primary:hover {
  background: #25627f;
}
.blue-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #356f8a 0%, #2d6784 28%, #285c76 100%);
  overflow-x: hidden;
}
.blue-page .hero,
.blue-page .card {
  background: rgba(255, 253, 248, 0.95);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 22px 52px rgba(13, 33, 46, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.38) inset;
}
.hero {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(47, 110, 141, 0.12);
  border-radius: 36px;
  box-shadow: var(--shadow);
  padding: 28px 24px 26px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-portrait {
  width: var(--hero-standard-image-width);
  margin: 0 auto 12px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(33, 49, 59, 0.18);
}
.site-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--hero-standard-title-size);
  color: var(--index-title-blue);
  line-height: 1;
}
.site-title-link {
  color: inherit;
  text-decoration: none;
}
.site-title-link:hover {
  color: inherit;
  text-decoration: none;
}
.site-tagline {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--link);
  font-weight: 600;
}
.hero-copy {
  width: min(740px, 100%);
  margin: 20px auto 0;
  text-align: left;
  color: var(--ink);
  font-size: 1.05rem;
}
.hero-copy p { margin: 0 0 16px; }
.hero-books-copy {
  text-align: center;
}
.hero-books-copy p {
  margin-left: auto;
  margin-right: auto;
}
.hero-copy,
.card p,
.contact-line,
.letter-links,
.book-card p,
.sitewide-standard-footer {
  line-height: var(--body-leading);
}
.topic-carousel {
  margin-top: 20px;
}
.home-page .topic-carousel {
  margin-top: 10px;
}
.topic-carousel-viewport {
  position: relative;
  width: min(100%, 920px);
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0 12px;
}
.topic-carousel-viewport.is-paused-draggable {
  cursor: grab;
  touch-action: pan-y;
}
.topic-carousel-viewport.is-paused-draggable.is-dragging {
  cursor: grabbing;
}
.topic-carousel-viewport::before,
.topic-carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  pointer-events: none;
  z-index: 2;
}
.topic-carousel-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0));
}
.topic-carousel-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0));
}
.topic-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
  width: max-content;
  margin: 0;
  will-change: transform;
}
.topic-tile {
  --focus: 0;
  position: relative;
  display: block;
  width: clamp(82px, 15vw, 148px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  min-height: 0;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(47, 110, 141, 0.12);
  box-shadow: 0 10px 24px rgba(47, 110, 141, 0.08);
  opacity: calc(0.48 + (var(--focus) * 0.52));
  transform: translate3d(0, calc((1 - var(--focus)) * 9px), 0) scale(calc(0.88 + (var(--focus) * 0.16)));
  filter: saturate(calc(0.72 + (var(--focus) * 0.4)));
  transition: box-shadow 0.22s ease;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}
.topic-tile:hover {
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(47, 110, 141, 0.14);
}
.topic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 38, 48, 0.02) 34%, rgba(18, 38, 48, 0.72) 100%);
}
.topic-tile img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.cars-tile img {
  object-position: center 22%;
}
.business-tile img {
  object-position: center 18%;
}
.delmar-tile {
  background: linear-gradient(180deg, #2f6e8d 0%, #234c61 100%);
}
.delmar-tile img {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin: 5px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}
.frisbee-tile {
  background: var(--surface);
}
.frisbee-tile img {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin: 5px;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}
.yoga-tile img {
  object-position: center 22%;
}
.topic-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 9px 10px 10px;
  text-align: left;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}
.topic-preview {
  width: min(430px, calc(100% - 48px));
  min-height: 130px;
  margin: 0 auto;
  padding: 18px 18px 16px;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(47, 110, 141, 0.14);
  border-radius: 24px;
  box-shadow:
    0 12px 28px rgba(47, 110, 141, 0.08),
    inset 0 0 0 2px rgba(47, 110, 141, 0.26);
}
.topic-preview-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.topic-preview-title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}
.topic-preview-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.topic-preview-title,
.topic-preview-copy {
  transition: color 0.2s ease;
}
.topic-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 2px auto 12px;
}
.topic-control {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(47, 110, 141, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--accent);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(47, 110, 141, 0.08);
  cursor: pointer;
}
.topic-control:hover {
  background: #fff;
}
.topic-control:disabled {
  opacity: 0.45;
  cursor: default;
}
.topic-control-primary {
  min-width: 92px;
  background: var(--accent);
  color: #fff;
}
.topic-control-primary:hover {
  background: #25627f;
}
.topic-control-icon-button {
  min-width: 56px;
  padding-left: 12px;
  padding-right: 12px;
}
.topic-control-icon {
  display: block;
  font-size: 1rem;
  line-height: 1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-top: 14px;
}
.hero-secondary {
  justify-content: center;
  margin-top: 10px;
}
.pill-link,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 110, 141, 0.15);
  background: var(--surface);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
  box-shadow: 0 6px 16px rgba(47, 110, 141, 0.06);
  text-decoration: none;
}
.button-link.primary {
  background: var(--accent);
  color: #fff;
}
.button-link.is-disabled {
  background: rgba(220, 235, 244, 0.22);
  border-color: rgba(47, 110, 141, 0.08);
  color: var(--muted);
  cursor: default;
  pointer-events: none;
}
.page-end-links {
  margin: 20px 0 12px;
  text-align: center;
}
.page-end-links .button-link {
  min-height: 36px;
  padding: 7px 16px;
}
.grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.hero-contact {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.hero-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(47, 110, 141, 0.18);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 10px 22px rgba(47, 110, 141, 0.1);
  color: var(--accent);
  text-decoration: none;
}
.home-page .hero-contact {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 3;
}
.search-single {
  margin-top: 24px;
}
.card {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(47, 110, 141, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
}
.card h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent);
}
.card p { margin: 0 0 14px; color: var(--muted); }
.card img {
  margin: 0 auto 16px;
}
.search-form { display: grid; gap: 12px; }
.search-form input[type="text"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
}
.search-form input[type="submit"] {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #4c87a4);
  cursor: pointer;
}
.search-note { font-size: 0.95rem; color: var(--muted); }
.index-card { margin-top: 24px; }
.index-intro {
  margin-bottom: 18px;
  color: var(--muted);
}
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.letter-group {
  background: rgba(220, 235, 244, 0.32);
  border: 1px solid rgba(47, 110, 141, 0.08);
  border-radius: 22px;
  padding: 14px 14px 12px;
}
.letter-group h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--accent);
}
.letter-links {
  font-size: 0.96rem;
  color: var(--ink);
}
.letter-links br { content: ""; display: block; margin-bottom: 3px; }
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.photo-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(47, 110, 141, 0.1);
}
.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-card p {
  margin: 0;
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer {
  text-align: center;
  color: var(--muted);
  padding-top: 28px;
  font-size: 0.95rem;
}
.footer a { color: var(--accent); }
.sitewide-standard-footer {
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 16px auto 12px;
  padding: 0;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.94) !important;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
  clear: both;
}
.sitewide-standard-footer p {
  margin: 0;
  text-align: center;
}
.sitewide-standard-footer a {
  color: rgba(255, 255, 255, 0.94) !important;
  text-decoration: underline !important;
}
.sitewide-standard-footer a:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

.contact-hero {
  padding-top: 24px;
  padding-bottom: 24px;
}
.contact-layout {
  display: block;
  margin-top: 24px;
}
.contact-card {
  width: min(560px, 100%);
  margin: 0 auto;
}
.contact-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
}
.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.contact-line {
  color: var(--muted);
  font-size: 1rem;
}
.contact-line strong {
  color: var(--ink);
  display: inline-block;
  min-width: 72px;
  margin-right: 8px;
}
.contact-mini-links {
  margin-top: 22px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 110, 141, 0.15);
  background: var(--surface);
  color: var(--accent);
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(47, 110, 141, 0.06);
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .grid,
  .index-grid,
  .photo-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .site-shell { width: min(calc(100% - 20px), var(--page-max-width)); padding-top: 18px; }
  .legacy-story { width: calc(100% - 20px); max-width: var(--page-max-width); padding-top: 18px; }
  .hero { width: 100%; display: block; padding: 22px 16px 20px; border-radius: 28px; }
  .hero-copy { font-size: 1rem; }
  .card { padding: 18px 16px; border-radius: 24px; }
  .legacy-card { width: 100%; padding: 18px 16px; border-radius: 24px; }
  .legacy-stack { gap: 18px; margin-top: 18px; }
  .legacy-hero,
  .adventure-hero,
  .telemagic-hero { width: 100%; }
  .hero-portrait { width: var(--hero-standard-image-width-medium); }
  .site-title { font-size: var(--hero-standard-title-size-medium); }
  .home-page .hero { padding-top: 20px; padding-bottom: 18px; }
  .home-page .hero-portrait { width: var(--hero-standard-image-width-medium); margin-bottom: 10px; }
  .home-page .site-title { font-size: var(--hero-standard-title-size-medium); }
  .hero-books-photo,
  .legacy-hero-image,
  .telemagic-hero-image,
  .adventure-hero-image,
  .delmar-hero-image,
  .yoga-hero-image { width: min(var(--hero-standard-image-width-medium), 100%); margin-bottom: 10px; }
  .adventure-index-page .adventure-hero-image { width: min(148px, 100%); }
  .delmar-hero-image { width: min(var(--hero-standard-image-width-medium), 100%); margin-bottom: 10px; }
  .delmar-hero .site-title { font-size: var(--hero-standard-title-size-medium); }
  .home-page .hero-contact { top: 14px; right: 16px; }
  .hero-contact a { min-height: 34px; padding: 7px 13px; font-size: 0.86rem; }
  .topic-carousel-viewport { padding-top: 8px; }
  .topic-grid { gap: 10px; }
  .topic-tile { width: clamp(70px, 20vw, 100px); border-radius: 16px; }
  .topic-controls { gap: 8px; }
  .topic-control { min-height: 38px; padding: 7px 12px; font-size: 0.82rem; }
  .topic-preview { min-height: 116px; padding: 15px 14px 14px; }
  .topic-preview-copy { font-size: 0.92rem; }
  .topic-tile span { font-size: 0.72rem; padding: 7px 7px 8px; }
  .usa-tour-log-wrapper {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .usa-tour-log {
    min-width: 680px;
    width: max-content;
    table-layout: auto;
  }
  .usa-tour-log th,
  .usa-tour-log td {
    padding: 9px 8px;
    font-size: 0.84rem;
    overflow-wrap: normal;
  }
  .usa-tour-log th { font-size: 0.88rem; }
  .usa-tour-log th:nth-child(1),
  .usa-tour-log td:nth-child(1) { width: 3.8rem; }
  .usa-tour-log th:nth-child(2),
  .usa-tour-log td:nth-child(2) { width: 5.2rem; }
  .usa-tour-log-usa th:nth-child(2),
  .usa-tour-log-usa td:nth-child(2) { width: 5.8rem; }
  .usa-tour-log-usa th:nth-child(3),
  .usa-tour-log-usa td:nth-child(3) { width: 8.4rem; }
  .usa-tour-log-usa th:nth-child(4),
  .usa-tour-log-usa td:nth-child(4) { min-width: 14rem; }
}
@media (max-width: 430px) {
  .legacy-story { width: calc(100% - 16px); max-width: var(--page-max-width); }
  .legacy-card { padding: 16px 14px; border-radius: 22px; }
  .hero-portrait { width: var(--hero-standard-image-width-small); }
  .site-title { font-size: var(--hero-standard-title-size-small); }
  .home-page .hero-portrait { width: var(--hero-standard-image-width-small); margin-bottom: 8px; }
  .home-page .site-title { font-size: var(--hero-standard-title-size-small); }
  .hero-books-photo,
  .legacy-hero-image,
  .telemagic-hero-image,
  .adventure-hero-image,
  .delmar-hero-image,
  .yoga-hero-image { width: min(var(--hero-standard-image-width-small), 100%); margin-bottom: 8px; }
  .adventure-index-page .adventure-hero-image { width: min(118px, 100%); }
  .delmar-hero-image { width: min(var(--hero-standard-image-width-small), 100%); margin-bottom: 8px; }
  .delmar-hero .site-title { font-size: var(--hero-standard-title-size-small); }
  .topic-grid { gap: 8px; }
  .topic-tile { width: clamp(60px, 18vw, 82px); border-radius: 14px; }
  .topic-controls { flex-wrap: wrap; gap: 6px; }
  .topic-control { min-height: 36px; padding: 7px 10px; font-size: 0.78rem; }
  .topic-preview { min-height: 108px; padding: 14px 12px 12px; }
  .topic-tile span { font-size: 0.66rem; padding: 6px 6px 7px; }
  .usa-tour-log th,
  .usa-tour-log td {
    padding: 8px 6px;
    font-size: 0.76rem;
  }
  .usa-tour-log th { font-size: 0.8rem; }
  .usa-tour-log th:nth-child(1),
  .usa-tour-log td:nth-child(1) { width: 3.6rem; }
  .usa-tour-log th:nth-child(2),
  .usa-tour-log td:nth-child(2) { width: 5rem; }
  .usa-tour-log-usa th:nth-child(2),
  .usa-tour-log-usa td:nth-child(2) { width: 5.6rem; }
  .usa-tour-log-usa th:nth-child(3),
  .usa-tour-log-usa td:nth-child(3) { width: 8rem; }
  .usa-tour-log-usa th:nth-child(4),
  .usa-tour-log-usa td:nth-child(4) { min-width: 13rem; }
}

.hero-books {
  padding-bottom: 30px;
}
.hero-cars-photo {
  width: min(760px, 100%);
  margin: 0 auto 20px;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(33, 49, 59, 0.18);
}
.cars-overview {
  margin-top: 24px;
  text-align: center;
}
.rule-callout {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.1vw, 1.5rem);
  line-height: 1.4;
}
.cars-jump-links {
  justify-content: center;
  margin-top: 16px;
}
.car-stack {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
.car-story {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.car-story.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
}
.car-story.reverse .car-media {
  order: 2;
}
.car-story.reverse .car-body {
  order: 1;
}
.wish-list-story .car-body {
  order: 1;
}
.wish-list-story .car-media {
  order: 2;
}
.car-media img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(33, 49, 59, 0.12);
}
.car-body h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent);
  line-height: 1.15;
}
.car-body p {
  margin: 0 0 14px;
  color: var(--muted);
}
.car-kicker {
  margin: 0 0 8px;
  color: var(--link);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.car-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.wish-list-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.wish-list-gallery figure {
  margin: 0;
}
.wish-list-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}
.wish-list-gallery figcaption {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
  text-align: center;
}
.hero-books-photo {
  display: block;
  width: min(var(--hero-standard-image-width), 100%);
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 0 auto 12px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(33, 49, 59, 0.18);
}
.page-eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-copy-center {
  text-align: center;
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 44px;
}
.books-legacy-card {
  margin-top: 0;
}
.book-card {
  overflow: hidden;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(47, 110, 141, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.book-cover-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 14px 4px;
  text-decoration: none;
}
.book-card img {
  width: auto;
  max-width: 100%;
  max-height: 240px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 auto;
}
.book-content {
  padding: 10px 14px 14px;
  text-align: center;
}
.book-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--accent);
  line-height: 1.2;
}
.book-description {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}
.book-meta {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}
.writings-page .card p {
  color: var(--ink);
}
.legacy-story {
  width: calc(100% - 32px);
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 28px 0 72px;
}
.legacy-story > .hero {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.legacy-hero-image {
  width: min(var(--hero-standard-image-width), 100%);
  margin: 0 auto 12px;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(33, 49, 59, 0.18);
}
.legacy-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: var(--body-leading);
}
.legacy-stack {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  min-width: 0;
}
.legacy-card {
  width: min(780px, 100%);
  min-width: 0;
  margin: 0 auto;
  padding: 22px 20px;
  color: var(--ink);
  font-size: 1rem;
  line-height: var(--body-leading);
  text-align: left;
}
.legacy-card::after {
  content: "";
  display: block;
  clear: both;
}
.legacy-card p,
.legacy-card div,
.legacy-card td,
.legacy-card font,
.legacy-card b,
.legacy-card strong,
.legacy-card i,
.legacy-card em,
.legacy-card li {
  line-height: var(--body-leading);
  color: inherit;
}
.legacy-card p {
  margin: 0 0 16px;
}
.legacy-card p:last-child {
  margin-bottom: 0;
}
.legacy-center {
  display: block;
  text-align: center;
}
.legacy-center p {
  text-align: center;
}
.legacy-center .legacy-note {
  display: block;
  width: 100%;
  text-align: center;
}
.legacy-card img {
  margin: 0 auto 16px;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(33, 49, 59, 0.12);
}
.legacy-card img[align="right"],
.legacy-card img[align=right] {
  float: right;
  width: min(280px, 42%);
  margin: 0 0 16px 20px;
}
.legacy-card hr {
  border: 0;
  height: 1px;
  background: rgba(47, 110, 141, 0.24);
  width: min(50%, 400px);
  margin: 12px auto 18px;
}
.legacy-card h1,
.legacy-card h2,
.legacy-card h3,
.legacy-card font[size="+2"],
.legacy-card font[size=+2],
.legacy-card font[size="+3"],
.legacy-card font[size=+3] {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
}
.legacy-card h1,
.legacy-card font[size="+3"],
.legacy-card font[size=+3] {
  font-size: clamp(1.7rem, 4.4vw, 2.8rem);
}
.legacy-card h2,
.legacy-card h3,
.legacy-card font[size="+2"],
.legacy-card font[size=+2] {
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
}
.legacy-card font[size="-1"],
.legacy-card font[size=-1],
.legacy-card font[size="-2"],
.legacy-card font[size=-2] {
  color: var(--muted);
}
.legacy-card a img {
  text-decoration: none;
}
.telemagic-hero {
  width: min(900px, 100%);
  margin: 0 auto;
}
.business-hero {
  border-radius: var(--radius);
  padding: 22px 20px;
}
.telemagic-hero-image {
  width: min(var(--hero-standard-image-width), 100%);
}
.telemagic-quote {
  width: min(560px, 100%);
  margin: 0 auto 18px;
  padding: 14px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: rgba(220, 235, 244, 0.32);
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
  text-align: left;
}
.telemagic-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(520px, 100%);
  margin: 18px auto 0;
}
.telemagic-pricing-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.telemagic-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.telemagic-gallery figure {
  margin: 0;
}
.telemagic-gallery img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}
.telemagic-gallery figcaption {
  margin-top: 8px;
  color: var(--ink);
  font-size: 1rem;
  line-height: var(--body-leading);
  text-align: left;
}
.telemagic-link-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.telemagic-link-item {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(220, 235, 244, 0.32);
  border: 1px solid rgba(47, 110, 141, 0.08);
}
.telemagic-link-item h3 {
  margin: 0 0 10px;
}
.telemagic-link-item p {
  margin: 0;
}
.telemagic-caption {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.telemagic-cta {
  text-align: center;
}
.telemagic-cta > p {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.telemagic-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.legacy-video-frame {
  position: relative;
  width: min(100%, 853px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
}
.legacy-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.adventure-hero {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.adventure-hero-image {
  width: min(var(--hero-standard-image-width), 100%);
}
.adventure-index-page .adventure-hero-image {
  width: min(208px, 100%);
}
.adventure-subnote {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}
.usa-day-page .site-tagline,
.usa-day-page .adventure-subnote,
.euro-day-page .site-tagline,
.euro-day-page .adventure-subnote {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}
.adventure-tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.adventure-tour-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(220, 235, 244, 0.32);
  border: 1px solid rgba(47, 110, 141, 0.08);
}
.adventure-tour-card h2 {
  margin: 0 0 10px;
}
.adventure-tour-card p:last-child {
  margin-bottom: 0;
}
.adventure-link-list {
  display: grid;
  gap: 12px;
  width: min(560px, 100%);
  margin: 18px auto 0;
  justify-items: center;
}
.adventure-link-list a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(220, 235, 244, 0.32);
  border: 1px solid rgba(47, 110, 141, 0.08);
  color: var(--link);
  font-weight: 600;
  text-align: center;
}
.adventure-link-list a:hover {
  background: rgba(220, 235, 244, 0.48);
}
.usa-tour-map {
  width: min(760px, 100%);
}
.usa-tour-buy {
  width: min(620px, 100%);
  margin: 0 auto;
  text-align: center;
}
.usa-tour-log-wrapper {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  margin-top: 18px;
}
.usa-tour-log {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.62);
}
.usa-tour-log th,
.usa-tour-log td {
  padding: 10px 12px;
  border: 1px solid rgba(47, 110, 141, 0.16);
  vertical-align: top;
  text-align: left;
  font-size: 0.94rem;
  line-height: 1.45;
}
.usa-tour-log th {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  background: rgba(220, 235, 244, 0.5);
}
.usa-tour-log tbody tr:nth-child(even) {
  background: rgba(220, 235, 244, 0.18);
}
.usa-tour-log tbody tr[data-href] {
  cursor: pointer;
}
.usa-tour-log tbody tr[data-href]:hover {
  background: rgba(220, 235, 244, 0.34);
}
.usa-tour-log tbody tr[data-href]:focus {
  outline: 2px solid rgba(47, 110, 141, 0.42);
  outline-offset: -2px;
  background: rgba(220, 235, 244, 0.38);
}
.usa-tour-log td:first-child,
.usa-tour-log th:first-child {
  white-space: nowrap;
}
.usa-tour-log-usa th:nth-child(2),
.usa-tour-log-usa td:nth-child(2) {
  width: 5.8rem;
  white-space: nowrap;
}
.usa-tour-log-usa th:nth-child(3),
.usa-tour-log-usa td:nth-child(3) {
  width: 9rem;
}
.usa-tour-log-usa th:nth-child(4),
.usa-tour-log-usa td:nth-child(4) {
  min-width: 14rem;
}
.usa-tour-log-usa a,
.usa-tour-log-usa a:hover {
  text-decoration: none;
}
.usa-tour-log a {
  font-weight: 600;
}
.quote-card {
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 0 auto;
  padding-top: 34px;
  text-align: center;
  box-shadow:
    0 30px 68px rgba(13, 33, 46, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.38) inset,
    inset 0 0 0 2px rgba(47, 110, 141, 0.3);
}
.quote-machine {
  width: fit-content;
  max-width: min(620px, 100%);
  margin: 0 auto 20px;
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(220, 235, 244, 0.32);
  border: 1px solid rgba(47, 110, 141, 0.08);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.7vw, 1.85rem);
  line-height: 1.55;
}
.quote-machine p {
  margin: 16px 0 0;
  color: var(--accent);
  font-size: 0.9em;
  line-height: 1.4;
}
.quote-source {
  margin: 0;
  text-align: center;
  color: var(--muted);
}
.quote-actions {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.quote-actions .button-link {
  width: min(180px, 100%);
}
.delmar-hero {
  width: min(900px, 100%);
  margin: 0 auto;
}
.delmar-hero-image {
  width: min(var(--hero-standard-image-width), 100%);
  margin-bottom: 12px;
}
.delmar-hero .site-title {
  font-size: var(--hero-standard-title-size);
  line-height: 1;
}
.delmar-links {
  justify-content: center;
  margin-top: 8px;
}
.delmar-list {
  margin: 0;
  text-align: center;
}
.delmar-list p:last-child {
  margin-bottom: 0;
}
.delmar-list .button-link {
  margin: 4px 6px;
}
.frisbee-hero {
  width: min(820px, 100%);
  margin: 0 auto;
}
.frisbee-hero-image {
  width: min(var(--hero-standard-image-width), 100%);
}
.frisbee-quote {
  width: min(680px, 100%);
  margin: 0 auto;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.6;
  text-align: center;
}
.frisbee-quote-credit {
  margin: 8px 0 0;
  text-align: center;
  color: var(--muted);
}
.frisbee-intro {
  margin: 18px auto 0;
  width: min(640px, 100%);
  text-align: center;
}
.frisbee-poem {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}
.frisbee-note {
  color: var(--muted);
  font-size: 0.94rem;
}
.frisbee-scale-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 18px;
}
.frisbee-scale {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.62);
}
.frisbee-scale th,
.frisbee-scale td {
  padding: 10px 12px;
  border: 1px solid rgba(47, 110, 141, 0.16);
  vertical-align: top;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.45;
}
.computer-specs {
  width: min(680px, 100%);
  margin: 0 auto;
}
.computer-specs p {
  margin: 0 0 14px;
}
.computer-specs strong {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}
.computer-specs-block {
  margin: 8px 0 0;
  padding-left: 18px;
}
.computer-specs-block p,
.computer-specs-block div {
  margin: 0 0 10px;
}
.computer-specs-note {
  color: var(--muted);
  font-size: 0.94rem;
}
.frisbee-scale th {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  background: rgba(220, 235, 244, 0.5);
}
.frisbee-scale .frisbee-scale-ideal {
  background: rgba(47, 110, 141, 0.14);
}
.yoga-hero {
  width: min(820px, 100%);
  margin: 0 auto;
}
.yoga-hero-image {
  width: min(var(--hero-standard-image-width), 100%);
}
.yoga-intro {
  width: min(700px, 100%);
}
.yoga-verse {
  margin: 0 0 16px;
}
.yoga-stack {
  margin-top: 24px;
}
.yoga-card {
  width: min(760px, 100%);
}
.yoga-card p {
  color: var(--ink);
}
.yoga-name {
  margin: 0 0 12px;
  text-align: center;
}
.yoga-photo-note {
  margin: 0;
  text-align: center;
}
.ambient-audio {
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 1080px) {
  .books-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .books-grid {
    grid-template-columns: 1fr;
  }
  .book-card img {
    max-height: 300px;
  }
  .adventure-tour-grid {
    grid-template-columns: 1fr;
  }
  .telemagic-gallery {
    grid-template-columns: 1fr;
  }
  .car-story,
  .car-story.reverse {
    grid-template-columns: 1fr;
  }
  .car-story.reverse .car-media,
  .car-story.reverse .car-body {
    order: 0;
  }
  .wish-list-story .car-body {
    order: 1;
  }
  .wish-list-story .car-media {
    order: 2;
  }
  .car-media img {
    max-height: none;
  }
  .legacy-card img[align="right"],
  .legacy-card img[align=right] {
    float: none;
    width: min(100%, 380px);
    margin: 0 auto 16px;
  }
}
@media (max-width: 640px) {
  .telemagic-pricing-grid {
    grid-template-columns: 1fr;
    width: min(220px, 100%);
  }
  .telemagic-quote {
    padding: 12px 14px;
  }
  .business-hero {
    padding: 18px 16px;
    border-radius: 24px;
  }
}

.book-title a {
  color: inherit;
  text-decoration: none;
}
.book-title a:hover {
  color: inherit;
  text-decoration: none;
}
