/* -- HERO HOME -- */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--color-cream) 0%, rgba(248,242,231,0) 100%);
  pointer-events: none;
}

.hero {
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('/img/homepage-header.png');
  background-size: cover;
  background-position: center;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  color: var(--color-cream);
  font-size: 7.0rem;
  margin-bottom: 0.5rem;
}

.hero p {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  padding-bottom: 30px;
}

.hero .button {
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  font-family: var(--font-display);
  border-radius: 30px;
  padding: 2.0rem 2.2rem;
  font-size: 1.2rem;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* -- PRODUCT CARDS (homepage 'Explore our range') -- */
.explore-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 2.5rem;
}

.explore-header h2 {
  margin: 0;
  white-space: nowrap;
}

.explore-line {
  flex: 1;
  height: 2px;
  background-color: var(--color-dark);
  opacity: 1;
  margin-bottom: 0.4rem;
}

.explore-arrow {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
  margin-bottom: 0.4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background-color: #ebe3d5;
  border-radius: 4px;
  overflow: hidden;
  padding: 0.6rem;
  box-sizing: border-box;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}

.product-card .card-body {
  padding: 1rem 0.6rem 1.2rem;
}

.product-card .tea-type {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-dark);
}

.product-card .product-name {
  font-family: var(--font-display);
  font-size: 2.3rem;
  margin: 0.3rem 0;
}

.product-card .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.product-image-wrap {
  position: relative;
}

.wishlist-btn {
  position: absolute;
  gap: 1.2rem;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 32px;
  height: 26px;
  z-index: 2;
}

.wishlist-btn img {
  width: 32px;
  height: 26px;
  display: block;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.card-title-row .product-name {
  margin: 0;
}

.add-btn {
  background: none;
  border: none;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* -- OUR STORY -- */
.story-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  min-height: 700px;
}

.story-grid-left {
  display: grid;
  grid-template-rows: 1fr auto;
}

.our-story-card {
  background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.55)), url('/img/our-story-tea-leaves.png');
  background-size: cover;
  background-position: center;
  color: var(--color-cream);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-story-card h2 {
  color: var(--color-cream);
  font-size: 3.0rem;
  margin: 0.5rem 0 1rem;
}

.our-story-card p {
  max-width: 480px;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-family: var(--font-display);
}

.eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.button-outline {
  border: 1px solid var(--color-cream);
  color: var(--color-cream);
  border-radius: 30px;
  padding: 0.7rem 1.6rem;
  display: inline-block;
  width: fit-content;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.find-us-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-cream);
}

.find-us-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.find-us-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-display);
}

.find-us-text .eyebrow {
  color: var(--color-dark);
}

.find-us-text h2 {
  font-size: 3.0rem;
  margin: 0.3rem 0 0.8rem;
}

.find-us-text p {
  color: var(--color-dark);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
}

.arrow-btn {
  width: 40px;
  height: 40px;
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.brew-guide-card {
  position: relative;
  overflow: hidden;
}

.brew-guide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.brew-guide-text {
  position: relative;
  z-index: 2;
  padding: 6rem 3rem;
  max-width: 60%;
}

.brew-guide-text .eyebrow {
  color: var(--color-dark);
}

.brew-guide-text h2 {
  font-size: 3.0rem;
  margin: 0.3rem 0 0.8rem;
  color: var(--color-dark);
}

.brew-guide-text p {
  color: var(--color-dark);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
}

.button-dark {
  background-color: var(--color-dark);
  color: var(--color-cream);
  border-radius: 30px;
  padding: 0.7rem 1.6rem;
  display: inline-block;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

/* -- STATS BANNER -- */
.stats-banner {
  padding-top: 80px;
  padding-bottom: 40px;
  width: 100%;
  line-height: 0;
}

.stats-banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* -- GET IN TOUCH -- */
.get-in-touch {
  padding: 5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.get-in-touch .eyebrow {
  color: var(--color-dark);
  display: block;
  margin-bottom: 0.5rem;
  text-align: center;
}

.get-in-touch h2 {
  font-size: 4.0rem;
  margin: 0.3rem 0 0.8rem;
}

.get-in-touch p {
  color: var(--color-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

.get-in-touch .button-dark {
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.4rem;
}

.or-text {
  color: var(--color-dark);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  display: block;
}

/* -- HOME RESPONSIVE -- */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

@media (max-width: 1024px) and (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .find-us-card {
    grid-template-columns: 1fr;
  }

  .our-story-card,
  .brew-guide-text,
  .find-us-text {
    padding: 2rem;
  }
}