/* ============================================================
   8888 MASTERS — TEMPLATE B
   Builds on Template A's visual system (loaded first via
   template-a.css). Adds the single-region OPERATOR information
   architecture from competitor research:
     - benefit-framed differentiator band (Kiawah)
     - browse the portfolio by 3 axes: cluster / occasion / collection
     - an "8888 Signature" curated tier (Paradise's 100 Collection)
     - an elevated "Explore Augusta" lifestyle band (Rosemary Beach)
   Only NEW components live here; shared tokens/components come from A.
   ============================================================ */

/* ---- a few B-specific token extensions ---- */
:root {
  --signature: #b08a3e;            /* brass = signature tier marker */
  --signature-soft: rgba(176, 138, 62, 0.12);
}

/* ============================================================
   BENEFIT BAND — differentiator framed as guest benefit (Kiawah)
   sits right under hero, before everything else
   ============================================================ */
.tb-benefits { background: var(--paper-2); border-bottom: 1px solid var(--line-2); }
.tb-benefits .shell { padding-block: clamp(2.6rem, 5vw, 4rem); }
.tb-benefits-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(2rem,4vw,3rem); }
.tb-benefits-head h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }
.tb-benefits-head p { color: var(--muted); margin: 0; }
.tb-benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.tb-benefit { text-align: center; padding: 0 0.6rem; }
.tb-benefit-ic {
  width: 54px; height: 54px; margin: 0 auto 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--signature-soft);
  color: var(--brass);
}
.tb-benefit h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.tb-benefit p { font-size: 0.93rem; color: var(--muted); margin: 0; }
.tb-benefit-rule { height: 1px; background: var(--line); max-width: 120px; margin: 2.4rem auto 0; }

/* ============================================================
   BROWSE BY AXIS — the operator IA centerpiece
   ============================================================ */
.tb-browse { background: var(--paper); }
.tb-axis-tabs {
  display: inline-flex; flex-wrap: wrap; gap: 0.4rem;
  padding: 0.4rem; border-radius: 100px;
  background: var(--paper-2); border: 1px solid var(--line);
  margin-bottom: 2rem;
}
.tb-axis-tab {
  font-family: var(--body); font-size: 0.9rem; font-weight: 600;
  padding: 0.6rem 1.4rem; border-radius: 100px;
  border: none; background: transparent; color: var(--muted); cursor: pointer;
  transition: all .2s ease;
}
.tb-axis-tab:hover { color: var(--forest); }
.tb-axis-tab.active { background: var(--forest); color: var(--on-dark); }

.tb-axis-panels { position: relative; }
.tb-axis-panel { display: none; }
.tb-axis-panel.active { display: block; animation: tbFade .35s ease; }
@keyframes tbFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.tb-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.tb-cat {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem;
  color: #fff;
  border: 1px solid var(--line-2);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tb-cat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
/* z-index 0 (not negative) keeps the image painted inside the card's own
   stacking context — a negative z-index dropped it behind the card background
   so it only flashed in on hover-repaint. Text content sits above via z-index:1. */
.tb-cat-bg { position: absolute; inset: 0; z-index: 0; }
.tb-cat-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tb-cat:hover .tb-cat-bg img { transform: scale(1.06); }
.tb-cat-bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,28,22,.85) 0%, rgba(10,28,22,.25) 60%, rgba(10,28,22,.15) 100%); }
.tb-cat > .tb-cat-count, .tb-cat > h3, .tb-cat > p, .tb-cat > .tb-cat-go { position: relative; z-index: 1; }
.tb-cat-count { font-size: 0.74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 0.3rem; }
.tb-cat h3 { color: #fff; font-size: 1.4rem; margin: 0 0 0.3rem; }
.tb-cat p { font-size: 0.88rem; color: rgba(255,255,255,.82); margin: 0; }
.tb-cat-go { margin-top: 0.7rem; font-size: 0.85rem; font-weight: 600; color: #fff; display: inline-flex; align-items: center; gap: 0.35rem; transition: gap .2s ease; }
.tb-cat:hover .tb-cat-go { gap: 0.6rem; }

/* solid (no-photo) category tiles — for occasion axis variety */
.tb-cat--solid { color: var(--forest); border-color: var(--line); background: var(--paper-2); }
.tb-cat--solid::before { content:none; }
.tb-cat--solid .tb-cat-count { color: var(--brass); }
.tb-cat--solid h3 { color: var(--forest); }
.tb-cat--solid p { color: var(--muted); }
.tb-cat--solid .tb-cat-go { color: var(--brass); }
.tb-cat--solid:hover { border-color: var(--brass); }

/* ============================================================
   SIGNATURE TIER — curated best-of-portfolio (Paradise 100 Collection)
   ============================================================ */
.tb-signature { background: var(--forest); color: var(--on-dark); position: relative; overflow: hidden; }
.tb-signature::before {
  content:""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 85% 10%, rgba(205,168,92,.16), transparent 40%);
}
.tb-signature .shell { position: relative; z-index: 1; }
.tb-sig-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.2rem; margin-bottom: 2.4rem; }
.tb-sig-head h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); margin: 0; }
.tb-sig-head p { color: var(--on-dark-muted); margin: 0.6rem 0 0; max-width: 46ch; }
.tb-sig-ribbon {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 0.9rem;
}
.tb-sig-ribbon::before, .tb-sig-ribbon::after { content:""; width: 22px; height: 1px; background: var(--brass-2); }
.tb-sig-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

/* signature badge added onto the shared card */
.tb-sig-badge {
  position: absolute; top: 0.9rem; left: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--brass); color: #fff;
  padding: 0.32rem 0.8rem; border-radius: 100px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.tb-sig-badge svg { width: 11px; height: 11px; }

/* dark variant of the shared card so it reads on the green band */
.tb-signature .ta-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.tb-signature .ta-card h3 { color: #fff; }
.tb-signature .ta-card-sum { color: var(--on-dark-muted); }
.tb-signature .ta-card-top { color: rgba(243,236,220,.55); }
.tb-signature .ta-card-meta { color: var(--brass-2); }
.tb-signature .ta-card-foot { border-top-color: rgba(255,255,255,.12); }
.tb-signature .ta-card-price { color: #fff; }
.tb-signature .ta-card-price small { color: rgba(243,236,220,.55); }

/* ============================================================
   EXPLORE AUGUSTA — lifestyle band (Rosemary "Explore the Community")
   ============================================================ */
.tb-explore { position: relative; overflow: hidden; color: #fff; }
.tb-explore-media { position: absolute; inset: 0; z-index: -2; }
.tb-explore-media img { width: 100%; height: 100%; object-fit: cover; }
.tb-explore-media::after { content:""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(14,40,32,.88), rgba(14,40,32,.62)); }
.tb-explore .shell { padding-block: clamp(4rem, 8vw, 7rem); }
.tb-explore-head { max-width: 56ch; margin-bottom: 2.4rem; }
.tb-explore-head h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3.2rem); }
.tb-explore-head p { color: rgba(255,255,255,.84); margin: 0; }
.tb-explore-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 0.9rem; }
.tb-explore-tile {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.3rem 1.2rem; border-radius: var(--r-md);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.tb-explore-tile:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); border-color: var(--brass-2); }
.tb-explore-tile-ic { color: var(--brass-2); }
.tb-explore-tile h3 { color: #fff; font-size: 1.12rem; margin: 0; }
.tb-explore-tile p { font-size: 0.82rem; color: rgba(255,255,255,.74); margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .tb-axis-tabs { width: 100%; justify-content: center; }
  .tb-sig-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PROMOTED-TO-HOMEPAGE ADDITIONS (Phase 1)
   Reserve button on portfolio cards, hero search box, and the
   interactive Leaflet map section. Map CSS mirrors styles.css
   (the live site) since B does not load styles.css.
   ============================================================ */

/* ---- Reserve button + card action group (cards now have View + Reserve) ----
   A's .ta-card-foot is a single space-between row (price | one link). With a
   Reserve pill added that row overflows, so we override the footer to stack:
   price on top, a full-width actions row (View link + Reserve) below. */
.ta-card-foot {
  flex-direction: column; align-items: stretch; gap: 0.75rem;
}
.tb-card-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.6rem; width: 100%; padding-right: 0.1rem;
}
.tb-card-actions .ta-card-link { white-space: nowrap; }
.tb-reserve-btn {
  appearance: none; border: 0; cursor: pointer; flex: none;
  background: var(--signature, #b08a3e); color: #1a1408;
  font-family: inherit; font-weight: 700; font-size: 0.84rem;
  padding: 0.5rem 1.1rem; border-radius: 999px; letter-spacing: 0.01em;
  transition: background .2s ease, transform .2s ease;
}
.tb-reserve-btn:hover { background: #c79a45; transform: translateY(-1px); }
.tb-reserve-btn:active { transform: translateY(0); }

/* ---- Interactive map section (mirrors .map-card / .map-leaflet from styles.css) ---- */
.tb-map-section { padding: 0 0 4rem; }
.tb-map-head { text-align: center; max-width: 640px; margin: 0 auto 1.8rem; }
.tb-map-card {
  position: relative; min-height: 520px; overflow: hidden; border-radius: 22px;
  background: linear-gradient(135deg, #e3d8bb, #f9f1dd);
  box-shadow: 0 24px 60px rgba(11,44,32,.16);
}
.map-leaflet { padding: 0; }
.map-leaflet .leaflet-control-attribution { font-size: .68rem; background: rgba(255,250,240,.86); }
.map-leaflet .leaflet-popup-content-wrapper { border-radius: 14px; box-shadow: 0 18px 50px rgba(11,44,32,.2); }
.map-leaflet .leaflet-popup-content { margin: 14px 16px; }

/* ============================================================
   EVENT-PAGE COMPONENTS (Phase 2 re-skin)
   Schedule timeline, map legend, photo gallery, champion photo.
   ============================================================ */

/* ---- Schedule timeline (ANWA / Ironman day-by-day) ---- */
.tb-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.tb-tl-item {
  padding: 1.5rem 1.4rem; border-radius: var(--r-lg);
  background: var(--paper-2); border: 1px solid var(--line-2);
}
.tb-tl-item--feature { background: var(--forest); border-color: var(--forest); }
.tb-tl-item--feature h3, .tb-tl-item--feature p, .tb-tl-item--feature .tb-tl-date { color: var(--on-dark); }
.tb-tl-item--feature h3 { color: #fff; }
.tb-tl-date {
  display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 0.6rem;
}
.tb-tl-item h3 { font-size: 1.18rem; margin: 0 0 0.4rem; }
.tb-tl-item p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.tb-tl-item--feature p { color: var(--on-dark-muted); }
.tb-pill {
  display: inline-block; vertical-align: middle; margin-left: 0.5rem;
  font-family: var(--body); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #1a1408; background: var(--brass-2);
  padding: 0.2rem 0.6rem; border-radius: 999px;
}

/* ---- Map legend ---- */
.tb-legend { display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; margin-top: 1.1rem; justify-content: center; }
.tb-legend-chip { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); }
.tb-legend-dot { width: 14px; height: 14px; border-radius: 50%; flex: none; box-sizing: border-box; }

/* ---- Photo gallery ---- */
.tb-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.tb-gallery figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2); box-shadow: var(--shadow-sm); }
.tb-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.tb-gallery figcaption { padding: 0.8rem 1rem; font-size: 0.82rem; color: var(--muted); }

/* ---- Champion editorial photo (auto-appears when file dropped) ---- */
.tb-champion-photo { margin: 1.6rem 0 0; max-width: 320px; }
.tb-champion-photo img { border-radius: var(--r-md); width: 100%; box-shadow: var(--shadow); }
.tb-champion-photo figcaption { font-size: 0.78rem; color: var(--on-dark-muted); margin-top: 0.5rem; }

/* ---- Guide list (wedding venues, restaurants, tee-times, etc.) ---- */
.tb-guide-list { display: grid; gap: 1rem; }
.tb-guide-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.3rem 1.5rem; border-radius: var(--r-lg);
  background: var(--paper-2); border: 1px solid var(--line-2);
  transition: transform .25s ease, border-color .25s ease;
}
.tb-guide-card:hover { transform: translateY(-3px); border-color: var(--brass); }
.tb-guide-meta { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); margin: 0 0 0.35rem; }
.tb-guide-card h3 { font-size: 1.22rem; margin: 0 0 0.35rem; }
.tb-guide-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.tb-guide-link { flex: none; font-size: 0.88rem; font-weight: 600; color: var(--brass); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.35rem; transition: gap .2s ease; }
.tb-guide-card:hover .tb-guide-link { gap: 0.6rem; }
.tb-guide-confirm { font-size: 0.78rem; color: var(--muted-2); border-left: 2px solid var(--azalea-line); padding-left: 0.8rem; margin-top: 0.5rem; }
@media (max-width: 640px) {
  .tb-guide-card { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
}

/* ---- Brand chip row (carriers, jet operators, rental brands) ---- */
.tb-chip-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.tb-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.3rem; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--line);
  font-weight: 600; font-size: 0.92rem; color: var(--forest);
  transition: border-color .2s ease, transform .2s ease;
}
.tb-chip:hover { border-color: var(--brass); transform: translateY(-2px); }

/* ============================================================
   HOME DETAIL PAGE (build_pages.py output)
   ============================================================ */
.tb-back-link { display: inline-block; font-size: 0.9rem; font-weight: 600; color: var(--brass); margin-bottom: 1.6rem; }
.tb-back-link:hover { color: var(--forest); }
.tb-detail-head { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.tb-detail-head h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: 0.4rem 0 0.6rem; }
.tb-detail-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; font-size: 0.95rem; color: var(--moss); margin: 1rem 0; }
.tb-detail-meta span { font-weight: 600; }
.tb-detail-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.tb-detail-tag { font-size: 0.74rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--forest); background: var(--paper-3); border-radius: 999px; padding: 0.3rem 0.8rem; }
.tb-detail-cta { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); display: grid; gap: 0.7rem; position: sticky; top: 90px; }
.tb-cta-eyebrow { font-size: 0.74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin: 0 0 0.3rem; }
.tb-cta-phone { text-align: center; font-weight: 600; color: var(--forest); font-size: 0.9rem; }
.tb-cta-note { font-size: 0.78rem; color: var(--muted-2); margin: 0.4rem 0 0; }

.tb-gallery-hero { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 1rem; }
.tb-gallery-hero img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.tb-gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 0.6rem; }
.tb-gthumb { padding: 0; border: 2px solid transparent; border-radius: var(--r-sm); overflow: hidden; cursor: pointer; background: none; aspect-ratio: 3/2; transition: border-color .2s ease; }
.tb-gthumb img { width: 100%; height: 100%; object-fit: cover; }
.tb-gthumb:hover, .tb-gthumb.active { border-color: var(--brass); }

.tb-info-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); }
.tb-info-grid h2 { font-size: 1.8rem; }
.tb-info-grid h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.tb-info-grid p { color: var(--muted); }
.tb-detail-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.tb-detail-list li { position: relative; padding-left: 1.4rem; font-size: 0.94rem; color: var(--muted); }
.tb-detail-list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }
@media (max-width: 900px) {
  .tb-detail-head { grid-template-columns: 1fr; }
  .tb-detail-cta { position: static; }
  .tb-info-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MintRx-style OVERLAY NAV — transparent over the hero,
   light text, fills with the cream surface on scroll/hover.
   Only applies to pages whose header has .ta-nav--overlay
   (the homepage hero sits directly under it).
   ============================================================ */
.ta-nav--overlay {
  position: fixed;
  left: 0; right: 0; top: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(243, 236, 220, 0.18);
}
/* light treatment while transparent over the hero */
.ta-nav--overlay .ta-brand-num { color: #fff; }
.ta-nav--overlay .ta-brand-sub { color: var(--brass-2); }
.ta-nav--overlay .ta-nav-links a { color: rgba(255, 255, 255, 0.92); }
.ta-nav--overlay .ta-nav-links a:hover { color: #fff; }
.ta-nav--overlay .ta-nav-phone { color: #fff; }
.ta-nav--overlay .ta-nav-admin { color: var(--on-dark); border-color: rgba(243, 236, 220, 0.32); }
.ta-nav--overlay .ta-nav-admin:hover { background: rgba(243, 236, 220, 0.12); border-color: var(--on-dark); color: #fff; }
/* the whole bar fills in on hover even before scrolling */
.ta-nav--overlay:hover {
  background: rgba(247, 242, 231, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.ta-nav--overlay:hover .ta-brand-num { color: var(--forest); }
.ta-nav--overlay:hover .ta-brand-sub { color: var(--brass); }
.ta-nav--overlay:hover .ta-nav-links a { color: var(--muted); }
.ta-nav--overlay:hover .ta-nav-links a:hover { color: var(--forest); }
.ta-nav--overlay:hover .ta-nav-phone { color: var(--forest); }
.ta-nav--overlay:hover .ta-nav-admin { color: var(--moss); border-color: var(--line); }
/* filled, opaque state once the user scrolls past the hero (index.js toggles .scrolled) */
.ta-nav--overlay.scrolled {
  background: rgba(247, 242, 231, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(21, 54, 42, 0.07);
}
.ta-nav--overlay.scrolled .ta-brand-num { color: var(--forest); }
.ta-nav--overlay.scrolled .ta-brand-sub { color: var(--brass); }
.ta-nav--overlay.scrolled .ta-nav-links a { color: var(--muted); }
.ta-nav--overlay.scrolled .ta-nav-links a:hover { color: var(--forest); }
.ta-nav--overlay.scrolled .ta-nav-phone { color: var(--forest); }
.ta-nav--overlay.scrolled .ta-nav-admin { color: var(--moss); border-color: var(--line); }
/* overlay nav sits ON TOP of the hero, so the hero starts at the top of the page */
body:has(.ta-nav--overlay) .ta-hero { margin-top: 0; }

/* ============================================================
   PORTFOLIO SECTION — DARK GREEN background with LIGHT cards.
   The section band goes forest; the cards keep the light/cream
   surface from template-a.css (.ta-card) so they pop against it.
   ============================================================ */
.ta-portfolio {
  background: var(--forest);
  color: var(--on-dark);
}
/* section header + intro copy on the dark band */
.ta-portfolio .sec-head h2,
.ta-portfolio .sec-head--split h2 { color: #fff; }
.ta-portfolio .sec-head p,
.ta-portfolio .sec-head--split p { color: var(--on-dark-muted); }
.ta-portfolio .eyebrow { color: var(--brass-2); }
.ta-portfolio .eyebrow::before { background: var(--brass-2); }
/* filter pills: light text on the dark band, brass when active */
.ta-portfolio .ta-filter {
  color: var(--on-dark-muted);
  border-color: rgba(243, 236, 220, 0.22);
  background: rgba(243, 236, 220, 0.04);
}
.ta-portfolio .ta-filter:hover { color: #fff; border-color: rgba(243, 236, 220, 0.5); }
.ta-portfolio .ta-filter.active {
  background: var(--brass); color: #fff; border-color: var(--brass);
}
/* "Show all N homes" ghost button on dark */
.ta-portfolio .btn--ghost { color: var(--on-dark); border-color: rgba(243, 236, 220, 0.3); }
.ta-portfolio .btn--ghost:hover { background: rgba(243, 236, 220, 0.08); border-color: var(--on-dark); }

/* tighten the price block — the number + 'Masters week' caption + the View/Reserve
   row were spaced too far apart. Pull them together into a compact footer. */
.ta-card-price { line-height: 1.02; }
.ta-card-price small { display: block; margin-top: 0; font-size: 0.64rem; letter-spacing: .03em; line-height: 1.1; }
.ta-card-foot { gap: 0.5rem; padding: 0.85rem 1.3rem; }
