:root {
  --dr-purple: #48344f;
  --dr-gold: #efac5d;
  --dr-violet: #6457a2;
  --dr-green: #68b339;
  --dr-ink: var(--dr-purple);
  --dr-gold-deep: #d49248;
  --dr-paper: #f7f4f6;
  --dr-paper-deep: #ece7ee;
  --dr-white: #fbf8fa;
  --dr-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dr-dur: 0.42s;
  --dr-dur-fast: 0.18s;
  --font: "Montserrat", system-ui, sans-serif;
  --serif: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--dr-ink);
  background: var(--dr-paper);
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.dr-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dr-skip:focus {
  left: 12px;
  top: 12px;
  z-index: 2000;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  background: #fff;
  padding: 8px 12px;
}

.dr-nav {
  position: sticky;
  top: 0;
  z-index: 1300;
  overflow: visible;
  background: var(--dr-paper);
  border-bottom: 1px solid rgba(239, 172, 93, 0.35);
}

.dr-nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw 18px;
  min-height: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dr-nav-brand {
  display: block;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  margin: 0 0 -116px;
  line-height: 0;
}

.dr-nav-delicar {
  display: block;
  height: 168px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: top left;
}

.dr-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  gap: 8px 18px;
  min-height: 70px;
}

.dr-nav-toggle {
  display: none;
  border: 1.5px solid var(--dr-ink);
  background: transparent;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
}

.dr-menu a {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
}

.dr-menu a:hover,
.dr-footer a:hover {
  color: var(--dr-gold);
  text-decoration: none;
}

.dr-hero-band {
  background-color: #2c2032;
  background-image:
    linear-gradient(90deg, rgba(48, 34, 54, 0.78) 0%, rgba(48, 34, 54, 0.45) 32%, rgba(48, 34, 54, 0.12) 52%, transparent 68%),
    url("../img/bg.jpeg");
  background-size: cover;
  background-position: center;
}

.dr-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px 40px;
  align-items: end;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 5vw 0;
}

.dr-hero-copy {
  padding-top: 88px;
  padding-bottom: 48px;
  color: #fff;
  text-shadow: 0 1px 10px rgba(20, 12, 24, 0.45);
}

.dr-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 16ch;
  color: #fff;
}

.dr-hero-copy .dr-eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.dr-hero-copy .dr-book-es,
.dr-hero-copy .dr-kicker {
  color: #fff;
}

.dr-eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dr-violet);
}

.dr-book-es {
  margin: 16px 0 0;
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.4;
  color: #6d6272;
}

.dr-hero-photo {
  margin: 0;
  line-height: 0;
}

.dr-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.dr-kicker,
.dr-kicker-gold {
  margin: 16px 0 0;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.dr-kicker-gold {
  color: var(--dr-gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 28px;
  border: 0;
  font: inherit;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--dr-dur-fast) var(--dr-ease),
    background var(--dr-dur-fast) var(--dr-ease),
    color var(--dr-dur-fast) var(--dr-ease);
}

.dr-btn:active {
  transform: scale(0.98);
}

.dr-btn-dark {
  align-self: flex-start;
  background: var(--dr-purple);
  color: var(--dr-gold);
}

.dr-btn-dark:hover {
  background: #3a2940;
}

.dr-btn-gold {
  background: var(--dr-gold);
  color: var(--dr-purple);
}

.dr-btn-gold:hover {
  background: #e8a04e;
}

.dr-books {
  position: relative;
  background: #110c14;
  color: #fff;
  height: 100vh;
  height: 100dvh;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(239, 172, 93, 0.35);
}

.dr-books-inner {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

.dr-books-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin: 0;
  padding: 18px 24px 56px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  background: linear-gradient(180deg, rgba(17, 12, 20, 0.55) 0%, transparent 100%);
  pointer-events: none;
}

.dr-books-title > span {
  display: flex;
  align-items: center;
  line-height: 1;
}

.dr-amazon-logo {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 88px;
  max-width: 380px;
  max-height: 88px;
  min-width: 0;
  object-fit: contain;
  transform: translateY(8px);
}

.dr-books-swiper,
.dr-books-swiper .swiper-wrapper,
.dr-book {
  height: 100%;
}

.dr-books-swiper {
  overflow: hidden;
}

.dr-book {
  position: relative;
  overflow: hidden;
}

.dr-book-media {
  position: absolute;
  inset: 0;
}

.dr-book-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dr-book-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 16px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(28, 18, 34, 0.88) 72%);
  text-align: center;
}

.dr-book h3 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.dr-book-btn {
  margin-top: 14px;
  padding: 12px 22px;
  align-self: center;
}

@media (min-width: 901px) {
  .dr-books,
  .dr-books-inner,
  .dr-books-swiper,
  .dr-books-swiper .swiper-wrapper {
    height: auto;
  }

  .dr-book {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .dr-book-overlay {
    padding: 80px 28px 28px;
  }

  .dr-book h3 {
    max-width: 30ch;
  }

  .dr-book:nth-child(4) h3 {
    max-width: none;
    white-space: nowrap;
  }
}

.dr-story {
  background: var(--dr-purple);
  color: var(--dr-white);
  border-top: 1px solid rgba(239, 172, 93, 0.35);
}

.dr-story-inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 5vw;
}

.dr-story p {
  margin: 0;
  line-height: 1.72;
  font-size: 1.02rem;
  color: #fff;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 8 4 3;
}

.dr-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(82vh, 740px);
  color: var(--dr-white);
  background: var(--dr-purple);
}

.dr-bio-photo {
  position: relative;
  min-height: min(82vh, 740px);
  overflow: hidden;
  background: #2a1f32;
}

.dr-bio-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dr-bio-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 56px clamp(28px, 6vw, 72px);
}

.dr-bio-copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
}

.dr-bio-copy p {
  margin: 0 0 14px;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 8 4 3;
}

.dr-bio-copy .dr-btn {
  margin-top: 22px;
  align-self: flex-start;
}

.dr-quotes {
  background: var(--dr-paper-deep);
  color: var(--dr-ink);
  padding: 56px 5vw 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dr-quotes blockquote {
  margin: 0 0 36px;
  max-width: 760px;
}

.dr-quotes blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.dr-quote-cite {
  margin: 0 0 36px;
  max-width: 640px;
}

.dr-quote-cite figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--dr-violet);
}

.dr-available {
  margin: 8px 0 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dr-violet);
}

.dr-quotes .dr-btn {
  margin-top: 16px;
  align-self: center;
}

.dr-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 16px;
  background: var(--dr-ink);
  color: var(--dr-paper);
  border-top: 0;
}

.dr-footer > a,
.dr-footer-menu a {
  text-decoration: none;
  font-weight: 300;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dr-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.dr-modal {
  --bl-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bl-dur: 0.55s;
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: auto;
  pointer-events: none;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 50% at 50% 38%, rgba(239, 172, 93, 0.2), transparent 58%),
    radial-gradient(circle at 50% 36%, rgba(100, 87, 162, 0.28), transparent 42%),
    var(--dr-purple);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--bl-dur) var(--bl-ease),
    visibility 0s linear var(--bl-dur);
}

.dr-modal::before,
.dr-modal::after {
  content: "";
  flex: 1 0 40px;
  width: 100%;
  pointer-events: none;
}

.dr-modal-aura {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 0;
  width: min(78vw, 900px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
  border-radius: 50%;
  border: 1px solid rgba(239, 172, 93, 0.22);
  box-shadow:
    0 0 0 56px rgba(239, 172, 93, 0.05),
    0 0 120px 20px rgba(239, 172, 93, 0.08);
  opacity: 0;
  transition:
    opacity 0.9s var(--bl-ease),
    transform 0.9s var(--bl-ease);
}

.dr-modal-aura::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(239, 172, 93, 0.12);
}

.dr-modal[hidden] {
  display: none !important;
}

.dr-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--bl-dur) var(--bl-ease),
    visibility 0s linear 0s;
}

.dr-modal.is-open .dr-modal-aura {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.dr-modal-shell {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: min(680px, calc(100% - 40px));
  max-width: 680px;
  display: flex;
  flex-direction: column;
  background: transparent;
  color: var(--dr-white);
  transform: translate3d(0, 28px, 0);
  opacity: 0;
  transition:
    transform var(--bl-dur) var(--bl-ease),
    opacity var(--bl-dur) var(--bl-ease);
}

.dr-modal.is-open .dr-modal-shell {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dr-modal-bar {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 8px;
}

.dr-modal-heading {
  min-width: 0;
}

.dr-modal-gem {
  display: block;
  width: 18px;
  height: 26px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, var(--dr-green) 0%, var(--dr-violet) 62%, #3d2c55 100%);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 18px rgba(239, 172, 93, 0.35);
}

.dr-modal-kicker {
  margin: 0 0 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dr-gold);
}

.dr-modal-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dr-white);
  max-width: 16ch;
}

.dr-modal-close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-top: 4px;
  border: 1px solid rgba(239, 172, 93, 0.55);
  border-radius: 50%;
  background: rgba(72, 52, 79, 0.35);
  cursor: pointer;
  color: var(--dr-white);
  position: relative;
  transition:
    background var(--dr-dur-fast) var(--dr-ease),
    border-color var(--dr-dur-fast) var(--dr-ease),
    transform var(--dr-dur-fast) var(--dr-ease);
}

.dr-modal-close span,
.dr-modal-close span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--dr-gold);
  content: "";
}

.dr-modal-close span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.dr-modal-close span::after {
  left: 0;
  top: 0;
  transform: rotate(90deg);
}

.dr-modal-close:hover {
  background: rgba(239, 172, 93, 0.12);
  border-color: var(--dr-gold);
  transform: rotate(90deg);
}

.dr-modal-body {
  padding: 28px 0 56px;
  border-top: 1px solid rgba(239, 172, 93, 0.2);
}

.dr-modal-body p,
.dr-modal-body h3 {
  margin: 0 0 18px;
  line-height: 1.72;
  font-size: 1.02rem;
  color: rgba(251, 248, 250, 0.92);
}

.dr-modal-body p {
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
  hyphenate-limit-chars: 8 4 3;
}

.dr-modal-body--story p {
  margin-bottom: 0.35em;
  text-indent: 1.45em;
}

.dr-modal-body--story > p:first-of-type {
  text-indent: 0;
}

.dr-modal-body h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dr-white);
}

.dr-modal-body--story > p:first-of-type::first-letter {
  float: left;
  margin: 6px 10px 0 0;
  font-family: var(--serif);
  font-size: 3.1rem;
  line-height: 0.8;
  color: var(--dr-gold);
}

.dr-modal-body .dr-btn {
  margin-top: 20px;
}

.dr-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}

.dr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.dr-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dr-gold);
}

.dr-form input,
.dr-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(247, 244, 234, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--dr-white);
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 0 12px;
}

.dr-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.dr-form input:focus,
.dr-form textarea:focus {
  outline: 0;
  border-bottom-color: var(--dr-gold);
}

.dr-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dr-form-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--dr-green);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
}

.dr-form-status.is-error {
  color: #f3b4b4;
}

html.dr-js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.85s var(--dr-ease),
    transform 0.85s var(--dr-ease);
  transition-delay: var(--reveal-delay, 0s);
}

html.dr-js [data-reveal="left"] {
  transform: translate3d(-28px, 0, 0);
}

html.dr-js [data-reveal="right"] {
  transform: translate3d(28px, 0, 0);
}

html.dr-js [data-reveal="fade"] {
  transform: none;
}

html.dr-js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

html.dr-js [data-reveal-group] a {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.7s var(--dr-ease),
    transform 0.7s var(--dr-ease);
}

html.dr-js [data-reveal-group].is-in a {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 900px) {
  .dr-nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1500;
    margin-top: 14px;
    align-self: flex-start;
  }

  .dr-nav-brand {
    margin-bottom: -58px;
    transition: opacity 0.4s var(--dr-ease), visibility 0s linear 0s;
  }

  body.nav-open .dr-nav-brand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s var(--dr-ease), visibility 0s linear 0.35s;
  }

  body.nav-open .dr-nav {
    background: transparent;
    border-bottom-color: transparent;
  }

  .dr-nav-delicar {
    height: 110px;
  }

  .dr-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 1450;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 80px 28px 48px;
    background: var(--dr-paper);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 18px, 0);
    transition:
      opacity 0.5s var(--dr-ease),
      transform 0.5s var(--dr-ease),
      visibility 0s linear 0.5s;
  }

  body.nav-open .dr-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 0.5s var(--dr-ease),
      transform 0.5s var(--dr-ease),
      visibility 0s linear 0s;
  }

  .dr-menu a {
    padding: 16px 12px;
    border: 0;
    font-size: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition:
      opacity 0.45s var(--dr-ease),
      transform 0.45s var(--dr-ease),
      color var(--dr-dur-fast) var(--dr-ease);
  }

  body.nav-open .dr-menu a {
    opacity: 1;
    transform: none;
  }

  body.nav-open .dr-menu a:nth-child(1) {
    transition-delay: 0.08s;
  }

  body.nav-open .dr-menu a:nth-child(2) {
    transition-delay: 0.14s;
  }

  body.nav-open .dr-menu a:nth-child(3) {
    transition-delay: 0.2s;
  }

  body.nav-open .dr-menu a:nth-child(4) {
    transition-delay: 0.26s;
  }

  body.nav-open .dr-menu a:nth-child(5) {
    transition-delay: 0.32s;
  }

  .dr-books {
    height: auto;
    overflow: hidden;
    padding: 0;
    background: var(--dr-purple);
  }

  .dr-books-inner {
    height: auto;
    padding: 0;
  }

  .dr-books-title {
    position: relative;
    flex-direction: column;
    gap: 8px;
    padding: 20px 16px 14px;
    background: none;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  }

  .dr-amazon-logo {
    height: 56px;
    max-width: 240px;
    max-height: 56px;
    transform: none;
    mix-blend-mode: screen;
  }

  .dr-books-swiper {
    width: 100%;
    margin: 0;
  }

  .dr-books-swiper,
  .dr-books-swiper .swiper-wrapper {
    height: auto;
  }

  .dr-book {
    width: 100%;
    margin: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .dr-book-overlay {
    inset: 0;
    justify-content: space-between;
    padding: 18px 18px 16px;
    background: linear-gradient(180deg, rgba(72, 52, 79, 0.55) 0%, rgba(72, 52, 79, 0.18) 28%, transparent 48%);
  }

  .dr-book h3 {
    max-width: 22ch;
  }

  .dr-book-btn {
    margin-top: 0;
  }

  .dr-books-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
  }

  .dr-hero {
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 0;
    text-align: center;
  }

  .dr-hero-copy {
    padding-top: 48px;
    padding-bottom: 20px;
  }

  .dr-hero-photo img {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .dr-hero-copy h1 {
    max-width: none;
  }

  .dr-btn-dark {
    align-self: center;
  }

  .dr-bio {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dr-bio-photo {
    min-height: 52vh;
  }

  .dr-bio-copy {
    align-items: flex-start;
    text-align: left;
    padding: 36px 6vw 48px;
  }

  .dr-bio-copy .dr-btn {
    align-self: flex-start;
  }

  .dr-form-row {
    grid-template-columns: 1fr;
  }
}
