:root {
  --bg: #f7f0e4;
  --paper: #fff8ef;
  --ink: #2c2218;
  --ink-soft: #6f6453;
  --line: #dfcfb6;
  --accent: #d26a3a;
  --accent-strong: #9f3f1f;
  --mint: #9ec9b2;
  --sky: #b6d3e9;
  --shadow: 0 18px 40px rgba(59, 33, 20, 0.14);
  --container: 1140px;
  --radius: 18px;
  --font-mm: 'Noto Serif Myanmar', serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-ui: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mm);
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 10%, #ffe8d5 0, transparent 36%),
    radial-gradient(circle at 92% 90%, #fcead0 0, transparent 40%),
    var(--bg);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 42vw;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -3;
}

.orb-a {
  background: #f9cab6;
  top: -18vw;
  left: -8vw;
}

.orb-b {
  background: #d8ebdd;
  bottom: -20vw;
  right: -10vw;
}

.grain {
  position: fixed;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.3) 1px, transparent 0);
  background-size: 4px 4px;
  pointer-events: none;
  z-index: -2;
}

.container {
  width: min(100% - 2.2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(252, 245, 233, 0.74);
  border-bottom: 1px solid rgba(106, 81, 47, 0.14);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.76);
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

section {
  padding: 3rem 0;
}

.hero {
  padding-top: 4.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  color: var(--ink-soft);
}

.hero h1 {
  margin: 0.55rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.92;
}

.hero h1 span {
  color: var(--accent);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
}

.hero-copy p {
  margin: 0;
  max-width: 60ch;
  color: var(--ink-soft);
  line-height: 1.8;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.68rem;
  flex-wrap: wrap;
}

.btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.68rem 1.05rem;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.73rem;
  background: rgba(255, 255, 255, 0.26);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 10px 24px rgba(136, 60, 28, 0.27);
}

.btn-soft {
  color: var(--accent-strong);
  border-color: rgba(116, 83, 43, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost {
  color: var(--ink);
  border-color: rgba(112, 80, 47, 0.18);
  background: linear-gradient(140deg, rgba(158, 201, 178, 0.22), rgba(182, 211, 233, 0.15));
}

.hero-metrics {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.hero-metrics div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.64rem 0.72rem;
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-ui);
  color: var(--accent-strong);
  font-size: 0.96rem;
}

.hero-metrics span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.micro-links {
  margin-top: 0.86rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.micro-links a {
  text-decoration: none;
  font-size: 0.75rem;
  color: var(--accent-strong);
  border: 1px dashed rgba(124, 81, 41, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
  background: rgba(255, 255, 255, 0.5);
}

.hero-stack {
  position: relative;
  min-height: 490px;
}

.portrait-card,
.floating-cover {
  position: absolute;
  background: var(--paper);
  border: 1px solid rgba(129, 99, 60, 0.24);
  box-shadow: var(--shadow);
}

.portrait-card {
  top: 0;
  left: 1%;
  width: min(90%, 380px);
  border-radius: 22px;
  padding: 0.72rem;
  rotate: -3deg;
  z-index: 4;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
}

.portrait-meta {
  padding: 0.52rem 0.2rem 0.1rem;
}

.card-title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
}

.card-sub {
  margin: 0.2rem 0 0;
  font-size: 0.74rem;
  color: var(--ink-soft);
}

.floating-cover {
  width: min(58%, 220px);
  border-radius: 16px;
  padding: 0.48rem;
}

.floating-cover img {
  width: 100%;
  display: block;
  border-radius: 11px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.floating-a {
  top: 86px;
  right: 1%;
  rotate: 8deg;
  z-index: 3;
}

.floating-b {
  top: 275px;
  left: 21%;
  rotate: -10deg;
  z-index: 2;
}

.sticker {
  position: absolute;
  font-family: var(--font-ui);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  border: 1px solid rgba(124, 83, 45, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 7px 14px rgba(63, 39, 22, 0.15);
  animation: drift 4s ease-in-out infinite;
}

.sticker-star {
  top: 30px;
  right: 4%;
  color: var(--accent-strong);
}

.sticker-heart {
  top: 233px;
  right: 38%;
  color: #c35b58;
  animation-delay: 0.6s;
}

.sticker-wave {
  top: 390px;
  right: 7%;
  color: #5e84aa;
  animation-delay: 1.1s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1rem;
}

.journal-note,
.journal-collage,
.postcard,
.review,
.preorder-card,
.sources details {
  border: 1px solid rgba(129, 99, 60, 0.23);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: var(--shadow);
}

.journal-note {
  padding: 1rem;
}

.journal-note h2,
.section-head h2,
.preorder-shell h2 {
  margin: 0.4rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.15rem);
}

.journal-note p,
.small-copy {
  margin: 0;
  max-width: 74ch;
  color: var(--ink-soft);
  line-height: 1.82;
}

.journal-collage {
  padding: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.journal-collage figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.journal-collage figure:first-child {
  grid-column: span 2;
}

.journal-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.postcard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.92rem;
}

.postcard {
  padding: 0.7rem;
  transform-style: preserve-3d;
  transform: rotate(var(--angle, 0deg));
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.postcard:hover {
  box-shadow: 0 22px 36px rgba(45, 27, 17, 0.2);
}

.postcard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 11px;
  object-fit: cover;
}

.postcard h3 {
  margin: 0.65rem 0 0.22rem;
  font-size: 1rem;
}

.postcard p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.58;
}

.pc-meta {
  margin-top: 0.54rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-meta span {
  font-family: var(--font-ui);
  color: var(--accent-strong);
  font-size: 0.73rem;
}

.pc-links {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.link-chip {
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.71rem;
  color: var(--accent-strong);
  border: 1px solid rgba(130, 91, 51, 0.3);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
}

.link-chip.hot {
  background: rgba(210, 106, 58, 0.13);
  border-color: rgba(210, 106, 58, 0.45);
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.76rem;
}

.photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(129, 99, 60, 0.25);
  box-shadow: 0 10px 20px rgba(58, 35, 20, 0.1);
  background: #fff;
  transform: rotate(var(--photo-angle, 0deg));
  transition: transform 260ms ease;
}

.photo:hover {
  transform: rotate(0deg) translateY(-5px);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo.span-4 {
  grid-column: span 4;
  min-height: 240px;
}

.photo.span-3 {
  grid-column: span 3;
  min-height: 240px;
}

.photo.span-5 {
  grid-column: span 5;
  min-height: 240px;
}

.photo.span-6 {
  grid-column: span 6;
  min-height: 220px;
}

.review-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.review {
  padding: 0.98rem;
}

.review p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.74;
}

.review small {
  margin-top: 0.5rem;
  display: block;
  color: var(--accent-strong);
  font-family: var(--font-ui);
}

.preorder-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.price-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.price-list li {
  border: 1px solid rgba(129, 99, 60, 0.25);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 0.62rem 0.76rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
}

.price-list strong {
  color: var(--accent-strong);
  font-family: var(--font-ui);
}

.promo-tagline {
  margin: 0.82rem 0 0;
  font-family: var(--font-ui);
  color: var(--accent-strong);
  font-size: 0.88rem;
}

.promo-tagline strong {
  font-weight: 700;
}

.price-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.price-detail em {
  font-style: normal;
  text-decoration: line-through;
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 0.77rem;
}

.price-detail b {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: #246f4a;
  border: 1px solid rgba(36, 111, 74, 0.3);
  background: rgba(158, 201, 178, 0.24);
  border-radius: 999px;
  padding: 0.2rem 0.46rem;
}

.promo-note {
  margin-top: 0.74rem;
  border: 1px dashed rgba(122, 91, 55, 0.3);
  background: rgba(255, 255, 255, 0.64);
  border-radius: 12px;
  padding: 0.6rem 0.72rem;
}

.promo-note p {
  margin: 0;
  color: var(--ink-soft);
}

.promo-card-line {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--accent-strong);
  font-size: 0.82rem;
}

.preorder-page-link {
  margin-top: 0.82rem;
}

.preorder-page-link a {
  text-decoration: none;
  color: var(--accent-strong);
  font-family: var(--font-ui);
  border-bottom: 1px dashed rgba(148, 67, 33, 0.5);
}

.preorder-card {
  padding: 1rem;
  display: grid;
  gap: 0.66rem;
}

.preorder-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.preorder-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink-soft);
}

.sources details {
  padding: 0.76rem 0.86rem;
}

.sources summary {
  cursor: pointer;
  font-family: var(--font-ui);
  color: var(--ink);
}

.sources ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.sources li {
  margin: 0.45rem 0;
}

.sources a {
  color: var(--accent-strong);
}

.site-footer {
  padding: 1.3rem 0 1.8rem;
  border-top: 1px solid rgba(128, 99, 62, 0.24);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-shell p,
.footer-shell a {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-decoration: none;
}

.reveal,
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease var(--delay, 0ms), transform 700ms ease var(--delay, 0ms);
}

.reveal.visible,
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-grid,
  .journal-grid,
  .preorder-shell,
  .review-row {
    grid-template-columns: 1fr;
  }

  .postcard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stack {
    min-height: 460px;
  }

  .photo.span-3,
  .photo.span-4,
  .photo.span-5,
  .photo.span-6 {
    grid-column: span 6;
    min-height: 210px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 4px);
    left: 1.1rem;
    right: 1.1rem;
    background: rgba(255, 249, 240, 0.98);
    border: 1px solid rgba(128, 99, 62, 0.26);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 0.7rem;
    display: grid;
    gap: 0.5rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.24rem, var(--container));
  }

  section {
    padding: 2.25rem 0;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-metrics,
  .postcard-grid {
    grid-template-columns: 1fr;
  }

  .photo.span-3,
  .photo.span-4,
  .photo.span-5,
  .photo.span-6 {
    grid-column: span 12;
    min-height: 200px;
  }

  .hero-stack {
    min-height: 390px;
  }

  .floating-cover {
    width: 54%;
  }
}