/* ==========================================================================
   Black Swan Coffee Cart — site.css
   One stylesheet for every page. Palette is taken from the logo:
   ink black, cream paper, cherry red, olive leaf, antique gold.
   Type: Zilla Slab (display) + Libre Franklin (text).
   ========================================================================== */

:root {
  --paper:    #F4ECDF;
  --paper-2:  #EBE0CC;
  --card:     #FFFCF6;
  --ink:      #16130F;
  --ink-2:    #3B342D;
  --muted:    #675C53;
  --rule:     #D6C7AC;
  --rule-2:   #C4B292;
  --cherry:   #B3262B;
  --cherry-2: #8F1D22;
  --olive:    #4E5F36;
  --gold:     #A9843A;
  --gold-text:#75581B;
  --gold-2:   #C9A55C;
  --on-ink:   #F4ECDF;
  --on-ink-2: rgba(244,236,223,0.78);
  --f-display: "Zilla Slab", "Rockwell", "Roboto Slab", Georgia, serif;
  --f-text:    "Libre Franklin", "Franklin Gothic Medium", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(1.1rem, 4vw, 2.25rem);
  --wrap: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: 1.04rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cherry-2); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--cherry); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; color: var(--ink); }
p { max-width: 68ch; }
::selection { background: var(--gold-2); color: var(--ink); }

/* Buttons ---------------------------------------------------------------- */
.btn, .nav-cta {
  display: inline-block;
  font-family: var(--f-text);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #fff !important;
  background: var(--cherry);
  border: 2px solid var(--cherry);
  border-radius: 3px;
  padding: 0.85rem 1.7rem;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover, .nav-cta:hover { background: var(--cherry-2); border-color: var(--cherry-2); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink) !important; border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper) !important; border-color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Eyebrow / ornaments ---------------------------------------------------- */
.eyebrow, .hero-tag, .state-label {
  max-width: none;
  font-family: var(--f-text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.eyebrow::before, .hero-tag::before { content: "\2726\00a0\00a0"; color: var(--gold); }
.gold-rule { display: flex; align-items: center; gap: 0.75rem; color: var(--gold); font-size: 0.8rem; }
.gold-rule::before, .gold-rule::after { content: ""; flex: 1; height: 1px; background: var(--rule-2); }

/* Nav -------------------------------------------------------------------- */
.site-nav { background: var(--paper); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 50; }
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 0.6rem var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--f-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); text-decoration: none; letter-spacing: -0.01em; white-space: nowrap; }
.nav-brand img { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; overflow-x: auto; scrollbar-width: none; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--ink-2); text-decoration: none; white-space: nowrap; }
.nav-links a:hover { color: var(--cherry); }
.nav-links .nav-cta { padding: 0.5rem 1.05rem; font-size: 0.88rem; }
@media (max-width: 640px) {
  .nav-inner { padding: 0.5rem 0.9rem; gap: 0.6rem; }
  .nav-brand span { display: none; }
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.82rem; }
  .nav-links .nav-cta { flex: none; padding: 0.45rem 0.75rem; font-size: 0.8rem; }
}
@media (max-width: 350px) {
  .nav-links a[href="/campuses/"] { display: none; }
}

/* Inner-page hero (ink band) --------------------------------------------- */
.hero { background: var(--ink); color: var(--on-ink); padding: clamp(3.2rem, 8vw, 5.5rem) var(--pad) clamp(2.8rem, 7vw, 4.5rem); text-align: center; position: relative; }
.hero::after { content: ""; display: block; height: 4px; background: linear-gradient(90deg, var(--cherry) 0 33.3%, var(--gold) 33.3% 66.6%, var(--olive) 66.6%); position: absolute; left: 0; right: 0; bottom: 0; }
.hero .hero-tag { color: var(--gold-2); margin-bottom: 1.1rem; }
.hero h1 { color: var(--on-ink); font-size: clamp(2rem, 5.2vw, 3.3rem); max-width: 20ch; margin: 0 auto 1.1rem; }
.hero-sub { color: var(--on-ink-2); font-size: clamp(1.02rem, 2vw, 1.15rem); max-width: 58ch; margin: 0 auto 1.9rem; }
.hero-meta { color: var(--on-ink-2); font-size: 0.9rem; margin: -0.6rem auto 1.8rem; }
.hero-meta span { margin: 0 0.7rem; color: var(--gold-2); }
.hero .btn { margin-top: 0.25rem; }

/* Breadcrumb ------------------------------------------------------------- */
.breadcrumb { max-width: var(--wrap); margin: 0 auto; padding: 1.2rem var(--pad) 0; font-size: 0.84rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--cherry); text-decoration: underline; }

/* Content ---------------------------------------------------------------- */
.content { max-width: 800px; margin: 0 auto; padding: 1.5rem var(--pad) 3rem; }
.content h2 { font-size: clamp(1.45rem, 3vw, 1.8rem); margin: 2.4rem 0 0.8rem; }
.content h2:first-child { margin-top: 1.4rem; }
.content h3 { font-size: 1.15rem; margin: 1.8rem 0 0.6rem; }
.content p { color: var(--ink-2); margin-bottom: 1.15rem; }
.content ul, .content ol { color: var(--ink-2); margin: 0 0 1.15rem 1.3rem; }
.content li { margin-bottom: 0.35rem; }
.travel-badge, .local-flavor {
  display: block;
  background: var(--card);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--olive);
  border-radius: 0 4px 4px 0;
  padding: 0.95rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.97rem;
  color: var(--ink-2);
}
.local-flavor { border-left-color: var(--gold); font-style: italic; }

/* Tag clouds (venues, events, services) ---------------------------------- */
.venue-grid, .event-grid { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1rem 0 2rem; }
.venue-tag, .event-tag, .service-tag {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.event-tag { background: var(--paper-2); border-color: var(--rule-2); }
.service-tag { border-left: 3px solid var(--gold); }

/* Card grids (index pages) ----------------------------------------------- */
.state-section { margin: 2.2rem 0 0; }
.state-section h2 { font-size: 1.5rem; margin-bottom: 0.9rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--ink); display: inline-block; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 0.65rem; margin-bottom: 1rem; }
.area-card { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; padding: 0.8rem 1rem; background: var(--card); border: 1px solid var(--rule); border-radius: 3px; text-decoration: none; color: var(--ink); transition: border-color .15s, transform .15s; }
.area-card:hover { border-color: var(--cherry); transform: translateY(-1px); }
.area-city { font-weight: 600; }
.area-distance { font-size: 0.78rem; color: var(--muted); font-variant-numeric: tabular-nums; }

.campus-grid, .service-grid, .city-grid { display: grid; gap: 0.9rem; margin: 1.4rem 0 2.4rem; }
.campus-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.service-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; }
.city-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 0.6rem; }
.campus-card, .service-card, .city-link { display: block; background: var(--card); border: 1px solid var(--rule); border-radius: 3px; text-decoration: none; color: var(--ink); transition: border-color .15s, transform .15s; }
.campus-card:hover, .service-card:hover, .city-link:hover { border-color: var(--cherry); transform: translateY(-2px); }
.campus-card { padding: 1.15rem 1.3rem; }
.campus-card h3 { font-size: 1.12rem; margin-bottom: 0.3rem; }
.campus-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.service-card { padding: 1.6rem 1.5rem; border-top: 4px solid var(--cherry); }
.service-card:nth-child(2) { border-top-color: var(--gold); }
.service-card:nth-child(3) { border-top-color: var(--olive); }
.service-card h3 { font-size: 1.32rem; margin-bottom: 0.55rem; }
.service-card p { font-size: 0.95rem; color: var(--ink-2); margin: 0; }
.city-link { padding: 0.7rem 0.9rem; font-size: 0.9rem; text-align: center; font-weight: 500; }

/* FAQ -------------------------------------------------------------------- */
.faq { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: clamp(2.5rem, 6vw, 3.8rem) var(--pad); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq h2 { font-size: clamp(1.45rem, 3vw, 1.8rem); margin-bottom: 1.6rem; }
.faq-item { padding: 1.1rem 0; border-top: 1px solid var(--rule-2); }
.faq-item:last-child { border-bottom: 1px solid var(--rule-2); }
.faq-item h3 { font-family: var(--f-text); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.faq-item p { font-size: 0.97rem; color: var(--ink-2); }

/* Nearby / cross-links --------------------------------------------------- */
.nearby { max-width: 800px; margin: 0 auto; padding: 2.2rem var(--pad) 0.5rem; }
.nearby:last-of-type { padding-bottom: 3rem; }
.nearby h2 { font-size: 1.15rem; font-family: var(--f-text); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.nearby-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.nearby-link { display: inline-block; padding: 0.5rem 0.95rem; background: var(--card); border: 1px solid var(--rule); border-radius: 3px; font-size: 0.9rem; color: var(--ink-2); text-decoration: none; transition: border-color .15s, color .15s; }
.nearby-link:hover { border-color: var(--cherry); color: var(--cherry); }

/* Closing CTA band ------------------------------------------------------- */
.cta-section { background: var(--ink); color: var(--on-ink); text-align: center; padding: clamp(3rem, 7vw, 4.5rem) var(--pad); position: relative; }
.cta-section::before { content: ""; display: block; height: 4px; background: linear-gradient(90deg, var(--olive) 0 33.3%, var(--gold) 33.3% 66.6%, var(--cherry) 66.6%); position: absolute; left: 0; right: 0; top: 0; }
.cta-section h2 { color: var(--on-ink); font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0 auto 0.8rem; max-width: 22ch; }
.cta-section p { color: var(--on-ink-2); margin: 0 auto 1.8rem; font-size: 1.05rem; }

/* Footer ----------------------------------------------------------------- */
footer, .site-footer { background: var(--ink); color: var(--on-ink-2); font-size: 0.9rem; }
.site-footer { border-top: 1px solid rgba(244,236,223,0.12); }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 2.6rem var(--pad) 2.2rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-brand { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; color: var(--on-ink); margin-bottom: 0.5rem; }
.footer-inner p { color: var(--on-ink-2); max-width: 36ch; }
.footer-inner h4 { color: var(--gold-2); font-family: var(--f-text); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.7rem; }
.footer-inner ul { list-style: none; }
.footer-inner li { margin-bottom: 0.4rem; }
.footer-inner a, footer a { color: var(--on-ink); text-decoration: none; }
.footer-inner a:hover, footer a:hover { color: var(--gold-2); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(244,236,223,0.12); text-align: center; padding: 1.1rem var(--pad); font-size: 0.8rem; color: var(--on-ink-2); }
/* legacy single-line footers on inner pages */
footer > p { text-align: center; padding: 1.6rem var(--pad); }
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ==========================================================================
   Homepage
   ========================================================================== */
.home-hero { padding: clamp(1.5rem, 4vw, 3rem) var(--pad) clamp(2.5rem, 5vw, 3.5rem); }
.flash-frame {
  max-width: var(--wrap); margin: 0 auto;
  border: 3px double var(--gold);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  position: relative; background: var(--paper);
}
.flash-frame::before, .flash-frame::after {
  content: "\2726"; position: absolute; color: var(--gold); font-size: 1.1rem; line-height: 1;
  background: var(--paper); padding: 0 0.4rem;
}
.flash-frame::before { top: -0.7rem; left: 1.5rem; }
.flash-frame::after { bottom: -0.7rem; right: 1.5rem; }
.home-hero .eyebrow { margin-bottom: 1rem; }
.home-hero h1 { font-size: clamp(2.5rem, 6.2vw, 4.4rem); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 1.1rem; max-width: 14ch; }
.home-hero h1 em { font-style: normal; color: var(--cherry); }
.home-hero .lede { font-size: clamp(1.05rem, 2.1vw, 1.22rem); color: var(--ink-2); max-width: 44ch; margin-bottom: 1.7rem; }
.home-hero .btn-row { margin-bottom: 1.6rem; }
.hero-art { display: flex; justify-content: center; }
.hero-art img { width: min(100%, 420px); filter: drop-shadow(0 12px 24px rgba(22,19,15,0.12)); }
.covers { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; font-size: 0.88rem; color: var(--muted); list-style: none; }
.covers li::before { content: "\2726"; color: var(--gold); margin-right: 0.45rem; font-size: 0.7rem; }
@media (max-width: 820px) {
  .flash-frame { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { width: min(70%, 300px); }
  .home-hero h1 { max-width: none; }
}

.section { max-width: var(--wrap); margin: 0 auto; padding: clamp(2.8rem, 6vw, 4.5rem) var(--pad); }
.section-head { margin-bottom: 1.8rem; max-width: 62ch; }
.section-head h2 { font-size: clamp(1.7rem, 3.8vw, 2.4rem); margin: 0.5rem 0 0.6rem; }
.section-head p { color: var(--ink-2); font-size: 1.05rem; }
.band { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.included { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0; border: 1px solid var(--rule); background: var(--card); }
.inc { padding: 1.5rem 1.4rem 1.6rem; border-right: 1px solid var(--rule); }
.inc:last-child { border-right: 0; }
.inc .k { display: block; font-family: var(--f-display); font-size: 1.9rem; font-weight: 700; color: var(--cherry); line-height: 1; margin-bottom: 0.7rem; }
.inc h3 { font-family: var(--f-text); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.inc p { font-size: 0.93rem; color: var(--ink-2); }
@media (max-width: 720px) { .inc { border-right: 0; border-bottom: 1px solid var(--rule); } .inc:last-child { border-bottom: 0; } }

.where-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.where-card { display: block; background: var(--card); border: 1px solid var(--rule); border-top: 4px solid var(--cherry); padding: 1.5rem 1.4rem 1.4rem; text-decoration: none; color: var(--ink); transition: transform .15s, border-color .15s; }
.where-card:nth-child(2) { border-top-color: var(--gold); }
.where-card:nth-child(3) { border-top-color: var(--olive); }
.where-card:hover { transform: translateY(-2px); border-color: var(--rule-2); }
.where-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.where-card p { font-size: 0.95rem; color: var(--ink-2); margin-bottom: 0.9rem; }
.where-card .go { font-weight: 700; color: var(--cherry-2); font-size: 0.92rem; }
.city-strip { margin-top: 1.6rem; font-family: var(--f-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); line-height: 2; text-align: center; }
.city-strip span { color: var(--gold); margin: 0 0.5rem; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem 2rem; }
.step { counter-increment: step; position: relative; padding-top: 0.4rem; }
.step::before { content: counter(step, decimal-leading-zero); font-family: var(--f-display); font-weight: 700; font-size: 2.6rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 0.6rem; }
.step h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.97rem; color: var(--ink-2); }

.faq-list { max-width: 760px; }
.faq-list .faq-item h3 { font-size: 1.08rem; }

.quote-panel { background: var(--card); border: 1px solid var(--rule); border-top: 4px solid var(--cherry); padding: 1.1rem; box-shadow: 0 18px 40px -28px rgba(22,19,15,0.45); min-height: 480px; position: relative; }
.quote-panel::before { content: "Loading the quote form\2026"; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); text-align: center; color: var(--muted); font-size: 0.95rem; }
.quote-panel iframe { display: block; position: relative; z-index: 1; background: #fff; }
.quote-panel noscript { position: relative; z-index: 1; display: block; background: var(--card); }
.quote-note { margin-top: 0.9rem; font-size: 0.86rem; color: var(--muted); text-align: center; }
.quote-note a { color: var(--cherry-2); }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } html { scroll-behavior: auto; } }
