.coffees-page {
  padding-bottom: var(--space-16);
}

.coffees-section {
  padding: var(--space-16) 0;
}

.coffees-section:nth-of-type(odd) {
  background: radial-gradient(circle at top, rgba(199, 123, 48, 0.1), transparent 55%);
}

.coffees-section__inner {
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .coffees-section {
    padding: var(--space-10) 0;
  }
}

.coffees-hero {
  padding: var(--space-20) 0 var(--space-16);
  background: radial-gradient(circle at top left, #221713, #0f0b09 55%, #080504 100%);
}

.coffees-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

@media (max-width: 900px) {
  .coffees-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.coffees-hero__eyebrow {
  font-size: var(--font-size-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.coffees-hero__title {
  margin-bottom: var(--space-3);
}

.coffees-hero__subtitle {
  max-width: 40rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.coffees-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.coffees-hero__image {
  max-width: 480px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .coffees-hero__image {
    max-width: 100%;
    order: -1;
  }
}

.coffees-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  font-size: var(--font-size-sm);
}

@media (max-width: 700px) {
  .coffees-hero__meta {
    grid-template-columns: minmax(0, 1fr);
  }
}

.coffees-hero__meta-item dt {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.coffees-hero__meta-item dd {
  margin: 0;
  color: var(--color-text-muted);
}

.coffees-section__header {
  max-width: 42rem;
  margin: 0 auto var(--space-8);
}

.coffees-section__header p {
  color: var(--color-text-muted);
}

.coffees-section__content > p {
  color: var(--color-text-muted);
}

.coffees-section__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.coffees-section__pill {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  background-color: var(--color-surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.coffees-section__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.coffees-link-inline {
  font-size: var(--font-size-sm);
  color: var(--gray-100);
}

.coffees-link-inline:hover {
  color: var(--color-primary-strong);
}

.coffees-bullets {
  margin-top: var(--space-2);
  padding-left: 1.1rem;
}

.coffees-bullets li {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: 0.4rem;
  list-style: disc;
}

.coffees-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

.coffees-tag {
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.coffees-single-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-4);
}

@media (max-width: 800px) {
  .coffees-single-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.coffees-single-card .card-subtitle {
  color: var(--color-text-muted);
}

.coffees-espresso-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

@media (max-width: 960px) {
  .coffees-espresso-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.coffees-espresso-card .card-subtitle {
  color: var(--color-text-muted);
}

.coffees-brew-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin: var(--space-4) 0;
}

@media (max-width: 700px) {
  .coffees-brew-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.coffees-brew-card {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background-color: rgba(24, 17, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.coffees-brew-card h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.coffees-brew-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.coffees-aside {
  align-self: stretch;
}

.coffees-gallery {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.coffees-gallery__viewport {
  overflow: hidden;
}

.coffees-gallery__slide {
  margin: 0;
}

.coffees-gallery__caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: center;
}

.coffees-gallery__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background-color: rgba(8, 5, 4, 0.85);
  color: var(--gray-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}

.coffees-gallery__control--prev {
  left: -1.2rem;
}

.coffees-gallery__control--next {
  right: -1.2rem;
}

@media (max-width: 768px) {
  .coffees-gallery__control {
    display: none;
  }
}

.coffees-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-3);
}

.coffees-gallery__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
}

.coffees-gallery__dot.is-active {
  width: 1.6rem;
  background: linear-gradient(135deg, #c77b30, #e1953d);
}

.coffees-reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
}

.coffees-review-card .card-subtitle {
  color: var(--color-text-muted);
}

.coffees-review-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.coffees-accessories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

@media (max-width: 960px) {
  .coffees-accessories-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.coffees-accessory-card .card-title {
  margin-bottom: var(--space-2);
}

.coffees-section__footer {
  margin-top: var(--space-6);
}
