/* ============================================================
   Slow Pour Co. — theme.css
   Warm, unhurried, third-wave coffee shop.
   Palette + type derived from the sloth logo.
   Layered on top of Bootstrap 5. No background-image URLs live
   here on purpose — those stay inline so they're easy to swap.
   ============================================================ */

:root {
  /* Palette — pulled from the logo */
  --cream:        #FBF6EE;   /* page background */
  --cream-deep:   #F2E7D5;   /* alternating section band */
  --sand:         #E7D8C2;   /* hairlines, soft fills */
  --espresso:     #3B281C;   /* darkest brown — headings, footer */
  --coffee:       #6B4A33;   /* primary brand brown */
  --coffee-deep:  #4F3526;   /* hover/pressed */
  --caramel:      #C99A6B;   /* sloth fur — warm highlight */
  --terracotta:   #C0653E;   /* accent / CTA */
  --terracotta-deep:#A4502E;
  --sage:         #8A977F;   /* soft secondary accent */
  --sage-deep:    #6E7C63;
  --ink:          #2C2017;   /* body text */
  --muted:        #7A6A59;   /* secondary text */

  /* Bootstrap variable overrides */
  --bs-body-bg: var(--cream);
  --bs-body-color: var(--ink);
  --bs-body-font-family: "DM Sans", system-ui, sans-serif;
  --bs-body-font-size: 1.0625rem;
  --bs-body-line-height: 1.7;
  --bs-emphasis-color: var(--espresso);
  --bs-link-color: var(--terracotta-deep);
  --bs-link-hover-color: var(--coffee-deep);
  --bs-border-color: var(--sand);
}

/* ---------- Type ---------- */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Accessibility helpers ---------- */
/* Skip link — hidden until focused, then drops into the top-left */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 1100;
  background: var(--espresso);
  color: #fff;
  padding: 0.65rem 1.1rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* Skip target shouldn't paint a focus ring when jumped to */
#main-content:focus,
#main-content:focus-visible { outline: none; }

/* Visible keyboard focus for custom interactive elements (low specificity) */
:where(a, button, input, select, textarea, .g-item, [tabindex]):focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: "Fraunces", Georgia, serif;
  color: var(--espresso);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  font-optical-sizing: auto;
}

.display-1, .display-2, .display-3, .display-4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.eyebrow {
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracotta-deep); /* 5.2:1 on cream/white — AA for small text */
}

.lead {
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
}

.text-coffee   { color: var(--coffee) !important; }
.text-espresso { color: var(--espresso) !important; }
.text-terracotta { color: var(--terracotta) !important; }
.text-sage     { color: var(--sage-deep) !important; }
.text-cream    { color: var(--cream) !important; }
.text-muted-warm { color: var(--muted) !important; }

.bg-cream      { background-color: var(--cream) !important; }
.bg-cream-deep { background-color: var(--cream-deep) !important; }
.bg-espresso   { background-color: var(--espresso) !important; }
.bg-coffee     { background-color: var(--coffee) !important; }
.bg-sage-soft  { background-color: #E8EBE2 !important; }

/* ---------- Navbar ---------- */
/* Center the CMS-generated <ul class="navbar-nav"> within the flex toolbar */
.sp-nav .navbar-nav { margin-left: auto; margin-right: auto; }

.navbar.sp-nav {
  background-color: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow .5s ease, background-color .5s ease;
  min-height: 76px;
}
.navbar.sp-nav.scrolled {
  box-shadow: 0 6px 24px rgba(59, 40, 28, 0.08);
}
/* Fixed nav: offset page content everywhere except the home hero, which sits behind it */
body:not(#home) { padding-top: 76px; }
html { scroll-padding-top: 76px; }
.sp-nav .navbar-brand img { height: 42px; width: auto; display: block; }
.sp-nav .navbar-brand .brand-light { display: block; }
.sp-nav .navbar-brand .brand-dark  { display: none; }
.sp-nav .navbar-toggler i { color: var(--espresso); }
.sp-nav .nav-link {
  font-weight: 500;
  color: var(--espresso);
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}
.sp-nav .nav-link:hover { color: var(--terracotta); }
.sp-nav .nav-link.active { color: var(--terracotta); }
.sp-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.35rem;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  border-radius: 0;
  padding: 0.72rem 1.6rem;
  letter-spacing: 0.01em;
  transition: transform .12s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: scale(0.97); }

.btn-coffee {
  background-color: var(--terracotta);
  border: 1px solid var(--terracotta);
  color: #fff;
}
.btn-coffee:hover, .btn-coffee:focus {
  background-color: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  color: #fff;
}
.btn-espresso {
  background-color: var(--espresso);
  border: 1px solid var(--espresso);
  color: var(--cream);
}
.btn-espresso:hover, .btn-espresso:focus {
  background-color: #271a12;
  color: var(--cream);
}
.btn-outline-cream {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.8);
  color: #fff;
}
.btn-outline-cream:hover {
  background: #fff;
  color: var(--espresso);
}
.btn-outline-coffee {
  background: transparent;
  border: 1.5px solid var(--coffee);
  color: var(--coffee);
}
.btn-outline-coffee:hover {
  background: var(--coffee);
  color: #fff;
}

/* ---------- Hero ---------- */
.sp-hero {
  position: relative;
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}
.sp-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,26,17,0.30) 0%, rgba(40,26,17,0.55) 60%, rgba(40,26,17,0.78) 100%);
}
.sp-hero > .container { position: relative; z-index: 2; }
.sp-hero h1 { color: #fff; }

/* ---------- Page banner ---------- */
.sp-banner {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}
.sp-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,26,17,0.30), rgba(40,26,17,0.62));
}
.sp-banner > .container { position: relative; z-index: 2; }
.sp-banner h1 { color: #fff; }

/* ---------- Cards ---------- */
.sp-card {
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(59,40,28,0.12);
}
.sp-card .ratio { background: var(--cream-deep); }
.sp-card img { object-fit: cover; }

/* Featured / round-ish item image */
.sp-feature-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  border-radius: 0;
}

/* ---------- Menu item rows ---------- */
.menu-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.menu-item .thumb {
  width: 104px; height: 84px; flex: 0 0 104px;
  border-radius: 0; object-fit: cover;
  background: var(--cream-deep);
}
.menu-item .item-head {
  display: flex; align-items: baseline; gap: .6rem;
  border-bottom: 1px dotted var(--sand);
  padding-bottom: .25rem; margin-bottom: .35rem;
}
.menu-item .item-name { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.18rem; color: var(--espresso); }
/* Leader dots drawn as a repeating radial-gradient (not border-bottom) so the
   gap between dots is controllable. background-size width = dot + gap period;
   3px gives ~1px dots on ~2px gaps — double the spacing of a 1px dotted border. */
.menu-item .dots {
  flex: 1 1 auto;
  height: 1px;
  transform: translateY(-4px);
  background-image: radial-gradient(circle, var(--caramel) 0.5px, transparent 0.5px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.menu-item .price { font-weight: 600; color: var(--terracotta-deep); white-space: nowrap; }
.menu-item .desc { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ---------- Section helpers ---------- */
.section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.section-tight { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.maxw-prose { max-width: 720px; }

.rule-leaf {
  display: inline-block; width: 56px; height: 2px;
  background: var(--caramel); vertical-align: middle;
}

/* Values / icon cards */
.value-card {
  background: #fff; border: 1px solid var(--sand);
  border-radius: 0; padding: 2rem 1.75rem; height: 100%;
}
.value-card .ic {
  width: 56px; height: 56px; border-radius: 0;
  display: grid; place-items: center; font-size: 1.5rem;
  background: #E8EBE2; color: var(--sage-deep); margin-bottom: 1.1rem;
}

/* Testimonials */
.testimonial {
  background: #fff; border: 1px solid var(--sand);
  border-radius: 0; padding: 2rem; height: 100%;
}
.testimonial .stars { color: var(--terracotta); letter-spacing: 2px; }
.testimonial .quote { font-family: "Fraunces", serif; font-size: 1.18rem; color: var(--espresso); line-height: 1.5; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--caramel); color:#fff; display:grid; place-items:center;
  font-weight:600; font-family:"DM Sans",sans-serif;
}

/* Team */
.team-card img { aspect-ratio: 6/7; object-fit: cover; width: 100%; border-radius: 0; }

/* CTA band */
.cta-band {
  background: var(--espresso);
  color: var(--cream);
  border-radius: 0;
}
.cta-band h2, .cta-band h3 { color: #fff; }

/* Footer */
.sp-footer { background: var(--espresso); color: #D8C7B5; }
.sp-footer a { color: #D8C7B5; text-decoration: none; }
.sp-footer a:hover { color: #fff; }
.sp-footer .footer-logo { height: 60px; }
.sp-footer .social-link {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.22); color: #D8C7B5;
  transition: background-color .2s ease, color .2s ease;
}
.sp-footer .social-link:hover { background: var(--terracotta); border-color: var(--terracotta); color:#fff; }

/* Forms */
.form-control, .form-select {
  border-radius: 0;
  border: 1px solid var(--sand);
  padding: 0.8rem 1rem;
  background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px rgba(201,154,107,0.25);
}
.form-label { font-weight: 600; color: var(--espresso); }

/* Info list (visit page) */
.info-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--sand); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 0;
  background: #E8EBE2; color: var(--sage-deep);
  display: grid; place-items: center; font-size: 1.25rem;
}
.hours-row { display:flex; justify-content:space-between; padding:.35rem 0; border-bottom:1px dotted var(--sand); }
.hours-row:last-child { border-bottom:0; }

/* Gallery */
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 16px; border-radius: 0; overflow: hidden; display:block; }
.gallery-grid img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.04); }
@media (max-width: 991px) { .gallery-grid { columns: 2; } }
@media (max-width: 575px) { .gallery-grid { columns: 1; } }

/* Decorative steam dots for section eyebrows */
.brew-divider { display:flex; align-items:center; gap:.75rem; color:var(--caramel); }
.brew-divider .line { height:1px; background:var(--sand); flex:1 1 auto; }

/* Map */
.map-wrap { border-radius: 0; overflow: hidden; border: 1px solid var(--sand); }
.map-wrap iframe { display:block; width:100%; border:0; }

@media (max-width: 767px) {
  .sp-hero { min-height: 80vh; }
  .section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .menu-item .thumb { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}


/* ===== Torn-paper edges (cream SVG strip overlaid at section seams) ===== */
.paper-edge {
  position: absolute; left: 0; width: 100%; z-index: 5;
  pointer-events: none; display: block;
}
.paper-edge--bottom { bottom: -1px; }
.paper-edge--top    { top: -1px; transform: scaleY(-1); }


/* ============================================================
   BARISTA-STYLE HOME  (index.html only — body#home)
   ============================================================ */

/* ---- Transparent hero nav on home, solid on scroll ---- */
body#home .sp-nav { background-color: rgba(0,0,0,0.3); backdrop-filter: none; border-bottom: 1px solid rgba(255,255,255,0.14); }
body#home .sp-nav .nav-link { color: #F3E9D9; }
body#home .sp-nav .nav-link:hover { color: var(--caramel); }
body#home .sp-nav .navbar-brand .brand-dark  { display: block; }
body#home .sp-nav .navbar-brand .brand-light { display: none; }
body#home .sp-nav .navbar-toggler i { color: #fff !important; }
body#home .sp-nav.scrolled { background-color: rgba(251,246,238,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--sand); }
body#home .sp-nav.scrolled .nav-link { color: var(--espresso); }
body#home .sp-nav.scrolled .nav-link:hover { color: var(--terracotta); }
body#home .sp-nav.scrolled .navbar-brand .brand-dark  { display: none; }
body#home .sp-nav.scrolled .navbar-brand .brand-light { display: block; }
body#home .sp-nav.scrolled .navbar-toggler i { color: var(--espresso) !important; }
body#home .sp-nav.scrolled .navbar-toggler i { color: var(--espresso) !important; }

/* ---- Hero slider ---- */
.hero-slider { position: relative; min-height: 100vh; background: #1c130d; overflow: hidden; color: #fff; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease-out; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slider::after {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(180deg, rgba(20,13,8,0.55) 0%, rgba(20,13,8,0.35) 45%, rgba(20,13,8,0.78) 100%);
}
.hero-inner { position: relative; z-index: 4; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 7rem 1rem 5rem; }
.hero-inner h1 { color: #fff; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hero-inner .hero-sub { color: rgba(255,255,255,0.82); font-style: italic; font-family: "Fraunces", serif; font-size: 1.25rem; max-width: 34rem; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; font-size: 1.3rem;
  transition: background-color .2s ease, border-color .2s ease;
}
.hero-arrow:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.hero-arrow.prev { left: 2.5%; } .hero-arrow.next { right: 2.5%; }
.hero-dots { position: absolute; bottom: 56px; left: 0; right: 0; z-index: 5; display: flex; gap: 6px; justify-content: center; }
/* 24x24 hit area (WCAG 2.5.8) with the 9px dot drawn via ::before */
.hero-dots button { width: 24px; height: 24px; border: 0; padding: 0; background: transparent; cursor: pointer; display: grid; place-items: center; }
.hero-dots button::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.45); transition: background-color .2s, transform .2s; }
.hero-dots button.active::before { background: var(--caramel); transform: scale(1.25); }

/* Slideshow play/pause toggle (WCAG 2.2.2) */
.hero-playpause {
  position: absolute; bottom: 50px; right: 2.5%; z-index: 6;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; font-size: 1.05rem;
  cursor: pointer; transition: background-color .2s ease, border-color .2s ease;
}
.hero-playpause:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

/* ---- Circular rotating emblem ---- */
.emblem { width: 151px; height: 151px; position: relative; }
.emblem .ring-text { width: 100%; height: 100%; animation: emblem-spin 22s linear infinite; }
.emblem .ring-text text { fill: #fff; font-family: "DM Sans", sans-serif; font-size: 9.2px; letter-spacing: 2px; text-transform: uppercase; }
.emblem .center { position: absolute; inset: 0; display: grid; place-items: center; color: var(--caramel); font-size: 1.9rem; }
.emblem .center img { width: 100px; height: auto; display: block; }
.emblem.dark .ring-text text { fill: var(--espresso); }
.emblem.dark .center { color: var(--terracotta); }
@keyframes emblem-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .emblem .ring-text { animation: none; } }

/* ---- Section eyebrow (script-ish italic) ---- */
/* On light backgrounds the caramel eyebrow failed contrast (~2.4:1); terracotta-deep
   reads ~5.2:1. Dark-background eyebrows override this inline (caramel/cream). */
.eyebrow-script { font-family: "Fraunces", serif; font-style: italic; font-weight: 500; color: var(--terracotta-deep); font-size: 1.15rem; letter-spacing: .01em; }
.heading-spaced { text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.divider-dot { display:flex; align-items:center; justify-content:center; gap:.6rem; margin-top:.9rem; }
.divider-dot::before, .divider-dot::after { content:""; height:1px; width:46px; background:var(--caramel); opacity:.6; }
.divider-dot i { color: var(--caramel); font-size:.7rem; }
.divider-dot img { height: 28px; width: auto; display: block; }

/* ---- Booking bar ---- */
.book-bar { background:#fff; border:1px solid var(--sand); border-radius:0; box-shadow: var(--shadow-sm); padding:.6rem; }
.book-field { display:flex; align-items:center; gap:.6rem; padding:.5rem .9rem; border-right:1px solid var(--border-soft); }
.book-field i { color: var(--caramel); font-size:1.1rem; }
.book-field select, .book-field input { border:0; outline:0; background:transparent; font-family:"DM Sans",sans-serif; color:var(--espresso); font-weight:500; width:100%; }
.book-bar .btn { white-space:nowrap; }
@media (max-width: 767px){ .book-field { border-right:0; border-bottom:1px solid var(--border-soft); } }

/* ---- Numbered feature cards ---- */
.num-card .num-img { position: relative; border-radius: 0; overflow: hidden; }
.num-card .num-img img { width:100%; aspect-ratio: 3/2; object-fit: cover; display:block; transition: transform .5s ease-out; }
.num-card:hover .num-img img { transform: scale(1.05); }
.num-card .num { font-family:"Fraunces",serif; font-size:2.6rem; font-weight:600; color:var(--caramel); line-height:1; }
.num-card .num-title { font-family:"Fraunces",serif; font-weight:600; text-transform:uppercase; letter-spacing:.04em; font-size:1.18rem; color:var(--espresso); }
.read-more { font-family:"DM Sans",sans-serif; font-weight:700; text-transform:uppercase; letter-spacing:.12em; font-size:.78rem; color:var(--terracotta); text-decoration:none; display:inline-flex; align-items:center; gap:.5rem; }
.read-more:hover { color:var(--coffee-deep); }
.read-more i { transition: transform .2s ease; }
.read-more:hover i { transform: translateX(4px); }

/* ---- Dark application band ---- */
.app-band { position: relative; background-size: cover; background-position: center; color:#fff; }
.app-band::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(20,13,8,0.85) 0%, rgba(20,13,8,0.55) 55%, rgba(20,13,8,0.35) 100%); z-index:1; }
.app-band > .container { position: relative; z-index: 2; }
.app-band h2 { color:#fff; }

/* ---- Line-icon feature row ---- */
.icon-feature { text-align:center; }
.icon-feature .ic { width:84px; height:84px; margin:0 auto 1.1rem; border:1px solid var(--sand); border-radius:50%; display:grid; place-items:center; color:var(--caramel); font-size:2rem; transition: background-color .25s, color .25s, border-color .25s; }
.icon-feature:hover .ic { background: var(--terracotta); border-color: var(--terracotta); color:#fff; }
.icon-feature .t { font-family:"Fraunces",serif; font-weight:600; text-transform:uppercase; letter-spacing:.05em; font-size:1.05rem; color:var(--espresso); }

/* ---- Tan promo block ---- */
.promo-block { background: var(--caramel); color:#3b2a1a; }
.promo-block h2 { color:#3b2a1a; text-transform:uppercase; letter-spacing:.04em; }
.promo-block .read-more { color:#3b2a1a; }
.promo-block .read-more:hover { color:#fff; }
.promo-img img { width:100%; height:100%; object-fit:cover; display:block; }

/* ---- Footer hours rows (dotted) for home footer variant ---- */
.foot-hours .row-h { display:flex; align-items:center; gap:.5rem; padding:.3rem 0; }
.foot-hours .row-h .lbl { color:#D8C7B5; } .foot-hours .row-h .val { color:#fff; font-weight:600; }
.foot-hours .row-h .lead-dots { flex:1 1 auto; border-bottom:1px dotted rgba(255,255,255,0.25); }

/* ---- Contact page ---- */
.contact-card {
  background: #fff; border: 1px solid var(--sand); padding: 2.25rem 1.75rem;
  height: 100%; text-align: center;
  transition: box-shadow var(--dur, .22s) ease, transform var(--dur, .22s) ease;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-card .ic {
  width: 64px; height: 64px; margin: 0 auto 1.1rem;
  display: grid; place-items: center; font-size: 1.6rem;
  background: #E8EBE2; color: var(--sage-deep);
}
.contact-card .label {
  font-family: "Fraunces", serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  font-size: 1.05rem; color: var(--espresso); margin-bottom: .35rem;
}
.contact-card a { color: var(--coffee); text-decoration: none; font-weight: 600; }
.contact-card a:hover { color: var(--espresso); text-decoration: underline; }

.faq .accordion-item { background: #fff; border: 1px solid var(--sand); border-radius: 0; margin-bottom: .9rem; }
.faq .accordion-button {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1.15rem;
  color: var(--espresso); background: #fff; border-radius: 0; padding: 1.25rem 1.4rem;
}
.faq .accordion-button:not(.collapsed) { color: var(--espresso); background: #FBF6EE; box-shadow: none; }
.faq .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(201,154,107,.35); border-color: var(--caramel); }
.faq .accordion-button::after {
  background-image: none; content: "\F64D"; font-family: "bootstrap-icons";
  width: auto; height: auto; color: var(--caramel); font-size: 1rem; transition: transform var(--dur, .22s) ease;
}
.faq .accordion-body { padding: 22px 1.4rem 1.4rem; color: var(--coffee); }

.contact-note { background-size: cover; background-position: center; }
