:root {
  --paper: #f7f1e7;
  --ivory: #fffaf1;
  --warm: #e8dfd2;
  --coffee: #2b211c;
  --ink: #1d1a17;
  --muted: #6f675f;
  --rust: #b65b35;
  --wine: #7d2f2b;
  --line: rgba(43, 33, 28, .18);
  --light-line: rgba(255, 250, 241, .18);
  --max: 1180px;
  --shadow: 0 24px 55px rgba(26, 20, 16, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(182, 91, 53, .08), transparent 28rem),
    linear-gradient(90deg, rgba(43, 33, 28, .035) 1px, transparent 1px) 0 0 / 38px 38px,
    var(--paper);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(43, 33, 28, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 33, 28, .025) 1px, transparent 1px);
  background-size: 100% 27px, 27px 100%;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--ivory);
  background: linear-gradient(to bottom, rgba(17, 14, 12, .46), transparent);
  transition: background .35s ease, color .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--coffee);
  background: rgba(255, 250, 241, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(43, 33, 28, .08);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: rgba(255, 250, 241, .92);
  border-radius: 50%;
  padding: 5px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
}
.site-nav a {
  padding: 10px 11px;
  text-decoration: none;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.site-nav a:hover { color: var(--rust); transform: translateY(-2px); }
.nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--rust);
  box-shadow: 0 12px 28px rgba(182, 91, 53, .28);
}
.site-header.is-scrolled .nav-cta,
.site-header.menu-open .nav-cta { color: #fff; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px clamp(20px, 6vw, 92px) 92px;
  color: var(--ivory);
  overflow: hidden;
}
.hero-bg,
.launch-bg {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: var(--coffee);
  cursor: zoom-in;
}
.hero-bg img,
.launch-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.18) saturate(.9) brightness(.75);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 15, 12, .88) 0%, rgba(20, 15, 12, .56) 42%, rgba(20, 15, 12, .18) 100%),
    linear-gradient(0deg, rgba(20, 15, 12, .82), transparent 42%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.eyebrow {
  margin: 0 0 15px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}
.ink-band .eyebrow,
.hero .eyebrow,
.launch-section .eyebrow { color: #f0a263; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .quote-band p {
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-weight: 900;
  letter-spacing: 0;
}
h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8.5vw, 118px);
  line-height: .98;
  overflow-wrap: anywhere;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.18;
}
h3 { margin-bottom: 10px; font-size: clamp(22px, 2vw, 30px); line-height: 1.25; }
.lead {
  max-width: 680px;
  color: rgba(255, 250, 241, .86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.9;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.button.primary { color: #fff; background: var(--rust); border-color: var(--rust); }
.button.ghost { color: inherit; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }
.hero-collage {
  position: absolute;
  right: clamp(22px, 5vw, 90px);
  bottom: 8vh;
  z-index: 2;
  width: min(34vw, 420px);
  height: 54vh;
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  object-fit: cover;
  border: 8px solid rgba(255, 250, 241, .88);
  box-shadow: 0 24px 60px rgba(0,0,0,.38);
  filter: sepia(.12);
}
.hero-photo-a { width: 72%; height: 46%; right: 6%; top: 0; }
.hero-photo-b { width: 44%; height: 58%; left: 0; bottom: 6%; }
.hero-photo-c { width: 35%; height: auto; right: 12%; bottom: 0; object-fit: contain; background: #fffaf1; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 28px;
  color: rgba(255,250,241,.7);
  font-size: 12px;
  text-decoration: none;
  writing-mode: vertical-rl;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 4vw, 42px);
}
.paper-section { background-color: var(--paper); }
.warm-section {
  max-width: none;
  background: var(--warm);
}
.warm-section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.ink-band {
  max-width: none;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(125,47,43,.22), transparent 48%),
    var(--coffee);
}
.ink-band > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-kicker {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  margin-bottom: clamp(34px, 5vw, 62px);
  align-items: start;
}
.section-kicker h2 { max-width: 820px; }
.quote-band {
  padding: clamp(68px, 10vw, 130px) 24px;
  text-align: center;
}
.quote-band p {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(38px, 7vw, 86px);
  line-height: 1.22;
}

.service-editorial {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.editorial-image,
.reason-row button,
.media-main,
.media-item,
.book-card,
.launch-strip button {
  appearance: none;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: zoom-in;
}
.editorial-image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: var(--ivory);
  box-shadow: var(--shadow);
}
.service-copy {
  font-size: 18px;
  color: var(--muted);
}
.service-points {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.service-points li {
  display: grid;
  grid-template-columns: 56px 130px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.service-points span { color: var(--rust); font-weight: 900; }
.service-points strong { color: var(--ink); font-size: 19px; }
.service-points em { color: var(--muted); font-style: normal; }

.story-reasons { display: grid; gap: 0; }
.reason-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 280px;
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgba(43, 33, 28, .22);
}
.reason-row:last-child { border-bottom: 1px solid rgba(43, 33, 28, .22); }
.reason-number {
  color: var(--rust);
  font-family: "Noto Serif TC", serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 900;
  line-height: 1;
}
.reason-row p { max-width: 560px; color: var(--muted); }
.reason-row img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  background: var(--ivory);
  box-shadow: 0 16px 36px rgba(43, 33, 28, .13);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 42px 0 0;
  counter-reset: time;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: var(--line);
}
.timeline li {
  position: relative;
  counter-increment: time;
  padding: 0 18px;
}
.timeline li::before {
  content: counter(time, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: -58px auto 24px;
  color: #fff;
  background: var(--coffee);
  border: 6px solid var(--paper);
  border-radius: 50%;
  font-weight: 900;
}
.timeline span {
  display: block;
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 21px;
  font-weight: 900;
  text-align: center;
}
.timeline p { margin: 0; color: var(--muted); text-align: center; }

.book-gallery {
  columns: 4 210px;
  column-gap: 22px;
}
.book-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 22px;
  break-inside: avoid;
  transition: transform .3s ease, filter .3s ease;
}
.book-card:hover { transform: translateY(-8px) rotate(-1deg); filter: brightness(1.05); }
.book-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f7efe2;
  box-shadow: 0 22px 50px rgba(0,0,0,.34);
}
.book-card.wide img { max-height: 390px; }

.media-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .8fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}
.media-main img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  background: var(--ivory);
  box-shadow: var(--shadow);
}
.media-list { display: grid; gap: 18px; }
.media-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px 0;
  text-align: left;
  border-top: 1px solid rgba(43, 33, 28, .2);
}
.media-item:last-child { border-bottom: 1px solid rgba(43, 33, 28, .2); }
.media-item img {
  grid-row: span 2;
  width: 130px;
  height: 92px;
  object-fit: contain;
  background: var(--ivory);
}
.media-item span { color: var(--rust); font-size: 22px; font-weight: 900; }
.media-item p { margin: 0; color: var(--muted); }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}
.archive-item {
  min-height: 180px;
  padding: 24px;
  border-top: 2px solid var(--coffee);
  background: rgba(255, 250, 241, .66);
}
.archive-item.large { grid-column: span 2; }
.archive-item.tall { grid-row: span 2; background: var(--coffee); color: var(--ivory); }
.archive-item.photo { grid-column: span 2; display: grid; grid-template-columns: 180px 1fr; gap: 18px; align-items: center; }
.archive-item.photo img { width: 180px; max-height: 180px; object-fit: contain; }
.archive-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 25px;
  font-weight: 900;
}
.archive-item.tall span { color: #f0a263; }
.archive-item p { margin: 0; color: var(--muted); }
.archive-item.tall p { color: rgba(255,250,241,.78); }

.launch-section {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: clamp(88px, 11vw, 150px) clamp(20px, 6vw, 92px);
  color: var(--ivory);
  overflow: hidden;
}
.launch-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,12,10,.88), rgba(15,12,10,.52), rgba(15,12,10,.18));
  pointer-events: none;
}
.launch-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.launch-copy p:not(.eyebrow) {
  color: rgba(255,250,241,.82);
  font-size: 20px;
}
.launch-strip {
  position: absolute;
  right: clamp(18px, 5vw, 78px);
  bottom: 48px;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px 150px;
  gap: 14px;
}
.launch-strip img {
  width: 150px;
  height: 112px;
  object-fit: contain;
  background: rgba(255,250,241,.9);
  border: 5px solid rgba(255,250,241,.82);
}

.faq-list { border-top: 1px solid var(--line); }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  color: var(--coffee);
  font-family: "Noto Serif TC", serif;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 900;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  max-width: 760px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
}

.contact-section { padding: clamp(78px, 10vw, 130px) clamp(20px, 5vw, 70px); }
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}
.contact-copy h2 { margin-bottom: 22px; }
.contact-copy p:not(.eyebrow) {
  max-width: 550px;
  color: rgba(255,250,241,.78);
  font-size: 19px;
}
.contact-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-links a {
  padding: 10px 14px;
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,250,241,.5);
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 250, 241, .08);
  border: 1px solid var(--light-line);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,250,241,.9);
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,250,241,.28);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ivory);
  background: rgba(0,0,0,.18);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 3px solid rgba(240,162,99,.22); border-color: #f0a263; }
.honeypot { position: absolute; left: -9999px; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 34px 18px;
  color: rgba(255,250,241,.68);
  background: #171310;
}
.site-footer img { width: 40px; height: 40px; object-fit: contain; background: var(--ivory); border-radius: 50%; padding: 5px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(12, 10, 8, .9);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  background: var(--ivory);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  font-size: 30px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav { gap: 0; font-size: 13px; }
  .hero-collage { opacity: .65; }
  .section-kicker,
  .service-editorial,
  .media-editorial,
  .contact-wrap { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .timeline li { padding: 0 0 32px 82px; }
  .timeline li::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 58px;
    height: 58px;
    margin: 0;
  }
  .timeline span,
  .timeline p { text-align: left; }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid !important;
    place-items: center;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 80;
    flex: 0 0 44px;
    background: rgba(43, 33, 28, .42);
    backdrop-filter: blur(8px);
  }
  .site-header.is-scrolled .nav-toggle,
  .site-header.menu-open .nav-toggle { background: rgba(255, 250, 241, .9); }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px 20px 20px;
    color: var(--coffee);
    background: rgba(255, 250, 241, .98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 12px 4px; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin: 10px 0 0; padding: 13px 18px !important; text-align: center; border-radius: 999px !important; border-bottom: 0 !important; }
  .hero { padding-top: 116px; min-height: 92vh; }
  .hero-collage { display: none; }
  .reason-row { grid-template-columns: 1fr; }
  .reason-row img { max-height: 300px; }
  .launch-strip { position: relative; right: auto; bottom: auto; margin-top: 34px; }
}

@media (max-width: 620px) {
  body { line-height: 1.8; }
  .brand span { font-size: 15px; }
  .brand img { width: 40px; height: 40px; }
  .hero { padding: 110px 20px 70px; }
  .nav-toggle { left: min(calc(100vw - 62px), 326px); right: auto; }
  h1 { max-width: 330px; font-size: 34px; line-height: 1.16; }
  .lead { max-width: 330px; }
  h2 { font-size: 34px; }
  .lead { font-size: 18px; }
  .section { padding: 70px 20px; }
  .quote-band p { font-size: 40px; }
  .service-points li { grid-template-columns: 1fr; gap: 4px; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-item.large,
  .archive-item.photo { grid-column: auto; }
  .archive-item.photo { grid-template-columns: 1fr; }
  .archive-item.photo img { width: 100%; }
  .media-item { grid-template-columns: 92px 1fr; }
  .media-item img { width: 92px; height: 72px; }
  .book-gallery { columns: 2 140px; column-gap: 14px; }
  .book-card { margin-bottom: 14px; }
  .contact-form { padding: 20px; }
  .launch-strip { grid-template-columns: 1fr 1fr; }
  .launch-strip img { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
