/* ============================================================
   FAIRWAY ABC — additions.css
   Multi-location + Collection section styles
   ============================================================ */

/* ── HERO (two-location update) ─────────────────────────── */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
}
.badge-family {
  background: rgba(201,153,58,0.15);
  color: var(--gold);
  border: 1px solid var(--gold-dark);
}
.badge-new {
  background: var(--gold);
  color: #000;
  animation: pulseBadge 2s ease-in-out infinite;
}
.hero-locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 1.5rem;
}
.hero-loc-item { display: flex; flex-direction: column; gap: 0.15rem; text-align: center; }
.hero-loc-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── COLLECTION SECTION ─────────────────────────────────── */
.collection-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.collection-jump-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(11,11,11,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.jump-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: min(var(--max-w), 100% - 2.5rem);
  margin-inline: auto;
}
.jump-nav-inner::-webkit-scrollbar { display: none; }
.jump-link {
  display: block;
  flex-shrink: 0;
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.jump-link:hover,
.jump-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.collection-body { padding-bottom: 3rem; }

.collection-group {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--nav-h) + 50px);
}
.collection-group-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.group-icon { font-size: 1.5rem; }
.collection-group-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

/* Individual base spirit card */
.cat-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cat-color, var(--gold));
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-h) + 55px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cat-section:hover {
  box-shadow: var(--shadow-sm);
}
.cat-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.cat-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.cat-header-text { flex: 1; }
.cat-header-text h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.cat-header-text p { font-size: 0.88rem; color: var(--text-muted); }
.cat-count {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cat-color, var(--gold));
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  align-self: center;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.25rem;
}
.brand-chips span {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.brand-chips span:hover {
  border-color: var(--cat-color, var(--gold-dark));
  color: var(--text-primary);
}

.category-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.85rem;
}
.cat-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: border-color 0.2s, transform 0.2s, color 0.2s;
  cursor: default;
}
.cat-chip:hover {
  border-color: var(--gold-dark);
  color: var(--text-primary);
  transform: translateY(-2px);
}
.chip-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ── TWO-LOCATION SECTION ───────────────────────────────── */
.locations-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.location-card:hover { border-color: var(--gold-dark); box-shadow: var(--shadow-md); }
.location-card-new { border-color: rgba(201,153,58,0.35); }

.location-badge {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
}
.badge-original {
  background: rgba(201,153,58,0.1);
  color: var(--gold);
  border-bottom: 1px solid rgba(201,153,58,0.2);
}
.badge-new {
  background: rgba(80,200,80,0.1);
  color: #5cd65c;
  border-bottom: 1px solid rgba(80,200,80,0.2);
  animation: none;
}
.location-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  padding: 1rem 1.25rem 0.5rem;
}
.location-map { height: 220px; overflow: hidden; }
.location-map iframe {
  width: 100%; height: 100%; display: block;
  filter: grayscale(20%) brightness(0.85);
}
.location-details { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.9rem; }
.location-info-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.loc-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.location-info-row address { font-style: normal; line-height: 1.6; }
.location-info-row a { color: var(--gold); }
.closed-note { color: #c44; font-size: 0.85rem; margin-top: 0.2rem; }
.phone-pending { color: var(--text-dim); font-style: italic; font-size: 0.85rem; }

/* ── FOOTER TWO-LOCATION ────────────────────────────────── */
.footer-grid { grid-template-columns: 1.4fr 2fr 1fr !important; }

.footer-locations-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.footer-two-locs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.footer-two-locs p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-two-locs a { color: var(--text-muted); }
.footer-two-locs a:hover { color: var(--gold); }
.footer-loc-name {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.loc-est {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 400;
  margin-left: 0.3rem;
}
.loc-new {
  font-family: var(--font-body);
  font-size: 0.68rem;
  background: rgba(80,200,80,0.15);
  color: #5cd65c;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-left: 0.3rem;
  font-weight: 600;
}
.footer-hours-note { font-size: 0.78rem !important; color: var(--text-dim) !important; }

/* ── CONTACT SELECT ─────────────────────────────────────── */
form select {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 2.5rem 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,153,58,0.15); }
form select option { background: var(--bg-card); color: var(--text-primary); }

/* ── ABOUT TIMELINE ─────────────────────────────────────── */
.about-timeline {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  align-self: start;
}
.tl-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.tl-track {
  display: flex;
  flex-direction: column;
  position: relative;
}
/* vertical line */
.tl-track::before {
  content: '';
  position: absolute;
  left: 54px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border);
}
.tl-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  flex-shrink: 0;
  width: 44px;
  position: relative;
}
.tl-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.tl-year-now { color: var(--gold); }
.tl-dot {
  position: absolute;
  right: -14px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--bg-card);
  z-index: 1;
}
.tl-dot-now {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,153,58,0.18);
  width: 10px;
  height: 10px;
  right: -15px;
}
.tl-body {
  padding-top: 2px;
}
.tl-body strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.tl-body p {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.65;
}
.tl-item-now .tl-body strong { color: var(--gold); }

/* ── BRAND IMAGE GRID ───────────────────────────────────── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
  padding: 1.25rem 1.5rem 1.5rem;
}
.brand-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.brand-card:hover {
  border-color: var(--cat-color, var(--gold-dark));
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.brand-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--bg-card);
  overflow: hidden;
}
.brand-card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
}
.brand-card:hover .brand-card-img img {
  transform: scale(1.05);
}
.brand-card-placeholder {
  font-size: 2.8rem;
  line-height: 1;
  background: linear-gradient(145deg, var(--bg-card), rgba(255,255,255,0.025));
}
.brand-card-name {
  padding: 0.5rem 0.6rem 0.6rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border);
  line-height: 1.35;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .locations-grid  { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr !important; }
  .footer-two-locs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-locations  { flex-direction: column; gap: 0.5rem; }
  .hero-meta-sep   { display: none; }
  .category-chips-grid { grid-template-columns: 1fr 1fr; }
  .footer-two-locs { grid-template-columns: 1fr; }
  .cat-section-header { flex-wrap: wrap; }
  .brand-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 0.5rem; padding: 1rem; }
  .brand-card-img { height: 120px; }
}
@media (max-width: 400px) {
  .category-chips-grid { grid-template-columns: 1fr; }
}
