/* ===================================================================
   ALLF THEME  -  "the wiring"  (ported from the loved resort-v1)
   ===================================================================
   Components styled using the var(--token) names from tokens.css.
   To change the look, edit tokens.css, not this file.
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink-soft);
  -webkit-font-smoothing: antialiased;
  line-height: var(--lh-body);
  font-weight: 400;
}
img { display: block; max-width: 100%; }

/* ----- shared label / eyebrow ----- */
.eyebrow {
  font-family: var(--font-label);
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: var(--track-eyebrow); text-transform: uppercase;
  color: var(--maroon);
}
.eyebrow.light { color: var(--caramel); }

/* ----- serif display ----- */
h1, h2, h3, .serif { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.005em; }

/* ----- NAV ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 44px;
  transition: background .5s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled { background: var(--charcoal); padding: 14px 44px; box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.nav-mark {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; letter-spacing: 0.06em; color: var(--buttercream);
  text-decoration: none; white-space: nowrap;
}
.nav-mark span { font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-label);
  font-size: 12px; font-weight: 600; letter-spacing: var(--track-label); text-transform: uppercase;
  color: rgba(247,239,218,0.82); text-decoration: none; transition: color .25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-reserve {
  background: var(--gold); color: var(--charcoal) !important;
  padding: 10px 20px; letter-spacing: 0.16em !important;
  transition: background .25s, transform .2s;
}
.nav-reserve:hover { background: var(--gold-soft); transform: translateY(-1px); }

/* ----- HERO ----- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 110px 44px 90px; overflow: hidden;   /* top padding reserves the nav zone so hero text never sits under it */
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  animation: breathe var(--breathe-dur) ease-in-out infinite alternate;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  /* strong charcoal under the nav, fading down, then dark again at the bottom for the text */
  background: linear-gradient(180deg, rgba(29,36,41,0.88) 0%, rgba(29,36,41,0.40) 16%, rgba(29,36,41,0.15) 36%, rgba(29,36,41,0.85) 100%);
}
@keyframes breathe { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-inner { position: relative; z-index: 2; max-width: 1100px; }
.hero .eyebrow { color: var(--caramel); font-weight: 700; margin-bottom: 26px; display: block; }
.hero h1 {
  color: var(--buttercream);
  font-size: var(--fs-h1); line-height: 1.02; font-weight: 500;
  max-width: 14ch; margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: #fff; }
.hero-sub {
  font-size: 18px; color: rgba(247,239,218,0.86); font-weight: 400;
  letter-spacing: 0.02em; max-width: 46ch; margin-bottom: 22px;
}
.hero-meta { font-size: 12px; font-weight: 500; letter-spacing: var(--track-label); text-transform: uppercase; color: rgba(247,239,218,0.7); margin-top: 6px; }
.hero-meta em { font-style: italic; color: var(--gold); }
.scroll-cue { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2; font-family: var(--font-label); font-size: 10.5px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(247,239,218,0.55); }

/* ----- BODY LAYOUT ----- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-pad) 0; }
.section-narrow { max-width: var(--wrap-narrow); margin: 0 auto; }
/* scroll reveal — gated behind .js so content is NEVER hidden if JavaScript fails
   (the head sets <html class="js"> before first paint, so there's no flash either) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
/* breakout components center with translateX(-50%); the reveal must KEEP that or they
   shift 50% right and bleed off-page, so combine the rise with the centering for them. */
.js .reveal.allf-banner, .js .reveal.review-quote.wide, .js .reveal.review-quote.full, .js .reveal.compare-table { transform: translateX(-50%) translateY(26px); }
.js .reveal.allf-banner.in, .js .reveal.review-quote.wide.in, .js .reveal.review-quote.full.in, .js .reveal.compare-table.in { transform: translateX(-50%); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; }
  .reveal:not(.allf-banner):not(.review-quote):not(.compare-table) { transform: none !important; }
  .reveal.allf-banner, .reveal.review-quote.wide, .reveal.review-quote.full, .reveal.compare-table { transform: translateX(-50%) !important; }
  .hero-bg { animation: none !important; }
}

/* ----- intro / manifesto ----- */
.intro p { font-size: var(--fs-intro); margin-bottom: 22px; color: var(--ink-soft); }
.intro p:first-of-type::first-letter {
  font-family: var(--font-display); font-weight: 500;
  float: left; font-size: 78px; line-height: 0.78; padding: 8px 14px 0 0; color: var(--maroon);
}
.intro a, .prose a { color: var(--link); text-decoration: none; border-bottom: var(--border); transition: color .2s, border-color .2s; font-weight: 600; }
.intro a:hover, .prose a:hover { color: var(--link-hover); border-color: var(--link-hover); }

.section-head { text-align: center; margin-bottom: 14px; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
h2 { font-size: var(--fs-h2); color: var(--maroon); line-height: 1.06; }
.section-head h2 { margin: 0 auto; max-width: 18ch; }
.rule { width: var(--rule-w); height: 1px; background: var(--accent); margin: 26px auto 0; }

.prose h3 { font-size: var(--fs-h3); color: var(--ink); font-weight: 500; margin: 0 0 8px; line-height: 1.12; }
.prose p { font-size: var(--fs-body); margin-bottom: 18px; }
.prose .lead-eyebrow { margin-bottom: 12px; display: block; }

/* ----- CHAPTER (alternating experience) ----- */
.chapter { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; padding: 54px 0; border-top: var(--border); }
.chapter.reverse .chapter-media { order: 2; }
.chapter-media { overflow: hidden; }
.chapter-media img { display: block; width: 100%; height: 100%; min-height: 340px; max-height: 440px; object-fit: cover; transition: transform 1.4s var(--ease); }
.chapter:hover .chapter-media img { transform: scale(1.05); }
.chapter-body .eyebrow { display: block; margin-bottom: 14px; }
.chapter-body h3 { font-family: var(--font-display); font-size: 33px; color: var(--ink); font-weight: 500; line-height: 1.08; margin-bottom: 14px; }
.chapter-body p { font-size: 17px; margin-bottom: 20px; color: var(--ink-soft); }
.book-link {
  font-family: var(--font-label); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--maroon);
  text-decoration: none; border-bottom: 1px solid var(--maroon); padding-bottom: 4px;
  transition: color .25s, border-color .25s, letter-spacing .25s;
}
.book-link:hover { color: var(--red); border-color: var(--red); letter-spacing: 0.26em; }

/* ----- booking buttons ----- */
.btn-book {
  display: inline-block; background: var(--maroon); color: var(--buttercream);
  font-family: var(--font-label); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none;
  padding: 13px 28px; border: 1px solid var(--maroon);
  transition: background .25s, border-color .25s, transform .2s;
}
.btn-book:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

/* ----- read-next (copied verbatim from the bachelorette post) ----- */
.read-next { border-left: 3px solid var(--maroon); background: rgba(102,0,0,0.04); padding: 14px 20px; margin: 28px 0; border-radius: 0 6px 6px 0; clear: both; }
.article-body .read-next a { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--maroon) !important; text-decoration: none !important; line-height: 1.3; transition: color 0.2s; margin-bottom: 0; }
.article-body .read-next a:hover { color: var(--red) !important; }
.article-body .read-next a::after { content: ' \2192'; font-weight: 400; margin-left: 4px; }
.article-body .read-next a strong { color: var(--maroon) !important; font-weight: 600; }

/* ----- food tour feature (full-bleed charcoal) ----- */
.feature { position: relative; background: var(--charcoal); color: var(--buttercream); overflow: hidden; display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; }
.feature-media { overflow: hidden; min-height: 460px; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-body { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.feature-body .eyebrow { color: var(--caramel); display: block; margin-bottom: 20px; }
.feature-body h2 { color: var(--buttercream); font-size: clamp(30px,3.4vw,46px); line-height: 1.08; margin-bottom: 18px; font-weight: 300; }
.feature-body h2 em { font-style: italic; color: #fff; }
.feature-body p { font-size: 17px; color: rgba(247,239,218,0.8); font-weight: 300; margin-bottom: 14px; }
.feature-proof { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,239,218,0.7); margin: 10px 0 30px; }
.feature-proof .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.feature-proof .dot { color: rgba(247,239,218,0.3); }
.btn-gold {
  align-self: flex-start; background: var(--gold); color: var(--charcoal);
  font-family: var(--font-label); font-size: 12px; font-weight: 700;
  letter-spacing: var(--track-label); text-transform: uppercase; text-decoration: none;
  padding: 15px 30px; transition: background .25s, transform .2s;
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }

/* ----- promo card (maroon) ----- */
.promo { position: relative; background: var(--maroon); color: var(--buttercream); text-align: center; padding: 46px 36px; overflow: hidden; }
.promo .eyebrow { color: var(--gold); display: block; margin-bottom: 13px; }
.promo h2 { color: var(--buttercream); font-size: clamp(23px,2.8vw,34px); font-weight: 300; line-height: 1.14; max-width: 26ch; margin: 0 auto 11px; }
.promo h2 em { font-style: italic; color: #fff; }
.promo p { font-size: 15px; color: rgba(247,239,218,0.82); font-weight: 300; max-width: 54ch; margin: 0 auto 20px; }
.promo .btn-gold { display: inline-block; padding: 12px 26px; }

/* ----- quote band ----- */
.quote-band { background: var(--buttercream); padding: 90px 32px; text-align: center; }
.quote-band p { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(26px,3.4vw,40px); color: var(--maroon); line-height: 1.25; max-width: 24ch; margin: 0 auto; }
.quote-band .cite { font-family: var(--font-label); font-style: normal; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 22px; }

/* ----- full-bleed chapter divider ----- */
.chapter-divider { position: relative; height: 62vh; min-height: 420px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.chapter-divider .cd-bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: breathe 30s ease-in-out infinite alternate; }
.chapter-divider::after { content: ''; position: absolute; inset: 0; background: rgba(29,36,41,0.42); }
.chapter-divider .cd-text { position: relative; z-index: 2; color: var(--buttercream); }
.chapter-divider .eyebrow { color: var(--caramel); display: block; margin-bottom: 16px; }
.chapter-divider h2 { color: var(--buttercream); font-weight: 300; font-size: clamp(30px,4.6vw,56px); max-width: 18ch; }

/* ----- closing ----- */
.closing { background: var(--charcoal); color: var(--buttercream); text-align: center; padding: 110px 32px; }
.closing .eyebrow { color: var(--caramel); display: block; margin-bottom: 22px; }
.closing h2 { color: var(--buttercream); font-weight: 300; font-size: clamp(34px,5vw,64px); line-height: 1.05; max-width: 16ch; margin: 0 auto 34px; }
.closing-doors { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn-outline { background: transparent; color: var(--buttercream); border: 1px solid rgba(247,239,218,0.4); font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: var(--track-label); text-transform: uppercase; text-decoration: none; padding: 15px 30px; transition: border-color .25s, color .25s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ----- footer ----- */
/* charcoal, centered */
.footer { background: var(--charcoal); color: rgba(247,239,218,0.55); padding: 56px 44px 34px; text-align: center; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 16px; border-bottom: 1px solid rgba(247,239,218,0.1); padding-bottom: 26px; }
.footer-mark { font-family: var(--font-display); font-size: 26px; color: var(--buttercream); letter-spacing: 0.05em; }
.footer-mark span { font-style: italic; }
.footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,239,218,0.6); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 22px; font-size: 12px; letter-spacing: 0.04em; }

/* ----- RESPONSIVE ----- */
@media (max-width: 820px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-reserve) { display: none; }
  .hero { min-height: 70vh; padding: 86px 22px 44px; }   /* shorter hero on phones; top clears the nav, less empty photo above the title */
  .feature { grid-template-columns: 1fr; }
  .feature-media { min-height: 280px; }
  .feature-body { padding: 48px 30px; }
  .chapter { grid-template-columns: 1fr; gap: 24px; padding: 42px 0; }
  .chapter.reverse .chapter-media { order: 0; }
  .chapter-media img { min-height: 240px; }
  .section { padding: 54px 0; }
}

/* ===================================================================
   BLOG-POST COMPONENTS  (the vocabulary the 79 posts are built from)
   Styled in the Resort look, token-driven. These are what phase 3
   rolls out to the live posts.
   =================================================================== */

/* ----- blog nav (always charcoal, sticky) ----- */
.nav.solid { position: sticky; background: var(--charcoal); padding: 16px 44px; }

/* ----- blog hero (.article-header) ----- */
.article-header { background: var(--bg); text-align: center; padding: clamp(64px,9vw,104px) 24px clamp(40px,6vw,72px); border-bottom: var(--border); }
.article-header .breadcrumb { font-family: var(--font-label); font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--maroon); opacity: 0.7; margin-bottom: 22px; }
.article-header h1 { font-family: var(--font-display); font-weight: 300; font-size: var(--fs-h1); line-height: 1.04; color: var(--ink); max-width: 18ch; margin: 0 auto 16px; }
.article-header .meta { font-family: var(--font-label); font-size: 13px; letter-spacing: 0.08em; color: var(--ink-soft); }

/* ----- article body typography (blog posts) ----- */
.article-body { max-width: var(--wrap-article); margin: 0 auto; padding: var(--article-top) 32px 0; }
.article-body > p { font-size: var(--fs-body); margin-bottom: 18px; color: var(--ink-soft); }
/* drop cap: floats so body text wraps to its right, then flows full-width
   under it once you pass its bottom (about line 3). */
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display); font-weight: 600;
  float: left; font-size: var(--dropcap-size); line-height: 0.82; padding: 2px 12px 0 0; color: var(--maroon);
}
/* a leading affiliate disclosure must NEVER get the drop cap (it is not the article body) */
.article-body > p.commission-disclosure:first-of-type::first-letter {
  font-size: inherit; float: none; line-height: inherit; padding: 0; color: inherit; font-weight: inherit;
}
.article-body h2 { font-size: var(--fs-h2); color: var(--maroon); font-weight: 500; line-height: 1.06; margin: 48px 0 6px; }
.article-body h2::after { content: ''; display: block; width: var(--rule-h2); height: 1px; background: var(--accent); margin-top: 20px; margin-bottom: 18px; }
.article-body h2 a, .article-body h3 a { color: var(--red); text-decoration: none; }   /* links in headings stay on-brand red, never default blue */
.article-body h2 a:hover, .article-body h3 a:hover { color: var(--maroon); }
.article-body h3 { font-family: var(--font-display); font-size: var(--fs-h3); color: var(--red); font-weight: 600; line-height: 1.12; margin: 36px 0 8px; }
/* prose links only (NOT component buttons, which are also <a> inside the body) */
.article-body p a, .article-body li a, .article-body blockquote a {
  color: var(--link); text-decoration: none; border-bottom: var(--border); font-weight: 600;
  transition: color .2s, border-color .2s;
}
.article-body p a:hover, .article-body li a:hover, .article-body blockquote a:hover {
  color: var(--link-hover); border-color: var(--link-hover);
}
.article-body ul { margin: 4px 0 18px 22px; }
.article-body li { font-size: var(--fs-body); color: var(--ink-soft); margin-bottom: 4px; line-height: 1.55; }
.article-body li p { margin: 0; }   /* Squarespace wraps list text in <p>; keep bullet spacing tight + uniform */
.article-body blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 24px; margin: 26px 0; }
.article-body blockquote p { font-family: var(--font-display); font-style: normal; font-size: 23px; line-height: 1.4; color: var(--maroon); }

/* ----- read-next eyebrow (verbatim from the bachelorette post) ----- */
.read-next-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--maroon); opacity: 0.55; margin-bottom: 4px; display: block; }

/* ----- food tour showpiece (.allf-banner) -----
   Maroon, photo right, breaks out wider than the text column (a featured moment). */
.allf-banner {
  width: min(var(--banner-width), 94vw); position: relative; left: 50%; transform: translateX(-50%);
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--maroon); color: var(--buttercream); overflow: hidden; margin: 44px 0;
}
.allf-banner-body { padding: 50px 48px; display: flex; flex-direction: column; justify-content: center; }
.allf-banner-eyebrow { font-family: var(--font-label); font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.allf-banner-headline { font-family: var(--font-display); font-weight: 300; font-size: 40px; line-height: 1.08; color: var(--buttercream); margin-bottom: 6px; }
.allf-banner-headline em { font-style: italic; color: #fff; }
.allf-banner-sub { font-family: var(--font-body); font-size: 16px; font-weight: 300; color: rgba(247,239,218,0.85); line-height: 1.5; margin: 8px 0 20px; max-width: 42ch; }
.allf-banner-proof { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--caramel); margin-bottom: 8px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.allf-banner-proof strong { color: var(--buttercream); }
.allf-banner-proof .allf-badge strong { color: var(--gold); }
.allf-stars { color: var(--gold); letter-spacing: 2px; }
.allf-banner-cta { align-self: flex-start; margin-top: 18px; background: var(--gold); color: var(--charcoal); font-family: var(--font-label); font-weight: 700; letter-spacing: var(--track-label); text-transform: uppercase; font-size: 12px; padding: 15px 30px; text-decoration: none; transition: background .25s, transform .2s; }
.allf-banner-cta:hover { background: var(--gold-soft); transform: translateY(-2px); }
.allf-banner-photo { overflow: hidden; }
/* anchor near-left: keep the left side, give ~1% of the right back */
.allf-banner-photo img { height: 100%; width: 100%; object-fit: cover; object-position: center; min-height: 380px; }

/* ----- single experience card (.exp-banner / .exp-banner-multi) ----- */
.exp-banner { display: grid; grid-template-columns: 1.3fr 1fr; background: var(--linen); border: var(--border); border-top: 3px solid var(--maroon); overflow: hidden; margin: 28px 0; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.exp-banner:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.08); }
.exp-banner-body { padding: 30px 32px; }
.exp-banner-eyebrow { font-family: var(--font-label); font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--maroon); margin-bottom: 10px; }
.exp-banner-headline { font-family: var(--font-display); font-weight: 500; font-size: 27px; color: var(--ink); margin-bottom: 10px; line-height: 1.1; }
.exp-banner-desc { font-size: 16px; color: var(--ink-soft); margin-bottom: 16px; }
.exp-banner-cta { display: inline-block; background: var(--maroon); color: var(--buttercream); font-family: var(--font-label); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; padding: 12px 24px; border: 1px solid var(--maroon); text-decoration: none; transition: background .25s, transform .2s; }
.exp-banner-cta:hover { background: var(--red); border-color: var(--red); transform: translateY(-1px); }
.exp-banner-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.exp-banner-photo img { height: 100%; width: 100%; object-fit: cover; min-height: 200px; }
.exp-banner-photo-placeholder { background: var(--hairline); display: flex; align-items: center; justify-content: center; min-height: 200px; font-family: var(--font-display); font-style: italic; color: var(--maroon); }

/* ===================================================================
   CARD  -  ONE component for every card (activities, restaurants, hotels)
   -------------------------------------------------------------------
   Build any card by including only the parts it needs:
     .card-img  /  .card-img-ph     photo  (or gray placeholder + <span>)
     .card-eyebrow                  small tag (neighborhood, "Best for...")
     .card-stars                    optional star rating
     .card-title                    name (an <h3>)
     .card-desc                     description
     .card-btn                      primary maroon button
     .card-also                     "or use your favorite platform"
     .card-pills (a, a)             booking-platform pills (hotels)

   restaurant = img + eyebrow + title + desc + btn
   hotel      = + card-also + card-pills      with stars = + card-stars
   Put cards in a .card-grid (3-up auto; add .cols-2 for two-up).
   =================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--gap-card); margin: 36px 0; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--linen); border: var(--border); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.08); }
.card-img { width: 100%; aspect-ratio: var(--museum-img-ratio); height: auto; object-fit: cover; display: block; }
.card-img-ph { aspect-ratio: var(--museum-img-ratio); background: var(--hairline); display: flex; align-items: center; justify-content: center; }
.card-img-ph span { font-family: var(--font-display); font-style: italic; color: var(--maroon); text-align: center; padding: 0 16px; }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card-eyebrow { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--maroon); margin-bottom: 6px; display: block; }
.card-stars { color: #c9a227; font-size: 13px; letter-spacing: 2px; line-height: 1; margin-bottom: 6px; display: block; }
.card .card-title { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--ink); line-height: 1.12; margin: 0 0 8px; }
.card-desc { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.card-btn { display: block; text-align: center; background: var(--maroon); color: var(--buttercream); font-family: var(--font-label); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; padding: 12px; text-decoration: none; transition: background .25s; }
.card-btn:hover { background: var(--red); }
.card-also { font-size: 12px; color: var(--ink-soft); opacity: 0.65; text-align: center; margin: 8px 0 0; }
/* text-only card (restaurants/places with no photo): a maroon top rule gives it structure
   so it reads as intentional, not a broken/empty card */
.card.card-text { border-top: 3px solid var(--maroon); }
.card.card-text .card-body { padding: 24px 26px 26px; }
.card-pills { display: flex; gap: 8px; margin-top: 8px; }
.card-pills a { flex: 1; text-align: center; font-family: var(--font-label); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 9px 6px; text-decoration: none; border: var(--border); color: var(--ink-soft); transition: border-color .2s, color .2s; }
.card-pills a:hover { border-color: var(--maroon); color: var(--maroon); }
@media (max-width: 820px) { .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; } }

/* ----- free guides signup (.guide-banner) — Guides D: full-bleed photo + maroon overlay, centered ----- */
.guide-banner { position: relative; overflow: hidden; text-align: center; margin: 36px 0; }
.guide-banner-bg { position: absolute; inset: 0; background: url('/images/tour/Nashville-Skyline-Photo.jpeg') 50% 18% / cover no-repeat; }
.guide-banner::after { content: ''; position: absolute; inset: 0; background: rgba(102,0,0,0.60); }
.guide-banner-body { position: relative; z-index: 2; padding: 56px 40px; color: var(--buttercream); }
.guide-banner-eyebrow { font-family: var(--font-label); font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.guide-banner-headline { font-family: var(--font-display); font-weight: 600; font-size: 34px; color: var(--buttercream); margin-bottom: 8px; }
.guide-banner-tags { font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; word-spacing: 0.4em; text-transform: uppercase; color: var(--caramel); margin-bottom: 16px; }
.guide-banner-form { display: flex; gap: 8px; flex-wrap: wrap; max-width: 440px; margin: 6px auto 0; justify-content: center; }
.guide-banner-input { flex: 1; min-width: 180px; padding: 12px 14px; border: 1px solid rgba(247,239,218,0.42); background: rgba(247,239,218,0.12); color: var(--buttercream); font-family: var(--font-label); font-size: 14px; }
.guide-banner-input::placeholder { color: rgba(247,239,218,0.66); }
.guide-banner-btn { background: var(--gold); color: var(--charcoal); font-family: var(--font-label); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; padding: 12px 22px; border: none; cursor: pointer; transition: background .25s, transform .2s; }
.guide-banner-btn:hover { background: var(--gold-soft); transform: translateY(-2px); }
.guide-banner-fine { font-size: 11px; color: rgba(247,239,218,0.78); margin-top: 10px; }
.guide-banner-err { font-size: 11px; color: var(--caramel); min-height: 0; margin: 0; }

/* ----- pill button row (.pill-row) ----- */
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0; }
.pill-btn { font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 11px 22px; border-radius: 999px; border: 1px solid var(--maroon); color: var(--maroon); text-decoration: none; transition: background .2s, color .2s; }
.pill-btn:hover { background: var(--maroon); color: var(--buttercream); }
.pill-btn-primary { background: var(--maroon); color: var(--buttercream); }
.pill-btn-primary:hover { background: var(--red); border-color: var(--red); }

/* ----- local tip callout (.local-tip) ----- */
/* Option B: quiet aside — no box, thin gold left rule, serif-italic maroon text */
.local-tip { border-left: 2px solid var(--gold); padding: 4px 0 4px 22px; margin: 26px 0; }
.local-tip-label { display: block; font-family: var(--font-label); font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--maroon); opacity: 0.7; margin-bottom: 6px; }
.local-tip-text { font-family: var(--font-display); font-style: normal; font-size: 22px; line-height: 1.4; color: var(--maroon); margin: 0; }
.local-tip-text a { color: var(--maroon); font-weight: 600; }

/* ----- author spotlight (.author-spotlight) ----- */
/* styled to match the local tip (option B): quiet aside, no box, gold left rule, serif italic */
.author-spotlight { border-left: 2px solid var(--gold); padding: 4px 0 4px 22px; margin: 26px 0; }
.author-spotlight-eyebrow { display: block; font-family: var(--font-label); font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--maroon); opacity: 0.7; margin-bottom: 6px; }
.author-spotlight-text { font-family: var(--font-display); font-style: normal; font-size: 22px; line-height: 1.4; color: var(--maroon); margin: 0; }
.author-spotlight-text a { color: var(--maroon); font-weight: 600; }

/* ----- table of contents (.toc) ----- */
.toc { background: var(--linen); border: var(--border); border-top: 3px solid var(--maroon); padding: 26px 30px; margin: 28px 0; }
.toc-eyebrow { font-family: var(--font-label); font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--maroon); }
.toc-list { list-style: none; margin: 16px 0 0; padding: 0; columns: 2; }
.toc-list li { margin-bottom: 10px; break-inside: avoid; }
.toc-list a { display: flex; gap: 12px; align-items: baseline; color: var(--ink); text-decoration: none; font-size: 16px; transition: color .2s; }
.toc-list a:hover { color: var(--maroon); }
.toc-num { font-family: var(--font-num); font-size: 16px; font-weight: 700; color: var(--maroon); font-feature-settings: "lnum" 1, "tnum" 1; }

/* ----- end-of-post author bio (.author-bio) — Author A: light card, portrait photo, maroon left rule ----- */
.author-bio { display: flex; gap: 22px; align-items: center; background: var(--linen); border: 1px solid var(--hairline); border-left: 3px solid var(--maroon); padding: 24px 28px; margin: 48px 0 0; }
.author-bio-photo { flex-shrink: 0; width: 124px; height: 158px; overflow: hidden; }   /* portrait, no circle */
.author-bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.author-bio-body { flex: 1; }
.author-bio-eyebrow { display: block; font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--maroon); opacity: 0.75; margin-bottom: 6px; }
.author-bio-name { font-family: var(--font-display); font-size: 24px; color: var(--ink); font-weight: 600; margin: 0 0 6px; }
.author-bio-text { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.author-bio-text a { color: var(--maroon); font-weight: 600; }

/* ----- bottom CTA (.article-cta) — CTA B: maroon, eyebrow, smaller lead + italic, two doors ----- */
.article-cta { background: var(--maroon); color: var(--buttercream); text-align: center; padding: 60px 36px; margin: 48px 0 0; }
.article-cta-eyebrow { display: block; font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.article-cta h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(30px,4.4vw,52px); color: var(--buttercream); margin: 0 auto 18px; max-width: 16ch; line-height: 1.08; }
.article-cta h3 .lead { display: block; font-size: 0.83em; margin-bottom: 0.3em; }
.article-cta h3 em { font-style: italic; color: #fff; }
.article-cta p { font-size: 17px; font-weight: 300; line-height: 1.6; color: rgba(247,239,218,0.82); max-width: 52ch; margin: 0 auto 26px; }
.article-cta-doors { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.article-cta .cta-gold { background: var(--gold); color: var(--charcoal); font-family: var(--font-label); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; padding: 15px 32px; text-decoration: none; transition: background .25s, transform .2s; }
.article-cta .cta-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.article-cta .cta-outline { background: transparent; color: var(--buttercream); border: 1px solid rgba(247,239,218,0.4); font-family: var(--font-label); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; padding: 15px 30px; text-decoration: none; transition: border-color .25s, color .25s; }
.article-cta .cta-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ----- itinerary (vertical timeline) ----- */
.itinerary { margin: 32px 0; }
.itinerary-day { font-family: var(--font-label); font-size: 14px; font-weight: 700; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--maroon); margin: 26px 0 14px; }
.itinerary-list { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--hairline); }
.itinerary-stop { position: relative; padding: 0 0 22px 26px; }
.itinerary-stop:last-child { padding-bottom: 0; }
.itinerary-stop::before { content: ''; position: absolute; left: -7px; top: 3px; width: 11px; height: 11px; background: var(--gold); border: 2px solid var(--bg); }  /* square marker (Resort = no rounded) */
.itinerary-time { display: block; font-family: var(--font-label); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--maroon); opacity: 0.8; margin-bottom: 3px; }
.itinerary-title { font-family: var(--font-display); font-size: 21px; color: var(--ink); font-weight: 500; line-height: 1.15; margin: 0 0 4px; }
.itinerary-title a { color: var(--maroon); text-decoration: none; transition: color .2s; }   /* linked stop = recommendation you can book */
.itinerary-title a:hover { color: var(--red); }
.itinerary-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.itinerary-desc a { color: var(--maroon); font-weight: 600; text-decoration: none; }

/* ----- keep reading / related posts (closing section) ----- */
.keep-reading { margin: 48px 0 0; }
.keep-reading-eyebrow { display: block; font-family: var(--font-label); font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--maroon); opacity: 0.85; margin-bottom: 18px; }
/* option A — card grid */
.kr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--gap-card); }
.kr-card { display: flex; flex-direction: column; background: var(--linen); border: var(--border); text-decoration: none; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.kr-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.08); }
.kr-card img { width: 100%; aspect-ratio: var(--museum-img-ratio); object-fit: cover; display: block; }
.kr-card-title { font-family: var(--font-display); font-size: 18px; color: var(--ink); line-height: 1.2; padding: 14px 16px 16px; transition: color .2s; }
.kr-card:hover .kr-card-title { color: var(--maroon); }
/* option B — compact link list */
.kr-list { list-style: none; margin: 0; padding: 0; }
.kr-list li { border-top: var(--border); }
.kr-list li:last-child { border-bottom: var(--border); }
.kr-list a { display: flex; align-items: baseline; gap: 12px; padding: 13px 2px; color: var(--ink); text-decoration: none; font-family: var(--font-display); font-size: 19px; line-height: 1.3; transition: color .2s; }
.kr-list a::before { content: '\2192'; color: var(--maroon); }
.kr-list a:hover { color: var(--maroon); }

/* ----- TL;DR summary (approved) — faded-maroon panel + maroon top rule, bulleted gist ----- */
.tldr { background: rgba(102,0,0,0.04); border-top: 3px solid var(--maroon); padding: 28px 32px; margin: 30px 0; }
.tldr-label { display: block; font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--maroon); margin-bottom: 14px; }
.tldr ul { margin: 0; padding-left: 20px; }
.tldr li { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 7px; }
.tldr li:last-child { margin-bottom: 0; }

/* ===================================================================
   AUDIT-SURFACED COMPONENTS (added so every used component has an approved home)
   =================================================================== */

/* read-next WITH a description line (keeps the internal link, adds a sentence under it) */
.read-next-desc { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--ink-soft); line-height: 1.5; margin-top: 6px; }
/* a link INSIDE the description renders as a normal inline link, not the big title link */
.article-body .read-next-desc a { font-family: var(--font-body); font-size: inherit; font-weight: 600; color: var(--maroon); border-bottom: var(--border); text-decoration: none; }
.article-body .read-next-desc a::after { content: ""; margin: 0; }
.article-body .read-next-desc a:hover { color: var(--red); border-color: var(--red); }

/* ----- review / testimonial quote (Option B: centered magazine pull, hairline rules) -----
   Long, detailed guest reviews are a brand asset, so the type scales down a touch as the
   quote runs long (.is-long), and never truncates. Three width modes, ONE component:
     .review-quote          inline with the text column (default)
     .review-quote.wide     breaks out to the food-tour banner width (980px)
     .review-quote.full     full-bleed band over a photo (set --rq-photo), charcoal scrim */
/* ALL THREE share one type treatment (the approved Option B: upright Cormorant, weight 400).
   The ONLY thing that changes across tiers is how WIDE the text runs: each wider tier lets the
   quote spread horizontally so a long review takes less vertical space and still reads as one quote. */
.review-quote { text-align: center; max-width: 62ch; margin: 36px auto; padding: 28px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.review-quote p { font-family: var(--font-display); font-style: normal; font-size: 25px; line-height: 1.4; color: var(--maroon); font-weight: 400; margin: 0 auto 14px; }
.review-quote.is-long p { font-size: 22px; line-height: 1.5; }   /* long reviews stay readable */
.review-quote cite { font-family: var(--font-label); font-style: normal; font-weight: 600; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* wide: span the banner width, and the TEXT widens too (wider than default -> shorter) */
.review-quote.wide { width: min(var(--banner-width), 94vw); max-width: none; position: relative; left: 50%; transform: translateX(-50%); padding: 40px 48px; }
.review-quote.wide p { max-width: 74ch; }

/* full: full-bleed band over a breathing photo + charcoal scrim; same upright serif, just
   buttercream. Widest text of all, so even a paragraph-long review stays low and elegant. */
.review-quote.full { width: 100vw; max-width: none; position: relative; left: 50%; transform: translateX(-50%); border: none; padding: clamp(56px, 7vw, 96px) 32px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.review-quote.full .rq-bg { position: absolute; inset: 0; background: var(--rq-photo, var(--charcoal)) center / cover no-repeat; animation: breathe var(--breathe-dur) ease-in-out infinite alternate; }
.review-quote.full::after { content: ''; position: absolute; inset: 0; background: rgba(29,36,41,0.55); }
.review-quote.full p, .review-quote.full cite { position: relative; z-index: 2; color: var(--buttercream); }
.review-quote.full p { font-family: var(--font-display); font-style: normal; font-weight: 600; font-size: clamp(25px, 2.8vw, 34px); line-height: 1.35; max-width: 76ch; }
.review-quote.full.is-long p { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.45; max-width: 78ch; }
.review-quote.full cite { color: var(--caramel); margin-top: 22px; display: block; }

/* card category tags ("Luxury", "Rooftop Pool"): square, restrained, one uniform style
   (replaces the per-color tag-luxury/tag-pool/... variants). Sits inside .card-body. */
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 10px; }
.card-tag { font-family: var(--font-label); font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--maroon); background: rgba(102,0,0,0.06); border: 1px solid var(--hairline); padding: 4px 9px; }

/* comparison table (replaces legacy .tour-table): maroon header, hairline rows, linen zebra */
/* breaks out to the food-tour banner width (same as .allf-banner) */
.compare-table { width: min(var(--banner-width), 94vw); position: relative; left: 50%; transform: translateX(-50%); border-collapse: collapse; margin: 36px 0; font-size: 15px; }
.compare-table th { background: var(--maroon); color: var(--buttercream); font-family: var(--font-label); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-align: left; padding: 12px 14px; }
.compare-table td { border-bottom: var(--border); padding: 12px 14px; color: var(--ink-soft); line-height: 1.5; vertical-align: top; }
.compare-table tbody tr:nth-child(even) { background: var(--linen); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table a { color: var(--maroon); font-weight: 700; text-decoration: none; }   /* on-brand maroon, never default blue */
.compare-table a:hover { color: var(--red); }

/* clear the .exp-banner-multi orphan: real rule (a touch more room before the button row) */
.exp-banner-multi .exp-banner-desc { margin-bottom: 14px; }

/* ----- preserved + utility components (so the approved library is complete) ----- */
.nowrap { white-space: nowrap; }
/* affiliate disclosure: tiny, quiet */
.article-body .commission-disclosure { font-family: var(--font-label); font-size: 11px !important; color: var(--ink-soft) !important; opacity: 0.6; text-align: center !important; font-style: italic !important; margin: 18px auto !important; max-width: 600px !important; line-height: 1.5 !important; }
/* inline article figures + captions (keep alt/captions) */
.article-body figure.image-caption { margin: 26px 0; clear: both; }
.article-body figure.image-caption img { width: 100% !important; max-width: 620px; height: auto; display: block; margin: 0 auto !important; float: none !important; border-radius: 0 !important; }
.article-body figure.image-caption figcaption { font-family: var(--font-label); font-size: 13px; font-style: italic; color: var(--ink-soft); opacity: 0.75; text-align: center; margin: 10px auto 0; max-width: 620px; }
.article-body figure.image-inline { float: right; width: 40%; max-width: 320px; margin: 6px 0 12px 24px; }
.article-body figure.image-inline img { width: 100% !important; border-radius: 0 !important; }
.article-body figure.image-inline figcaption { font-family: var(--font-label); font-size: 12px; font-style: italic; color: var(--ink-soft); opacity: 0.75; margin-top: 8px; }
/* small urgency note under an experience button (card is light, so text is dark) */
.exp-banner-urgency { display: block; margin-top: 8px; font-family: var(--font-label); font-size: 12px; color: var(--ink-soft); opacity: 0.72; font-style: italic; }
/* banner proof separator */
.allf-pipe { color: rgba(247,239,218,0.3); }
/* mobile nav toggle (hamburger) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--buttercream); margin: 5px 0; }
/* TOC real-markup hooks (header + label), styled to match the approved box */
.toc-header { margin-bottom: 14px; padding-bottom: 12px; border-bottom: var(--border); }
.toc-label { flex: 1; }

/* ----- blog component responsive ----- */
@media (max-width: 820px) {
  .allf-banner, .exp-banner, .guide-banner { grid-template-columns: 1fr; }
  .toc-list { columns: 1; }
}
