/**
 * Schedule / Contact Consultation Styling - Rebecca Field Strategic Advisory
 */

/* Schedule Hero Section */
.sched-hero {
  padding: 2.75rem 1rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 75% 60% at 50% 0%, rgba(143, 113, 39, 0.08), transparent 70%), var(--color-cream-bg);
  border-bottom: 1px solid rgba(123, 147, 171, 0.15);
}

@media (min-width: 768px) {
  .sched-hero {
    padding: 4.5rem 1.5rem 3.5rem;
  }
}

.sched-hero h1 {
  font-size: clamp(1.85rem, 5.5vw, 3.6rem);
  line-height: 1.15;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-slate-dark);
  margin: 0.75rem 0 1rem 0;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.12);
  text-wrap: balance;
}

.sched-hero__lead {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  line-height: 1.68;
  color: var(--color-slate-dark);
  text-wrap: pretty;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 1.5rem auto 0 auto;
}

@media (min-width: 768px) {
  .trust-row {
    gap: 1rem 2rem;
    margin-top: 2rem;
  }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 2vw, 1.02rem);
  font-weight: 600;
  color: var(--color-slate-dark);
  text-wrap: balance;
}

.trust-check {
  color: #8F7127;
  font-weight: 700;
}

.notice-banner {
  max-width: 680px;
  margin: 1.5rem auto 0 auto;
  padding: 0.85rem 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(143, 113, 39, 0.35);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: center;
  box-shadow: var(--shadow-sm);
  text-wrap: balance;
}

.notice-banner a {
  color: var(--color-slate-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* Booking Grid */
.book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .book-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
  }
}

.book-aside h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.18;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-slate-dark);
  margin-bottom: 0.5rem;
  text-wrap: balance;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.expect-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(123, 147, 171, 0.2);
}

.expect-item:last-child {
  border-bottom: none;
}

.expect-num,
.expect-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(143, 113, 39, 0.1);
  border: 1px solid rgba(143, 113, 39, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: #8F7127;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .expect-num,
  .expect-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
}

.expect-item:hover .expect-icon {
  background: rgba(143, 113, 39, 0.18);
  border-color: #8F7127;
  transform: scale(1.05);
}

.expect-icon svg {
  width: 20px;
  height: 20px;
  stroke: #8F7127;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 768px) {
  .expect-icon svg {
    width: 22px;
    height: 22px;
  }
}

.expect-text {
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.62;
  color: var(--color-slate-dark);
  text-wrap: pretty;
}

.expect-text strong {
  color: var(--color-slate-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
  text-wrap: balance;
}

.pull-quote-box {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.08rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--color-slate-dark);
  border-left: 3px solid #8F7127;
  padding: 1rem 1.15rem;
  margin-top: 1.75rem;
  background: rgba(244, 240, 230, 0.7);
  border-radius: 0 6px 6px 0;
  text-wrap: balance;
}

/* Booking Card / Form */
.booking-card {
  background: #ffffff;
  border: 1px solid rgba(123, 147, 171, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.75rem 1.25rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .booking-card {
    padding: 2.5rem;
  }
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold-shimmer);
}