:root {
  --navy: #071b2f;
  --navy-2: #0d2c49;
  --ink: #102033;
  --muted: #657386;
  --gold: #d89b35;
  --gold-2: #f4c15d;
  --cream: #fff8ee;
  --white: #ffffff;
  --soft: #f4f0e8;
  --line: rgba(14, 38, 61, 0.12);
  --shadow: 0 25px 70px rgba(8, 26, 48, 0.18);
  --radius: 28px;
  --zoom: 1;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fbf7ef;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow {
  width: min(860px, calc(100% - 40px));
}
.section-pad {
  padding: 92px 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(2.55rem, 6vw, 4.7rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 2.25rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}
p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(18px, 5vw, 64px);
  color: #fff;
  background: rgba(7, 27, 47, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #081b2e;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 26px rgba(216, 155, 53, 0.25);
  font-weight: 950;
  letter-spacing: -0.08em;
}
.brand strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.25s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.main-nav .nav-cta {
  color: #111;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}
.nav-toggle {
  display: none;
  color: #fff;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(218, 152, 45, 0.35),
      transparent 30%
    ),
    linear-gradient(135deg, #071b2f 0%, #0b2744 56%, #071b2f 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 27, 47, 0.72), rgba(7, 27, 47, 0.88)),
    url("assets/world-cup.webp") center/cover no-repeat;
  opacity: 0.42;
  transform: scale(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, #fbf7ef);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}
.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(8, 26, 48, 0.18);
}
.btn.primary {
  color: #091b2d;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}
.btn.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}
.btn.dark {
  color: #fff;
  background: var(--navy);
}
.btn.light {
  color: var(--navy);
  background: #fff;
}
.text-link {
  color: var(--gold);
  font-weight: 850;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-stats span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #fff;
  color: #000;
}
.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}
.cover-wrap {
  position: relative;
  width: min(430px, 100%);
  margin-left: auto;
  padding: 14px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
}
.cover-wrap img {
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.cover-card {
  position: absolute;
  left: -18px;
  bottom: 44px;
  max-width: 265px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}
.cover-card strong,
.cover-card span {
  display: block;
}
.cover-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.issue-strip {
  padding: 42px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(8, 26, 48, 0.08);
}
.strip-grid h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
}
.strip-grid p {
  margin: 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.story-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(8, 26, 48, 0.08);
  transition: 0.25s ease;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.story-card.large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.story-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.story-card.large img {
  height: 100%;
  min-height: 410px;
}
.story-card div {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.story-card span,
.feature-row span,
.team-card span,
.contact-card span {
  color: var(--gold);
  font-weight: 850;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.story-card p {
  margin-bottom: 22px;
}
.story-card a {
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
}

.magazine-preview {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  overflow: hidden;
}
.magazine-preview p {
  color: rgba(255, 255, 255, 0.72);
}
.preview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.preview-copy {
  max-width: 560px;
}
.mini-book {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  perspective: 1200px;
}
.mini-book img {
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.mini-book img:first-child {
  transform: rotateY(12deg);
  transform-origin: right;
}
.mini-book img:last-child {
  transform: rotateY(-12deg);
  transform-origin: left;
}

.about-snapshot {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
  align-items: center;
}
.quote-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(216, 155, 53, 0.2);
}
.quote-card p {
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.26;
  letter-spacing: -0.03em;
}
.quote-card span {
  color: var(--gold);
  font-weight: 850;
}

.contact-cta {
  padding-top: 0;
  background: #fff;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 27, 47, 0.96), rgba(13, 44, 73, 0.9)),
    url("assets/maldives.webp") center/cover;
  box-shadow: var(--shadow);
}
.cta-card p {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  background: #061525;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 0.9fr;
  gap: 32px;
  padding: 56px 0;
}
.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}
.site-footer a {
  display: block;
  margin: 8px 0;
}
.site-footer h4 {
  margin: 0 0 12px;
}
.footer-brand {
  margin-bottom: 18px;
}
.footer-bottom {
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  cursor: pointer;
  transition: 0.25s ease;
  z-index: 70;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.page-hero {
  color: #fff;
  background:
    radial-gradient(
      circle at top right,
      rgba(216, 155, 53, 0.34),
      transparent 28%
    ),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}
.small-hero {
  padding: 110px 0 88px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}
.two-col {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 50px;
  align-items: center;
}
.rounded-img {
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.content-block {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}
.muted-section {
  background: #f1eadf;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.team-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(8, 26, 48, 0.06);
}
.team-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}
.advisors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.clean-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}
.clean-list li {
  margin: 8px 0;
}
.dark-panel {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}
.dark-panel p {
  color: rgba(255, 255, 255, 0.73);
}

.story-list {
  display: grid;
  gap: 24px;
}
.feature-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(8, 26, 48, 0.07);
}
.feature-row img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 24px;
}
.feature-row h2 {
  margin-top: 8px;
  font-size: clamp(1.65rem, 3vw, 3rem);
}
.feature-row p {
  max-width: 690px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.contact-card {
  min-height: 260px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(8, 26, 48, 0.07);
}
.contact-card h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}
.inquiry-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-form {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(8, 26, 48, 0.07);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: #fbf7ef;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 155, 53, 0.75);
  box-shadow: 0 0 0 4px rgba(216, 155, 53, 0.12);
}

.reader-body {
  background: #07121e;
  color: #fff;
  overflow-x: hidden;
}
.reader-header {
  background: rgba(6, 16, 29, 0.93);
}
.flipbook-page {
  min-height: calc(100svh - 78px);
  padding: 24px clamp(12px, 3vw, 32px) 20px;
}
.reader-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto 18px;
}
.reader-intro h1 {
  font-size: clamp(1.4rem, 3vw, 2.8rem);
}
.reader-intro p {
  margin: 0 0 4px;
}
.reader-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn,
.text-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 14px;
  min-height: 42px;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}
.icon-btn {
  min-width: 44px;
  font-size: 1.2rem;
}
.icon-btn:hover,
.text-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.reader-shell {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
  min-height: calc(100svh - 220px);
}
.book-stage {
  width: 100%;
  overflow: auto;
  padding: 18px 8px 30px;
  perspective: 2300px;
  overscroll-behavior: contain;
}
.book {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(1220px, calc((100svh - 250px) * 1.52));
  min-width: 600px;
  margin: 0 auto;
  transform: scale(var(--zoom));
  transform-origin: center center;
  transition: transform 0.25s ease;
}
.book.single {
  grid-template-columns: 1fr;
  width: min(610px, calc((100svh - 250px) * 0.76));
  min-width: 300px;
}
.page-slot {
  position: relative;
  min-height: 420px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.48);
}
.left-slot {
  border-radius: 18px 0 0 18px;
}
.right-slot {
  border-radius: 0 18px 18px 0;
}
.book.single .left-slot {
  border-radius: 18px;
}
.book.single .right-slot {
  display: none;
}
.page-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}
.page-slot.blank {
  background: linear-gradient(135deg, #fff, #f0ebe1);
}
.book-shadow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 18px 0 28px rgba(0, 0, 0, 0.06),
    inset -18px 0 28px rgba(0, 0, 0, 0.06);
  border-radius: 18px;
}
.nav-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}
.nav-arrow:hover:not(:disabled) {
  background: var(--gold);
  color: #081b2e;
  transform: scale(1.04);
}
.nav-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.controlbar {
  display: grid;
  grid-template-columns: 160px 1fr 150px;
  gap: 14px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}
.page-info {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}
#pageSlider {
  width: 100%;
  accent-color: var(--gold);
}
.jump-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
}
.jump-box input {
  width: 70px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}
.flip-page {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  transform-style: preserve-3d;
  z-index: 6;
  pointer-events: none;
}
.flip-page.mobile {
  width: 100%;
}
.flip-page.right {
  right: 0;
  transform-origin: left center;
  animation: flipRight 720ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.flip-page.left {
  left: 0;
  transform-origin: right center;
  animation: flipLeft 720ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #fff;
  backface-visibility: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
}
.flip-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flip-front {
  transform: rotateY(0deg);
}
.flip-back {
  transform: rotateY(180deg);
}
.flip-page.right .flip-face {
  border-radius: 0 18px 18px 0;
}
.flip-page.left .flip-face {
  border-radius: 18px 0 0 18px;
}
.flip-page.mobile .flip-face {
  border-radius: 18px;
}
@keyframes flipRight {
  to {
    transform: rotateY(-180deg);
  }
}
@keyframes flipLeft {
  to {
    transform: rotateY(180deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 980px) {
  .section-pad {
    padding: 72px 0;
  }
  .site-header {
    height: 70px;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(7, 27, 47, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.24s ease;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .main-nav a {
    padding: 13px 14px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid,
  .strip-grid,
  .preview-grid,
  .about-grid,
  .two-col,
  .advisors-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }
  .cover-wrap {
    margin: 24px auto 0;
    transform: none;
  }
  .strip-grid {
    text-align: left;
  }
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-card.large {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .story-card.large img {
    min-height: 280px;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .feature-row {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .reader-intro {
    flex-direction: column;
    align-items: flex-start;
  }
  .reader-shell {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }
  .book {
    min-width: 300px;
  }
  .controlbar {
    grid-template-columns: 1fr;
  }
  .jump-box {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }
  .section-pad {
    padding: 58px 0;
  }
  h1 {
    font-size: clamp(2.25rem, 14vw, 4.2rem);
  }
  .brand strong {
    font-size: 0.98rem;
  }
  .brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .hero-actions,
  .hero-stats {
    display: grid;
  }
  .btn {
    width: 100%;
  }
  .cover-card {
    position: static;
    margin-top: 12px;
    max-width: none;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-card img {
    height: 230px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .quote-card p {
    font-size: 1.18rem;
  }
  .feature-row img {
    height: 230px;
  }
  .contact-card {
    min-height: 0;
  }
  .flipbook-page {
    padding: 18px 10px;
  }
  .reader-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .nav-arrow {
    position: fixed;
    top: 50%;
    z-index: 30;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    background: rgba(7, 27, 47, 0.65);
    backdrop-filter: blur(10px);
  }
  .nav-prev {
    left: 8px;
  }
  .nav-next {
    right: 8px;
  }
  .book-stage {
    padding-left: 38px;
    padding-right: 38px;
  }
  .reader-tools {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
  }
  .icon-btn,
  .text-btn {
    width: 100%;
  }
}

/* === Improved responsive Travel Canvas book reader === */
.reader-body {
  min-height: 100svh;
  background:
    radial-gradient(
      circle at top left,
      rgba(216, 155, 53, 0.18),
      transparent 32rem
    ),
    radial-gradient(
      circle at bottom right,
      rgba(49, 118, 142, 0.18),
      transparent 30rem
    ),
    #06111f;
}
.reader-header {
  backdrop-filter: blur(18px);
}
.flipbook-page {
  min-height: calc(100svh - 78px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.8vh, 20px);
  padding: clamp(14px, 2vw, 28px) clamp(10px, 2.5vw, 34px) 18px;
}
.reader-intro {
  width: min(100%, 1480px);
  margin: 0 auto;
  flex: 0 0 auto;
}
.reader-intro h1 {
  line-height: 1.04;
}
.reader-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: clamp(8px, 1.4vw, 18px);
}
.book-stage {
  width: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(8px, 2vh, 22px) 0;
  perspective: 2800px;
  touch-action: pan-y;
}
.book {
  --book-radius: clamp(12px, 1.4vw, 22px);
  position: relative;
  width: min(100%, calc(100vw - 190px), calc((100svh - 236px) * 1.98), 1280px);
  min-width: 0;
  aspect-ratio: 2 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  transform: scale(var(--zoom));
  transform-origin: center center;
  transition:
    transform 0.24s ease,
    filter 0.24s ease;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.46));
  isolation: isolate;
}
.book.single {
  width: min(100%, calc(100vw - 96px), calc((100svh - 246px) * 0.98), 650px);
  aspect-ratio: 1 / 1;
  grid-template-columns: minmax(0, 1fr);
}
.book.soft-change {
  animation: softBookChange 280ms ease both;
}
@keyframes softBookChange {
  0% {
    opacity: 0.68;
    transform: scale(calc(var(--zoom) * 0.985));
  }
  100% {
    opacity: 1;
    transform: scale(var(--zoom));
  }
}
.page-slot {
  min-height: 0;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  transform: translateZ(0);
  transition: opacity 0.14s ease;
}
.left-slot {
  border-radius: var(--book-radius) 0 0 var(--book-radius);
}
.right-slot {
  border-radius: 0 var(--book-radius) var(--book-radius) 0;
}
.book.single .left-slot {
  border-radius: var(--book-radius);
}
.book.single .right-slot {
  display: none;
}
.page-slot.is-hidden {
  opacity: 0;
}
.page-slot img,
.flip-face img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.page-slot.blank,
.flip-face.blank {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.03),
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.035)
    ),
    #f7f0e5;
}
.book::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 34px;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.16),
    rgba(255, 255, 255, 0.08) 44%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(0, 0, 0, 0.14)
  );
  opacity: 0.7;
  mix-blend-mode: multiply;
}
.book.single::before {
  display: none;
}
.book-shadow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--book-radius);
  z-index: 8;
  box-shadow:
    inset 18px 0 26px rgba(0, 0, 0, 0.08),
    inset -18px 0 26px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}
.flip-page {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 20;
  transform-style: preserve-3d;
  pointer-events: none;
  will-change: transform;
}
.flip-page.mobile {
  width: 100%;
}
.flip-page.right {
  right: 0;
  transform-origin: left center;
  animation: tcFlipRight 760ms cubic-bezier(0.18, 0.78, 0.22, 1) forwards;
}
.flip-page.left {
  left: 0;
  transform-origin: right center;
  animation: tcFlipLeft 760ms cubic-bezier(0.18, 0.78, 0.22, 1) forwards;
}
.flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #fff;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}
.flip-front {
  transform: rotateY(0deg) translateZ(0.3px);
}
.flip-back {
  transform: rotateY(180deg) translateZ(0.3px);
}
.flip-page.right .flip-face {
  border-radius: 0 var(--book-radius) var(--book-radius) 0;
}
.flip-page.left .flip-face {
  border-radius: var(--book-radius) 0 0 var(--book-radius);
}
.flip-page.mobile .flip-face {
  border-radius: var(--book-radius);
}
.flip-page::before,
.flip-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  border-radius: inherit;
  backface-visibility: hidden;
}
.flip-page::before {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.22),
    transparent 22%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 72%,
    rgba(0, 0, 0, 0.18)
  );
  opacity: 0;
  animation: tcFlipShine 760ms ease forwards;
}
.flip-page::after {
  box-shadow: -18px 0 30px rgba(0, 0, 0, 0.22);
  opacity: 0;
  animation: tcFlipShadow 760ms ease forwards;
}
.flip-page.left::after {
  box-shadow: 18px 0 30px rgba(0, 0, 0, 0.22);
}
@keyframes tcFlipRight {
  0% {
    transform: rotateY(0deg);
  }
  38% {
    transform: rotateY(-78deg);
  }
  68% {
    transform: rotateY(-142deg);
  }
  100% {
    transform: rotateY(-180deg);
  }
}
@keyframes tcFlipLeft {
  0% {
    transform: rotateY(0deg);
  }
  38% {
    transform: rotateY(78deg);
  }
  68% {
    transform: rotateY(142deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes tcFlipShine {
  0%,
  100% {
    opacity: 0;
  }
  28%,
  62% {
    opacity: 0.55;
  }
}
@keyframes tcFlipShadow {
  0%,
  100% {
    opacity: 0;
  }
  46% {
    opacity: 0.75;
  }
}
.controlbar {
  flex: 0 0 auto;
  width: min(100%, 1180px);
  margin: 0 auto;
  backdrop-filter: blur(16px);
}
.nav-arrow {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .reader-shell {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }
  .book {
    width: min(100%, calc(100vw - 146px), calc((100svh - 255px) * 1.9));
  }
}
@media (max-width: 880px) {
  .flipbook-page {
    min-height: calc(100svh - 70px);
  }
  .reader-intro {
    gap: 12px;
  }
  .reader-shell {
    grid-template-columns: 1fr;
    position: relative;
    gap: 0;
  }
  .book-stage {
    padding: 6px 48px 12px;
  }
  .book.single {
    width: min(100%, calc(100vw - 104px), calc((100svh - 292px) * 1.03), 630px);
  }
  .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 35;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    background: rgba(7, 27, 47, 0.72);
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
  }
  .nav-arrow:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.04);
  }
  .nav-prev {
    left: 0;
  }
  .nav-next {
    right: 0;
  }
  .controlbar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }
  .jump-box {
    justify-content: space-between;
  }
  .reader-tools {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
  }
}
@media (max-width: 520px) {
  .flipbook-page {
    padding: 12px 8px;
  }
  .reader-intro h1 {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }
  .reader-tools {
    gap: 8px;
  }
  .icon-btn,
  .text-btn {
    min-height: 38px;
    padding: 0 10px;
    border-radius: 12px;
  }
  .book-stage {
    padding-left: 38px;
    padding-right: 38px;
  }
  .book.single {
    width: min(100%, calc(100vw - 80px), calc((100svh - 292px) * 1.02));
  }
  .nav-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.55rem;
  }
  .controlbar {
    border-radius: 14px;
  }
}
@media (max-height: 680px) {
  .reader-intro h1 {
    font-size: clamp(1.2rem, 3.4vw, 2rem);
  }
  .reader-intro .eyebrow {
    display: none;
  }
  .flipbook-page {
    gap: 8px;
  }
  .controlbar {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .book {
    width: min(
      100%,
      calc(100vw - 190px),
      calc((100svh - 200px) * 1.98),
      1180px
    );
  }
  .book.single {
    width: min(100%, calc(100vw - 96px), calc((100svh - 210px) * 0.98), 560px);
  }
}

.footer-bottom a {
    display: inline-block;
}