@import url("https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap");

:root {
  --forest: #1b3022;
  --forest-deep: #102018;
  --bone: #fcf9f8;
  --beige: #efe6da;
  --gold: #b8944a;
  --ink: #20231f;
  --muted: #68675f;
  --line: rgba(27, 48, 34, 0.18);
  --serif: "Libre Caslon Text", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.site-header {
  height: 94px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(252, 249, 248, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}
.brand {
  font: 400 19px/1 var(--serif);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand span {
  font-style: italic;
  color: var(--gold);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-header nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  position: relative;
}
.site-header nav a:after {
  content: "";
  height: 1px;
  background: var(--gold);
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  transition: 0.25s;
}
.site-header nav a:hover:after,
.site-header nav a.active:after {
  right: 0;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  padding: 5px;
  gap: 7px;
}
.menu-toggle i {
  display: block;
  height: 1px;
  background: var(--forest);
}
.section {
  padding: clamp(78px, 10vw, 150px) clamp(24px, 7vw, 110px);
}
.kicker {
  margin: 0 0 25px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
}
.gold {
  color: #d9bd7c;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h1 {
  font-size: clamp(68px, 9.4vw, 150px);
  line-height: 0.86;
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}
h3 {
  font-size: 30px;
}
h1 em,
h2 em {
  font-weight: 400;
  color: var(--gold);
}
p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.lead {
  font: 400 clamp(21px, 2vw, 28px) / 1.55 var(--serif);
  color: var(--forest);
}
.meta {
  font: 500 10px/1.8 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  background: var(--forest);
  color: white;
  border: 1px solid var(--forest);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: 0.25s;
  cursor: pointer;
}
.button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
}
.button-light {
  background: transparent;
  border-color: #d9bd7c;
  color: white;
}
.text-link {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}
.text-link span {
  margin-left: 8px;
}
.actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.dark {
  background: var(--forest);
  color: white;
}
.dark p {
  color: #d4d8d4;
}
.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(184, 148, 74, 0.28);
  pointer-events: none;
}
.hero-image {
  margin: 62px 0 62px 6vw;
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.75);
}
.image-note {
  position: absolute;
  left: 25px;
  bottom: 22px;
  color: white;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-copy {
  padding: 7vw 6vw 7vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-copy h1 {
  margin-bottom: 48px;
  color: var(--forest);
}
.tagline {
  font: italic clamp(20px, 2vw, 29px) / 1.45 var(--serif);
  color: var(--forest);
}
.hero-summary {
  max-width: 520px;
}
.hero-copy .actions {
  margin-top: 22px;
}
.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  background: var(--beige);
}
.intro .prose {
  max-width: 680px;
  padding-top: 35px;
}
.intro .text-link {
  margin-top: 15px;
}
.book-feature {
  padding: clamp(75px, 9vw, 130px) clamp(24px, 8vw, 130px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
  align-items: center;
}
.book-feature.reverse {
  background: var(--bone);
}
.feature-copy {
  max-width: 760px;
}
.feature-copy p:not(.kicker) {
  max-width: 600px;
}
.feature-copy .button {
  margin-top: 20px;
}
.feature-cover {
  min-height: 580px;
  display: grid;
  place-items: center;
  position: relative;
}
.feature-cover img {
  max-height: 590px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}
.bone-frame {
  background: var(--beige);
  padding: 8%;
}
.launch-seal {
  position: absolute;
  z-index: 2;
  right: 2%;
  top: 4%;
  width: 110px;
  height: 110px;
  background: var(--gold);
  color: var(--forest);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font: 600 10px/1.5 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(8deg);
}
.reviews {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
}
.section-heading {
  position: relative;
}
.review-controls {
  display: flex;
  gap: 10px;
  margin-top: 45px;
}
.review-controls button {
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}
.review-track {
  min-height: 430px;
  position: relative;
}
.review {
  position: absolute;
  inset: 0;
  padding: 70px;
  background: var(--beige);
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: 0.4s;
}
.review.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.35em;
}
.review blockquote {
  font: italic clamp(28px, 3vw, 46px) / 1.35 var(--serif);
  color: var(--forest);
  margin: 38px 0;
}
.review p {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.closing {
  min-height: 570px;
  padding: 100px 24px;
  background: var(--forest-deep);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.closing h2 {
  max-width: 1050px;
}
.page-hero {
  min-height: 610px;
  padding: clamp(70px, 9vw, 125px) clamp(24px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.page-hero > p:last-child {
  max-width: 720px;
  font: 20px/1.6 var(--serif);
}
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding-bottom: 0;
  gap: 8vw;
  align-items: end;
}
.about-hero > div {
  padding-bottom: 90px;
}
.about-hero img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.72);
}
.bio {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 9vw;
}
.bio aside blockquote {
  margin: 0;
  font: italic 28px/1.5 var(--serif);
  color: var(--gold);
  border-top: 1px solid var(--gold);
  padding-top: 30px;
}
.bio .prose {
  max-width: 770px;
}
.dropcap:first-letter {
  float: left;
  font: 100px/0.73 var(--serif);
  padding: 15px 12px 0 0;
  color: var(--gold);
}
.philosophy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}
.value-list article {
  display: grid;
  grid-template-columns: 45px 1fr 1.3fr;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 25px 0;
}
.value-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.value-list span {
  color: #d9bd7c;
  font-size: 10px;
}
.value-list h3,
.value-list p {
  margin: 0;
}
.value-list p {
  font-size: 14px;
}
.quote-panel {
  min-height: 570px;
  background: var(--beige);
  padding: 100px 8vw;
  display: grid;
  place-items: center;
  text-align: center;
}
.quote-panel blockquote {
  font: italic clamp(38px, 5.5vw, 78px) / 1.2 var(--serif);
  color: var(--forest);
  max-width: 1100px;
  margin: 0;
}
.quote-panel p {
  margin-top: 25px;
}
.contact-invite {
  text-align: center;
}
.contact-invite .button {
  margin-top: 20px;
}
.books-hero,
.buy-hero {
  background: linear-gradient(120deg, var(--bone) 70%, var(--beige));
}
.book-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  align-items: center;
  padding: clamp(75px, 9vw, 130px) clamp(24px, 7vw, 110px);
}
.book-cover-stage {
  min-height: 620px;
  display: grid;
  place-items: center;
  position: relative;
}
.book-cover-stage img {
  max-height: 600px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}
.book-detail-copy {
  max-width: 760px;
}
.book-detail-copy blockquote {
  margin: 35px 0;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  font: italic 25px/1.5 var(--serif);
}
.themes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.themes span {
  border: 1px solid var(--line);
  padding: 8px 11px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.arabic-edition {
  padding: clamp(75px, 9vw, 130px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
  align-items: center;
  background: #8e7144;
  color: white;
}
.arabic-edition .book-cover-stage {
  min-height: 550px;
}
.arabic-edition h2 {
  font-family: Tahoma, Arial, sans-serif;
}
.arabic-edition p {
  color: #f4eee6;
  font-family: Tahoma, Arial, sans-serif;
}
.retail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}
.retail-book {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.retail-book img {
  width: 285px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}
.retail-book h2 {
  font-size: 42px;
}
.retailer-list a {
  display: grid;
  grid-template-columns: 45px 1fr 1fr 30px;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  transition: 0.25s;
}
.retailer-list a:last-child {
  border-bottom: 1px solid var(--line);
}
.retailer-list a:hover {
  padding-left: 12px;
  color: var(--gold);
}
.retailer-list span {
  font-size: 9px;
  color: var(--gold);
}
.retailer-list strong {
  font: 20px/1.25 var(--serif);
  letter-spacing: 0.01em;
}
.retailer-list small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.coming-soon {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9vw;
  align-items: center;
}
.coming-soon > div {
  max-width: 760px;
}
.coming-soon img {
  max-height: 620px;
  margin: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.arabic-retail {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8vw;
  align-items: start;
  background: var(--beige);
  direction: rtl;
}
.arabic-retail-book {
  display: flex;
  gap: 30px;
  align-items: center;
  position: sticky;
  top: 115px;
  direction: rtl;
}
.arabic-retail-book > div {
  direction: rtl;
  text-align: right;
}
.arabic-retail-book img {
  width: 300px;
  max-height: 620px;
  object-fit: contain;
}
.arabic-retail-book h2 {
  font-family: "Noto Naskh Arabic", Tahoma, serif;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.25;
  letter-spacing: 0;
}
.arabic-retailers,
.arabic-retailers strong,
.arabic-retailers small {
  font-family: "Noto Naskh Arabic", Tahoma, serif;
}
.arabic-retailers {
  direction: rtl;
}
.retailer-note {
  display: grid;
  grid-template-columns: 45px 1fr 1fr 30px;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.retailer-note span {
  font-size: 9px;
  color: var(--gold);
}
.retailer-note strong {
  font: 24px var(--serif);
}
.retailer-note small {
  color: var(--muted);
}
.retailer-note:last-child {
  border-bottom: 1px solid var(--line);
}
.arabic-buy {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9vw;
  align-items: center;
  background: var(--beige);
}
.arabic-buy img {
  max-height: 520px;
  margin: auto;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
}
.contact-aside {
  max-width: 520px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.contact-links a {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-links a:last-child {
  border-bottom: 1px solid var(--line);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.contact-form label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  outline: none;
  border-radius: 0;
}
.contact-form textarea {
  border: 1px solid var(--line);
  padding: 14px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form .full {
  grid-column: 1/-1;
}
.optional {
  color: var(--muted);
  font-weight: 400;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.6;
}
.consent input {
  width: auto;
  margin: 2px 0;
}
.form-note {
  font-size: 11px;
  background: var(--beige);
  padding: 14px;
}
.form-success {
  display: none;
  color: var(--forest);
  font: italic 18px var(--serif);
}
.form-success.show {
  display: block;
}
.press-strip {
  padding: 70px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 60px;
}
.press-strip h2 {
  font-size: 46px;
  margin: 0;
}
.press-strip p {
  margin: 0;
}
.whatsapp {
  display: none !important;
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  z-index: 60;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: 0.25s;
}
.whatsapp:hover {
  transform: translateY(-3px);
}
.whatsapp svg {
  width: 31px;
  fill: currentColor;
}
footer {
  padding: 75px clamp(24px, 7vw, 110px) 30px;
  background: var(--forest-deep);
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.5fr;
  gap: 60px;
}
footer p {
  color: #aeb7b0;
}
.footer-brand {
  color: white;
  display: block;
  margin-bottom: 25px;
}
.footer-nav,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-nav a,
.footer-social a {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.copyright {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s ease forwards;
}
.delay {
  animation-delay: 0.15s;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}
section {
  opacity: 0.01;
  transform: translateY(12px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
section.in-view,
.hero,
.page-hero {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  section,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 980px) {
  .arabic-retail {
    grid-template-columns: 1fr;
  }
  .arabic-retail-book {
    position: static;
  }
  .site-header nav {
    position: fixed;
    top: 94px;
    left: 0;
    right: 0;
    height: calc(100vh - 94px);
    background: var(--bone);
    padding: 55px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    transform: translateX(100%);
    transition: 0.35s;
  }
  .site-header nav.open {
    transform: none;
  }
  .site-header nav a {
    font: 30px var(--serif);
    text-transform: none;
    letter-spacing: 0;
  }
  .menu-toggle {
    display: grid;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image {
    height: 60vh;
    min-height: 500px;
    margin: 0;
  }
  .hero-copy {
    padding: 80px 8vw;
  }
  .hero-copy h1 {
    font-size: clamp(80px, 16vw, 135px);
  }
  .intro,
  .book-feature,
  .book-feature.reverse,
  .reviews,
  .about-hero,
  .bio,
  .philosophy,
  .book-detail,
  .arabic-edition,
  .retail,
  .coming-soon,
  .arabic-buy,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .book-feature.reverse .feature-cover {
    order: -1;
  }
  .about-hero {
    padding-bottom: 0;
  }
  .about-hero img {
    height: 600px;
  }
  .bio aside {
    max-width: 550px;
  }
  .book-cover-stage {
    min-height: 540px;
  }
  .retail-book {
    margin-bottom: 50px;
  }
  .press-strip {
    grid-template-columns: 1fr;
  }
  .press-strip .button {
    width: max-content;
  }
  .reviews {
    gap: 50px;
  }
  .review-track {
    min-height: 390px;
  }
  .coming-soon img {
    max-height: 460px;
  }
  .arabic-edition .book-cover-stage {
    order: 2;
  }
  .copyright {
    gap: 15px;
    flex-direction: column;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .retail-book img,
  .arabic-retail-book img {
    width: min(82vw, 330px);
  }
  .arabic-retail-book {
    flex-direction: column;
    align-items: flex-start;
  }
  .retailer-note {
    grid-template-columns: 30px 1fr 25px;
  }
  .retailer-note small {
    grid-column: 2;
  }
  .retailer-note b {
    grid-column: 3;
    grid-row: 1/3;
  }
  .site-header {
    height: 80px;
  }
  .site-header nav {
    top: 80px;
    height: calc(100vh - 80px);
  }
  .section {
    padding: 70px 22px;
  }
  .hero {
    min-height: auto;
  }
  .hero:before {
    display: none;
  }
  .hero-image {
    height: 56vh;
    min-height: 420px;
  }
  .hero-copy {
    padding: 65px 22px;
  }
  .hero-copy h1 {
    font-size: 68px;
    margin-bottom: 35px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .intro {
    gap: 30px;
  }
  .intro .prose {
    padding: 0;
  }
  .book-feature {
    padding: 70px 22px;
    gap: 50px;
  }
  .feature-cover {
    min-height: 430px;
  }
  .feature-cover img {
    max-height: 430px;
  }
  .launch-seal {
    width: 88px;
    height: 88px;
    right: 0;
  }
  .reviews {
    gap: 35px;
  }
  .review-track {
    min-height: 420px;
  }
  .review {
    padding: 38px 25px;
  }
  .page-hero {
    min-height: 480px;
    padding: 70px 22px;
  }
  .about-hero {
    padding-bottom: 0;
  }
  .about-hero > div {
    padding-bottom: 35px;
  }
  .about-hero img {
    height: 500px;
  }
  .value-list article {
    grid-template-columns: 30px 1fr;
  }
  .value-list article p {
    grid-column: 2;
  }
  .book-detail,
  .arabic-edition {
    padding: 70px 22px;
  }
  .book-cover-stage,
  .arabic-edition .book-cover-stage {
    min-height: 470px;
  }
  .book-cover-stage img {
    max-height: 460px;
  }
  .retail-book {
    flex-direction: column;
  }
  .retailer-list a {
    grid-template-columns: 30px 1fr 25px;
  }
  .retailer-list small {
    grid-column: 2;
  }
  .retailer-list b {
    grid-column: 3;
    grid-row: 1/3;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form label {
    grid-column: 1;
  }
  .press-strip {
    padding: 65px 22px;
  }
  .arabic-buy {
    padding: 70px 22px;
  }
  .contact-invite {
    text-align: left;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 65px 22px 30px;
  }
  .footer-nav,
  .footer-social {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
  }
  .copyright {
    grid-column: 1;
  }
  .whatsapp {
    width: 54px;
    height: 54px;
    right: 17px;
    bottom: 17px;
  }
}

/* Lumina Nocturne — fresh cinematic direction */
body {
  background: #f5f0e8;
}
.site-header {
  height: 78px;
  background: #173024;
  color: #f7f0e4;
  border: 0;
  padding: 0 clamp(22px, 4vw, 64px);
}
.site-header nav a:after {
  background: #d6b56f;
}
.site-header .brand span {
  color: #d6b56f;
}
.site-header nav a {
  font-size: 9px;
  letter-spacing: 0.2em;
}
.menu-toggle i {
  background: #fff;
}
.button {
  border-radius: 100px;
  padding: 0 28px;
}
.kicker {
  letter-spacing: 0.3em;
  font-size: 9px;
}
.hero {
  height: calc(100svh - 78px);
  min-height: 720px;
  display: block;
  background: #173024;
  color: white;
  overflow: hidden;
  border: 0;
}
.hero:before {
  inset: 24px;
  border-color: rgba(214, 181, 111, 0.36);
  z-index: 4;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 28, 19, 0.96) 0%,
    rgba(11, 28, 19, 0.8) 40%,
    rgba(11, 28, 19, 0.12) 72%,
    rgba(11, 28, 19, 0.38) 100%
  );
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  margin: 0;
  min-height: 0;
  height: 100%;
  background: #173024;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 24%;
  filter: grayscale(0.18) saturate(0.68) contrast(1.06);
}
.hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 28, 19, 0.45), transparent 55%);
}
.image-note {
  right: 45px;
  left: auto;
  bottom: 38px;
  z-index: 5;
}
.hero-copy {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 9vh 9vw 8vh;
  justify-content: center;
  max-width: 1050px;
}
.hero-copy .kicker {
  color: #d6b56f;
}
.hero-copy h1 {
  font-size: clamp(88px, 13vw, 205px);
  line-height: 0.68;
  letter-spacing: -0.07em;
  color: #f9f3e8;
  margin: 32px 0 62px;
}
.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
}
.hero-copy h1 em {
  margin-left: 18%;
  color: #d6b56f;
}
.tagline {
  font-size: clamp(18px, 1.65vw, 25px);
  color: #fff;
}
.hero-summary {
  color: #c8d0ca;
}
.hero-copy .button {
  background: #d6b56f;
  border-color: #d6b56f;
  color: #173024;
}
.hero-copy .text-link {
  color: #fff;
}
.hero-index {
  position: absolute;
  z-index: 5;
  left: 42px;
  bottom: 35px;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d6b56f;
}
.intro {
  display: block;
  background: #f5f0e8;
  text-align: center;
  padding-left: max(24px, 15vw);
  padding-right: max(24px, 15vw);
}
.intro > div:first-child h2 {
  font-size: clamp(55px, 7vw, 96px);
}
.intro .prose {
  padding: 0;
  max-width: 750px;
  margin: 40px auto 0;
}
.intro .lead {
  font-size: 22px;
}
.book-feature {
  min-height: 720px;
  grid-template-columns: 1fr 430px;
  padding: 90px max(24px, 10vw);
  position: relative;
}
.book-feature.dark {
  background: #0e2017;
}
.book-feature.reverse {
  grid-template-columns: 1fr 430px;
  background: #d9c6a6;
}
.book-feature.reverse .feature-cover {
  order: 2;
}
.book-feature.reverse .feature-copy {
  order: 1;
}
.feature-copy h2 {
  font-size: clamp(58px, 7vw, 105px);
}
.feature-cover {
  min-height: 520px;
  padding: 0 !important;
  background: transparent;
}
.feature-cover img {
  max-height: 520px;
  box-shadow:
    22px 25px 0 rgba(214, 181, 111, 0.26),
    0 32px 70px rgba(0, 0, 0, 0.35);
}
.reverse .feature-cover img {
  box-shadow:
    -22px 25px 0 rgba(27, 48, 34, 0.18),
    0 32px 70px rgba(0, 0, 0, 0.25);
}
.launch-seal {
  right: -38px;
  top: 0;
  background: #d6b56f;
}
.reviews {
  display: block;
  background: #f5f0e8;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(55px, 7vw, 95px);
}
.review-controls {
  justify-content: center;
  margin: 28px 0 45px;
}
.review-track {
  max-width: 1000px;
  margin: auto;
  min-height: 360px;
}
.review {
  background: transparent;
  border-top: 1px solid #bca477;
  border-bottom: 1px solid #bca477;
  padding: 50px 8vw;
}
.review blockquote {
  font-size: clamp(25px, 3vw, 42px);
}
.closing {
  background: #8c6a3d;
  min-height: 520px;
}
.page-hero {
  background: #173024;
  color: white;
  min-height: 470px;
  padding-top: 90px;
  padding-bottom: 90px;
}
.page-hero h1 {
  font-size: clamp(60px, 8vw, 118px);
  margin-bottom: 18px;
}
.page-hero > p:last-child {
  color: #cbd2cc;
}
.about-hero {
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 0;
}
.about-hero > div {
  position: absolute;
  z-index: 2;
  left: 8vw;
  bottom: 7vw;
  padding: 0;
  max-width: 900px;
}
.about-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 32, 23, 0.92),
    rgba(14, 32, 23, 0.15)
  );
}
.about-hero img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  object-position: 65% 22%;
}
.bio {
  background: #f5f0e8;
}
.philosophy {
  background: #0e2017;
}
.quote-panel {
  background: #d9c6a6;
}
.books-hero,
.buy-hero {
  background: #173024;
}
.buy-page main {
  display: flex;
  flex-direction: column;
}
.buy-page .buy-hero {
  order: 0;
}
.buy-page .coming-soon {
  order: 1;
}
.buy-page #polarities-buy {
  order: 1;
}
.buy-page .retail {
  order: 2;
}
.buy-page .arabic-retail {
  order: 3;
}
.book-detail {
  grid-template-columns: 390px 1fr;
  gap: 10vw;
  padding-left: max(24px, 10vw);
  padding-right: max(24px, 10vw);
}
.book-detail.dark {
  background: #0e2017;
}
.book-cover-stage {
  min-height: 560px;
}
.book-cover-stage img {
  max-height: 540px;
}
.arabic-edition {
  background: #8c6a3d;
}
.retail {
  background: #f5f0e8;
}
#polarities-buy {
  background: #ded0b7;
}
.retailer-list a {
  border-color: rgba(27, 48, 34, 0.22);
}
.coming-soon {
  background: #0e2017;
}
.arabic-buy {
  background: #d9c6a6;
}
.contact-hero {
  background: #173024;
}
.contact-layout {
  background: #f5f0e8;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.25);
}
.press-strip {
  background: #8c6a3d;
}
footer {
  background: #0b1811;
}
.whatsapp {
  border: 3px solid #f5f0e8;
}
@media (max-width: 980px) {
  .site-header nav {
    top: 78px;
    height: calc(100vh - 78px);
    background: #173024;
  }
  .hero {
    min-height: 680px;
  }
  .hero-copy {
    padding: 90px 9vw;
  }
  .hero-copy h1 {
    font-size: clamp(80px, 17vw, 150px);
  }
  .hero-copy h1 em {
    margin-left: 9%;
  }
  .book-feature,
  .book-feature.reverse {
    grid-template-columns: 1fr 320px;
  }
  .book-detail {
    grid-template-columns: 300px 1fr;
    gap: 7vw;
  }
  .about-hero img {
    height: 680px;
  }
}
@media (max-width: 620px) {
  .site-header {
    height: 70px;
  }
  .site-header nav {
    top: 70px;
    height: calc(100vh - 70px);
  }
  .hero {
    height: calc(100svh - 70px);
    min-height: 640px;
  }
  .hero:before {
    inset: 12px;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      rgba(11, 28, 19, 0.94) 0%,
      rgba(11, 28, 19, 0.48) 65%,
      rgba(11, 28, 19, 0.16)
    );
  }
  .hero-image img {
    object-position: 62% top;
  }
  .hero-copy {
    justify-content: flex-end;
    padding: 65px 28px 80px;
  }
  .hero-copy h1 {
    font-size: 61px;
    margin: 20px 0 32px;
  }
  .hero-copy h1 em {
    margin-left: 0;
  }
  .hero-summary {
    display: none;
  }
  .hero-copy .actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .hero-copy .button {
    padding: 0 18px;
  }
  .hero-index,
  .image-note {
    display: none;
  }
  .intro {
    text-align: left;
  }
  .book-feature,
  .book-feature.reverse {
    grid-template-columns: 1fr;
    padding: 70px 22px;
  }
  .book-feature .feature-cover,
  .book-feature.reverse .feature-cover {
    order: -1;
  }
  .feature-cover {
    min-height: 400px;
  }
  .feature-cover img {
    max-height: 400px;
  }
  .launch-seal {
    right: 0;
  }
  .reviews {
    text-align: left;
  }
  .review-controls {
    justify-content: flex-start;
  }
  .review-track {
    min-height: 430px;
  }
  .review {
    padding: 38px 0;
  }
  .about-hero {
    min-height: 620px;
  }
  .about-hero img {
    height: 620px;
  }
  .about-hero > div {
    left: 22px;
    right: 22px;
    bottom: 55px;
  }
  .book-detail {
    grid-template-columns: 1fr;
    padding: 70px 22px;
  }
  .book-cover-stage {
    min-height: 430px;
  }
  .book-cover-stage img {
    max-height: 430px;
  }
}

/* Requested portrait and review-control placement adjustments */
.hero {
  height: auto;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: #173024;
  align-items: stretch;
  padding: 54px max(24px, 6vw);
  gap: 5vw;
}
.hero:after {
  display: none;
}
.hero-image {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  min-height: 610px;
  height: auto;
  background: #d9c6a6;
  border: 1px solid rgba(214, 181, 111, 0.55);
  overflow: hidden;
  align-self: stretch;
}
.hero-image:after {
  display: none;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  background: #d9c6a6;
}
.hero-copy {
  position: relative;
  inset: auto;
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  padding: 5vw 0 5vw 2vw;
  z-index: 3;
}
.hero-copy h1 {
  font-size: clamp(78px, 10vw, 150px);
  line-height: 0.72;
}
.hero-index {
  left: max(42px, 6vw);
}
.image-note {
  right: 25px;
  bottom: 22px;
}
.about-hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 6vw;
  align-items: center;
  min-height: 650px;
  padding: 70px max(24px, 7vw);
  background: #173024;
}
.about-hero:after {
  display: none;
}
.about-hero > div {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0;
  max-width: none;
}
.about-hero img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  background: #d9c6a6;
  border: 1px solid rgba(214, 181, 111, 0.55);
}
.author-photo-frame {
  position: relative;
  isolation: isolate;
  margin: 18px;
}
.about-hero > .author-photo-frame {
  width: min(354.375px, calc(100% - 24px));
  margin: 12px;
  justify-self: start;
}
.author-photo-frame::before,
.author-photo-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.author-photo-frame::before {
  inset: -10px 10px 10px -10px;
  border-top: 1px solid #d6b56f;
  border-left: 1px solid #d6b56f;
}
.author-photo-frame::after {
  inset: 10px -10px -10px 10px;
  border-right: 1px solid #d6b56f;
  border-bottom: 1px solid #d6b56f;
}
.author-photo-frame img {
  position: relative;
  z-index: 1;
}
.about-hero .author-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
}
.reviews .review-controls {
  justify-content: center;
  margin: 28px 0 0;
}
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 0.82fr;
    gap: 4vw;
    padding: 45px 5vw;
  }
  .hero-image {
    min-height: 560px;
  }
  .hero-copy {
    padding-left: 0;
  }
  .hero-copy h1 {
    font-size: clamp(70px, 10vw, 110px);
  }
  .about-hero {
    grid-template-columns: 1fr 0.82fr;
    gap: 4vw;
  }
  .about-hero img {
    height: 520px;
  }
}
@media (max-width: 620px) {
  .hero {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 24px 22px 62px;
    gap: 28px;
  }
  .hero-image {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    height: 470px;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 18px 0 0;
    justify-content: flex-start;
  }
  .hero-copy h1 {
    font-size: 61px;
  }
  .hero-summary {
    display: block;
  }
  .about-hero {
    grid-template-columns: 1fr;
    padding: 45px 22px 0;
    min-height: auto;
    gap: 34px;
  }
  .about-hero > div {
    padding: 0;
  }
  .about-hero img {
    height: 500px;
  }
  .reviews .review-controls {
    justify-content: center;
    margin-top: 24px;
  }
}

/* Final requested photo refinements */
.hero-image img {
  opacity: 0.88;
}
.about-hero img {
  width: auto;
  height: 560px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  justify-self: center;
}
@media (max-width: 620px) {
  .about-hero img {
    width: auto;
    height: auto;
    max-height: 500px;
    max-width: 100%;
    object-fit: contain;
  }
}

/* Verified book content, Arabic typography and review refinements */
.feature-cover.bone-frame,
.book-cover-stage.bone-frame {
  background: transparent;
  padding: 0;
}
.feature-cover img,
.book-cover-stage img,
.retail-book img,
.coming-soon img,
.arabic-buy img {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.book-feature.reverse .feature-cover,
.book-feature.reverse .feature-cover.bone-frame {
  background: transparent !important;
  padding: 0 !important;
}
.book-feature.reverse .feature-cover img,
.reverse .feature-cover img {
  box-shadow: none !important;
  background: transparent !important;
  filter: none;
}
.book-summary {
  max-width: 590px;
  font-size: 16px;
  line-height: 1.75;
}
.arabic-edition h2,
.arabic-edition p,
.arabic-edition .kicker,
.arabic-buy [lang="ar"] {
  font-family: "Noto Naskh Arabic", Tahoma, serif;
  letter-spacing: 0;
}
.arabic-edition h2,
.arabic-buy [lang="ar"] h2 {
  font-size: clamp(40px, 4.8vw, 70px);
  line-height: 1.3;
}
.arabic-edition p,
.arabic-buy [lang="ar"] p {
  font-size: 15px;
  line-height: 2;
}
.arabic-edition .lead {
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.9;
}
.reviews .review-track {
  min-height: 0;
  transition: height 0.25s ease;
}
.reviews .review blockquote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: var(--forest);
  margin: 22px 0;
}
.reviews .review > p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.reviews .review {
  inset: auto 0 auto 0;
  top: 0;
  padding-top: 32px;
  padding-bottom: 32px;
}
.reviews .review-controls {
  position: relative;
  z-index: 5;
  margin-top: 14px;
  transform: none;
}

#journey {
  align-items: start;
}
#journey .book-cover-stage {
  min-height: 0;
  align-self: start;
  place-items: start center;
  padding-top: 110px;
}

.arabic-retail-book .kicker,
.arabic-edition .kicker {
  font-family: "Noto Naskh Arabic", Tahoma, serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0;
  text-transform: none;
}

.arabic-edition .button {
  font-family: "Noto Naskh Arabic", Tahoma, serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 980px) {
  #journey .book-cover-stage {
    padding-top: 20px;
  }
}
.book-quotes {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8vw;
  background: #f5f0e8;
}
.quotes-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quotes-grid blockquote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}
.quotes-grid blockquote:nth-child(3n + 1) {
  background: var(--forest);
}
.quotes-grid blockquote:nth-child(3n + 1) p {
  color: white;
}
.quotes-grid p {
  font: italic 21px/1.55 var(--serif);
  color: var(--forest);
}
.quotes-grid cite {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font: 600 9px/1.5 var(--sans);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .book-quotes {
    grid-template-columns: 1fr;
  }
  .quotes-heading {
    position: static;
  }
}
@media (max-width: 620px) {
  .quotes-grid {
    grid-template-columns: 1fr;
  }
  .quotes-grid blockquote {
    padding: 24px;
  }
  .reviews .review-track {
    min-height: 0;
  }
  .reviews .review blockquote {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* Responsive portrait: natural proportions, no beige letterboxing. */
@media (max-width: 1366px) {
  body[data-page="home"] .hero .hero-image {
    width: 100%;
    max-width: 440px;
    height: auto;
    min-height: 0;
    margin-inline: auto;
    align-self: center;
    background: #173024;
    border: 0;
  }
  body[data-page="home"] .hero .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    background: #173024;
    opacity: 1;
  }
}
@media (max-width: 620px) {
  body[data-page="home"] .hero .hero-image {
    max-width: 360px;
  }
}

/* Desktop homepage portrait: preserve Lina's complete original photo. */
@media (min-width: 1367px) {
  body[data-page="home"] .hero .hero-image {
    width: min(32vw, 470px);
    height: auto;
    min-height: 0;
    aspect-ratio: 405 / 640;
    margin-inline: auto;
    align-self: center;
    justify-self: center;
    background: #173024;
    border: 0;
  }

  body[data-page="home"] .hero .hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #173024;
    opacity: 1;
  }
}

/* Homepage portrait frame and safe name sizing. */
body[data-page="home"] .hero-image.author-photo-frame::before,
body[data-page="home"] .hero-image.author-photo-frame::after {
  display: block;
}

body[data-page="home"] .hero-image.author-photo-frame {
  overflow: visible;
}

@media (min-width: 981px) {
  body[data-page="home"] .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(74px, 7.4vw, 110px);
  }

  body[data-page="home"] .hero-copy h1 em {
    margin-left: 8% !important;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  body[data-page="home"] .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(60px, 7.8vw, 76px);
  }

  body[data-page="home"] .hero-copy h1 em {
    margin-left: 8% !important;
  }
}

/* Give retailer titles and their details enough room beside each cover. */
.arabic-retail-book {
  flex-wrap: wrap;
}
.arabic-retail-book > div {
  flex: 1 1 200px;
  min-width: 0;
}
@media (max-width: 620px) {
  .arabic-retail-book > div {
    flex: 0 1 auto;
  }
}

/* Match English book metadata while keeping ISBN digits in reading order. */
#arabic.arabic-edition p.meta {
  text-align: right;
  direction: ltr;
}

.arabic-edition p.meta,
.arabic-retail-book p.meta {
  font: 500 10px/1.8 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Arabic edition: mobile only. Keep desktop and tablet layouts unchanged. */
@media (max-width: 620px) {
  #arabic.arabic-edition > .book-cover-stage {
    order: 0;
  }
  #arabic.arabic-edition > div:not(.book-cover-stage) {
    order: 1;
  }
  #arabic-buy .arabic-retail-book {
    direction: ltr;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  #arabic-buy .arabic-retail-book > div {
    direction: rtl;
    text-align: left;
    max-width: 100%;
  }
}


/* Homepage review corrections - 2026-09-02 */
.publisher-top {
  min-height: 34px; display:flex; align-items:center; justify-content:center; gap:8px;
  padding: 7px 24px; background:#efe6d8; color:#173024; border-bottom:1px solid rgba(23,48,36,.14);
  font: 500 10px/1.4 var(--sans); letter-spacing:.1em; text-transform:uppercase;
}
.publisher-top a { color:#173024; border-bottom:1px solid #b8944a; padding-bottom:2px; }
.hero-copy h1 { line-height:.82 !important; letter-spacing:-.055em !important; }
.hero-copy h1 em { margin-top:.12em; }
.reviews .review blockquote { font-family: Inter, Arial, sans-serif !important; font-style: normal !important; font-weight:400 !important; line-height:1.7 !important; }
.reviews .review > p { font-family: Inter, Arial, sans-serif !important; font-style:normal !important; }
.arabic-home-feature h2[lang="ar"] { font-family: Arial, Tahoma, sans-serif; letter-spacing:0; line-height:1.25; }
@media (max-width: 760px) {
  .publisher-top { font-size:8px; padding-inline:14px; text-align:center; }
  .hero-copy h1 { line-height:.9 !important; }
  .hero-copy h1 em { margin-top:.18em; }
}


/* Requested content-only corrections — 2026-09-02 */
.journey-title {
  line-height: 1.02 !important;
}
.journey-title em {
  display: inline-block;
  line-height: 1.05 !important;
  margin-top: .10em;
}
.arabic-home-feature .book-summary[lang="ar"],
.arabic-home-feature .meta[lang="ar"] {
  font-family: "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.9;
}
@media (max-width: 760px) {
  .journey-title { line-height: 1.08 !important; }
}

/* Arabic availability label readability correction */
.arabic-availability {
  font-family: "Noto Naskh Arabic", Tahoma, Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  letter-spacing: 0 !important;
  line-height: 1.7 !important;
  text-transform: none !important;
  direction: rtl;
}

.arabic-home-feature .arabic-availability {
  margin-bottom: 18px;
}

@media (max-width: 620px) {
  .arabic-availability {
    font-size: 16px !important;
  }
}

/* Clear, elegant Arabic typography across all Arabic content and actions. */
[lang="ar"],
[dir="rtl"] .arabic-availability,
.arabic-edition h2,
.arabic-edition p:not(.meta),
.arabic-edition .button,
.arabic-home-feature .button,
.arabic-retail-book h2,
.arabic-retailers strong,
.arabic-retailers small {
  font-family: "Noto Naskh Arabic", Tahoma, Arial, sans-serif !important;
}

.arabic-home-feature .button,
.arabic-edition .button {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
}


/* Direct contact form delivery */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-error {
  display: none;
  color: #7a2929;
  font: 16px var(--sans);
}
.form-error.show { display: block; }

/* Final Hostinger-safe hero name spacing */
.hero-copy h1 {
  line-height: 0.94 !important;
  letter-spacing: -0.045em !important;
}
.hero-copy h1 span,
.hero-copy h1 em {
  display: block !important;
  position: relative;
}
.hero-copy h1 em {
  margin-left: 18% !important;
  margin-top: 0.08em !important;
}
@media (max-width: 980px) {
  .hero-copy h1 {
    line-height: 0.96 !important;
    letter-spacing: -0.04em !important;
  }
  .hero-copy h1 em {
    margin-top: 0.1em !important;
  }
}
@media (max-width: 620px) {
  .hero-copy h1 {
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
  }
  .hero-copy h1 em {
    margin-left: 12% !important;
    margin-top: 0.08em !important;
  }
}

/* Final review layout: controls occupy their own row below the review. */
.reviews .review-track {
  width: min(100%, 1000px);
  margin: 0 auto 42px !important;
  overflow: visible;
}

.reviews .review {
  box-sizing: border-box;
  width: 100%;
}

.reviews .review blockquote {
  width: min(100%, 820px);
  margin: 22px auto !important;
  overflow-wrap: break-word;
}

.reviews .review > p {
  margin-bottom: 0;
}

.reviews .review-controls {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center !important;
  align-items: center;
  gap: 14px;
  width: max-content;
  margin: 0 auto !important;
  transform: none !important;
}

.reviews .review-controls button {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 1;
  background: #f5f0e8;
  border-color: #bca477;
}

/* Keep all text inside its own column instead of overlapping nearby media. */
.hero-copy,
.feature-copy,
.retail-book > div,
.arabic-retail-book > div {
  min-width: 0;
}

.hero-copy h1,
.page-hero h1,
.book-feature h2,
.retail-book h2,
.closing h2 {
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (max-width: 620px) {
  .reviews .review-track {
    margin-bottom: 34px !important;
  }

  .reviews .review {
    padding-inline: 14px;
  }

  .reviews .review blockquote {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }
}

/* Mobile Author heading: keep both lines and the subtitle clearly separated. */
@media (max-width: 620px) {
  .about-hero > div:first-child {
    min-width: 0;
  }

  .about-hero h1 {
    font-size: clamp(40px, 10.6vw, 46px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em;
    margin-bottom: 26px;
    white-space: nowrap;
  }

  .about-hero h1 br {
    display: none;
  }

  .about-hero h1 em {
    display: block;
    margin-top: 0.18em;
    font-size: 1.12em;
    line-height: 1.04;
    white-space: nowrap;
  }

  .about-hero h1 + p {
    margin-top: 0;
    line-height: 1.5;
  }
}

/* Keep the mobile page fixed to the device width while preserving vertical scrolling. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    touch-action: pan-y;
  }
}

/* Where to Buy — desktop title/layout correction. Mobile/tablet rules stay unchanged. */
@media (min-width: 981px) {
  .buy-page .retail {
    grid-template-columns: minmax(520px, 0.95fr) minmax(560px, 1.15fr);
    gap: clamp(48px, 5vw, 82px);
    align-items: start;
  }

  .buy-page .retail-book {
    display: grid;
    grid-template-columns: minmax(220px, 255px) minmax(220px, 1fr);
    gap: 32px;
    align-items: start;
  }

  .buy-page .retail-book img {
    width: 100%;
    max-width: 255px;
  }

  .buy-page .retail-book > div {
    min-width: 220px;
  }

  .buy-page .retail-book h2 {
    font-size: clamp(36px, 3vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .buy-page .retail-book .meta {
    max-width: 230px;
  }
}
