/* Bananas for beading — locked cream / forest / yellow */
:root {
  --cream: #F6F0E3;
  --green: #1F4A38;
  --yellow: #F5C518;
  --ink: #24352C;
  --muted: #5C5A52;
  --ph: #DDD8CC;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --display: Fraunces, Georgia, serif;
  --hand: Caveat, "Comic Sans MS", cursive;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.58;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--green); color: var(--cream); padding: 0.5rem 1rem; z-index: 20;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }
.wrap { width: min(70rem, calc(100% - 1.5rem)); margin-inline: auto; }
.prose { max-width: 46rem; }
.ydot {
  display: inline-block; width: 0.42em; height: 0.42em;
  background: var(--yellow); border-radius: 50%;
  vertical-align: 0.12em; margin: 0 0.35em;
}

/* Header — compact banner, not a full-bleed poster */
.site-header { padding: 0.65rem 0 0.5rem; }
.header-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "logo"
    "mad"
    "right";
  gap: 0.2rem 1.5rem;
  align-items: start;
}
.logo-home {
  grid-area: logo;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: max-content;
  max-width: 100%;
  text-decoration: none;
  color: var(--green);
  cursor: pointer;
  outline: 3px solid transparent;
  outline-offset: 4px;
  border-radius: 4px;
}
.logo-home:hover,
.logo-home:focus-visible {
  outline-color: var(--yellow);
}
.logo-mark {
  height: 5.9rem;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  display: block;
}
.wordmark {
  display: flex;
  flex-direction: column;
  color: var(--green);
  font-size: clamp(3.025rem, 7.87vw, 4.84rem);
  line-height: 0.9;
}
.wordmark-bananas {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.wordmark-row2 {
  display: flex;
  align-items: baseline;
  margin-top: 0.02em;
}
.wordmark-four {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 3px solid var(--yellow);
  padding-bottom: 1px;
  margin-right: 0.28em;
  line-height: 0.9;
}
.wordmark-beading {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 0.72em;
  line-height: 1;
}
.header-right { grid-area: right; }
.tagline-hand {
  font-family: var(--hand); font-size: 1.8rem; color: var(--green);
  margin: 0.25rem 0 0.3rem; display: inline-block;
  line-height: 1.15; padding-bottom: 0.12em;
  background: linear-gradient(transparent 70%, var(--yellow) 70%) bottom / 100% 0.38em no-repeat;
}
.mad-line {
  grid-area: mad;
  font-family: var(--hand);
  font-size: 1.32rem;
  color: var(--green);
  margin: 0.05rem 0 0.15rem;
  line-height: 1.2;
}
.nav-main {
  display: flex; flex-wrap: wrap; align-items: center;
  font-family: var(--sans); font-size: 1.18rem; gap: 0;
}
.nav-main a {
  color: var(--green); text-decoration: none; padding: 0.2rem 0;
  white-space: nowrap;
}
.nav-main a:not(:last-child)::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  background: var(--yellow); border-radius: 50%;
  margin: 0 0.55rem; vertical-align: middle;
}
.nav-main a.is-current { font-weight: 700; }

@media (min-width: 800px) {
  .site-header { padding: 0.7rem 0 0.55rem; }
  .header-inner {
    grid-template-columns: auto auto 1fr;
    grid-template-areas:
      "logo right ."
      "mad mad .";
    column-gap: 2.5rem;
    align-items: start;
  }
  .logo-mark { height: 7.7rem; }
  .header-right { text-align: left; padding-top: 0.2rem; }
  .tagline-hand { font-size: 1.95rem; margin-top: 0; }
  .nav-main { justify-content: flex-start; flex-wrap: nowrap; }
  .mad-line { margin-top: 0.1rem; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--sans); font-weight: 600; font-size: 1.16rem;
  padding: 0.85rem 1.25rem; text-decoration: none; border-radius: 8px; cursor: pointer;
}
.btn-filled { background: var(--green); color: #fff; border: 2px solid var(--green); }
.btn-outline { background: #fff; color: var(--green); border: 2px solid var(--green); }
.btn-row { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.1rem 0 1.5rem; }
.btn-row .btn, .form .btn { width: 100%; }
@media (min-width: 800px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .btn-row .btn { width: auto; min-width: 13rem; }
  .form .btn { width: auto; min-width: 12rem; }
}

/* Home */
.hero { margin: 0.25rem auto 0.7rem; }
.hero-rotator {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  width: 100%;
}
.hero-rotator img {
  display: none;
  width: 100%;
  height: min(16.5rem, 36vh);
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
}
.hero-rotator img.is-active { display: block; }
@media (min-width: 700px) {
  .hero-rotator { grid-template-columns: 1fr 1fr; }
  .hero-rotator img { height: min(18.5rem, 42vh); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-rotator img { transition: none; }
}
.home-band { display: grid; gap: 0.5rem 2rem; margin-bottom: 0.85rem; }
.home-copy p { margin: 0 0 0.55rem; color: var(--green); }
.home-copy .lede { font-size: 1.4rem; }
@media (min-width: 800px) {
  .home-band { grid-template-columns: 1.3fr auto; align-items: center; }
  .home-band .btn-row { margin: 0; }
}

.tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 0.8rem;
  margin: 0.4rem 0 2.2rem;
}
@media (min-width: 900px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
.tile { text-decoration: none; color: var(--green); text-align: center; }
.tile img { width: 100%; height: 6.6rem; object-fit: cover; border-radius: 10px; }
.tile-label {
  display: block; font-family: var(--sans); font-weight: 600;
  margin-top: 0.45rem; font-size: 1.12rem;
}
.tile-label::after {
  content: ""; display: block; width: 7px; height: 7px; margin: 0.28rem auto 0;
  background: var(--yellow); border-radius: 50%;
}

/* Inner pages */
main { padding-bottom: 2.4rem; }
h1, h2, h3 { font-family: var(--display); color: var(--green); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.05rem, 5.2vw, 2.95rem); margin: 1.2rem 0 0.8rem; text-align: center; }
.page-home h1 { position: absolute; width: 1px; height: 1px; overflow: hidden; }
h2 { font-size: 1.48rem; margin: 1.5rem 0 0.45rem; }
p { margin: 0 0 0.85rem; }
.lede { font-size: 1.38rem; color: var(--green); }
.note { font-family: var(--sans); font-size: 1.08rem; color: var(--muted); }
.mark-yellow { background: var(--yellow); padding: 0 0.15em; }
.mark-below { border-bottom: 3px solid var(--yellow); }

.ph {
  background: var(--ph); min-height: 160px; display: flex; align-items: center;
  justify-content: center; text-align: center; color: var(--muted);
  font-family: var(--sans); font-size: 1rem; padding: 1rem; margin: 1rem 0;
  border-radius: 8px;
}
.ph-row { display: grid; gap: 0.75rem; }
@media (min-width: 700px) { .ph-row { grid-template-columns: 1fr 1fr; } }

.quote { border-left: 4px solid var(--yellow); padding: 0.1rem 0 0.2rem 1rem; margin: 1.6rem 0; }
.quote h2 { font-family: var(--sans); font-size: 1.22rem; margin: 0 0 0.4rem; text-align: left; }
.quote .years { display: block; font-weight: 400; font-size: 1rem; margin-top: 0.12rem; }
.quote blockquote { margin: 0; font-style: italic; }
.keith-aside { font-family: var(--hand); font-size: 1.5rem; font-style: normal; color: var(--green); }

.price-list { list-style: none; padding: 0; margin: 0 0 1.2rem; max-width: 28rem; }
.price-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid #e4ddd0; padding: 0.7rem 0; font-family: var(--sans);
}
.price-list li span:last-child { font-weight: 700; color: var(--green); white-space: nowrap; }

.form label { display: block; margin-top: 0.9rem; font-family: var(--sans); font-weight: 600; }
.form input, .form textarea {
  display: block; width: 100%; margin-top: 0.3rem; padding: 0.7rem 0.75rem;
  font-family: var(--serif); font-size: 1.12rem; border: 1px solid var(--green); background: #fff;
}
.form textarea { min-height: 8rem; resize: vertical; }
.form .btn { margin-top: 1.1rem; }

/* Dates */
.dates-intro { text-align: center; max-width: 40rem; margin: 0 auto 1.2rem; }
.legend {
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; justify-content: center;
  font-family: var(--sans); font-size: 1.05rem; color: var(--muted); margin: 1rem 0;
}
.swatch { display: inline-block; width: 1rem; height: 1rem; vertical-align: -0.15em; margin-right: 0.35rem; }
.swatch.open { outline: 2px solid #111; outline-offset: -1px; background: transparent; }
.swatch.busy { background: var(--yellow); }
.year-tabs { display: flex; gap: 0.6rem; justify-content: center; margin: 1.2rem 0 0.4rem; }
.year-tabs button {
  font-family: var(--sans); background: #fff; border: 2px solid var(--green);
  color: var(--green); padding: 0.55rem 1.4rem; cursor: pointer; font-weight: 600;
  border-radius: 8px;
}
.year-tabs button[aria-selected="true"] { background: var(--green); color: #fff; }
.year-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 0.8rem; }
@media (min-width: 900px) { .year-grid { grid-template-columns: repeat(4, 1fr); } }
.month { font-family: var(--sans); min-width: 0; }
.month h3 { font-size: 1.08rem; margin: 0 0 0.35rem; color: var(--green); font-family: var(--sans); font-weight: 700; text-align: left; }
.dow, .days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; gap: 2px; }
.dow span { font-size: 0.78rem; color: var(--green); font-weight: 600; }
.day { font-size: 0.95rem; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.day.empty { visibility: hidden; }
.day.open { box-shadow: inset 0 0 0 1.5px #111; }
.day.busy { background: var(--yellow); }
.spaces-label { display: block; text-align: center; font-size: 0.85rem; font-style: italic; color: var(--muted); margin: 0.1rem 0 0; }
.dates-note { text-align: center; margin-top: 1.4rem; }
.dates-book { text-align: center; margin-top: 1.2rem; }

.video-grid { display: grid; gap: 1.25rem; margin-top: 1rem; }
@media (min-width: 900px) { .video-grid { grid-template-columns: 1fr 1fr; } }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; background: var(--ph); border-radius: 8px; overflow: hidden; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article-list { padding-left: 1.1rem; }
.article-list li { margin-bottom: 0.55rem; }

.site-footer {
  padding: 1.4rem 0 1.8rem; font-family: var(--sans); font-size: 1.1rem;
  text-align: center; color: var(--green);
  border-top: 1px solid rgba(31,74,56,0.12);
}
.site-footer a { color: var(--green); text-decoration: none; }
.foot-contact { margin: 0; font-weight: 600; }
.foot-copy { margin: 0.35rem 0 0; font-size: 0.95rem; color: var(--muted); }
.foot-extra { margin: 0.55rem 0 0; font-size: 0.95rem; color: var(--muted); }
.foot-extra a { color: var(--muted); }

.quote-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}
.quote-photos {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(18.75rem, 100%);
}
.quote-photo {
  width: min(18.75rem, 100%);
  height: 23.5rem;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.quote-body > blockquote { min-width: 0; flex: 1; }
@media (min-width: 700px) {
  .quote-body { flex-direction: row; align-items: flex-start; }
  .quote-body > .quote-photo {
    flex: 0 0 18.75rem;
    width: 18.75rem;
  }
  .quote-photos {
    flex: 0 0 18.75rem;
    width: 18.75rem;
  }
}


/* Story pages — photos between paragraphs */
.story-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0.7rem 0 1.2rem;
  display: block;
}
.story-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 0.7rem 0 1.2rem;
}
@media (min-width: 700px) {
  .story-photos { grid-template-columns: 1fr 1fr; }
}
.story-photos img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.story-fig {
  margin: 0.7rem 0 1.2rem;
}
.story-fig .story-photo {
  margin: 0 0 0.45rem;
}
.story-cap {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #5a4a3a;
  font-style: italic;
}

.page-cta {
  padding: 1.4rem 0 1.6rem;
  text-align: center;
  background: rgba(31,74,56,0.05);
  border-top: 1px solid rgba(31,74,56,0.1);
}
.page-cta-text {
  margin: 0 0 0.75rem;
  font-family: var(--sans);
  font-size: 1.15rem;
  color: var(--green);
  font-weight: 600;
}
.page-cta .btn {
  display: inline-block;
  width: auto;
  min-width: 13rem;
}

/* Written about us — article cards & scans */
.article-cards {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}
@media (min-width: 700px) {
  .article-cards { grid-template-columns: repeat(3, 1fr); }
}
.article-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fffdf6;
  border: 1px solid rgba(40, 30, 10, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(40, 30, 10, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.article-card:hover,
.article-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(40, 30, 10, 0.12);
  outline: none;
}
.article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f3eee0;
}
.article-card-title {
  display: block;
  padding: 0.75rem 0.9rem 1rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.3;
}
.article-scan {
  margin: 1rem 0 1.5rem;
}
.article-scan img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(40, 30, 10, 0.1);
  background: #f7f2e6;
}


/* Tour inspiration: one long box, three photos across */
.slide-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 1.25rem 0 1.85rem;
  padding: 0.4rem;
  border-radius: 12px;
  background: #f7f2e6;
  box-shadow: 0 2px 12px rgba(40, 30, 10, 0.08);
}
.slide-slot {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #efe8d8;
  aspect-ratio: 4 / 3;
}
.slide-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.45s ease;
}
.slide-slot img.is-fading {
  opacity: 0.35;
}

/* Quiet secondary links lower on the homepage */
.home-more {
  margin: 0.5rem auto 2rem;
  padding-top: 0.25rem;
  text-align: center;
}
.home-more-label {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-more-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
}
.home-more-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.98rem;
  border-bottom: 1px solid transparent;
}
.home-more-links a:hover,
.home-more-links a:focus-visible {
  color: var(--ink, #2a2418);
  border-bottom-color: currentColor;
}
