/* ============================================================
   HOME PAGE — 3 blocks (Hero, About, New Arrivals)
   ============================================================ */

/* ===== BLOCK 1: HERO CINEMATIC ===== */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end; /* Changed from align-items: center; to align to bottom */
  justify-content: center;
  overflow: hidden;
}
.hero-cinematic .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-cinematic-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 1032px;
  padding: 60px 30px 100px; /* Increased bottom padding to ensure proper spacing from bottom */
  margin: 0 auto;
}
.hero-title-big {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 200;
  font-size: 93px;
  line-height: 1.9;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.hero-title-big em { font-style: italic; }

.hero-desc-wrap { padding: 10px 0; max-width: 1032px; margin: 0 auto; }
.hero-desc-big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
}
.hero-brand-inline {
  font-family: 'Playfair Display', serif;
  font-size: 120%;
}
.hero-brand-inline em { font-style: italic; }

.hero-actions-grid {
  display: flex; justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-pink {
  display: inline-block;
  padding: 17px 115px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgb(255,209,245);
  color: #ad1f9b;
  border: 1px solid rgb(255,209,245);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-pink:hover {
  background: rgb(245,190,235);
  border-color: rgb(245,190,235);
}

.btn-outline {
  display: inline-block;
  padding: 17px 115px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== BLOCK 2: ABOUT ===== */
.about-block {
  background: rgba(244,244,244,0.45);
  padding: 60px 0;
}
.about-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 50px;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  text-align: center;
}
.about-card-dark {
  background: rgb(255, 209, 245);
  border-color: rgba(220, 150, 200, 0.35);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.about-card-dark .about-title { color: #1a1a1f; }
.about-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: #3d1a2e;
  margin-bottom: 20px;
}
.about-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #1a1a1f;
  margin-bottom: 16px;
  text-align: center;
}
.about-card-dark .about-text { color: #1a1a1f; }
/* Button on pink background — use dark outline */
.about-card-dark .btn-outline-light {
  color: #3d1a2e;
  border-color: #3d1a2e;
}
.about-card-dark .btn-outline-light:hover {
  background: #3d1a2e;
  color: rgb(255, 209, 245);
}
.about-cta {
  margin-top: 30px;
}
.btn-outline-dark {
  display: inline-block;
  padding: 17px 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  color: #111;
  border: 1px solid #111;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline-dark:hover {
  background: #111;
  color: #fff;
}
.btn-outline-light {
  display: inline-block;
  padding: 17px 60px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  color: #f5d9ec;
  border: 1px solid #f5d9ec;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline-light:hover {
  background: #f5d9ec;
  color: #3d1a2e;
}

/* ===== BLOCK 4: FEATURES ===== */
.features-block {
  background: hsl(30,20%,98%);
  padding: 80px 0;
}
.features-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #1a1a1f;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.4;
}
.features-title em { font-style: italic; color: #3d1a2e; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: none;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
}
.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #f0dcea;
  line-height: 1;
  margin-bottom: 12px;
}
.feature-accent {
  width: 40px;
  height: 2px;
  background: rgb(255,209,245);
  margin-bottom: 16px;
}
.feature-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #333;
}
.feature-text strong {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: #1a1a1f;
}
.features-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  text-align: center;
  color: #3d1a2e;
  margin-top: 48px;
}

/* ===== BLOCK 3: NEW ARRIVALS ===== */
.new-block {
  background: #fff;
  padding: 40px 0 80px 0;
}

#dl-root, #dl-root * { box-sizing: border-box; }

#dl-root {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #333;
  background: #fff;
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 30px;
}

#dl-root .dl-header { text-align: center; margin-bottom: 32px; }
#dl-root .dl-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  font-style: italic;
  color: #1a1a1f;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#dl-root .dl-layout { display: block; }
#dl-root .dl-content { width: 100%; min-width: 0; }
#dl-root .dl-sidebar { display: none !important; }

#dl-root .dl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 1200px) { #dl-root .dl-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { #dl-root .dl-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { #dl-root .dl-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

#dl-root .dl-card {
  position: relative;
  background: #fff;
  border: 1px solid #ececec;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: border-color 0.3s ease;
}
#dl-root .dl-card:hover { border-color: rgb(255,209,245); }

#dl-root .dl-card-media {
  position: relative; width: 100%; height: 320px;
  background: #ffffff; overflow: hidden; flex-shrink: 0;
}
#dl-root .dl-media-img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.25,0.1,0.25,1);
}
#dl-root .dl-card:hover .dl-media-img { transform: scale(1.05); }

#dl-root .dl-card-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: center;
  opacity: 0; transition: opacity 0.25s; pointer-events: none; z-index: 10;
}
#dl-root .dl-card:hover .dl-card-overlay { opacity: 1; pointer-events: all; }
#dl-root .dl-btn-add-cart {
  width: 100%; padding: 12px 20px;
  background: rgb(255,209,245); color: #1a1a1f; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 600;
}
#dl-root .dl-btn-add-cart:hover { background: rgb(245,190,235); }

#dl-root .dl-card-body {
  padding: 18px 15px 18px 15px;
  display: flex; flex-direction: column;
}
#dl-root .dl-card-name {
  font-size: 14px;
  color: #1a1a1f; margin-bottom: 8px; min-height: 42px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
#dl-root .dl-card-article {
  font-size: 10px; color: #999; margin-bottom: 10px;
  letter-spacing: 1px; text-transform: uppercase;
}
#dl-root .dl-card-price { font-size: 18px; font-weight: 700; color: #1a1a1f; }

#dl-root .dl-fav-btn {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border: none;
  background: rgba(255,255,255,0.9);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: all 0.3s; opacity: 0;
}
#dl-root .dl-card:hover .dl-fav-btn,
#dl-root .dl-fav-btn.active { opacity: 1; }
#dl-root .dl-fav-btn:hover { background: #fff; }

#dl-root .dl-card-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 5px; z-index: 6;
}
#dl-root .dl-badge {
  padding: 4px 8px; font-size: 9px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}


#dl-root .dl-state {
  text-align: center; padding: 80px 40px;
  color: #828b95; background: #fafafa;
  border: 1px solid #ececec;
}

/* media nav (dots) */
#dl-root .dl-media-nav {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; pointer-events: none; z-index: 5;
}
#dl-root .dl-media-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(220,220,220,0.7); cursor: pointer; pointer-events: all;
}
#dl-root .dl-media-dot.active { background: #adadad; }

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title-big { font-size: 70px; }
}
@media (max-width: 768px) {
  .hero-title-big { font-size: 51px; line-height: 1.4; }
  .hero-desc-big { font-size: 14px; }
  .btn-pink, .btn-outline { padding: 14px 50px; font-size: 12px; }
  .hero-actions-grid { gap: 12px; margin-top: 60px; } /* Ensure proper spacing on mobile */
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .features-title { font-size: 22px; }
}
@media (max-width: 480px) {
  .hero-title-big { font-size: 40px; }
  .btn-pink, .btn-outline { padding: 12px 30px; width: 100%; max-width: 280px; }
  .hero-actions-grid { gap: 12px; margin-top: 40px; } /* Adjusted for small screens */
  .about-title { font-size: 28px; }
  .about-text { font-size: 16px; }
  .about-card { padding: 30px 20px; }
  #dl-root .dl-title { font-size: 28px; }
  #dl-root .dl-card-media { height: 200px; }
  .features-grid { grid-template-columns: 1fr; }
  .features-title { font-size: 20px; }
}

/* ===== PRODUCT MODAL (shared with catalog) ===== */
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.dl-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 99999; }
.dl-modal.active { display: flex; align-items: center; justify-content: center; animation: modalFade 0.3s; }
.dl-modal-content { background: #fff; width: 100%; height: 100%; position: relative; display: flex; flex-direction: column; }
.dl-modal-close { position: fixed; top: 20px; right: 24px; width: 40px; height: 40px; border: none; background: transparent; font-size: 28px; color: #666; z-index: 100000; display: flex; align-items: center; justify-content: center; transition: all 0.3s; cursor: pointer; }
.dl-modal-close:hover { color: #1a1a1f; }
.dl-modal-body { display: flex; height: 100%; overflow: hidden; }
.dl-modal-media { flex: 1; display: flex; align-items: center; justify-content: center; /* background: #f5f3ef; */ position: relative; padding: 60px 40px 40px; }
.dl-modal-media-main { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.dl-modal-media-main img, .dl-modal-media-main video { max-width: 100%; max-height: 100%; object-fit: contain; }
.dl-modal-media-thumbs { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; padding: 10px 14px; background: rgba(255,255,255,0.95); max-width: 90%; overflow-x: auto; border: 1px solid #e5e2dc; }
.dl-modal-thumb { flex: 0 0 56px; height: 56px; border: 1px solid #ddd; overflow: hidden; cursor: pointer; }
.dl-modal-thumb:hover { border-color: #999; }
.dl-modal-thumb.active { border-color: rgb(220,170,210); box-shadow: 0 0 0 1px rgb(220,170,210); }
.dl-modal-thumb img, .dl-modal-thumb video { width: 100%; height: 100%; object-fit: cover; }
.dl-modal-info { flex: 0 0 440px; background: #fff; overflow-y: auto; padding: 60px 40px 40px; display: flex; flex-direction: column; border-left: 1px solid #eee; }
.dl-modal-title { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 400; font-style: italic; color: #1a1a1f; margin-bottom: 10px; }
.dl-modal-article { font-size: 12px; color: #999; margin-bottom: 28px; letter-spacing: 1px; }
.dl-modal-price { font-size: 28px; font-weight: 600; color: #1a1a1f; margin-bottom: 32px; }
.dl-modal-specs { border-top: 1px solid #eee; padding-top: 24px; margin-bottom: 32px; flex: 1; }
.dl-modal-spec-row { display: flex; padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
.dl-modal-spec-row:last-child { border-bottom: none; }
.dl-modal-spec-label { flex: 0 0 120px; font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.dl-modal-spec-value { flex: 1; font-size: 14px; color: #1a1a1f; font-weight: 500; }
.dl-modal-actions { display: flex; flex-direction: column; gap: 12px; position: sticky; bottom: 0; background: #fff; padding-top: 20px; border-top: 1px solid #eee; }
.dl-modal-btn { width: 100%; padding: 16px 24px; border: none; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.dl-modal-btn-primary { background: #1a1a1f; color: #fff; }
.dl-modal-btn-primary:hover { background: #333; }
.dl-modal-media-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 14px; color: #1a1a1f; }
.dl-modal-media-prev { left: 16px; } .dl-modal-media-next { right: 16px; }
@media (max-width: 768px) {
  .dl-modal-body { flex-direction: column; overflow-y: auto; }
  .dl-modal-media { flex: 0 0 50vh; min-height: 280px; max-height: 50vh; padding: 50px 20px 20px; }
  .dl-modal-info { flex: 1; padding: 24px 20px 30px; border-left: none; border-top: 1px solid #eee; }
  .dl-modal-title { font-size: 22px; }
  .dl-modal-price { font-size: 24px; }
}


/* ===== Product status badges ===== */
.dl-badge { display: inline-block; padding: 4px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; }
.dl-badge-stock { background: #6b1234; color: #fff; }   /* burgundy */
.dl-badge-order { background: #1a1a1f; color: #fff; }   /* black */

/* ===== Story block (replaces 6 feature cards on home) ===== */
.story-block { background: #fafaf7; padding: 100px 0; }
.story-section { max-width: 100%; margin: 0 auto; text-align: center; padding: 20px 40px; }
.story-eyebrow { font-family: 'Playfair Display', serif; font-style: italic; color: #6b1234; font-size: 16px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.story-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 54px); font-weight: 400; color: #1a1a1f; margin-bottom: 26px; line-height: 1.15; }
.story-title em { font-style: italic; color: #6b1234; }
.story-divider { width: 60px; height: 1px; background: #6b1234; margin: 0 auto 32px; }
.story-divider-section { width: 100%; max-width: 480px; height: 1px; background: rgba(107, 18, 52, 0.18); margin: 60px auto; }
.story-lead { font-size: 17px; line-height: 1.75; color: #2a2a30; margin-bottom: 30px; font-weight: 300; }
.story-lead strong { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; color: #1a1a1f; }
.story-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; text-align: center; }
.story-bullets li { position: relative; color: #2a2a30; font-size: 15px; font-weight: 400; }
@media (max-width: 720px) { .story-block { padding: 60px 0; } .story-section { padding: 10px 16px; } .story-divider-section { margin: 40px auto; } .story-title { max-width: 100%; } }

/* ===== Footer phone with subtitle ===== */
.footer-phone-link { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.footer-phone-num { font-weight: 500; }
.footer-phone-sub { font-size: 11px; opacity: 0.75; font-style: italic; }


/* ===== Guide editorial block (replaces .about-block) ===== */
.guide-editorial { position: relative; padding: 110px 0; overflow: hidden; background: #faf8f3; }
.guide-editorial-bg { position: absolute; inset: 0; background:
  radial-gradient(circle at 15% 30%, rgba(107, 18, 52, 0.06) 0%, transparent 40%),
  radial-gradient(circle at 85% 70%, rgba(255, 209, 245, 0.25) 0%, transparent 45%);
  pointer-events: none; }
.guide-editorial .container { position: relative; z-index: 1; }
.guide-editorial-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.guide-editorial-text { animation: guideFadeUp 0.9s ease both; }
.guide-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; color: #6b1234; font-size: 12px; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; }
.guide-eyebrow-line { display: inline-block; width: 50px; height: 1px; background: #6b1234; }
.guide-headline { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(44px, 6vw, 78px); color: #1a1a1f; line-height: 1.05; margin-bottom: 30px; }
.guide-headline em { font-style: italic; color: #6b1234; position: relative; }
.guide-headline em::after { content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 6px; background: rgba(255, 209, 245, 0.55); z-index: -1; transform: scaleX(0); transform-origin: left; animation: guideUnderline 1.2s 0.5s ease forwards; }
.guide-deck { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; color: #2a2a30; line-height: 1.5; margin-bottom: 22px; font-weight: 400; }
.guide-body { font-size: 16px; line-height: 1.75; color: #555; margin-bottom: 38px; max-width: 460px; }
.guide-cta { display: inline-flex; align-items: center; gap: 16px; padding: 18px 0; color: #1a1a1f; text-decoration: none; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; border-bottom: 1px solid #1a1a1f; transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.guide-cta:hover { gap: 24px; color: #6b1234; border-color: #6b1234; }
.guide-cta-arrow { font-size: 18px; transition: transform 0.3s ease; }
.guide-cta:hover .guide-cta-arrow { transform: translateX(4px); }

.guide-editorial-visual { position: relative; height: 460px; animation: guideFadeUp 1.1s 0.2s ease both; }
.guide-visual-frame { position: absolute; inset: 0; border: 1px solid rgba(107, 18, 52, 0.25); display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255, 209, 245, 0.1)); backdrop-filter: blur(2px); }
.guide-visual-frame::before, .guide-visual-frame::after { content: ''; position: absolute; width: 40px; height: 40px; border: 1px solid #6b1234; }
.guide-visual-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.guide-visual-frame::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.guide-visual-num { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(140px, 18vw, 220px); line-height: 1; color: #1a1a1f; font-weight: 400; letter-spacing: -8px; animation: guideNum 1s 0.4s ease both; }
.guide-visual-label { margin-top: 8px; font-size: 13px; letter-spacing: 6px; text-transform: uppercase; color: #6b1234; font-weight: 600; }
.guide-visual-deco { position: absolute; color: #6b1234; opacity: 0.6; }
.guide-visual-deco-1 { top: 14%; right: 16%; font-size: 14px; animation: guideFloat 4.5s ease-in-out infinite; }
.guide-visual-deco-2 { bottom: 22%; left: 12%; font-size: 10px; animation: guideFloat 5s ease-in-out 0.8s infinite; }
.guide-visual-deco-3 { top: 50%; right: 8%;  font-size: 18px; animation: guideFloat 6s ease-in-out 1.4s infinite; opacity: 0.4; }

@keyframes guideFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes guideUnderline { to { transform: scaleX(1); } }
@keyframes guideNum { from { opacity: 0; transform: scale(0.85); letter-spacing: 0; } to { opacity: 1; transform: scale(1); letter-spacing: -8px; } }
@keyframes guideFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(180deg); } }

@media (max-width: 980px) {
  .guide-editorial { padding: 70px 0; }
  .guide-editorial-grid { grid-template-columns: 1fr; gap: 50px; }
  .guide-editorial-visual { height: 320px; max-width: 360px; margin: 0 auto; }
}


/* Hero CTA buttons spacing — extra top space */
.hero-actions-grid { margin-top: 100px; }
@media (max-width: 720px) { .hero-actions-grid { margin-top: 60px; } }

/* Mobile: guide editorial section — center text and CTA */
@media (max-width: 720px) {
  .guide-editorial { padding: 64px 0; }
  .guide-editorial-grid { grid-template-columns: 1fr; gap: 0; }
  .guide-editorial-visual { display: none; }
  .guide-editorial-text { text-align: center; }
  .guide-eyebrow { justify-content: center; }
  .guide-body { max-width: 100%; }
  .guide-cta { display: flex; justify-content: center; }
}

/* Block 4 new content styles */
.story-sub { font-size: 18px; font-weight: 600; color: #1a1a1f; margin: 28px 0 16px; font-family: var(--font-heading); }
.story-bullets-accent { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.story-bullets-accent li { font-size: 16px; color: #2a2a30; line-height: 1.6; padding: 10px 16px; background: rgba(107,18,52,0.04); border-radius: 8px; border-left: 3px solid #6b1234; }
