/* Ash & Anchor — dock page styles (extends menu.css) */

.tier-sunglasses .tier-badge { background: #ddf1f5; color: #1a6b7c; border: 1px solid #8dd3de; }
.tier-sunglasses .tier-rule  { background: #8dd3de; }

.tier-sun .tier-badge { background: #fff5e0; color: #9a6a00; border: 1px solid #f5c842; }
.tier-sun .tier-rule  { background: #f5c842; }

.tier-bug .tier-badge { background: #e8f5ee; color: #276b42; border: 1px solid #a8d8b8; }
.tier-bug .tier-rule  { background: #a8d8b8; }

.tier-hydration .tier-badge { background: #e8f0fb; color: #2c4e9e; border: 1px solid #a8bef0; }
.tier-hydration .tier-rule  { background: #a8bef0; }

.tier-bait .tier-badge { background: #efe9de; color: #5a4020; border: 1px solid #c8a878; }
.tier-bait .tier-rule  { background: #c8a878; }

/* ============== RHEOS CARDS ============== */

.rheos-note {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 14px;
}

.rheos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.rheos-card {
  border: 1px solid rgba(43,29,24,0.1);
  border-radius: 2px;
  overflow: hidden;
  background: var(--cream-light);
}

.rheos-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  background: #f5f0e8;
  padding: 6px;
}

.rheos-card-no-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rheos-card-no-img img {
  height: 32px;
  width: auto;
  opacity: 0.35;
}

.rheos-card-body {
  padding: 8px 12px 10px;
  border-top: 1px solid rgba(43,29,24,0.07);
}

.rheos-card-model {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.rheos-card-colors {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 3px;
  line-height: 1.5;
}

/* ============== RHEOS MISSION ============== */

.rheos-mission {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--cream-light);
  border: 1px solid rgba(43,29,24,0.08);
  border-radius: 2px;
  margin-bottom: 4px;
}

.rheos-mission-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.6;
}

.rheos-mission p {
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* ============== DOCK ITEMS (2-col, scaled up) ============== */

.dock-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin-bottom: 4px;
}

.dock-items .menu-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(43,29,24,0.09);
  align-items: flex-start;
}

.dock-items .menu-item-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.dock-items .menu-item-note {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 540px) {
  .dock-items { grid-template-columns: 1fr; }
}

/* ============== COMING SOON BOX ============== */

.coming-soon-box {
  margin-top: 8px;
  padding: 20px 24px;
  background: var(--lake-deep);
  border-radius: 2px;
  border: 1px solid rgba(177, 159, 116, 0.3);
}

.coming-soon-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}

.coming-soon-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 8px;
}

.coming-soon-body {
  font-family: var(--sans);
  font-size: 0.84rem;
  color: rgba(245, 236, 215, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* ============== RESPONSIVE ============== */

@media (max-width: 600px) {
  .rheos-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
  .rheos-cards { grid-template-columns: 1fr; }
}
