/* ==========================================================================
   Esteem Physician Blocks – Frontend Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Base / Body
   -------------------------------------------------------------------------- */
.epb {
  background-color: #ffffff;
  color: #334155;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

.epb ::selection {
  background: rgba(255, 139, 152, 0.3); /* selection:bg-esteem-pink/30 */
}

/* --------------------------------------------------------------------------
   0b. Serif font stack
   -------------------------------------------------------------------------- */
.epb .font-serif {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}

/* --------------------------------------------------------------------------
   0c. Responsive <br> utilities
   -------------------------------------------------------------------------- */
.epb .mobile-only-br {
  display: block;
}

.epb .desktop-only-br {
  display: none;
}

@media (min-width: 768px) {
  .epb .mobile-only-br {
    display: none;
  }
  .epb .desktop-only-br {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   0d. Pink underline decoration
   -------------------------------------------------------------------------- */
.epb .pink-underline {
  background: linear-gradient(transparent 65%, rgba(255, 139, 152, 0.35) 65%);
  display: inline;
}

/* --------------------------------------------------------------------------
   0e. Custom shadows
   -------------------------------------------------------------------------- */
.epb .shadow-premium {
  box-shadow: 0 10px 40px -10px rgba(21, 48, 40, 0.08);
}

.epb .hover-shadow-premium:hover {
  box-shadow: 0 20px 40px -10px rgba(21, 48, 40, 0.12);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   0f. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.epb .animate-reveal {
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.epb .delay-100 { animation-delay: 100ms; }
.epb .delay-200 { animation-delay: 200ms; }
.epb .delay-300 { animation-delay: 300ms; }
.epb .delay-400 { animation-delay: 400ms; }
.epb .delay-500 { animation-delay: 500ms; }

/* ==========================================================================
   1. HERO SECTION (.epb-hero)
   ========================================================================== */
.epb-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #fafafa;
}

/* Background image container */
.epb-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.epb-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.1);
}

/* Overlay */
.epb-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 250, 0.85);
}

/* Inner container */
.epb-hero__inner {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem; /* px-6 */
  padding-right: 1.5rem;
  width: 100%;
  position: relative;
  z-index: 10;
  padding-top: 3rem; /* py-12 */
  padding-bottom: 3rem;
  margin-top: 2rem; /* mt-8 */
}

/* Content area */
.epb-hero__content {
  width: 100%;
}

/* Tagline */
.epb-hero__tagline-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.epb-hero__tagline-line {
  width: 2.5rem;
  height: 1px;
  background-color: #a68a50;
}

.epb-hero__tagline {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  color: #a68a50;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* Heading */
.epb-hero__heading {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  color: #153028; /* text-esteem-navy */
  line-height: 1.7; /* leading-[1.7] */
  margin-bottom: 2rem; /* mb-8 */
  letter-spacing: -0.025em; /* tracking-tight */
  font-size: 26px; /* text-[26px] */
}

.epb-hero__heading-block {
  display: block;
  margin-bottom: 0.5rem;
}
.epb-hero__heading-block--top {
  margin-bottom: 0.5rem;
}
.epb-hero__heading-highlight {
  color: #ff8b98;
  background: linear-gradient(transparent 65%, rgba(255, 139, 152, 0.35) 65%);
  display: inline;
}

/* Description */
.epb-hero__desc-wrap {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.epb-hero__desc {
  font-size: 0.9375rem; /* text-[15px] */
  color: #334155; /* text-slate-700 */
  line-height: 2; /* leading-loose */
  font-weight: 500; /* font-medium */
  border-left: 2px solid rgba(166, 138, 80, 0.6); /* border-l-2 border-esteem-gold/60 */
  padding-left: 1.25rem; /* pl-5 */
  text-align: justify;
}

/* Button */
.epb-hero__btn {
  display: inline-block;
  background-color: #153028; /* bg-esteem-navy */
  color: #ffffff;
  padding: 1rem 2rem; /* px-8 py-4 */
  border-radius: 9999px; /* rounded-full */
  font-weight: 700;
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  letter-spacing: 0.1em; /* tracking-widest */
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  box-shadow: 0 10px 40px -10px rgba(21, 48, 40, 0.08);
  width: 100%;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.epb-hero__btn:hover {
  background-color: #0d1e19;
}

/* Responsive: sm (640px) */
@media (min-width: 640px) {
  .epb-hero__inner {
    padding-left: 2.5rem; /* sm:px-10 */
    padding-right: 2.5rem;
  }
  .epb-hero__heading {
    font-size: 2.25rem; /* sm:text-4xl */
  }
  .epb-hero__btn {
    width: auto; /* sm:w-auto */
  }
}

/* Responsive: md (768px) */
@media (min-width: 768px) {
  .epb-hero__overlay {
    background: transparent;
    background-image: linear-gradient(to right, #fafafa, rgba(250, 250, 250, 0.95), transparent);
  }
  .epb-hero__inner {
    padding-top: 0; /* md:py-0 */
    padding-bottom: 0;
    margin-top: 0; /* md:mt-0 */
  }
  .epb-hero__heading {
    line-height: 1.4; /* md:leading-[1.4] */
    font-size: 3rem; /* md:text-5xl */
  }
  .epb-hero__heading-block {
    margin-bottom: 1rem; /* md:mb-4 */
  }
  .epb-hero__desc-wrap {
    margin-bottom: 3rem;
  }
  .epb-hero__desc {
    font-size: 1rem;
    font-weight: 300;
  }
}

/* Responsive: lg (1024px) */
@media (min-width: 1024px) {
  .epb-hero__bg {
    width: 55%; /* lg:w-[55%] */
  }
  .epb-hero__overlay {
    background-image: linear-gradient(to right, #fafafa, rgba(250, 250, 250, 0.3), transparent);
  }
  .epb-hero__inner {
    padding-left: 4rem; /* lg:px-16 */
    padding-right: 4rem;
  }
  .epb-hero__content {
    width: 65%; /* lg:w-[65%] */
  }
  .epb-hero__heading {
    font-size: 3.75rem; /* lg:text-6xl */
  }
}

/* ==========================================================================
   2. WHY SECTION (.epb-why)
   ========================================================================== */
.epb-why {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: #ffffff;
}

.epb-why__inner {
  max-width: 56rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem; /* px-6 */
  padding-right: 1.5rem;
  text-align: center;
}

.epb-why__tag {
  font-size: 0.75rem; /* text-xs */
  line-height: 1rem;
  font-weight: 700;
  color: #ff8b98; /* text-esteem-pink */
  letter-spacing: 0.4em; /* tracking-[0.4em] */
  margin-bottom: 1rem; /* mb-4 */
  text-transform: uppercase;
}

.epb-why__title {
  font-size: 1.875rem; /* text-3xl */
  line-height: 2.25rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  color: #153028; /* text-esteem-navy */
  letter-spacing: -0.025em; /* tracking-tight */
  margin-bottom: 2.5rem; /* mb-10 */
}

.epb-why__desc {
  font-size: 1rem; /* text-base */
  line-height: 1.5rem;
  color: rgb(71, 85, 105); /* text-slate-600 */
  line-height: 2; /* leading-loose overrides */
  font-weight: 300; /* font-light */
}

.epb-why__desc strong,
.epb-why__strong {
  font-weight: 700;
  color: #153028; /* text-esteem-navy */
}

@media (min-width: 768px) {
  .epb-why {
    padding-top: 8rem; /* md:py-32 */
    padding-bottom: 8rem;
  }
  .epb-why__title {
    font-size: 2.25rem; /* md:text-4xl */
    line-height: 2.5rem;
  }
  .epb-why__desc {
    font-size: 1.125rem; /* md:text-lg */
    line-height: 2; /* leading-loose */
  }
}

@media (min-width: 1024px) {
  .epb-why__inner {
    padding-left: 4rem; /* lg:px-16 */
    padding-right: 4rem;
  }
}

/* ==========================================================================
   3. CHALLENGES SECTION (.epb-challenges)
   ========================================================================== */
.epb-challenges {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: #fafafa; /* bg-esteem-soft */
  border-top: 1px solid #f1f5f9; /* border-y border-esteem-line */
  border-bottom: 1px solid #f1f5f9;
}

.epb-challenges__inner {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.epb-challenges__header {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}

.epb-challenges__title {
  font-size: 1.5rem; /* text-2xl */
  line-height: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  color: #153028;
  letter-spacing: -0.025em; /* tracking-tight */
}

.epb-challenges__grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
  max-width: 72rem; /* max-w-6xl */
  margin-left: auto;
  margin-right: auto;
}

/* Card */
.epb-challenges__card {
  background-color: #ffffff;
  padding: 2rem; /* p-8 */
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 40px -10px rgba(21, 48, 40, 0.08);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.epb-challenges__card:hover {
  box-shadow: 0 20px 40px -10px rgba(21, 48, 40, 0.12);
  transform: translateY(-2px);
  border-color: rgba(166, 138, 80, 0.3); /* hover:border-esteem-gold/30 */
}

.epb-challenges__number {
  position: absolute;
  top: -1rem; /* -top-4 */
  right: -0.5rem; /* -right-2 */
  font-size: 3.75rem; /* text-6xl */
  line-height: 1;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  color: rgba(166, 138, 80, 0.05); /* text-esteem-gold/5 */
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.epb-challenges__card:hover .epb-challenges__number {
  color: rgba(166, 138, 80, 0.1); /* group-hover:text-esteem-gold/10 */
}

.epb-challenges__sub {
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  color: rgb(100, 116, 139); /* text-slate-500 */
  font-weight: 300; /* font-light */
  margin-bottom: 0.5rem; /* mb-2 */
  position: relative;
  z-index: 10;
}

.epb-challenges__card-title {
  font-size: 1.125rem; /* text-lg */
  line-height: 1.75rem;
  font-weight: 700;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  color: #153028;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .epb-challenges__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
  }
  .epb-challenges__title {
    font-size: 1.875rem; /* md:text-3xl */
    line-height: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .epb-challenges__inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .epb-challenges__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* lg:grid-cols-4 */
  }
}

/* ==========================================================================
   4. QUOTE SECTION (.epb-quote)
   ========================================================================== */
.epb-quote {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: #153028; /* bg-esteem-navy */
  color: #ffffff;
  text-align: center;
}

.epb-quote__inner {
  max-width: 56rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.epb-quote__main {
  font-size: 1.25rem; /* text-xl */
  line-height: 1.75rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  line-height: 2; /* leading-[2] */
  letter-spacing: 0.025em; /* tracking-wide */
}

.epb-quote__highlight {
  color: #ff8b98;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  background: linear-gradient(transparent 65%, rgba(255, 139, 152, 0.35) 65%);
  display: inline;
  white-space: nowrap;
}

.epb-quote__sub {
  margin-top: 3rem; /* mt-12 */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  color: rgb(203, 213, 225); /* text-slate-300 */
  font-weight: 300; /* font-light */
  line-height: 1.625; /* leading-relaxed */
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .epb-quote {
    padding-top: 8rem; /* md:py-32 */
    padding-bottom: 8rem;
  }
  .epb-quote__main {
    font-size: 1.875rem; /* md:text-3xl */
    line-height: 2; /* md:leading-loose */
  }
  .epb-quote__highlight {
    font-size: 2.25rem; /* md:text-4xl */
    line-height: 2.5rem;
    margin-left: 0.5rem; /* md:mx-2 */
    margin-right: 0.5rem;
  }
  .epb-quote__sub {
    font-size: 1rem; /* md:text-base */
    line-height: 1.625;
  }
}

/* ==========================================================================
   5. SERVICES SECTION (.epb-services)
   ========================================================================== */
.epb-services {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: #fafafa;
}

.epb-services__inner {
  max-width: 72rem; /* max-w-6xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.epb-services__header {
  margin-bottom: 3rem; /* mb-12 */
  text-align: center;
}

.epb-services__tag {
  font-size: 0.75rem; /* text-xs */
  line-height: 1rem;
  font-weight: 700;
  color: #a68a50; /* text-esteem-gold */
  letter-spacing: 0.4em; /* tracking-[0.4em] */
  margin-bottom: 1rem; /* mb-4 */
  text-transform: uppercase;
}

.epb-services__title {
  font-size: 1.875rem; /* text-3xl */
  line-height: 2.25rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  color: #153028;
  letter-spacing: -0.025em; /* tracking-tight */
}

.epb-services__grid {
  display: grid;
  gap: 1rem; /* gap-4 */
}

/* Service item */
.epb-services__item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0; /* border-slate-200 */
  padding: 1.5rem; /* p-6 */
  border-radius: 1rem; /* rounded-2xl */
  display: flex;
  align-items: center;
  gap: 1.25rem; /* gap-5 */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.epb-services__item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); /* shadow-md */
}

.epb-services__item--last-odd {
  /* md:col-span-2 lg:col-span-1 handled in responsive */
}

.epb-services__icon-circle {
  flex-shrink: 0;
  width: 2.5rem; /* w-10 */
  height: 2.5rem; /* h-10 */
  border-radius: 9999px; /* rounded-full */
  background-color: rgba(255, 139, 152, 0.1); /* bg-esteem-pink/10 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8b98; /* text-esteem-pink */
}

.epb-services__icon-circle svg {
  width: 1.25rem; /* w-5 */
  height: 1.25rem; /* h-5 */
}

.epb-services__text {
  color: #334155; /* text-slate-700 */
  font-weight: 500; /* font-medium */
  font-size: 0.9375rem; /* text-[15px] */
  line-height: 1.625; /* leading-relaxed */
}

.epb-services__sub {
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  font-weight: 300; /* font-light */
  color: rgb(100, 116, 139); /* text-slate-500 */
  display: block;
  margin-top: 0.25rem; /* mt-1 */
}

.epb-services__sub a {
  color: #ff8b98; /* text-esteem-pink */
  text-decoration: underline;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.epb-services__sub a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .epb-services {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .epb-services__header {
    margin-bottom: 4rem; /* md:mb-16 */
  }
  .epb-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
    gap: 1.5rem; /* md:gap-6 */
  }
  .epb-services__item {
    padding: 2rem; /* md:p-8 */
  }
  .epb-services__item--last-odd {
    grid-column: span 2; /* md:col-span-2 */
  }
  .epb-services__title {
    font-size: 2.25rem; /* md:text-4xl */
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .epb-services__inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .epb-services__item--last-odd {
    grid-column: span 1; /* lg:col-span-1 */
  }
}

/* ==========================================================================
   6. FLOW SECTION (.epb-flow)
   ========================================================================== */
.epb-flow {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: #ffffff;
  border-top: 1px solid #f1f5f9; /* border-t border-esteem-line */
}

.epb-flow__inner {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.epb-flow__header {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}

.epb-flow__tag {
  font-size: 0.75rem; /* text-xs */
  line-height: 1rem;
  font-weight: 700;
  color: #a68a50; /* text-esteem-gold */
  letter-spacing: 0.4em;
  margin-bottom: 1rem; /* mb-4 */
  text-transform: uppercase;
}

.epb-flow__title {
  font-size: 1.5rem; /* text-2xl */
  line-height: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  color: #153028;
  letter-spacing: -0.025em; /* tracking-tight */
}

.epb-flow__subtitle {
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  color: rgb(100, 116, 139); /* text-slate-500 */
  font-weight: 300;
  margin-top: 1rem; /* mt-4 */
}

.epb-flow__grid {
  display: grid;
  gap: 1.5rem; /* gap-6 */
  position: relative;
}

/* Connecting line (hidden on mobile) */
.epb-flow__line {
  display: none;
}

/* Step */
.epb-flow__step {
  position: relative;
  z-index: 10;
  text-align: center;
}

.epb-flow__circle {
  width: 6rem; /* w-24 */
  height: 6rem; /* h-24 */
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  border-radius: 9999px; /* rounded-full */
  box-shadow: 0 10px 40px -10px rgba(21, 48, 40, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem; /* mb-6 */
  border: 4px solid #fafafa; /* border-4 border-esteem-soft */
}

.epb-flow__circle--dark {
  background-color: #153028; /* bg-esteem-navy */
}

.epb-flow__number {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  font-size: 1.5rem; /* text-2xl */
  line-height: 2rem;
}

.epb-flow__number--pink {
  color: #ff8b98;
}

.epb-flow__number--gold {
  color: #a68a50;
}

.epb-flow__number--navy {
  color: #153028;
}

.epb-flow__number--white {
  color: #ffffff;
}

.epb-flow__step-title {
  font-weight: 700;
  color: #153028;
  margin-bottom: 0.75rem; /* mb-3 */
  font-size: 0.9375rem; /* text-[15px] */
}

.epb-flow__step-desc {
  font-size: 0.75rem; /* text-xs */
  line-height: 1rem;
  color: rgb(100, 116, 139); /* text-slate-500 */
  font-weight: 300;
  line-height: 1.625; /* leading-relaxed */
  text-align: justify;
  padding-left: 0.5rem; /* px-2 */
  padding-right: 0.5rem;
}

@media (min-width: 768px) {
  .epb-flow__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)); /* md:grid-cols-4 */
  }
  .epb-flow__line {
    display: block;
    position: absolute;
    top: 3rem; /* top-12 */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f1f5f9; /* bg-esteem-line */
    z-index: 0;
  }
  .epb-flow__title {
    font-size: 1.875rem; /* md:text-3xl */
    line-height: 2.25rem;
  }
  .epb-flow__step-desc {
    text-align: center; /* md:text-center */
  }
}

@media (min-width: 1024px) {
  .epb-flow__inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* ==========================================================================
   7. BOOKING SECTION (.epb-booking)
   ========================================================================== */
.epb-booking {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  background-color: #153028; /* bg-esteem-navy */
  border-top: 1px solid #f1f5f9; /* border-t border-esteem-line */
}

.epb-booking__inner {
  max-width: 56rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.epb-booking__header {
  text-align: center;
  margin-bottom: 3rem; /* mb-12 */
  color: #ffffff;
}

.epb-booking__title {
  font-size: 1.5rem; /* text-2xl */
  line-height: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
  font-weight: 700;
  letter-spacing: -0.025em; /* tracking-tight */
  margin-bottom: 1rem; /* mb-4 */
}

.epb-booking__desc {
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  color: rgb(203, 213, 225); /* text-slate-300 */
  font-weight: 300;
  line-height: 1.625; /* leading-relaxed */
}

.epb-booking__content {
  background-color: #ffffff;
  padding: 1.5rem; /* p-6 */
  border-radius: 2rem; /* rounded-[2rem] */
  box-shadow: 0 10px 40px -10px rgba(21, 48, 40, 0.08);
  color: #334155; /* text-slate-700 */
}

@media (min-width: 768px) {
  .epb-booking {
    padding-top: 8rem; /* md:py-32 */
    padding-bottom: 8rem;
  }
  .epb-booking__title {
    font-size: 1.875rem; /* md:text-3xl */
    line-height: 2.25rem;
  }
  .epb-booking__content {
    padding: 3rem; /* md:p-12 */
  }
}

@media (min-width: 1024px) {
  .epb-booking__inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
