/* =========================================================
   Coffee Information Section
   BEM naming, all classes prefixed with coffee-info-
   ========================================================= */

.coffee-info-section {
    padding: 0 20px 80px;
}

.coffee-info-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* ---------- Header ---------- */

.coffee-info-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 56px;
}

.coffee-info-heading {
	font-size: 32px;
	line-height: 1.3;
	font-weight: 700;
	margin: 0 0 16px;
}

.coffee-info-heading p {
	margin: 0;
  font-weight: 600;
  font-family: "Dashiell Bright Test", EB Garamond;
  font-size: clamp(30px, 3vw, 30px);
  line-height: clamp(40px, 3vw, 40px);
  color: #303030;
}

.coffee-info-description {
  font-family: "IBM Plex Sans", EB Garamond;
	font-size: clamp(16px, 3vw, 16px);
	line-height: 1.7;
	color: #303030cc;
	margin: 0;
}

/* ---------- Columns ---------- */

.coffee-info-columns {
	display: flex;
	align-items: center;
	gap: 40px;
}

.coffee-info-left {
	flex: 0 0 50%;
	max-width: 50%;
}

.coffee-info-right {
	flex: 0 0 50%;
	max-width: 50%;
}

/* ---------- Left: layered image ---------- */

.coffee-info-image-stack {
	position: relative;
	margin: 0 auto;
}

.coffee-info-image-stack::before {
	transform: rotate(-6deg) translate(-10px, 10px);
}

.coffee-info-image-stack::after {
	transform: rotate(4deg) translate(8px, -6px);
}

.coffee-info-image {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* ---------- Right: info list ---------- */

.coffee-info-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.coffee-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.coffee-info-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 7px;
}

.coffee-info-icon-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.coffee-info-icon--default {
	border-radius: 50%;
	background: #1a1a1a;
	position: relative;
}

.coffee-info-icon--default::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 4px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translate(-60%, -60%) rotate(-45deg);
}

.coffee-info-item-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.coffee-info-title {
	 font-size: clamp(16px, 3vw, 18px);
	font-weight: 600;
	color: #303030;
     font-family: 'Dashiell Bright Test';
}

.coffee-info-subtitle {
	font-size: clamp(14px, 3vw, 16px);
       font-family: "IBM Plex Sans", EB Garamond;
	line-height: 1.6;
  font-weight: 400;
	color: #303030CC;
}

/* =========================================================
   Responsive
   ========================================================= */

/* Tablet: image on top, content below */
@media (max-width: 1024px) {
	.coffee-info-columns {
		flex-direction: column;
		gap: 40px;
	}

	.coffee-info-left,
	.coffee-info-right {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.coffee-info-right {
		width: 100%;
		max-width: 600px;
	}
}

/* Mobile: everything stacked, tighter spacing */
@media (max-width: 600px) {
.coffee-info-section {
    padding: 0 20px 40px;
}

	.coffee-info-heading {
		font-size: 24px;
	}

	.coffee-info-header {
		margin-bottom: 36px;
	}

	.coffee-info-image {
		height: 260px;
	}

	.coffee-info-columns {
		gap: 32px;
	}

	.coffee-info-list {
		gap: 20px;
	}
}