/* ═══════════════════════════════════════════════════════════
   BIOLILA BRAND CSS — override Bootstrap + inject brand tokens
   Load LAST so it wins over theme.css
═══════════════════════════════════════════════════════════ */

/* ── Google Fonts (preloaded in layout, referenced here) ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── Brand tokens ── */
:root {
  --bio-blush:          #e8b4b8;
  --bio-blush-soft:     #f5e0e2;
  --bio-blush-deep:     #c27a80;
  --bio-sage:           #9cb49a;

  --bio-sage-soft:      rgba(156,180,154,0.10);
  --bio-bg:             #fdf8f6;
  --bio-surface:        #fff9f7;
  --bio-surface-2:      #fdf2ef;
  --bio-surface-3:      #fae8e4;
  --bio-text:           #2a1f1a;
  --bio-text-muted:     #9a7c76;
  --bio-text-light:     #c4a8a3;
  --bio-border:         #ecdbd7;
  --bio-footer-bg:      #2a1f1a;
  --bio-radius-pill:    999px;
  --bio-radius-lg:      20px;
  --bio-radius-xl:      28px;
  --bio-shadow:         0 2px 16px rgba(42,31,26,0.08);
  --bio-shadow-hover:   0 8px 32px rgba(42,31,26,0.14);
  --bio-transition:     250ms cubic-bezier(0.4,0,0.2,1);

  /* Override Bootstrap variables */
  --bs-primary:         #e8b4b8;
  --bs-primary-rgb:     232,180,184;
  --bs-body-bg:         #fdf8f6;
  --bs-body-color:      #2a1f1a;
  --bs-body-font-family: 'DM Sans', system-ui, sans-serif;
  --bs-body-font-size:  1rem;
  --bs-body-line-height:1.65;
  --bs-border-color:    #ecdbd7;
  --bs-dark:            #2a1f1a;
}

/* ── Global base ── */
html { scroll-behavior: smooth; }
body {
  background-color: var(--bio-bg) !important;
  color: var(--bio-text) !important;
  font-family: 'DM Sans', system-ui, sans-serif !important;
}

/* ── Display headings → Cormorant Garamond ── */
h1, h2, h3,
.display-font,
.section-title-bio,
.hero-headline-bio {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300 !important;
}

h1 { letter-spacing: -0.01em; }
h2 { font-weight: 400 !important; }

/* ─────────────────────────────────────────────
   NAVIGATION OVERRIDES
───────────────────────────────────────────── */
#header .main-header,
#header .sticky-area .main-header {
  background-color: rgba(253,248,246,0.92) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid var(--bio-border) !important;
  transition: background var(--bio-transition), box-shadow var(--bio-transition) !important;
}

/* When scrolled */
#header.sticky-on .main-header {
  box-shadow: 0 1px 24px rgba(42,31,26,0.08) !important;
}

/* Nav links */
#header .nav-link,
#header .navbar-nav .nav-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: var(--bio-text) !important;
  padding: 4px 0 !important;
  position: relative;
}

#header .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--bio-blush-deep);
  transition: left var(--bio-transition), right var(--bio-transition);
}

#header .nav-link:hover::after,
#header .nav-link.selected-nav-item::after {
  left: 0;
  right: 0;
}

#header .nav-link:hover,
#header .nav-link.selected-nav-item {
  color: var(--bio-blush-deep) !important;
}

/* Primary button override */
.btn-primary,
.btn-dark,
.btn.btn-dark {
  background: var(--bio-blush) !important;
  border-color: var(--bio-blush) !important;
  color: #fff !important;
  border-radius: var(--bio-radius-pill) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em !important;
  transition: background var(--bio-transition), transform var(--bio-transition), box-shadow var(--bio-transition) !important;
}

.btn-primary:hover,
.btn-dark:hover {
  background: var(--bio-blush-deep) !important;
  border-color: var(--bio-blush-deep) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(194,122,128,0.3) !important;
}

/* White button → outlined blush */
.btn-white {
  background: rgba(255,255,255,0.92) !important;
  color: var(--bio-text) !important;
  border: 1px solid var(--bio-border) !important;
  border-radius: var(--bio-radius-pill) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.8125rem !important;
  backdrop-filter: blur(8px);
}

/* ─────────────────────────────────────────────
   PRODUCT CARDS
───────────────────────────────────────────── */
.product-card,
.card.product-card {
  border-radius: var(--bio-radius-lg) !important;
  border: 1px solid var(--bio-border) !important;
  background: var(--bio-surface) !important;
  overflow: hidden;
  transition: box-shadow var(--bio-transition), transform var(--bio-transition) !important;
}

.product-card:hover {
  box-shadow: var(--bio-shadow-hover) !important;
  transform: translateY(-4px) !important;
}

/* Product card title */
.product-card .card-title,
.product-card h3,
.product-card .js-name-b2 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400 !important;
  font-size: 1.15rem !important;
}

/* Price */
.product-card .price,
.product-card .product-price {
  color: var(--bio-blush-deep) !important;
  font-weight: 600 !important;
}

/* Add to cart button */
.product-card .btn-cart,
.product-card .btn-add-cart {
  background: var(--bio-blush) !important;
  color: #fff !important;
  border-radius: var(--bio-radius-pill) !important;
  border: none !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
}

/* ─────────────────────────────────────────────
   SECTION HEADERS (Bootstrap-based sections)
───────────────────────────────────────────── */
section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400 !important;
  color: var(--bio-text) !important;
}

/* ─────────────────────────────────────────────
   HERO SECTION — Bio-style override
───────────────────────────────────────────── */
.bio-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--bio-bg);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.bio-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}

.bio-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bio-blush-deep);
  margin-bottom: 20px;
}

.bio-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bio-blush);
  flex-shrink: 0;
}

.bio-headline {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem) !important;
  font-weight: 300 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.01em !important;
  color: var(--bio-text) !important;
  margin-bottom: 24px !important;
}

.bio-headline em {
  font-style: italic;
  color: var(--bio-blush-deep);
}

.bio-hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bio-text-muted);
  max-width: 440px;
  margin-bottom: 36px;
}

.bio-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.bio-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--bio-blush);
  color: #fff !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--bio-radius-pill);
  border: none;
  cursor: pointer;
  min-height: 44px;
  text-decoration: none !important;
  transition: background var(--bio-transition), transform var(--bio-transition), box-shadow var(--bio-transition);
}

.bio-btn-primary:hover {
  background: var(--bio-blush-deep) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,122,128,0.32);
}

.bio-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--bio-text-muted) !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  min-height: 44px;
  transition: color var(--bio-transition), border-color var(--bio-transition);
}

.bio-btn-ghost:hover {
  color: var(--bio-text) !important;
  border-color: var(--bio-text-muted);
}

.bio-dz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  border-radius: var(--bio-radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bio-text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.bio-hero-img-wrap {
  position: relative;
  border-radius: var(--bio-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bio-surface-2);
}

.bio-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.bio-hero-img-wrap:hover img { transform: scale(1.03); }

/* ─── Hero product collage ─── */
.bio-hero-collage {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  height: 540px;
}

.bio-hero-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bio-hero-col-main { padding-top: 0; }
.bio-hero-col-side { padding-top: 48px; }

.bio-hero-img-tile {
  border-radius: var(--bio-radius-xl);
  overflow: hidden;
  background: var(--bio-surface-2);
  flex: 1;
}

.bio-hero-img-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 500ms ease;
}

.bio-hero-img-tile:hover img { transform: scale(1.04); }

.bio-hero-tile-lg { flex: 1.6; }
.bio-hero-tile-sm { flex: 1; }

@media (max-width: 900px) {
  .bio-hero-collage {
    height: 320px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .bio-hero-col-side { padding-top: 24px; }
  .bio-hero-img-tile { border-radius: var(--bio-radius-lg); }
  /* Contain floats so they don't bleed into the text below on single-column layout */
  .bio-hero-visual {
    overflow: hidden;
    border-radius: var(--bio-radius-xl);
  }
  .bio-hero-float { display: none; }
}

@media (max-width: 640px) {
  .bio-hero-collage {
    height: 220px;
    gap: 6px;
  }
  /* Show only 2 images on small phones — hide the side column */
  .bio-hero-col-side { display: none; }
  .bio-hero-collage { grid-template-columns: 1fr; }
  .bio-hero-col-main { flex-direction: row; gap: 6px; }
  .bio-hero-tile-lg, .bio-hero-tile-sm { flex: 1; }
}

.bio-hero-float {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(45px);
}
.bio-hero-float-1 {
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--bio-blush-soft);
  opacity: 0.35;
}
.bio-hero-float-2 {
  bottom: -30px; left: -20px;
  width: 150px; height: 150px;
  background: rgba(156,180,154,0.3);
  opacity: 0.4;
}

/* ─────────────────────────────────────────────
   TRUST TICKER
───────────────────────────────────────────── */
.bio-ticker-wrap {
  background: var(--bio-blush);
  overflow: hidden;
  padding: 13px 0;
  width: 100%;
}

.bio-ticker-track {
  display: flex;
  width: max-content;
  animation: bio-ticker 36s linear infinite;
}

@keyframes bio-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.bio-ticker-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  white-space: nowrap;
}

.bio-ticker-item span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.bio-ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .bio-ticker-track { animation: none; }
}

/* ─────────────────────────────────────────────
   SECTION LABEL
───────────────────────────────────────────── */
.bio-section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bio-blush-deep);
  margin-bottom: 10px;
  display: block;
}

.bio-section-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.85rem, 3.2vw, 2.9rem) !important;
  font-weight: 400 !important;
  color: var(--bio-text) !important;
  line-height: 1.2 !important;
  margin-bottom: 14px;
}

.bio-section-desc {
  font-size: 0.9375rem;
  color: var(--bio-text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   REAL PRODUCT GRID
───────────────────────────────────────────── */
.bio-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.bio-product-card {
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  border-radius: var(--bio-radius-xl);
  overflow: hidden;
  transition: box-shadow var(--bio-transition), transform var(--bio-transition);
  cursor: pointer;
}

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

.bio-product-card.bio-hidden {
  display: none;
}

.bio-product-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bio-surface-2);
  text-decoration: none;
}

.bio-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.bio-product-card:hover .bio-product-img-wrap img {
  transform: scale(1.04);
}

.bio-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--bio-radius-pill);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bio-blush-deep);
}

.bio-product-body {
  padding: 18px 20px 20px;
}

.bio-product-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bio-text-light);
  margin-bottom: 5px;
}

.bio-product-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: var(--bio-text) !important;
  line-height: 1.3;
  margin-bottom: 7px;
}

.bio-product-benefit {
  font-size: 0.8125rem;
  color: var(--bio-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.bio-product-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bio-blush-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  min-height: 36px;
  transition: gap var(--bio-transition), color var(--bio-transition);
}

.bio-product-link:hover {
  gap: 10px;
  color: var(--bio-blush);
}

.bio-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.bio-product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bio-text);
}

.bio-product-old-price {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--bio-text-muted);
  text-decoration: line-through;
}

.bio-product-badge-sale {
  background: var(--bio-sage);
  color: #fff;
}

@media (max-width: 1100px) {
  .bio-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .bio-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ─────────────────────────────────────────────
   CATEGORY FILTER PILLS
───────────────────────────────────────────── */
.bio-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bio-pill {
  padding: 9px 22px;
  border-radius: var(--bio-radius-pill);
  border: 1px solid var(--bio-border);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--bio-text-muted);
  background: transparent;
  cursor: pointer;
  min-height: 40px;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--bio-transition);
  text-decoration: none;
}

.bio-pill:hover {
  border-color: var(--bio-blush);
  color: var(--bio-blush-deep);
  background: transparent;
}

.bio-pill.active {
  background: var(--bio-blush) !important;
  border-color: var(--bio-blush) !important;
  color: #fff !important;
}

/* ─────────────────────────────────────────────
   RITUAL SECTION
───────────────────────────────────────────── */
.bio-ritual {
  background: linear-gradient(to bottom, transparent, rgba(156,180,154,0.07) 25%, rgba(156,180,154,0.10) 75%, transparent);
}

.bio-ritual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.bio-ritual-img {
  border-radius: var(--bio-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bio-surface-2);
}

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

.bio-ritual-step {
  padding: 18px 0;
  border-bottom: 1px solid var(--bio-border);
}

.bio-ritual-step:last-child { border-bottom: none; }

.bio-ritual-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--bio-border);
  line-height: 1;
  margin-bottom: -12px;
  letter-spacing: -0.02em;
}

.bio-ritual-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bio-text);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.bio-ritual-desc {
  font-size: 0.85rem;
  color: var(--bio-text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   STORY SECTION
───────────────────────────────────────────── */
.bio-story {
  background: var(--bio-surface-2);
  position: relative;
  overflow: hidden;
}

.bio-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.bio-story-img {
  border-radius: var(--bio-radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bio-surface-3);
}

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

.bio-quote {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.5rem) !important;
  font-weight: 300 !important;
  line-height: 1.35 !important;
  color: var(--bio-text) !important;
  margin-bottom: 24px;
}

.bio-story-body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--bio-text-muted);
  margin-bottom: 16px;
}

.bio-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}

.bio-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bio-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bio-sage);
}

.bio-pillar-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bio-text);
  margin-bottom: 2px;
}

.bio-pillar-text span {
  font-size: 0.8125rem;
  color: var(--bio-text-muted);
}

/* ─────────────────────────────────────────────
   REVIEWS
───────────────────────────────────────────── */
.bio-reviews-bg {
  background: linear-gradient(160deg, var(--bio-surface-2) 0%, var(--bio-bg) 100%);
}

.bio-reviews-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  margin: 0 -24px;
  padding: 0 24px 24px;
}

.bio-reviews-scroll::-webkit-scrollbar { display: none; }
.bio-reviews-scroll.grabbing { cursor: grabbing; }

.bio-reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-right: 24px;
}

.bio-review-card {
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  border-radius: var(--bio-radius-xl);
  padding: 28px;
  width: 310px;
  flex-shrink: 0;
  box-shadow: var(--bio-shadow);
}

.bio-review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #f4b942;
}

.bio-review-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--bio-text);
  margin-bottom: 20px;
}

.bio-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bio-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bio-surface-3);
  flex-shrink: 0;
}

.bio-review-avatar img { width: 100%; height: 100%; object-fit: cover; }

.bio-review-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bio-text);
}

.bio-review-city {
  font-size: 0.8rem;
  color: var(--bio-text-muted);
}

/* ─────────────────────────────────────────────
   INSTAGRAM GRID
───────────────────────────────────────────── */
.bio-insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.bio-insta-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bio-surface-2);
  cursor: pointer;
}

.bio-insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.bio-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,31,26,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--bio-transition);
}

.bio-insta-tile:hover .bio-insta-overlay { opacity: 1; }
.bio-insta-tile:hover img { transform: scale(1.06); }
.bio-insta-overlay svg { color: #fff; }

/* ─────────────────────────────────────────────
   FOOTER OVERRIDE
───────────────────────────────────────────── */
.bio-footer {
  background: var(--bio-footer-bg) !important;
  color: #c4aca6;
  padding: 80px 0 0;
}

.bio-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.bio-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.bio-footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e8dbd8;
}

.bio-footer-tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #7a605a;
  margin-bottom: 22px;
  max-width: 270px;
}

.bio-footer-socials {
  display: flex;
  gap: 12px;
}

.bio-footer-social {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a605a;
  text-decoration: none;
  transition: border-color var(--bio-transition), color var(--bio-transition);
}

.bio-footer-social:hover {
  border-color: var(--bio-blush);
  color: var(--bio-blush) !important;
}

.bio-footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8dbd8;
  margin-bottom: 18px;
  display: block;
}

.bio-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bio-footer-links a {
  font-size: 0.875rem;
  color: #7a605a;
  text-decoration: none;
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: color var(--bio-transition);
}

.bio-footer-links a:hover { color: #c4aca6; }

.bio-footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.bio-footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--bio-blush);
}

.bio-footer-contact-item span {
  font-size: 0.875rem;
  color: #7a605a;
  line-height: 1.5;
}

.bio-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bio-footer-bottom p {
  font-size: 0.8125rem;
  color: #5a3f3a;
  margin: 0;
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.bio-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

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

@media (prefers-reduced-motion: reduce) {
  .bio-reveal { opacity: 1; transform: none; transition: none; }
}

/* ─────────────────────────────────────────────
   SLICK SLIDER OVERRIDES
───────────────────────────────────────────── */
.slick-dots li button::before {
  color: var(--bio-blush) !important;
}

.slick-dots li.slick-active button::before {
  color: var(--bio-blush-deep) !important;
}

.slick-prev::before,
.slick-next::before {
  color: var(--bio-text) !important;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bio-footer-inner { grid-template-columns: 1fr 1fr; }
  .bio-insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .bio-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 48px;
  }
  .bio-hero-inner .bio-hero-visual { order: -1; }
  .bio-hero-img-wrap { aspect-ratio: 16/9; }
  .bio-ritual-inner { grid-template-columns: 1fr; gap: 40px; }
  .bio-ritual-img { aspect-ratio: 16/9; }
  .bio-story-inner { grid-template-columns: 1fr; gap: 36px; }
  .bio-story-img { aspect-ratio: 16/9; order: -1; }
}

@media (max-width: 640px) {
  .bio-insta-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-insta-tile:last-child { display: none; }
  .bio-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .bio-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .bio-section-title { font-size: 1.85rem !important; }
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid var(--bio-blush);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Section padding utility */
.bio-pad { padding: 88px 0; }
.bio-pad-sm { padding: 60px 0; }

/* Warm section background */
.bio-bg-warm { background-color: var(--bio-surface-2); }
.bio-bg-body  { background-color: var(--bio-bg); }
