:root {
  --bg: #eaf7ff;
  --bg-soft: #f7fcff;
  --sky: #8fd3ff;
  --sky-deep: #42aee8;
  --ocean: #1f8fb8;
  --ocean-deep: #0b5f7c;
  --sand: #f6dfb8;
  --sand-soft: #fff4df;
  --sun: #ffd88a;
  --card: rgba(255, 255, 255, 0.68);
  --card-strong: rgba(255, 255, 255, 0.88);
  --text: #123047;
  --muted: #58758a;
  --muted-soft: #7894a6;
  --line: rgba(18, 48, 71, 0.12);
  --accent: #0b8fc2;
  --accent-2: #e6a94f;
  --shadow: 0 24px 70px rgba(31, 143, 184, 0.18);
  --shadow-soft: 0 16px 42px rgba(18, 48, 71, 0.1);
  --radius: 30px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   LOGO HEADER
========================= */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--ocean-deep);
}

.logo-img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(18, 48, 71, 0.12));
}

.logo span {
  white-space: nowrap;
}

/* Sabuk pengaman semua gambar biar nggak jadi raksasa */
img {
  max-width: 100%;
  height: auto;
}


/* =========================
   SECTION EDISI BUKU
========================= */

.editions {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 216, 138, 0.34), transparent 17rem),
    radial-gradient(circle at 88% 22%, rgba(143, 211, 255, 0.42), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 244, 223, 0.36), rgba(255, 255, 255, 0.08));
}

.editions::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -90px;
  height: 220px;
  background:
    repeating-radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.7) 0 2px,
      transparent 3px 18px
    ),
    linear-gradient(
      180deg,
      rgba(143, 211, 255, 0.12),
      rgba(31, 143, 184, 0.34),
      rgba(246, 223, 184, 0.62)
    );
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.edition-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.edition-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  align-items: center;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58));
  box-shadow: 0 28px 80px rgba(31, 143, 184, 0.18);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.edition-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(143, 211, 255, 0.34);
  pointer-events: none;
}

.edition-card::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 216, 138, 0.28);
  pointer-events: none;
}

.special-edition {
  border-color: rgba(230, 169, 79, 0.34);
}

.special-edition::before {
  background: rgba(255, 216, 138, 0.42);
}

.regular-edition::before {
  background: rgba(143, 211, 255, 0.38);
}

.edition-cover-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 244, 223, 0.62));
  box-shadow:
    0 24px 50px rgba(18, 48, 71, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.edition-cover {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 42px rgba(18, 48, 71, 0.18);
}

.edition-content {
  position: relative;
  z-index: 2;
}

.edition-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 13px;
  border: 1px solid rgba(18, 48, 71, 0.1);
  border-radius: 999px;
  background: rgba(255, 244, 223, 0.78);
  color: var(--ocean-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.special-edition .edition-label {
  background: rgba(255, 216, 138, 0.42);
  color: #8a5c12;
}

.edition-content h3 {
  margin-bottom: 12px;
  color: #10344d;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.edition-description {
  margin-bottom: 20px;
  color: var(--muted);
}

.edition-price {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ocean), var(--sky-deep));
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(31, 143, 184, 0.28);
}

.special-edition .edition-price {
  background: linear-gradient(135deg, #e6a94f, #ffcf76);
  color: #4d3207;
  box-shadow: 0 16px 34px rgba(230, 169, 79, 0.28);
}

.edition-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.edition-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 600;
}

.edition-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 0.95rem;
}

.special-edition .edition-list li::before {
  color: var(--accent-2);
}

.edition-card .button {
  width: fit-content;
}


/* =========================
   RESPONSIVE TAMBAHAN
========================= */

@media (max-width: 1100px) {
  .edition-grid {
    grid-template-columns: 1fr;
  }

  .edition-card {
    max-width: 900px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .logo {
    gap: 8px;
    font-size: 0.95rem;
  }

  .logo-img {
    height: 36px;
    max-width: 120px;
  }

  .logo span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .edition-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .edition-cover-wrap {
    max-width: 220px;
  }

  .edition-cover {
    height: 310px;
  }

  .edition-content h3 {
    font-size: 2.15rem;
  }

  .edition-price {
    font-size: 1.18rem;
  }

  .edition-card .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .logo span {
    display: none;
  }

  .logo-img {
    height: 38px;
    max-width: 130px;
  }

  .edition-cover-wrap {
    max-width: 200px;
  }

  .edition-cover {
    height: 285px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 216, 138, 0.75), transparent 15rem),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.95), transparent 12rem),
    linear-gradient(180deg, #86d7ff 0%, #c6edff 32%, #effaff 58%, #fff2d4 100%);
}

/* langit, awan, dan garis laut samar */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(ellipse at 10% 18%, rgba(255, 255, 255, 0.92) 0 8%, transparent 18%),
    radial-gradient(ellipse at 28% 12%, rgba(255, 255, 255, 0.82) 0 7%, transparent 16%),
    radial-gradient(ellipse at 76% 20%, rgba(255, 255, 255, 0.86) 0 8%, transparent 18%),
    radial-gradient(ellipse at 92% 15%, rgba(255, 255, 255, 0.7) 0 5%, transparent 13%),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 53%,
      rgba(31, 143, 184, 0.12) 54%,
      rgba(255, 255, 255, 0.45) 56%,
      transparent 61%
    );
}

/* tekstur lembut seperti shimmer air */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.38;
  background:
    repeating-linear-gradient(
      -8deg,
      transparent 0,
      transparent 44px,
      rgba(255, 255, 255, 0.38) 45px,
      transparent 47px
    );
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.5px);
  background-size: 34px 34px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 7%;
  backdrop-filter: blur(22px);
  background: rgba(239, 250, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 34px rgba(31, 143, 184, 0.08);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--ocean-deep);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  transition: 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky-deep), var(--sun));
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--ocean-deep);
}

.nav a:hover::after {
  width: 100%;
}

.menu-button {
  display: none;
  border: 1px solid rgba(18, 48, 71, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ocean-deep);
  border-radius: 16px;
  padding: 8px 12px;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 82px);
  padding: 80px 7% 90px;
  overflow: hidden;
}

/* matahari dan horizon pantai */
.hero::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 238, 181, 0.95) 0 34%, rgba(255, 216, 138, 0.58) 35% 58%, transparent 70%);
  filter: blur(0.4px);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -70px;
  height: 230px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 35% 0%, rgba(255, 255, 255, 0.84), transparent 35%),
    repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0 2px, transparent 3px 19px),
    linear-gradient(180deg, rgba(52, 174, 220, 0.35), rgba(31, 143, 184, 0.64) 48%, rgba(246, 223, 184, 0.72));
  border-radius: 50% 50% 0 0;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: #0f3651;
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.06em;
  text-shadow: 0 8px 28px rgba(255, 255, 255, 0.48);
}

.hero-description {
  max-width: 720px;
  color: #486e84;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--ocean), var(--sky-deep));
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(31, 143, 184, 0.28);
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(31, 143, 184, 0.34);
}

.button.secondary {
  border: 1px solid rgba(18, 48, 71, 0.12);
  color: var(--ocean-deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
}

.hero-card {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.book-cover {
  position: relative;
  width: min(380px, 100%);
  min-height: 540px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  color: #11334c;
  box-shadow: 0 34px 90px rgba(18, 48, 71, 0.22);
  transform: rotate(2deg);
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 230, 163, 0.98), transparent 5.6rem),
    linear-gradient(180deg, #8fdcff 0%, #c8efff 35%, #fdfcff 54%, #2aa6d6 55%, #167fa9 72%, #f5dcae 100%);
}

.book-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 18%, rgba(255, 255, 255, 0.86), transparent 26%),
    radial-gradient(ellipse at 74% 27%, rgba(255, 255, 255, 0.78), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent 24%, rgba(255, 255, 255, 0.2), transparent 46%);
  opacity: 0.9;
}

.book-cover::after {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -38px;
  height: 155px;
  background:
    repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.84) 0 2px, transparent 3px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(31, 143, 184, 0.62), rgba(246, 223, 184, 0.96));
  border-radius: 50% 50% 0 0;
}

.cover-small,
.book-cover h2,
.book-cover p {
  position: relative;
  z-index: 2;
}

.cover-small {
  display: inline-block;
  margin-bottom: 90px;
  color: #0b5f7c;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 900;
}

.book-cover h2 {
  max-width: 260px;
  font-size: 4rem;
  letter-spacing: -0.05em;
  color: #0e344d;
}

.book-cover p {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 42px;
  color: rgba(15, 54, 81, 0.9);
  font-weight: 800;
}

.section {
  position: relative;
  padding: 92px 7%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  color: #123047;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  letter-spacing: -0.04em;
}

.story-box,
.playlist-box,
.intro-grid article,
.reflection-card,
.character-card,
.act,
.quote-card,
.ending-box {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.story-box {
  display: grid;
  gap: 18px;
  padding: 36px;
  max-width: 980px;
}

.story-box p,
.reflection-card p,
.character-card p,
.act p,
.ending-box p,
.playlist-text p {
  color: var(--muted);
}

.reflection {
  background:
    linear-gradient(180deg, transparent, rgba(255, 244, 223, 0.46), transparent);
}

.reflection-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.reflection-card {
  padding: 32px;
}

.reflection-card.wide {
  grid-row: span 2;
}

.reflection-card h3,
.character-card h3,
.act h3,
.playlist-text h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  color: #10344d;
}

.reflection-card p + p {
  margin-top: 16px;
}

.intro-grid,
.character-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.intro-grid article {
  padding: 30px;
}

.intro-grid h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.character-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
}

.character-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(143, 211, 255, 0.32);
}

.avatar {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border: 1px solid rgba(18, 48, 71, 0.1);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(143, 211, 255, 0.78), rgba(255, 216, 138, 0.58));
  color: #0b5f7c;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(31, 143, 184, 0.18);
}

.acts {
  display: grid;
  gap: 24px;
}

.act {
  position: relative;
  padding: 36px;
  overflow: hidden;
}

.act::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, var(--sky-deep), var(--sun), var(--sand));
  opacity: 0.95;
}

.act-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(18, 48, 71, 0.12);
  border-radius: 999px;
  color: var(--ocean-deep);
  background: rgba(255, 244, 223, 0.72);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.act ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 24px;
  padding-left: 18px;
  color: var(--text);
}

.act li {
  color: var(--muted);
}

.quote-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 50px 7% 92px;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 16% -8% auto -8%;
  height: 340px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(143, 211, 255, 0.2), rgba(255, 244, 223, 0.7));
  transform: skewY(-3deg);
}

.quote-card {
  position: relative;
  min-height: 280px;
  padding: 42px;
  overflow: hidden;
}

.quote-card::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(143, 211, 255, 0.34);
}

.quote-card.ocean::before {
  background: rgba(255, 216, 138, 0.36);
}

.quote-mark {
  color: var(--accent);
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 0.8;
}

blockquote {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  color: #11334c;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.18;
}

.quote-author {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 800;
}

.playlist {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 216, 138, 0.34), transparent 16rem),
    radial-gradient(circle at 90% 40%, rgba(143, 211, 255, 0.32), transparent 18rem);
}

.playlist-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 28px;
  padding: 28px;
}

.playlist-text {
  padding: 12px;
}

.spotify-embed {
  display: block;
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.order {
  padding-top: 30px;
}

.ending-box {
  position: relative;
  overflow: hidden;
  padding: 52px;
  text-align: center;
}

.ending-box::before {
  content: "";
  position: absolute;
  inset: auto -10% -125px -10%;
  height: 230px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.82), transparent 34%),
    repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px 18px),
    linear-gradient(180deg, rgba(143, 211, 255, 0.2), rgba(31, 143, 184, 0.38), rgba(246, 223, 184, 0.78));
  border-radius: 50% 50% 0 0;
  pointer-events: none;
}

.ending-box h2 {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto 18px;
  color: #123047;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.ending-box p {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto 30px;
}

.ending-box .hero-actions {
  position: relative;
  z-index: 2;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 7%;
  border-top: 1px solid rgba(18, 48, 71, 0.1);
  background: rgba(255, 244, 223, 0.48);
  color: var(--muted-soft);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .hero,
  .intro-grid,
  .character-grid,
  .quote-section,
  .playlist-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-card {
    justify-content: flex-start;
  }

  .book-cover {
    min-height: 460px;
  }

  .reflection-grid {
    grid-template-columns: 1fr;
  }

  .reflection-card.wide {
    grid-row: auto;
  }

  .act ul {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 5%;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 5%;
    right: 5%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(18, 48, 71, 0.1);
    border-radius: 22px;
    background: rgba(239, 250, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .section,
  .quote-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero::before {
    right: -30px;
    top: 70px;
    width: 150px;
    height: 150px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.6rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .book-cover {
    width: 100%;
    min-height: 430px;
    padding: 30px;
    transform: rotate(0);
  }

  .book-cover h2 {
    font-size: 3.25rem;
  }

  .story-box,
  .quote-card,
  .ending-box,
  .act,
  .reflection-card,
  .playlist-box {
    padding: 28px;
  }

  .spotify-embed {
    height: 420px;
  }
}

.author-section {
  position: relative;
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 216, 138, 0.3), transparent 16rem),
    radial-gradient(circle at 88% 26%, rgba(143, 211, 255, 0.34), transparent 19rem);
}

.author-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62));
  box-shadow: 0 28px 80px rgba(31, 143, 184, 0.18);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.author-card.compact {
  max-width: 800px; /* Batasi lebarnya, bisa dikecilin lagi ke 700px */
  margin: 0 auto; /* Biar kotaknya posisinya di tengah layar */
  padding: 30px; /* Kurangin angkanya kalau jarak ke teks/foto terlalu jauh */
}

.author-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 223, 0.68));
  box-shadow:
    0 24px 52px rgba(18, 48, 71, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.author-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 216, 138, 0.55), transparent 42%),
    radial-gradient(circle at 70% 80%, rgba(143, 211, 255, 0.6), transparent 44%);
  filter: blur(2px);
}

.author-photo {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 20px 42px rgba(18, 48, 71, 0.18);
}

.author-content h2 {
  margin-bottom: 18px;
  color: #10344d;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  letter-spacing: -0.05em;
}

.author-content p {
  max-width: 720px;
  color: var(--muted);
}

.author-content p + p {
  margin-top: 16px;
}


/* =========================
   RUANG PENULIS PAGE
========================= */

.writer-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 90px 7%;
  overflow: hidden;
}

.writer-hero::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 238, 181, 0.96) 0 34%, rgba(255, 216, 138, 0.56) 35% 58%, transparent 72%);
  z-index: -1;
}

.writer-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -85px;
  height: 230px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 35% 0%, rgba(255, 255, 255, 0.84), transparent 35%),
    repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0 2px, transparent 3px 19px),
    linear-gradient(180deg, rgba(52, 174, 220, 0.28), rgba(31, 143, 184, 0.58) 48%, rgba(246, 223, 184, 0.72));
  border-radius: 50% 50% 0 0;
}

.writer-hero-content {
  max-width: 900px;
  text-align: center;
}

.writer-hero-content h1 {
  margin-bottom: 22px;
  color: #0f3651;
  font-size: clamp(3.2rem, 8vw, 7rem);
  letter-spacing: -0.07em;
  text-shadow: 0 8px 28px rgba(255, 255, 255, 0.5);
}

.writer-hero-content p {
  max-width: 760px;
  margin: 0 auto;
  color: #486e84;
  font-size: 1.08rem;
}

.writer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.writer-link-card {
  position: relative;
  min-height: 360px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
  box-shadow: 0 28px 80px rgba(31, 143, 184, 0.18);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.writer-link-card::before {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -95px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(143, 211, 255, 0.34);
  pointer-events: none;
}

.writer-link-card:nth-child(2)::before {
  background: rgba(255, 216, 138, 0.36);
}

.writer-link-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 244, 223, 0.78);
  color: var(--ocean-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.writer-link-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: #10344d;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.writer-link-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: var(--muted);
}

.writer-link-card .button {
  position: relative;
  z-index: 2;
}


/* =========================
   RESPONSIVE PROFIL PENULIS
========================= */

@media (max-width: 900px) {
  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .author-content .hero-actions {
    justify-content: center;
  }

  .writer-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .author-card {
    padding: 26px;
    border-radius: 30px;
  }

  .author-photo-wrap {
    max-width: 260px;
  }

  .author-photo {
    height: 330px;
  }

  .writer-hero {
    min-height: 62vh;
    padding-left: 5%;
    padding-right: 5%;
  }

  .writer-link-card {
    min-height: auto;
    padding: 28px;
  }
}