/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --cream:       #faf5ee;
  --cream-mid:   #f2e8d5;
  --cream-dark:  #e8d5b8;
  --warm-tan:    #c9a96e;
  --tan-dark:    #b8924e;
  --text:        #3d2f1e;
  --text-mid:    #6b5440;
  --text-light:  #9e826a;
  --sage:        #7aaa68;
  --sage-light:  #a0c890;
  --sage-dark:   #5a8a4a;
  --mauve:       #c88abf;
  --mauve-light: #e8c4e2;
  --mauve-dark:  #a06898;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;

  --shadow-sm:  0 2px 12px rgba(61, 47, 30, 0.08);
  --shadow-md:  0 8px 32px rgba(61, 47, 30, 0.12);
  --shadow-lg:  0 20px 60px rgba(61, 47, 30, 0.15);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   Typography
   =========================== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--sage-dark);
}

/* ===========================
   Container
   =========================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}

.btn--primary:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--cream-dark);
}

.btn--ghost:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

/* ===========================
   Navigation
   =========================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 100;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

.nav__logo-icon {
  color: var(--sage-dark);
  font-size: 1.6rem;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-dark);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-mid) 60%, #eedfc5 100%);
}

.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.shape--1 {
  width: 500px; height: 500px;
  background: var(--mauve-light);
  top: -150px; right: -100px;
  animation: float-slow 12s ease-in-out infinite;
}

.shape--2 {
  width: 350px; height: 350px;
  background: var(--sage-light);
  bottom: 50px; left: -80px;
  animation: float-slow 15s ease-in-out infinite reverse;
}

.shape--3 {
  width: 250px; height: 250px;
  background: var(--cream-dark);
  top: 40%; left: 40%;
  animation: float-slow 18s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem 2rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fade-up 0.8s var(--transition) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.8s var(--transition) 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--sage-dark);
  display: block;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s var(--transition) 0.6s forwards;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s var(--transition) 0.8s forwards;
}

.hero__illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  animation: fade-in 1s var(--transition) 0.5s forwards;
}

.hero__plant {
  width: min(320px, 85%);
  filter: drop-shadow(0 20px 40px rgba(122, 170, 104, 0.2));
  animation: sway 8s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes sway {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(1.5deg); }
  75%       { transform: rotate(-1.5deg); }
}

.hero__scroll {
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-in 1s ease 1.2s forwards;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--tan-dark), transparent);
  animation: extend-line 2s ease-in-out infinite;
}

@keyframes extend-line {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%       { transform: scaleY(1); opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===========================
   Divider
   =========================== */
.divider {
  padding: 1rem 0;
  overflow: hidden;
  opacity: 0.8;
}

.divider--flip img {
  transform: scaleX(-1);
}

.divider img {
  width: 100%;
  max-height: 80px;
}

/* ===========================
   About Section
   =========================== */
.about {
  padding: 6rem 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__img-wrap {
  position: relative;
  display: inline-block;
}

.about__samovar {
  width: min(320px, 100%);
  filter: drop-shadow(0 30px 50px rgba(196, 160, 100, 0.25));
  transition: transform 0.6s ease;
}

.about__samovar:hover {
  transform: translateY(-8px);
}

.about__badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--sage-dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  box-shadow: var(--shadow-md);
}

.about__text p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about__text em {
  color: var(--mauve-dark);
  font-style: italic;
}

.about__facts {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.fact { text-align: center; }

.fact__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--sage-dark);
  line-height: 1;
}

.fact__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ===========================
   Benefits Section
   =========================== */
.benefits {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream-mid) 0%, var(--cream) 100%);
}

.benefits__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}

.benefits__intro {
  color: var(--text-mid);
  font-size: 1.05rem;
}

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--cream-dark);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===========================
   Brew Section
   =========================== */
.brew {
  padding: 6rem 0;
  background: var(--cream);
}

.brew__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.brew__steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.brew__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.brew__step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  min-width: 2.5rem;
  transition: color var(--transition);
}

.brew__step:hover .brew__step-num {
  color: var(--sage-dark);
}

.brew__step-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.brew__step-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.brew__visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.brew__teapot-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.brew__teapot {
  width: min(280px, 100%);
  filter: drop-shadow(0 20px 40px rgba(196, 160, 100, 0.2));
  transition: transform 0.6s ease;
}

.brew__teapot:hover {
  transform: translateY(-6px);
}

.brew__teacup-wrap {
  position: absolute;
  bottom: -30px;
  right: 5%;
}

.brew__teacup {
  width: min(160px, 50%);
  filter: drop-shadow(0 10px 20px rgba(196, 160, 100, 0.15));
}

.brew__tip {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--cream-mid);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--sage);
  margin-top: 2rem;
}

.brew__tip span {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brew__tip p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
}

/* ===========================
   Quote Section
   =========================== */
.quote-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--sage-dark) 0%, #4a7a3a 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '❧';
  position: absolute;
  font-size: 20rem;
  color: rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  pointer-events: none;
}

.quote {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.quote cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-style: normal;
}

/* ===========================
   Buy / Products Section
   =========================== */
.buy {
  padding: 6rem 0;
  background: var(--cream);
}

.buy__header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--cream-dark);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card--featured {
  border-color: var(--mauve);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--mauve-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.product-card__img {
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream-dark) 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__leaf {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.product-card__body {
  padding: 1.75rem;
}

.product-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--cream-mid);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--text);
  color: var(--cream-mid);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(242, 232, 213, 0.15);
}

.footer__brand .footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 260px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--cream-mid);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--sage-light); }

.footer__contact p {
  font-size: 0.875rem;
  color: var(--cream-mid);
  margin-bottom: 0.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  border: 1px solid rgba(242, 232, 213, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.775rem;
  color: var(--text-light);
}

/* ===========================
   Hero Facts Strip
   =========================== */
.hero__facts-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  margin: 2rem 0 0;
  padding: 0 2rem;
  max-width: 1140px;
  width: 100%;
  align-self: center;
}

.hero__fact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.4rem 1.5rem;
  flex: 1;
  transition: background var(--transition);
}

.hero__fact-item:hover {
  background: rgba(255,255,255,0.4);
}

.hero__fact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.hero__fact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__fact-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.hero__fact-item span {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.hero__fact-divider {
  width: 1px;
  background: var(--cream-dark);
  margin: 1rem 0;
  flex-shrink: 0;
}

/* ===========================
   Plant Section
   =========================== */
.plant {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream-mid) 0%, var(--cream) 100%);
}

.plant__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

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

.plant__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.plant__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.plant__card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.plant__card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.plant__card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.plant__card em {
  color: var(--mauve-dark);
  font-style: italic;
}

/* ===========================
   Scroll Animations
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ===========================
   Mobile Menu
   =========================== */
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav__links.is-open { display: flex; }

  .nav__links a {
    font-size: 1.5rem;
  }

  .nav__burger {
    display: flex;
    z-index: 1000;
  }

  .nav__burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__burger.is-active span:nth-child(2) { opacity: 0; }
  .nav__burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .benefits__grid,
  .buy__grid,
  .plant__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__facts-strip {
    flex-wrap: wrap;
  }

  .hero__fact-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

  .hero__illustration {
    order: -1;
    max-height: 300px;
  }

  .hero__plant { width: 200px; }

  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__cta { justify-content: center; }

  .about__grid,
  .brew__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__badge { right: 0; }

  .about__facts { gap: 1.5rem; }

  .benefits__grid,
  .buy__grid {
    grid-template-columns: 1fr;
  }

  .hero__facts-strip {
    flex-direction: column;
    padding: 0 1rem;
  }

  .hero__fact-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .hero__fact-item {
    padding: 1rem 0.5rem;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .brew__teacup-wrap { bottom: -15px; }
  .brew__teacup { width: 120px; }
}

@media (max-width: 480px) {
  .nav { padding: 1rem; }
  .container { padding: 0 1rem; }
  .brew__grid { gap: 5rem; }
}
