/* Coffee shop — desktop-primary, dark hero, drink grid */

.hero--ink {
  position: relative;
  padding: var(--space-12) 0 var(--space-16);
  color: var(--warm-white);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #0E0E1B 0%, #1A1A2E 100%);
}
.hero--ink .hero__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.4;
}
.hero--ink::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 27, 0.5), rgba(26, 26, 46, 0.88));
  z-index: -1;
}

.hero--ink .hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .hero--ink .hero__inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    gap: var(--space-8);
  }
}
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
@media (min-width: 768px) { .hero__left { align-items: flex-start; } }
.hero--ink .hero__avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 5px rgba(255, 252, 251, 0.12), 0 12px 36px rgba(0, 0, 0, 0.4);
}
.hero--ink .hero__title {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--warm-white);
  letter-spacing: -0.02em;
}
.hero--ink .hero__tagline {
  color: rgba(255, 252, 251, 0.7);
  font-size: clamp(15px, 1.7vw, 17px);
}
.hero--ink .hero__cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}
.hero--ink .hero__status {
  background: rgba(255, 252, 251, 0.92);
  color: var(--mint-success);
}

.content { padding: var(--space-10) 0 var(--space-12); }
.content__grid { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
.content__main { display: flex; flex-direction: column; gap: var(--space-6); }
.content__side { display: flex; flex-direction: column; gap: var(--space-4); }

@media (min-width: 960px) {
  .content { padding: var(--space-12) 0 var(--space-16); }
  .content__grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: var(--space-10);
  }
  .content__side { position: sticky; top: 100px; align-self: start; }
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.section-head .section-title { font-size: clamp(22px, 3vw, 26px); margin-top: 4px; }

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: var(--space-5);
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: var(--light-stripe);
  color: var(--stone-gray);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.tab:hover { background: var(--soft-line); }
.tab.is-active { background: var(--hive-ink); color: var(--warm-white); }

/* ---------- Drinks grid ---------- */
.drinks-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .drinks-grid { grid-template-columns: 1fr 1fr; }
}
.drink {
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.drink:hover {
  border-color: var(--honey-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.drink__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0;
}
.drink__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.drink:hover .drink__thumb img { transform: scale(1.05); }
.drink__thumb img + .drink__fallback { display: none; }
.drink__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10.5px;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}
.drink__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drink__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}
.drink__head h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}
.drink__price {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--hive-ink);
  white-space: nowrap;
}
.drink__desc { color: var(--stone-gray); font-size: 13.5px; }
.drink__add { align-self: flex-start; margin-top: var(--space-2); }

/* ---------- Group banner ---------- */
.group-banner {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: linear-gradient(95deg, var(--honey-gold), #FFB744);
  color: var(--hive-ink);
  border-radius: var(--radius-lg);
  text-align: left;
  width: 100%;
  font-family: var(--font-heading);
  box-shadow: 0 6px 18px rgba(245, 166, 35, 0.22);
}
.group-banner__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: rgba(26, 26, 46, 0.12);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.group-banner__copy { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.group-banner__copy strong { font-size: 16px; }
.group-banner__copy small { font-size: 13px; opacity: 0.8; font-weight: 500; }

/* ---------- Sidebar cards ---------- */
.info-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  text-align: left;
  font-family: var(--font-body);
  color: var(--hive-ink);
}
.info-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.info-card__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(26, 26, 46, 0.08);
  color: var(--hive-ink);
  flex-shrink: 0;
}
.info-card__icon--gold { background: var(--honey-tint); color: var(--honey-gold); }
.info-card__icon--dark { background: rgba(255, 255, 255, 0.08); color: var(--honey-gold); }
.info-card__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}
.info-card__body { padding-left: 50px; font-size: 14px; }
.info-card__body strong { font-family: var(--font-heading); font-size: 15px; }

.hours-card { background: var(--honey-tint); border-color: transparent; }
.hours-list {
  list-style: none;
  padding: 0 0 0 50px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.hours-list strong { font-family: var(--font-heading); color: var(--hive-ink); }

.find-card__btn { margin-left: 50px; align-self: flex-start; margin-top: var(--space-2); }

.social-card { background: var(--hive-ink); color: var(--warm-white); border-color: transparent; }
.social-card .info-card__title { color: var(--warm-white); }
.social-list {
  list-style: none;
  padding: 0 0 0 50px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.social-list a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 252, 251, 0.88);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}
.social-list a:hover { color: var(--honey-gold); }
.social-list small {
  color: rgba(255, 252, 251, 0.5);
  font-weight: 500;
  font-size: 11.5px;
  margin-left: 4px;
}
.social-list svg { color: var(--honey-gold); }
