@font-face {
  font-family: "Bodoni Moda";
  src: url("fonts/bodoni-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("fonts/bodoni-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("fonts/bodoni-italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f1ede4;
  --surface: #fbf9f4;
  --ink: #1c1915;
  --ink-2: #6a6055;
  --ink-3: #a89d8c;
  --line: rgba(28, 25, 21, 0.14);
  --gilt: #9c7a3c;
  --gilt-light: #d9b25e;
  --night: #0a0807;
  --night-2: #17120c;
  --serif: "Bodoni Moda", Georgia, serif;
  --sans: "Hanken Grotesk", "Avenir Next", sans-serif;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--gilt) 70%, transparent);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--gilt);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--night);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(calc(100% - 40px), var(--content));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand:hover {
  color: var(--ink);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.brand__name {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 32%, rgba(217, 178, 94, 0.16), transparent 27rem),
    var(--paper);
}

.hero__inner {
  width: min(calc(100% - 40px), var(--content));
  min-height: 760px;
  margin: 0 auto;
  padding: 88px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

.kicker {
  margin-bottom: 24px;
  color: var(--gilt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(58px, 6.8vw, 106px);
  letter-spacing: -0.045em;
}

.hero__lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.quiet-facts {
  margin: 0;
  padding: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.quiet-facts span:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  margin-left: 22px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--gilt);
}

.screen-stage {
  position: relative;
  min-height: 610px;
}

.screen {
  position: absolute;
  width: min(44%, 248px);
  overflow: hidden;
  border: 7px solid var(--night);
  border-radius: 34px;
  background: var(--night);
  box-shadow: 0 28px 72px rgba(20, 14, 7, 0.23);
}

.screen img {
  width: 100%;
  height: auto;
}

.screen--today {
  top: 58px;
  left: 0;
  transform: rotate(-4deg);
}

.screen--focus {
  top: 0;
  left: 29%;
  z-index: 2;
}

.screen--painters {
  top: 78px;
  right: 0;
  transform: rotate(4deg);
}

.focus-mark {
  position: absolute;
  right: 3%;
  bottom: 5%;
  z-index: 3;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(156, 122, 60, 0.58);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(156, 122, 60, 0.06),
    0 0 54px rgba(217, 178, 94, 0.22);
}

.section {
  padding: 116px 0;
}

.section__inner {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 66px;
}

.section-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5.5vw, 78px);
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 19px;
}

.focus-section {
  color: var(--paper);
  background: var(--night);
}

.focus-section .kicker {
  color: var(--gilt-light);
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: clamp(50px, 8vw, 124px);
}

.focus-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(50px, 6.2vw, 88px);
  letter-spacing: -0.04em;
}

.focus-copy p {
  max-width: 510px;
  color: rgba(241, 237, 228, 0.68);
  font-size: 19px;
}

.focus-copy em {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.15em;
}

.focus-visual {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1206 / 2622;
  margin: 0 auto;
}

.focus-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 36px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.5);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 310px;
  padding: 38px 34px 42px;
}

.principle + .principle {
  border-left: 1px solid var(--line);
}

.principle__number {
  margin-bottom: 74px;
  color: var(--gilt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.principle h3 {
  margin-bottom: 16px;
  font-size: 31px;
  line-height: 1.05;
}

.principle p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 15px;
}

.catalogue {
  padding: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--surface);
}

.catalogue__image {
  min-height: 660px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 72px 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(217, 178, 94, 0.18), transparent 22rem),
    #e8e1d5;
}

.catalogue__image img {
  width: min(100%, 340px);
  height: auto;
  aspect-ratio: 1206 / 2622;
  object-fit: contain;
  border: 7px solid var(--night);
  border-radius: 34px;
  box-shadow: 0 28px 72px rgba(20, 14, 7, 0.22);
}

.catalogue__copy {
  padding: clamp(64px, 9vw, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalogue__copy h2 {
  margin-bottom: 28px;
  font-size: clamp(50px, 5.6vw, 82px);
  letter-spacing: -0.04em;
}

.catalogue__copy p {
  max-width: 520px;
  color: var(--ink-2);
  font-size: 18px;
}

.catalogue__list {
  margin: 28px 0 0;
  padding: 24px 0 0;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 14px;
  font-weight: 600;
}

.support-cta {
  text-align: center;
}

.support-cta h2 {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -0.04em;
}

.support-cta p {
  max-width: 650px;
  margin: 0 auto 34px;
  color: var(--ink-2);
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--night);
  color: var(--paper);
  background: var(--night);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  color: var(--paper);
  background: color-mix(in srgb, var(--night) 88%, var(--gilt));
}

.site-footer {
  padding: 38px 0;
  color: rgba(241, 237, 228, 0.62);
  background: var(--night);
  font-size: 13px;
}

.site-footer__inner {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer a {
  color: var(--paper);
}

.content-page {
  min-height: calc(100vh - 82px);
  background:
    linear-gradient(to right, transparent calc(50% - 401px), var(--line) calc(50% - 400px), transparent calc(50% - 399px)),
    var(--paper);
}

.content-page__inner {
  width: min(calc(100% - 40px), 800px);
  margin: 0 auto;
  padding: 90px 0 120px;
}

.content-page__header {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.content-page__header h1 {
  margin-bottom: 22px;
  font-size: clamp(56px, 8vw, 92px);
  letter-spacing: -0.045em;
}

.content-page__header p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 19px;
}

.meta {
  margin-top: 18px;
  color: var(--ink-3);
  font-size: 13px;
}

.contact-panel {
  margin: 48px 0 58px;
  padding: 30px 32px;
  color: var(--paper);
  background: var(--night);
}

.contact-panel h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.contact-panel p {
  margin-bottom: 0;
  color: rgba(241, 237, 228, 0.68);
}

.contact-panel a {
  color: var(--gilt-light);
}

.prose section {
  padding: 34px 0 30px;
  border-top: 1px solid var(--line);
}

.prose section:first-child {
  border-top: 0;
}

.prose h2 {
  margin-bottom: 15px;
  font-size: 31px;
  line-height: 1.1;
}

.prose p,
.prose li {
  color: var(--ink-2);
}

.prose p:last-child,
.prose ul:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--ink);
}

.prose ul {
  padding-left: 1.2em;
}

.listing-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 700px;
  }

  .screen-stage {
    width: min(100%, 680px);
    min-height: 570px;
    margin: 0 auto;
  }

  .focus-layout,
  .catalogue {
    grid-template-columns: 1fr;
  }

  .focus-copy {
    max-width: 680px;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 0;
  }

  .principle + .principle {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle__number {
    margin-bottom: 30px;
  }

  .catalogue__image {
    min-height: 520px;
  }

  .catalogue__copy {
    padding: 80px 40px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand__name {
    font-size: 22px;
  }

  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .site-nav a:first-child {
    display: none;
  }

  .hero__inner {
    padding: 66px 0 46px;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .quiet-facts {
    display: grid;
    gap: 6px;
  }

  .quiet-facts span::after {
    display: none !important;
  }

  .screen-stage {
    min-height: 430px;
  }

  .screen {
    width: 45%;
    border-width: 5px;
    border-radius: 24px;
  }

  .screen--today {
    top: 44px;
  }

  .screen--painters {
    top: 56px;
  }

  .focus-mark {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .focus-section {
    padding-top: 88px;
  }

  .focus-layout {
    gap: 54px;
  }

  .focus-visual {
    width: min(100%, 300px);
  }

  .principle {
    padding: 34px 0;
  }

  .catalogue__image {
    min-height: 420px;
  }

  .catalogue__copy {
    padding: 72px 20px;
  }

  .site-footer__inner {
    flex-direction: column;
  }

  .content-page {
    background: var(--paper);
  }

  .content-page__inner {
    padding: 64px 0 90px;
  }

  .contact-panel {
    margin: 38px -6px 48px;
    padding: 26px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Store download badges */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.store-buttons--center {
  justify-content: center;
  margin-top: 34px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--night);
  border-radius: 12px;
  color: var(--paper);
  background: var(--night);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.store-badge:hover {
  color: var(--paper);
  background: color-mix(in srgb, var(--night) 88%, var(--gilt));
  transform: translateY(-1px);
}

.store-badge__icon {
  width: 26px;
  height: 26px;
  flex: none;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.store-badge__label {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(241, 237, 228, 0.72);
}

.store-badge__store {
  font-size: 18px;
  font-weight: 700;
}

.download-cta {
  text-align: center;
}

.download-cta .section__inner > p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Per-glyph CJK font fallback: Latin keeps Bodoni/Hanken, CJK uses native faces */
:lang(zh) {
  --serif: "Bodoni Moda", "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  --sans: "Hanken Grotesk", "PingFang SC", "Noto Sans SC", sans-serif;
}
:lang(ja) {
  --serif: "Bodoni Moda", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  --sans: "Hanken Grotesk", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}
:lang(ko) {
  --serif: "Bodoni Moda", "Apple SD Gothic Neo", "Nanum Myeongjo", "Noto Serif KR", Georgia, serif;
  --sans: "Hanken Grotesk", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

/* Language switcher */
.lang-menu {
  position: relative;
}
.lang-menu > summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 4px 6px;
}
.lang-menu > summary::-webkit-details-marker { display: none; }
.lang-menu > summary::after { content: " ▾"; color: var(--ink-3); }
.lang-menu > summary:hover { color: var(--ink); }
.lang-menu__list {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
  margin: 0;
  padding: 8px;
  list-style: none;
  min-width: 160px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(28, 25, 21, 0.14);
}
.lang-menu__list a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
}
.lang-menu__list a:hover { background: var(--paper); color: var(--ink); }
.lang-menu__list a[aria-current="true"] { color: var(--gilt); font-weight: 700; }

/* Demo video section — one device per row */
.demo-rows {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.demo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.demo-row--reverse { flex-direction: row-reverse; }
.demo-row__device {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.demo-row__text { max-width: 400px; }
.demo-row__kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.demo-row__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.demo-row__meta {
  margin: 12px 0 2px;
  color: var(--ink-2);
  font-size: 15px;
}
.demo-row__place {
  margin: 0 0 18px;
  color: var(--gilt);
  font-size: 14px;
  font-weight: 600;
}
.demo-row__desc {
  margin: 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
}

/* Device frame */
.device { margin: 0; }
.device__frame {
  position: relative;
  background: #0a0807;
  box-shadow: 0 34px 80px rgba(28, 25, 21, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.device__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0a0807;
}
.device--iphone .device__frame {
  width: clamp(230px, 58vw, 278px);
  aspect-ratio: 1080 / 2340;
  padding: 11px;
  border-radius: 44px;
}
.device--iphone .device__video { border-radius: 34px; }
.device__island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 18px;
  background: #000;
  border-radius: 11px;
  z-index: 2;
}
.device--ipad .device__frame {
  width: clamp(320px, 66vw, 460px);
  aspect-ratio: 1536 / 2048;
  padding: 15px;
  border-radius: 32px;
}
.device--ipad .device__video { border-radius: 18px; }

/* Listen (unmute) button */
.listen-btn {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--night);
  border-radius: 999px;
  background: var(--night);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
.listen-btn:hover { background: color-mix(in srgb, var(--night) 86%, var(--gilt)); }
.listen-btn__off { display: none; }
.listen-btn.is-on { background: var(--gilt); border-color: var(--gilt); color: var(--night); }
.listen-btn.is-on .listen-btn__on { display: none; }
.listen-btn.is-on .listen-btn__off { display: inline; }

@media (max-width: 820px) {
  .demo-rows { gap: 64px; }
  .demo-row, .demo-row--reverse {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .demo-row__text { max-width: 460px; }
  .demo-row__place { color: var(--gilt); }
}
