.modern-guide-lp {
  background-color: #f8fafc;
  color: #334155;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  padding-bottom: 100px;
  position: relative;
}

.modern-guide-lp * {
  box-sizing: border-box;
}

.modern-guide-lp h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.modern-guide-lp h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 24px 0 12px 0;
}

.modern-guide-lp p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.modern-guide-lp ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.modern-guide-lp li {
  margin-bottom: 8px;
}

.modern-guide-lp .modern-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin: 0 16px 24px 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  scroll-margin-top: 80px; /* Accounts for fixed header height */
}

.modern-guide-lp .hero-section {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  padding: 40px 16px 32px 16px;
  text-align: center;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  margin-bottom: 24px;
}

.modern-guide-lp .hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #9f1239;
  margin: 16px 0;
  line-height: 1.4;
}

.modern-guide-lp .hero-lead {
  font-size: 0.95rem;
  color: #881337;
  line-height: 1.5;
}

/* TOC Bubbles */
.modern-guide-lp .toc-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
}

.modern-guide-lp .toc-bubble {
  background: #ffffff;
  color: #e11d48;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.modern-guide-lp .toc-bubble:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(225, 29, 72, 0.1);
}

/* Schedule Timeline */
.modern-guide-lp .timeline {
  position: relative;
  padding-left: 24px;
  margin-top: 24px;
}

.modern-guide-lp .timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: #fecdd3;
}

.modern-guide-lp .timeline-item {
  position: relative;
  margin-bottom: 24px;
}

.modern-guide-lp .timeline-item::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e11d48;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #e11d48;
}

.modern-guide-lp .timeline-time {
  font-weight: 800;
  color: #be123c;
  font-size: 1.1rem;
  margin-bottom: 4px;
  display: block;
}

.modern-guide-lp .timeline-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.modern-guide-lp .timeline-desc {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
}

/* Checklist items */
.modern-guide-lp .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  background: #fdf2f8;
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid #f43f5e;
}

.modern-guide-lp .checklist-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #9f1239;
  line-height: 1.5;
}

/* Sticky CTA */
.modern-guide-lp .sticky-cta-bar {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.modern-guide-lp .btn-book {
  background: #e11d48;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
  width: 100%;
  max-width: 400px;
  text-align: center;
  display: block;
}

/* FAQ */
.modern-guide-lp details {
  background: #f1f5f9;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.modern-guide-lp summary {
  font-weight: 600;
  padding: 16px;
  cursor: pointer;
  color: #1e293b;
  outline: none;
  list-style: none;
  position: relative;
}

.modern-guide-lp summary::-webkit-details-marker {
  display: none;
}

.modern-guide-lp summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  font-size: 1.2rem;
  color: #94a3b8;
}

.modern-guide-lp details[open] summary::after {
  content: "-";
}

.modern-guide-lp details p {
  padding: 0 16px 16px 16px;
  margin: 0;
  color: #475569;
}

/* Links Grid */
.modern-guide-lp .links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modern-guide-lp .links-grid a {
  display: block;
  background: #f1f5f9;
  color: #334155;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
}

/* Desktop overrides */
@media (min-width: 768px) {
  .modern-guide-lp {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 24px;
    margin-top: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding-bottom: 0;
  }
  .modern-guide-lp .modern-card {
    margin: 0 32px 32px 32px;
  }
  .modern-guide-lp .sticky-cta-bar {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    position: sticky;
  }
}

/*# sourceMappingURL=strawberry-picking-all-you-can-eat.css.map */
