:root {
  --bg: #f5f0e8;
  --bg-soft: #ddd3c4;
  --surface: #ffffff;
  --surface-soft: #f7f3eb;
  --text: #1f3323;
  --text-soft: #5a6c5b;
  --primary: #4f7f4e;
  --primary-strong: #294f31;
  --accent-earth: #a7663f;
  --accent-gold: #d59a55;
  --line: rgba(65, 113, 70, 0.22);
  --shadow: 0 14px 36px rgba(38, 69, 43, 0.12);
  --footer-bg: #f7f3eb;
  --bg-botanico-opacity: 0.42;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg);
}

img {
  max-width: 100%;
}

body {
  font-family: "Quicksand", sans-serif;
  min-height: 100vh;
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("Background/fondo-botanico.png?v=3");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: var(--bg-botanico-opacity);
}

main {
  position: relative;
  z-index: 1;
}

section.hero,
footer.footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.4rem);
  min-height: 108px;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  text-decoration: none;
}

.brand-logo {
  width: 118px;
  height: 118px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: none;
}

.brand {
  font-family: "Pacifico", "Cause", cursive;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary-strong);
  text-decoration: none;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 0.45rem 0.8rem;
  text-align: center;
  min-width: 0;
}

.menu a {
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  line-height: 1.15;
}

.menu a:hover {
  background: rgba(79, 127, 78, 0.12);
  color: var(--primary-strong);
}

.hero {
  padding: 4.4rem 0 3.2rem;
  position: relative;
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  align-items: center;
}

.pill {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.84rem;
  border-radius: 999px;
  background: rgba(79, 127, 78, 0.14);
  color: #294f31;
  border: 1px solid rgba(79, 127, 78, 0.25);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 800;
}

h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 800;
}

p {
  font-weight: 400;
}

h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.8rem);
  line-height: 1.02;
  color: #213f29;
}

.lead {
  margin-top: 0.9rem;
  color: var(--text-soft);
  max-width: 62ch;
  line-height: 1.68;
  font-weight: 600;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin-bottom: 0.7rem;
  color: #264a34;
  font-size: calc(1.65rem + 2px);
  font-weight: 800;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--text-soft);
  font-weight: 500;
  font-size: calc(1rem + 2px);
}

.hero-banners {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.hero-banners img {
  width: 100%;
  height: clamp(270px, 31.5vw, 465px);
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(79, 127, 88, 0.14);
  box-shadow: 0 12px 28px rgba(38, 69, 43, 0.09);
  background: transparent;
}

.section {
  padding: 2.9rem 0;
}

.soft {
  background: transparent;
  border: none;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  color: #254431;
}

.section-text {
  margin: 0.7rem auto 0;
  text-align: center;
  color: var(--text-soft);
  max-width: 68ch;
  font-weight: 600;
}

.cards-grid,
.products-grid,
.ads-grid {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.95rem;
}

.cards-grid .card,
.products-grid .product,
.ads-grid .ad-card {
  flex: 0 1 clamp(260px, 28vw, 310px);
}

.marketing-grid {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.marketing-grid .marketing-card {
  flex: 0 1 clamp(270px, 30vw, 330px);
}

.mother-grid,
.herbs-grid,
.real-grid {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.mother-card,
.herb-card,
.real-card {
  flex: 0 1 clamp(240px, 26vw, 285px);
}

.mother-card,
.herb-card,
.real-card {
  background: #ffffff;
  border: 1px solid rgba(79, 127, 88, 0.22);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.real-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.mother-card img,
.herb-card img,
.real-card img,
.real-card video {
  width: 100%;
  height: clamp(220px, 24vw, 270px);
  object-fit: cover;
  display: block;
}

.real-card video {
  background: #1a1a18;
}

.mother-card:first-child img,
.mother-card:nth-child(3) img {
  object-position: center calc(50% - 36px);
}

.real-card figcaption {
  padding: 1.05rem 0.95rem 0.95rem;
  display: grid;
  align-content: start;
  justify-items: center;
}

.real-card h3 {
  color: #264a34;
  font-size: 1.35rem;
  line-height: 1.08;
  margin-top: 0.15rem;
}

.real-card p {
  color: var(--text-soft);
  margin-top: 0.35rem;
  line-height: 1.55;
  font-weight: 600;
  max-width: 30ch;
}

.mother-card-body,
.herb-card {
  padding: 0.9rem;
  text-align: center;
  display: grid;
  justify-items: center;
}

.mother-card h3,
.herb-card h3 {
  color: #264a34;
  font-size: 1.5rem;
  line-height: 1.05;
}

.mother-card p,
.herb-card p {
  color: var(--text-soft);
  margin-top: 0.35rem;
  line-height: 1.55;
  font-weight: 600;
  max-width: 32ch;
}

.herb-card img {
  height: clamp(190px, 22vw, 220px);
  border-bottom: 1px solid rgba(79, 127, 88, 0.18);
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  margin-bottom: 0.8rem;
}

.herb-card .btn {
  margin-top: 0.7rem;
}

.herb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 520px;
  padding: 1rem 1rem 1.1rem;
}

.herb-card p {
  max-width: 30ch;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.herb-card h3 {
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-card {
  background: #ffffff;
  border: 1px solid rgba(79, 127, 88, 0.25);
  border-radius: 18px;
  padding: 1.05rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.marketing-card h3 {
  color: #264a34;
  font-size: 1.55rem;
  line-height: 1.05;
  margin-bottom: 0.45rem;
}

.marketing-card p {
  color: var(--text-soft);
  line-height: 1.65;
  font-weight: 600;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.marketing-media-grid {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.marketing-media-grid .campaign-card {
  flex: 0 1 clamp(220px, 24vw, 260px);
}

.campaign-card {
  background: #ffffff;
  border: 1px solid rgba(79, 127, 88, 0.22);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.campaign-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  background: #f3efe8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marketing-media-grid .campaign-card:first-child img {
  object-position: center calc(50% - 57px);
}

.marketing-media-grid .campaign-card:nth-child(2) img {
  object-position: center calc(50% - 63px);
}

.campaign-card h3,
.campaign-card p {
  padding-left: 0.85rem;
  padding-right: 0.85rem;
}

.campaign-card h3 {
  padding-top: 0.75rem;
  color: #264a34;
  font-size: 1.28rem;
  line-height: 1.12;
}

.campaign-card p {
  padding-top: 0.3rem;
  padding-bottom: 0.9rem;
  color: var(--text-soft);
  line-height: 1.45;
  font-weight: 600;
}

.campaign-card:hover img {
  transform: translateY(-3px);
}

/* Sección clientes: texto más compacto */
main section#clientes h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.4rem);
}

main section#clientes > .container > .section-text {
  font-size: clamp(0.88rem, 1.45vw, 0.97rem);
  line-height: 1.48;
  max-width: 70ch;
}

.prep-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.2rem;
  align-items: center;
}

.prep-copy {
  text-align: left;
}

.prep-copy h2 {
  text-align: left;
}

.prep-copy p {
  color: var(--text-soft);
  line-height: 1.7;
  font-weight: 600;
  margin: 0.7rem 0 1rem;
  max-width: 62ch;
}

.prep-image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(79, 127, 88, 0.22);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.card,
.product,
.ad-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.ad-card {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  text-align: center;
  align-items: center;
  min-height: clamp(470px, 52vw, 520px);
}

.ad-card img {
  width: 100%;
  height: clamp(190px, 22vw, 230px);
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(79, 127, 88, 0.18);
  background: #f5f2eb;
}

.ads-grid .ad-card:nth-child(3) img {
  object-position: center calc(50% - 20px);
}

.ad-card p {
  max-width: 34ch;
}

.ads-grid .ad-card .btn {
  width: min(100%, 240px);
  min-height: 52px;
  padding: 0.72rem 1.2rem;
  font-size: 1.06rem;
  line-height: 1.1;
}

.product {
  text-align: center;
  justify-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: clamp(410px, 45vw, 455px);
}

.product p {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .btn,
.ad-card .btn,
.herb-card .btn {
  width: min(100%, 220px);
  min-height: 44px;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  text-align: center;
}

.ad-card-featured {
  background: #ffffff;
  border-color: rgba(185, 131, 90, 0.35);
}

.card,
.product,
.ad-card,
.hero-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product {
  position: relative;
  overflow: hidden;
}

.product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5b8b60, #d6a66b);
}

.products-grid .product:nth-child(2)::before {
  background: linear-gradient(90deg, #6b5f9a, #80b9cf);
}

.products-grid .product:nth-child(3)::before {
  background: linear-gradient(90deg, #4b7f6b, #b7a56a);
}

.products-grid .product:nth-child(4)::before {
  background: linear-gradient(90deg, #8a6a52, #e1c070);
}

.products-grid .product:nth-child(5)::before {
  background: linear-gradient(90deg, #3d6d4f, #8dbf94);
}

.products-grid .product:nth-child(6)::before {
  background: linear-gradient(90deg, #6d7763, #d3a07c);
}

.card:hover,
.product:hover,
.ad-card:hover,
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(55, 74, 57, 0.16);
}

.card p,
.ad-card p,
.product p {
  color: var(--text-soft);
  font-weight: 600;
}

.cards-grid .card h3 {
  font-size: calc(1.5rem + 2px);
  font-weight: 800;
}

.product img {
  width: 100%;
  height: clamp(190px, 22vw, 230px);
  object-fit: contain;
  border-radius: 12px;
  background: #f8f6f2;
  border: 1px solid rgba(79, 127, 88, 0.18);
}

.product-img-hover {
  position: relative;
  width: 100%;
  height: clamp(190px, 22vw, 230px);
  border-radius: 12px;
  background: #f8f6f2;
  border: 1px solid rgba(79, 127, 88, 0.18);
  overflow: hidden;
}

.product-img-hover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: none;
  border-radius: 0;
  background: transparent;
}

.product-img-hover img:last-child {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.product:hover .product-img-hover img:last-child {
  opacity: 1;
}

.real-img-hover {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.real-img-hover img:first-child {
  width: 100%;
  height: clamp(220px, 24vw, 270px);
  object-fit: cover;
  display: block;
}

.real-img-hover img:last-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.real-card:hover .real-img-hover img:last-child {
  opacity: 1;
}

.product h3 {
  margin-top: 0.7rem;
  font-size: 1.58rem;
  color: #264a34;
  line-height: 1.06;
}

.product .cat {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #8a5734;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(213, 154, 85, 0.12);
  border: 1px solid rgba(167, 102, 63, 0.24);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

.ad-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #8a5734;
  background: rgba(213, 154, 85, 0.12);
  border: 1px solid rgba(167, 102, 63, 0.24);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ad-card h3 {
  margin-bottom: 0.45rem;
  color: #264a34;
  font-size: 1.6rem;
}

.contact-box {
  text-align: center;
}

.contact-box p {
  color: var(--text-soft);
  max-width: 62ch;
  margin: 0.8rem auto 1rem;
}

.contact-social {
  margin-bottom: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.62rem 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, #4f7f4e, #294f31);
  color: #fff;
  box-shadow: 0 8px 20px rgba(41, 79, 49, 0.25);
}

.btn-outline {
  border-color: rgba(167, 102, 63, 0.42);
  color: #7b4c2f;
  background: rgba(255, 255, 255, 0.92);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(79, 127, 78, 0.44);
  color: #294f31;
}

.footer {
  padding: 0;
  color: #6c7b6d;
  font-weight: 600;
  background: var(--footer-bg);
  border-top: 1px solid rgba(90, 75, 60, 0.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  text-align: left;
  padding: 1.8rem 0;
}

.footer-two-col {
  min-height: 0;
}

.footer-cta h2 {
  text-align: left;
}

.footer-cta {
  order: 2;
}

.footer-cta p {
  margin: 0.65rem 0 0.9rem;
  color: var(--text-soft);
  max-width: 56ch;
  line-height: 1.6;
  font-weight: 600;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-brand-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: start;
  order: 1;
}

.footer-brand-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 22px;
  background: #294f31;
  border: 1px solid rgba(79, 127, 88, 0.22);
  box-shadow: 0 10px 24px rgba(55, 74, 57, 0.13);
  flex-shrink: 0;
}

.footer-copy-block h3 {
  color: #264a34;
  font-size: 1.8rem;
  line-height: 1;
}

.footer-copy-block p {
  margin-top: 0.3rem;
  color: var(--text-soft);
  max-width: 44ch;
  line-height: 1.55;
  font-weight: 600;
}

.footer-copy-block a {
  display: inline-block;
  margin-top: 0.45rem;
  color: #7b4c2f;
  font-weight: 700;
  text-decoration: none;
}

/* Estandar tipografico global (excepto hero) */
main h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  line-height: 1.14;
}

main h3,
main .card h3,
main .marketing-card h3,
main .campaign-card h3,
main .mother-card h3,
main .herb-card h3,
main .real-card h3,
main .ad-card h3,
main .product h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.65rem);
  line-height: 1.16;
  font-weight: 800;
}

main p,
main .section-text,
main .card p,
main .product p,
main .ad-card p,
main .mother-card p,
main .herb-card p,
main .real-card p,
main .marketing-card p,
main .campaign-card p,
main .prep-copy p {
  font-size: clamp(1rem, 1.55vw, 1.08rem);
  line-height: 1.58;
}

.floating-instagram {
  position: fixed;
  left: max(14px, env(safe-area-inset-left, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 180;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  background: radial-gradient(circle at 30% 105%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 10px 26px rgba(48, 37, 71, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.floating-instagram:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 30px rgba(48, 37, 71, 0.4),
    0 3px 8px rgba(0, 0, 0, 0.18);
}

.floating-instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .brand-logo {
    width: 96px;
    height: 96px;
  }

  .brand {
    font-size: 1.7rem;
  }

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

  .hero-banners {
    grid-template-columns: 1fr;
  }

  .prep-section {
    grid-template-columns: 1fr;
  }

  .prep-copy,
  .prep-copy h2 {
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-cta h2 {
    text-align: center;
  }

  .footer-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-actions {
    justify-content: center;
  }

  .footer-brand-panel {
    justify-self: center;
    flex-direction: column;
  }

  .nav .btn {
    display: none;
  }
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.7rem 0;
  }

  .brand-wrap {
    justify-content: center;
  }

  .menu {
    justify-content: center;
    gap: 0.35rem;
  }

  .menu a {
    font-size: 0.92rem;
    padding: 0.42rem 0.65rem;
  }
}

@media (max-width: 720px) {
  body::before {
    background-attachment: scroll;
  }

  .container {
    width: min(100% - 1.5rem, 1120px);
  }

  .topbar {
    position: relative;
  }

  .nav {
    min-height: 0;
    gap: 0.65rem;
  }

  .brand-logo {
    width: 88px;
    height: 88px;
  }

  .brand {
    font-size: 1.55rem;
  }

  .menu {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    padding: 0.25rem 0 0.45rem;
    scrollbar-width: thin;
  }

  .menu a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.85rem;
  }

  .hero {
    padding: 2.7rem 0 2.2rem;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-banners img {
    height: 360px;
  }

  .hero-actions,
  .footer-actions {
    justify-content: center;
  }

  .section {
    padding: 2.25rem 0;
  }

  .cards-grid .card,
  .products-grid .product,
  .ads-grid .ad-card,
  .marketing-grid .marketing-card,
  .mother-card,
  .herb-card,
  .real-card,
  .marketing-media-grid .campaign-card {
    flex-basis: min(100%, 340px);
  }

  .product,
  .herb-card,
  .ad-card {
    min-height: auto;
  }

  .product .btn,
  .ad-card .btn,
  .herb-card .btn,
  .footer-actions .btn,
  .prep-copy .btn {
    width: min(100%, 280px);
  }

  .footer-brand-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.05rem, 12vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.2rem);
  }

  .lead,
  .section-text,
  .footer-cta p,
  .prep-copy p {
    font-size: 0.95rem;
  }

  .brand {
    font-size: 1.35rem;
  }

  .brand-logo {
    width: 78px;
    height: 78px;
  }

  .mother-card img,
  .herb-card img,
  .real-card > img,
  .real-card > video,
  .real-img-hover img:first-child,
  .product > img,
  .ad-card img {
    height: 190px;
  }

  .product .product-img-hover {
    height: 190px;
  }

  .real-card .real-img-hover img:first-child {
    height: 190px;
  }

  .real-card .real-img-hover img:last-child {
    height: 100%;
  }

  .hero-banners img {
    height: 285px;
    border-radius: 14px;
  }

  .footer-actions {
    flex-direction: column;
    align-items: center;
  }

  .floating-instagram {
    width: 3.1rem;
    height: 3.1rem;
  }
}
