:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #332a24;
  background: #f2eee9;
  --bg: #f2eee9;
  --surface: #fff;
  --surface-soft: #e7e5e4;
  --surface-alt: #f7f0e9;
  --text: #332a24;
  --text-muted: #57534e;
  --brand: #92400e;
  --brand-dark: #6a2e0a;
  --accent: #ea580c;
  --accent-soft: #fde66a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, a {
  font: inherit;
}

.page-shell {
  max-width: 1440px;
  margin: 0 auto;
}

.site-header {
  background: var(--brand);
  color: #f6ebdc;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.site-nav a,
.header-actions a {
  color: #f5ebe4;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.header-actions a {
  padding: 10px 16px;
  background: rgba(253, 230, 106, 0.12);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-nav a:hover {
  color: var(--accent);
}

.brand-mark,
.brand-mark img {
  width: 34px;
  height: 34px;
}

.icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.button-icon {
  width: 16px;
  height: 16px;
  margin-left: 10px;
}

.feature-icon {
  width: 20px;
  height: 20px;
}

.sustainability-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.sustainability-copy li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(234, 88, 12, 0.12);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 16px 20px;
  font-weight: 600;
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

.testimonial-stars img {
  width: 18px;
  height: 18px;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.28)), url("images/img-11.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 768px;
  padding: 0 80px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.8);
}

.hero h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(4.5rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.95);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.22);
}

.button-primary:hover {
  background: #c2410c;
}

.button-secondary {
  background: #fff;
  color: #92400e;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.button-secondary:hover {
  background: #fff;
}

.main {
  padding: 0;
}

.section {
  padding: 96px 80px;
}

.section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 52px;
}

.section-head h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--brand);
  line-height: 1.02;
}

.section-head p {
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 680px;
}

.testimonials .section-head img {
  display: inline-block;
}

.featured-grid,
.collection-grid,
.testimonial-grid {
  display: grid;
  gap: 28px;
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  border: 1px solid rgba(146, 64, 14, 0.08);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 28px;
}

.card-content h3 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brand);
}

.card-content p {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.button-small {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  font-size: 0.95rem;
  border-radius: 12px;
  min-width: 120px;
}

.promo {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(18deg, #ea580c 45%, #92400e 120%);
  color: #fff;
  border-radius: 28px;
}

.promo-copy h2 {
  margin: 0;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
}

.promo-copy p {
  margin: 24px 0 32px;
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
  max-width: 580px;
}

.button-tertiary {
  background: var(--accent-soft);
  color: var(--brand);
}

.promo-card {
  min-height: 240px;
  border-radius: 24px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255,255,255,0.22);
  display: grid;
  place-items: center;
  text-align: center;
}

.promo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #fde66a;
  color: var(--brand);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.promo-card p {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
}

.collection-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  box-shadow: 0 24px 40px rgba(0,0,0,0.1);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.75));
}

.collection-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
}

.collection-overlay p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}

.sustainability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--surface-soft);
  border-radius: 28px;
  padding: 96px 80px;
}

.sustainability-copy h2 {
  margin-top: 0;
  font-size: 3.2rem;
  font-family: 'Playfair Display', serif;
  color: #ea580c;
}

.sustainability-copy p {
  margin: 28px 0 30px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.sustainability-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.sustainability-copy li {
  background: rgba(234, 88, 12, 0.12);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 16px 20px;
  font-weight: 600;
  width: fit-content;
}

.sustainability-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sustainability-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.community {
  background: #f9e88b;
  border-radius: 28px;
  padding: 96px 80px;
}

.community-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.community-copy h2 {
  margin: 0;
  font-size: 3rem;
  color: #3a1f0d;
  font-family: 'Playfair Display', serif;
}

.community-copy p {
  margin: 24px auto 34px;
  max-width: 720px;
  color: #4f392a;
  font-size: 1.05rem;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.newsletter-form input {
  width: 100%;
  min-width: 320px;
  padding: 18px 22px;
  border-radius: 14px;
  border: 2px solid rgba(146, 64, 14, 0.2);
  background: #fff;
  color: var(--text);
}

.newsletter-form button {
  background: #92400e;
  color: #fff;
  border-radius: 14px;
  padding: 18px 26px;
  min-width: 180px;
}

.newsletter-form input::placeholder {
  color: rgba(51, 42, 36, 0.55);
}

.privacy-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  background: var(--surface-soft);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 44px rgba(0,0,0,0.08);
}

.testimonial-stars {
  color: #f1c40f;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0 0 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--brand);
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--brand);
  color: #f5e9d9;
  padding: 48px 40px 32px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex: 1;
}

.footer-links > div {
  flex-basis: 200px;
  flex-grow: 1;
}

.footer-brand span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-soft);
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(245,234,220,0.9);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links h3 {
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: 0.98rem;
}

.footer-links a {
  display: block;
  color: rgba(245,234,220,0.9);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-social span {
  color: rgba(245,234,220,0.9);
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--accent-soft);
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245,234,220,0.8);
  font-size: 0.92rem;
}

.footer-links-bottom {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links-bottom a {
  color: rgba(231,229,228,0.8);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-signup {
  display: flex;
  height: 36px;
}

.newsletter-signup input {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px 0 0 8px;
  border: none;
  background: rgba(26, 11, 2, 0.44);
  color: #fff;
  font-size: 14px;
}

.newsletter-signup input::placeholder {
  color: #fff;
}

.newsletter-signup button {
  padding: 9px 16px;
  border-radius: 0 8px 8px 0;
  border: none;
  background: #3a1a0a;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-signup button img {
  width: 12px;
  height: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Shop Page Styles */
.shop-hero {
  background: var(--bg);
  padding: 80px 80px 40px;
  color: var(--text);
  text-align: left;
}

.shop-hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.shop-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin: 0 0 16px;
  line-height: 1;
}

.shop-hero-content p {
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 420px;
  margin-top: 24px;
}

.product-count {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sort-btn {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--surface-soft);
  padding: 12px 18px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
}

.sort-btn img {
  width: 12px;
  height: 12px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.clear-filters {
  background: transparent;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
}

.shop-section {
  padding: 80px;
  background: var(--bg);
}

.shop-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.filter-group {
  background: var(--surface);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.filter-group h3 {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}

.filter-options input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.shop-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--surface-soft);
  background: var(--surface);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.page-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-btn:hover {
  border-color: var(--accent);
}

/* Product Page Styles */
.product-details {
  padding: 80px;
  background: var(--bg);
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main-image {
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface-soft);
  border-radius: 12px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-images {
  display: flex;
  gap: 16px;
}

.thumbnail {
  width: 100px;
  height: 100px;
  background: var(--surface-soft);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail.active {
  border-color: var(--accent);
}

.product-info h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: #57534e;
  line-height: 1.1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stars {
  display: flex;
  gap: 6px;
}

.stars img {
  width: 18px;
  height: 18px;
}

.rating-text {
  color: #57534e;
  font-size: 1rem;
}

.product-details-list {
  display: grid;
  gap: 16px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-label {
  font-weight: 600;
  color: #57534e;
  font-size: 1rem;
  min-width: 100px;
}

.roast-dots {
  display: flex;
  gap: 4px;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e7e5e4;
}

.dot.filled {
  background: #92400e;
}

.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flavor-tag {
  background: #fde66a;
  color: #57534e;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-description {
  color: #57534e;
  font-size: 1.125rem;
  line-height: 1.9;
  margin: 0;
}

.product-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-info .price {
  font-size: 2.25rem;
  font-weight: 700;
  color: #92400e;
}

.shipping-note {
  color: #57534e;
  font-size: 1rem;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.option-group label {
  font-weight: 600;
  color: #57534e;
  font-size: 1rem;
}

.size-buttons {
  display: flex;
  gap: 16px;
}

.size-btn {
  width: 197px;
  height: 72px;
  border: 2px solid #e7e5e4;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #57534e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.2s;
}

.size-btn.active {
  background: #92400e;
  color: #fff;
  border-color: #92400e;
}

.size-btn:hover {
  border-color: #92400e;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(146, 64, 14, 0.2);
}

.size-btn.active:hover {
  background: #7c3512;
  border-color: #7c3512;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button-primary {
  background: #ea580c;
  color: #fff;
  padding: 18px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.button-secondary {
  background: #fff;
  color: #ea580c;
  padding: 20px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.subscribe-btn img {
  width: 16px;
  height: 16px;
}

.product-badges {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #57534e;
  font-size: 0.9rem;
}

.badge img {
  width: 16px;
  height: 16px;
}

.recommendations {
  background: #e7e5e4;
  padding: 64px 80px;
}

.recommendations .section-head {
  margin-bottom: 48px;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.rec-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rec-icon {
  width: 64px;
  height: 64px;
  background: #92400e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.rec-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* Make icons white */
}

.rec-card h3 {
  margin: 0;
  color: #57534e;
  font-size: 1rem;
  font-weight: 500;
}

.rec-card p {
  margin: 0;
  color: #57534e;
  font-size: 0.875rem;
  line-height: 1.25;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.review-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-rating img {
  width: 16px;
  height: 16px;
}

.review-card p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author strong {
  color: var(--brand);
  font-size: 0.95rem;
}

.review-author span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Guides Page Styles */
.guides-hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  padding: 96px 80px;
  text-align: center;
}

.guides-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin: 0 0 24px;
  line-height: 1;
}

.guides-hero-content p {
  font-size: 1.2rem;
  max-width: 768px;
  margin: 0 auto;
  color: var(--accent-soft);
}

.guides-section {
  padding: 80px;
  background: var(--bg);
}

.guides-container {
  display: grid;
  grid-template-columns: 292px 1fr;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.guides-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.guides-sidebar .filter-group {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.guides-sidebar .filter-group h3 {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #92400e;
}

.filter-options {
  display: grid;
  gap: 16px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #57534e;
  font-size: 1rem;
}

.filter-options input {
  width: 14px;
  height: 14px;
  accent-color: #92400e;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
}

.guides-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.guide-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

.guide-image {
  width: 100%;
  height: 192px;
  background-size: cover;
  background-position: center;
}

.guide-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-card h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #92400e;
  line-height: 1.1;
}

.guide-card p {
  margin: 0;
  color: #57534e;
  font-size: 1rem;
  line-height: 1.8;
}

.guide-meta {
  color: #ea580c;
  font-weight: 600;
  font-size: 0.9rem;
}

.button-compact {
  width: fit-content;
  padding: 12px 24px;
  border-radius: 12px;
  background: #ea580c;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button-compact:hover {
  background: #c2410c;
}

.guides-cta {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}


.about-hero {
  position: relative;
  min-height: 68vh;
  background: linear-gradient(180deg, #fff6e6 0%, #f7d2a8 50%, #f1c48a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.9), transparent 45%);
}

.about-hero-content {
  position: relative;
  max-width: 760px;
  padding: 120px 24px;
}

.about-hero-content .eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a35f28;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.about-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  color: #7a3613;
  line-height: 1.05;
  margin: 0 0 20px;
}

.about-hero-content p {
  color: rgba(58, 34, 18, 0.9);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 32px;
}

.about-intro {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.about-copy .section-head h2 {
  margin-bottom: 18px;
}

.about-copy p {
  color: var(--text-muted);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  gap: 24px;
}

.stat-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-card span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.stat-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-values {
  padding: 80px 0;
  background: var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.value-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.value-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 1.5rem;
}

.value-card h3 {
  margin: 0;
  color: var(--brand);
}

.value-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-features {
  padding: 80px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}

.feature-card {
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 360px;
  box-shadow: 0 18px 40px rgba(82, 37, 16, 0.14);
}

.feature-card--dark {
  background: linear-gradient(136deg, #92400e 0%, rgba(146, 64, 14, 0.9) 70%);
}

.feature-card--bright {
  background: linear-gradient(136deg, #ea580c 0%, rgba(234, 88, 12, 0.95) 70%);
}

.feature-card__marker {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  background: #fde66a;
}

.feature-card__marker img {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 3rem;
  line-height: 1.05;
}

.feature-card p {
  margin: 0;
  color: rgba(255,255,255,0.95);
  line-height: 1.9;
  font-size: 1rem;
}

.feature-benefits {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.feature-benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
}

.feature-benefits li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-benefits li span {
  display: block;
}

.about-roasters {
  padding: 80px 0;
  background: var(--bg);
}

.roaster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 40px auto 0;
}

.roaster-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.roaster-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.roaster-copy {
  padding: 28px 24px 32px;
}

.roaster-copy h3 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 1.3rem;
}

.roaster-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-journey {
  padding: 80px 0;
}

.about-journey .section-head .eyebrow {
  color: #ea580c;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.about-journey .section-head h2 {
  font-size: 60px;
  line-height: 1;
  color: #92400e;
  margin: 16px 0 16px;
}

.about-journey .section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #57534e;
  font-size: 1rem;
  line-height: 1.8;
}

.timeline {
  display: grid;
  gap: 48px;
  max-width: 1024px;
  margin: 40px auto 0;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  line-height: 1;
  color: #ea580c;
  font-weight: 700;
}

.timeline-content {
  border-left: 4px solid #fde66a;
  padding-left: 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-entry h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  color: #92400e;
}

.timeline-entry p {
  margin: 0;
  color: #57534e;
  font-size: 18px;
  line-height: 28px;
}

.about-values {
  padding: 80px 0 120px;
}

.about-values-head {
  text-align: center;
}

.about-values-head .eyebrow {
  color: #ea580c;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.about-values-head h2 {
  font-size: 60px;
  line-height: 1;
  color: #92400e;
  margin: 16px 0 12px;
}

.about-values-head h2 + p {
  max-width: 720px;
  margin: 0 auto;
  color: #57534e;
  font-size: 1rem;
  line-height: 1.8;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  max-width: 1280px;
  margin: 40px auto 0;
}

.value-card--compact {
  background: #fff;
  border-radius: 24px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.value-card--compact h3 {
  margin: 0;
  color: #92400e;
  font-size: 1.4rem;
}

.value-card--compact p {
  margin: 0;
  color: #57534e;
  line-height: 1.75;
  text-align: center;
  max-width: 220px;
}

.value-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 9999px;
}

.value-icon--orange {
  background: #ea580c;
}

.value-icon--brown {
  background: #92400e;
}

.value-icon img {
  width: 36px;
  height: 36px;
}

@media (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-entry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 60vh;
  }

  .about-hero-content {
    padding: 0 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .about-values,
  .about-journey {
    padding: 60px 24px;
  }
}

@media (max-width: 640px) {
  .about-hero-content h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 1200px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .size-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .size-btn {
    width: 100%;
    height: 60px;
  }
}

@media (max-width: 900px) {
  .product-details {
    padding: 60px 24px;
  }

  .product-info h1 {
    font-size: 2rem;
  }

  .product-description {
    font-size: 1rem;
  }

  .price-info .price {
    font-size: 2rem;
  }

  .product-actions {
    gap: 12px;
  }

  .button-primary,
  .button-secondary {
    padding: 16px 24px;
    font-size: 0.95rem;
  }

  .recommendations {
    padding: 48px 24px;
  }

  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .rec-card {
    padding: 24px 16px;
  }
}

@media (max-width: 900px) {
  .shop-sidebar,
  .guides-sidebar {
    grid-template-columns: 1fr;
  }

  .recommendations-grid,
  .review-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .product-details-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shop-section,
  .product-details,
  .guides-section {
    padding: 40px 24px;
  }

  .guides-hero,
  .shop-hero {
    padding: 60px 24px;
  }

  .guides-hero-content h1,
  .shop-hero-content h1 {
    font-size: 2.5rem;
  }

  .product-container {
    gap: 32px;
  }

  .thumbnail-images {
    gap: 12px;
  }

  .thumbnail {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 1200px) {
  .header-inner,
  .section,
  .site-footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .featured-grid,
  .collection-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo,
  .sustainability {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 16px;
  }

  .featured-grid,
  .collection-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }

  .community-copy h2,
  .section-head h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .footer-inner,
  .footer-bottom,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    gap: 24px;
  }

  .footer-links > div {
    flex-basis: 150px;
  }
}
