/* ═══════════════════════════════════════════════════════════
   LOVE OF THE ANCESTORS — home.css
   Homepage Layout Styles · Luxury Botanical Apothecary
   ═══════════════════════════════════════════════════════════ */

/* ══════════════════════════
   HERO — Full screen, clean
   ══════════════════════════ */
.hero-loa {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
}

/* Background image */
.hero-loa-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-loa-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-loa-bg img.loaded { opacity: 1; }
.hero-loa-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg,
      #1e2e22 0%,
      #2A3630 35%,
      #3B4A3F 65%,
      #344038 100%
    );
}

/* Overlay for text legibility */
.hero-loa-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(26,36,30,0.82) 0%,
    rgba(26,36,30,0.55) 55%,
    rgba(26,36,30,0.25) 100%
  );
}

/* Subtle texture dots */
.hero-loa::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-loa-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 4rem;
}

.hero-loa-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-loa-eyebrow-line {
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-loa-eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-loa-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: 1.75rem;
  max-width: 720px;
  letter-spacing: -0.01em;
}
.hero-loa-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-loa-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.75rem;
  font-style: italic;
}

.hero-loa-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Bottom strip: floating trust badges */
.hero-loa-bottom {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-trust-item svg { color: var(--gold); opacity: 0.8; }
.hero-trust-sep { color: rgba(255,255,255,0.15); font-size: 1.1rem; }

/* Scroll indicator */
.hero-loa-scroll {
  position: absolute;
  bottom: 2.5rem; right: 2.5rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-loa-scroll-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-loa-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0.35));
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(5px); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}

/* ══════════════════════════
   WELLNESS GOAL SECTION
   ══════════════════════════ */
.wellness-section {
  padding: 6rem 0;
  background: var(--ivory);
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}

.wellness-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.1rem 1.4rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: var(--ease-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.wellness-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.wellness-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.wellness-card:hover::before { transform: scaleX(1); }

.wellness-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: var(--ease);
}
.wellness-card:hover .wellness-card-icon {
  background: var(--gold-pale);
}
.wellness-card-icon svg { color: var(--forest); }

.wellness-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.2;
}
.wellness-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ══════════════════════════
   COLLECTIONS SECTION
   ══════════════════════════ */
.collections-section {
  padding: 6rem 0;
  background: var(--ivory-dark);
}

.collections-editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
  height: 640px;
}

.col-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: var(--ease-slow);
}
.col-card:hover { transform: scale(1.01); box-shadow: var(--shadow-xl); }
.col-card:hover .col-card-img img { transform: scale(1.06); }

.col-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.col-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.col-card-bg {
  position: absolute;
  inset: 0;
}
.col-bg-teas  { background: linear-gradient(150deg, #2A3630 0%, #3B4A3F 100%); }
.col-bg-sitz  { background: linear-gradient(150deg, #5E4735 0%, #7A5C45 100%); }
.col-bg-bath  { background: linear-gradient(150deg, #4A3824 0%, #5E4735 100%); }

.col-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,28,22,0.85) 0%,
    rgba(20,28,22,0.35) 50%,
    transparent 100%
  );
  z-index: 2;
}
.col-card-content {
  position: relative;
  z-index: 3;
  padding: 2rem 2.25rem;
  width: 100%;
}
.col-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.col-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.col-card-large .col-card-content h3 { font-size: 2.5rem; }
.col-card-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.68);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.col-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, gap 0.2s ease;
}
.col-card:hover .col-card-cta { border-color: var(--gold-light); color: var(--gold-light); gap: 0.75rem; }

.col-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}
.col-card-sm { flex: 1; }
.col-card-large { height: 100%; }

/* ══════════════════════════
   FEATURED PRODUCTS
   ══════════════════════════ */
.featured-section {
  padding: 6rem 0;
  background: var(--ivory);
}

/* ══════════════════════════
   STORY / ABOUT SECTION
   ══════════════════════════ */
.story-section {
  background: var(--ivory-dark);
  overflow: visible;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  align-items: start;
}

/* Image side */
.story-img-side {
  position: sticky;
  top: 0;
  height: 100vh;
  max-height: 780px;
  background: var(--forest-deep);
  overflow: hidden;
}
.story-img-side > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  z-index: 2;
}
.story-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2A3630 0%, #1e2e24 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.story-img-placeholder-icon { display: none; }
.story-img-placeholder span { display: none; }

/* Floating name card */
.story-name-card {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  background: rgba(248,245,239,0.94);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.story-name-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  flex-shrink: 0;
  overflow: hidden;
}
.story-name-avatar img { width: 100%; height: 100%; object-fit: cover; }
.story-name-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-deep);
  display: block;
}
.story-name-card span {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Second inset image */
.story-img-inset {
  position: absolute;
  bottom: 2.5rem; right: 1rem;
  width: 130px; height: 155px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid white;
  z-index: 3;
}
.story-img-inset img { width: 100%; height: 100%; object-fit: cover; }
.story-img-inset-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #4E6257, #2A3630);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  text-align: center;
  padding: 0.5rem;
}

/* Text side */
.story-text-side {
  padding: 5rem 4.5rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory-dark);
}
.story-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.story-eyebrow-line { width: 28px; height: 1px; background: var(--gold); opacity: 0.7; }
.story-eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.story-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest-deep);
  margin-bottom: 2rem;
}
.story-headline em {
  font-style: italic;
  color: var(--brown);
}
.story-body p {
  font-size: 1.0rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.story-opening {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem !important;
  color: var(--forest-deep) !important;
  border-left: 2px solid var(--gold);
  padding-left: 1.1rem;
  margin-bottom: 1.75rem !important;
}
.story-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 1.75rem 0 0.5rem;
  text-transform: none;
}
.story-brand-statement {
  background: var(--ivory-warm, #F3EFE8);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.75rem 0 0.5rem;
  border-radius: 0 4px 4px 0;
}
.story-brand-statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem !important;
  color: var(--forest-deep) !important;
  margin-bottom: 0 !important;
  line-height: 1.7;
}
.story-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--gold);
  margin: 1.75rem 0 2.25rem;
  font-weight: 400;
}
.story-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.story-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.story-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.story-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1;
}
.story-stat span {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.story-stat-div {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════
   TESTIMONIALS
   ══════════════════════════ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--forest-deep);
}
.testimonials-section .section-header .eyebrow { color: var(--gold-light); }
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .gold-rule { background: var(--gold-light); }

.testimonial-large {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}
.testimonial-large::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  font-weight: 400;
}
.testimonial-large-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 740px;
}
.testimonial-large-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--forest-light));
  flex-shrink: 0;
}
.testimonial-large-author strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  display: block;
  margin-bottom: 0.15rem;
}
.testimonial-large-author span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  transition: var(--ease);
}
.testimonial-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.testimonial-stars { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 0.85rem; }
.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.testimonial-card .t-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ══════════════════════════
   BLOG / LEARN SECTION
   ══════════════════════════ */
.learn-section {
  padding: 6rem 0;
  background: var(--ivory-mid);
}

.learn-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

.learn-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ease-slow);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
}
.learn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.learn-card:hover .learn-card-img img { transform: scale(1.04); }

.learn-card-img {
  position: relative;
  overflow: hidden;
}
.learn-card-featured .learn-card-img { height: 300px; }
.learn-card-sm .learn-card-img { height: 170px; }

.learn-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.learn-card-img-bg {
  position: absolute;
  inset: 0;
}
.learn-bg-1 { background: linear-gradient(145deg, #2A3630, #3B4A3F); }
.learn-bg-2 { background: linear-gradient(145deg, #5E4735, #7A5C45); }
.learn-bg-3 { background: linear-gradient(145deg, #3B4A3F, #4E6257); }

.learn-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.learn-card-featured .learn-card-body { padding: 2rem 2.25rem; }
.learn-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.learn-card-body h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}
.learn-card-featured .learn-card-body h3 { font-size: 1.55rem; }
.learn-card-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.learn-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.2s ease, color 0.2s ease;
}
.learn-card:hover .learn-card-link { color: var(--gold); gap: 0.7rem; }

.learn-side {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* ══════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════ */
.newsletter-section {
  background: var(--ivory);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.newsletter-text .eyebrow { display: block; margin-bottom: 0.75rem; }
.newsletter-text h2 { font-size: 2.2rem; margin-bottom: 0.75rem; }
.newsletter-text p { font-size: 1.05rem; line-height: 1.75; }

.newsletter-form-col {}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.newsletter-form input {
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn { width: 100%; }
.newsletter-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
}

/* ══════════════════════════
   FLOATING CART INDICATOR
   ══════════════════════════ */
.floating-cart {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 500;
  background: var(--forest-deep);
  color: white;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(42,54,48,0.3);
  cursor: pointer;
  transition: var(--ease);
}
.floating-cart.visible { display: flex; }
.floating-cart:hover { transform: scale(1.08); background: var(--forest); }
.floating-cart-count {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--gold);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ivory);
}

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
@media (max-width: 1100px) {
  .wellness-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-loa-headline { font-size: clamp(2.4rem, 5vw, 4rem); }
}

@media (max-width: 900px) {
  .collections-editorial-grid { grid-template-columns: 1fr; height: auto; }
  .col-card-large { height: 420px; }
  .col-card-sm { height: 240px; }
  .col-card-stack { height: auto; }

  .story-inner { grid-template-columns: 1fr; align-items: stretch; }
  .story-img-side { position: relative; min-height: 420px; max-height: 500px; height: 500px; }
  .story-text-side { padding: 3.5rem 2rem; }
  .story-img-inset { right: 1rem; }

  .learn-grid { grid-template-columns: 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .testimonial-large { padding: 2rem; }

  .newsletter-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .newsletter-text .eyebrow { display: inline-block; }

  .hero-loa-bottom { flex-wrap: wrap; gap: 1rem; }
  .hero-trust-sep { display: none; }
}

@media (max-width: 768px) {
  .wellness-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-loa-actions { flex-direction: column; align-items: flex-start; }
  .story-img-inset { display: none; }
  .story-name-card { bottom: 1.5rem; left: 1.5rem; }
}

@media (max-width: 520px) {
  .wellness-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .hero-loa-actions { align-items: stretch; }
  .hero-loa-actions .btn { width: 100%; justify-content: center; }
  .story-stats { flex-direction: column; gap: 1.5rem; }
  .story-stat-div { display: none; }
  .testimonials-row { grid-template-columns: 1fr; }
}
