@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@400;500;600;700&display=swap');

:root {
  --ink: #172538;
  --blue: #254e79;
  --light-blue: #d9e9eb;
  --gold: #e7b34c;
  --cream: #f7f0df;
  --red: #a54335;
  --line: rgba(23, 37, 56, 0.16);
  --serif: "Noto Serif SC", "Songti SC", serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 16px;
}

.paper-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image: radial-gradient(rgba(31, 40, 48, .17) .6px, transparent .7px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

.site-header {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); font-size: 14px; line-height: 1.32; }
.brand em { font-family: var(--mono); font-size: 10px; font-style: normal; letter-spacing: .03em; color: var(--blue); }
.brand-seal { display: grid; width: 38px; aspect-ratio: 1; place-items: center; background: var(--red); color: #fff9ec; font-size: 23px; font-family: "Ma Shan Zheng", cursive; transform: rotate(-4deg); }
nav { display: flex; gap: 25px; }
nav a, footer a { color: var(--ink); text-decoration: none; font-size: 13px; }
nav a:hover, footer a:hover { color: var(--red); }

.hero { min-height: 665px; width: min(1180px, calc(100% - 44px)); margin: 0 auto; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 12px; }
.eyebrow { color: var(--red); text-transform: uppercase; font: 500 10px var(--mono); letter-spacing: .12em; margin: 0 0 16px; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 580px; font-size: clamp(36px, 4vw, 63px); line-height: 1.26; letter-spacing: -.05em; margin-bottom: 22px; }
h1 span { color: var(--red); white-space: nowrap; }
.hero-intro { max-width: 405px; line-height: 1.8; color: #46566a; font-size: 16px; }
.primary-button { display: inline-flex; align-items: center; gap: 20px; margin-top: 13px; padding: 13px 18px; background: var(--ink); color: var(--cream); font-size: 14px; text-decoration: none; transition: transform .2s ease; }
.primary-button:hover { transform: translateY(-3px); }
.primary-button span { color: var(--gold); font-size: 18px; }

.meeting-scene { height: 560px; position: relative; overflow: hidden; border-radius: 300px 300px 36px 36px; background: linear-gradient(145deg, #d0e3e4 0%, #f7e7bd 64%, #f3cf82 100%); isolation: isolate; }
.meeting-scene::after { content: ""; position: absolute; inset: auto -5% 0; height: 26%; background: repeating-radial-gradient(ellipse at 50% 100%, rgba(37, 78, 121, .17) 0 1px, transparent 1.5px 20px); z-index: -1; }
.sun-disc { position: absolute; width: 230px; aspect-ratio: 1; border-radius: 50%; background: #f3c564; top: 65px; left: 50%; translate: -50%; mix-blend-mode: soft-light; }
.character { position: absolute; bottom: 17px; text-align: center; z-index: 2; }
.character p { margin: 0; font-size: 17px; color: var(--blue); font-weight: 700; }
.character small { display: block; margin-top: 4px; font: 10px var(--mono); letter-spacing: .03em; color: #5f6974; font-weight: 400; }
.confucius-character { left: 1%; width: 52%; }
.ames-character { right: -2%; width: 46%; }
.character > img { width: 100%; height: 441px; object-fit: contain; object-position: bottom; }
.bridge { z-index: 3; position: absolute; left: 49%; bottom: 123px; color: var(--red); font-size: 19px; display: flex; gap: 17px; transform: translateX(-50%); }
.bridge span:nth-child(2) { transform: translateY(-19px); }
.constellation { position: absolute; z-index: 1; font-family: "Ma Shan Zheng", cursive; color: rgba(37, 78, 121, .25); font-size: 79px; }
.constellation-one { top: 36px; left: 15%; transform: rotate(-13deg); }
.constellation-two { top: 113px; right: 12%; transform: rotate(9deg); }

.concept-section, .stories-section { padding: 108px max(22px, calc((100vw - 1180px) / 2)); }
.concept-section { background: var(--ink); color: #fbf4e7; }
.section-heading { max-width: 550px; }
.section-heading h2, .listen-copy h2 { font-size: clamp(31px, 3.3vw, 47px); line-height: 1.25; letter-spacing: -.045em; margin-bottom: 13px; }
.section-heading > p:last-child { color: #aabac7; line-height: 1.8; }
.daily-draw { display: grid; grid-template-columns: 112px minmax(270px, .93fr) 1.07fr; margin-top: 46px; overflow: hidden; border: 1px solid rgba(247, 240, 223, .28); background: #fff9ec; color: var(--ink); transition: opacity .16s ease, transform .16s ease; }
.daily-draw.is-changing { opacity: .22; transform: translateY(4px); }
.daily-date { display: flex; flex-direction: column; align-items: center; padding: 24px 9px; background: var(--gold); color: var(--ink); }
.daily-date span, .daily-date small { font: 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.daily-date strong { margin: 12px 0 8px; font: 400 clamp(65px, 8vw, 112px)/.78 var(--serif); letter-spacing: -.12em; }
.daily-date small { writing-mode: vertical-rl; margin-top: auto; }
.daily-illustration { min-height: 408px; background: #f2d37f; overflow: hidden; }
.daily-illustration img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.daily-draw:hover .daily-illustration img { transform: scale(1.03); }
.daily-copy { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(26px, 4vw, 48px); background: #fff9ec; }
.daily-kicker { margin-bottom: 22px; color: var(--red); font: 11px var(--mono); letter-spacing: .02em; }
.daily-copy h3 { margin-bottom: 14px; font-size: clamp(31px, 3.5vw, 48px); letter-spacing: -.05em; }
.daily-copy h3 span { font-family: "Ma Shan Zheng", cursive; color: var(--red); font-size: 1.3em; margin-right: 7px; }
.daily-copy > p:not(.daily-kicker) { color: #46566a; line-height: 1.85; }
.window-label { color: var(--gold); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.mini-prompt { display: flex; gap: 12px; margin-top: 20px; align-items: flex-start; color: var(--cream); }
.daily-copy .mini-prompt { color: var(--ink); padding-top: 17px; border-top: 1px solid var(--line); }
.mini-prompt span { display: grid; place-items: center; flex: 0 0 22px; width: 22px; aspect-ratio: 1; border: 1px solid var(--gold); color: var(--red); border-radius: 50%; font: 13px var(--mono); }
.mini-prompt p { margin: 0; line-height: 1.7; font-size: 14px; }
.draw-button { margin-top: auto; border: 0; padding: 12px 16px; background: var(--ink); color: #fff9ec; font-family: var(--serif); font-size: 14px; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.draw-button:hover { background: var(--red); transform: translateY(-3px); }
.draw-button span { margin-left: 13px; color: var(--gold); font: 18px var(--mono); }

.translation-section { padding: 112px max(22px, calc((100vw - 1180px) / 2)); background: #f8f4ea; }
.translation-intro { max-width: 555px; }
.translation-intro h2 { margin-bottom: 16px; font-size: clamp(31px, 3.3vw, 47px); line-height: 1.25; letter-spacing: -.045em; }
.translation-intro > p:last-child { color: #536172; line-height: 1.85; }
.translation-intro em, .reveal-button em, #translation-answer em { color: var(--red); font-family: var(--mono); font-style: normal; }
.word-comparison { display: grid; grid-template-columns: 1fr auto 1fr; gap: 17px; align-items: center; margin-top: 43px; }
.word-card { min-height: 272px; padding: 25px; border: 1px solid var(--line); }
.benevolence-card { background: #e7eef0; }
.ren-card { background: var(--gold); }
.word-label { margin-bottom: 31px; color: #5b6b7b; font: 10px var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.word-card h3 { margin: 0; font: 500 clamp(35px, 4vw, 56px)/1 var(--mono); letter-spacing: -.08em; }
.ren-card h3 span { font-family: "Ma Shan Zheng", cursive; font-size: 1.24em; margin-right: 6px; }
.word-gloss { margin: 19px 0 10px; font-size: 16px; font-weight: 700; }
.word-card > p:last-child { margin-bottom: 0; line-height: 1.75; color: #43515e; font-size: 14px; }
.not-equal { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff7e9; font: 24px var(--mono); z-index: 1; }
.translation-reveal { max-width: 845px; margin-top: 21px; }
.reveal-button { display: flex; width: 100%; justify-content: space-between; border: 0; border-bottom: 1px solid var(--line); padding: 18px 0; background: transparent; color: var(--ink); font-family: var(--serif); font-size: 18px; text-align: left; cursor: pointer; }
.reveal-button span { font: 25px/16px var(--mono); transition: transform .2s ease; }
.reveal-button.is-open span { transform: rotate(45deg); }
#translation-answer { max-width: 740px; margin: 22px 0 0; color: #3f4e5c; line-height: 1.85; }
.translation-source { margin: 18px 0 0; color: #6b7782; font-size: 11px; line-height: 1.65; }

.lexicon-section { padding: 112px max(22px, calc((100vw - 1180px) / 2)); background: #e6eef0; }
.lexicon-heading { max-width: 610px; }
.lexicon-heading h2 { margin-bottom: 16px; font-size: clamp(34px, 4vw, 53px); line-height: 1.2; letter-spacing: -.045em; }
.lexicon-heading > p:last-child { color: #4d5e6d; line-height: 1.85; }
.lexicon-toolbar { display: grid; grid-template-columns: auto minmax(220px, 380px) 1fr; gap: 14px; align-items: center; margin: 42px 0 20px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lexicon-toolbar label { font: 11px var(--mono); color: var(--blue); }
.lexicon-toolbar input { min-width: 0; border: 0; border-bottom: 1px solid rgba(23, 37, 56, .35); padding: 7px 2px; outline: 0; color: var(--ink); background: transparent; font: 13px var(--serif); }
.lexicon-toolbar input:focus { border-color: var(--red); }
#lexicon-count { margin: 0; justify-self: end; color: #65727e; font: 10px var(--mono); }
.lexicon-layout { display: grid; grid-template-columns: 1.25fr minmax(260px, .75fr); gap: clamp(25px, 5vw, 74px); align-items: start; }
.lexicon-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
.lexicon-token { min-height: 91px; border: 1px solid rgba(23, 37, 56, .24); padding: 8px 5px; color: var(--ink); background: rgba(255, 251, 240, .46); font-family: var(--serif); cursor: pointer; transition: transform .18s ease, color .18s ease, background .18s ease; }
.lexicon-token:hover, .lexicon-token.is-active { background: var(--red); border-color: var(--red); color: #fff9ec; transform: translateY(-4px) rotate(-1.5deg); }
.lexicon-token-art { display: grid; width: 31px; height: 31px; margin: 0 auto 3px; place-items: center; border-radius: 50%; color: var(--ink); font: 19px/1 var(--serif); }
.lexicon-token:hover .lexicon-token-art, .lexicon-token.is-active .lexicon-token-art { background: #fff9ec; color: var(--red); }
.lexicon-token b { display: block; font-family: "Ma Shan Zheng", cursive; font-size: 34px; line-height: 1.25; font-weight: 400; }
.lexicon-token small { display: block; margin-top: 4px; font: 8px var(--mono); letter-spacing: -.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lexicon-window { position: sticky; top: 22px; padding: 29px; color: #fff9ec; background: var(--ink); border-radius: 0 50px 0 50px; }
.lexicon-window .window-label { margin-bottom: 25px; }
.lexicon-visual { position: relative; display: grid; min-height: 142px; margin: 0 0 25px; place-items: center; overflow: hidden; background: #e9b94e; color: var(--ink); isolation: isolate; }
.lexicon-visual::before, .lexicon-visual::after { content: ""; position: absolute; z-index: -1; border: 1px solid rgba(23, 37, 56, .3); border-radius: 50%; }
.lexicon-visual::before { width: 180px; aspect-ratio: 1; translate: -50% 15%; }
.lexicon-visual::after { width: 90px; aspect-ratio: 1; right: 8%; top: -24%; }
.lexicon-visual span { font: 70px/1 var(--serif); text-shadow: 5px 6px 0 rgba(255, 249, 236, .33); transform: rotate(-8deg); }
.lexicon-visual i { position: absolute; right: 14px; bottom: 11px; font: 10px var(--mono); font-style: normal; letter-spacing: .04em; }
.theme-sun { background: #e8b94f; }
.theme-sky { background: #b9d4e2; }
.theme-coral { background: #e77e67; }
.theme-moss { background: #acc38c; }
.theme-ink { background: #9eb2c8; }
.theme-lilac { background: #c9b6d6; }
.theme-sand { background: #dec08b; }
.theme-rose { background: #d9a4a8; }
.theme-mint { background: #a8cec2; }
.theme-night { background: #415d7d; color: #fff9ec; }
.theme-night::before, .theme-night::after { border-color: rgba(255, 249, 236, .35); }
.theme-night span { text-shadow: 5px 6px 0 rgba(231, 179, 76, .35); }
.lexicon-window h3 { margin-bottom: 11px; font: 400 clamp(48px, 5vw, 70px)/1 "Ma Shan Zheng", cursive; }
.lexicon-window h3 em { margin-left: 8px; color: var(--gold); font: 500 16px var(--mono); vertical-align: middle; letter-spacing: -.04em; }
.lexicon-brief { margin-bottom: 19px; color: var(--gold); font-size: 17px; font-weight: 700; line-height: 1.5; }
.lexicon-deep { margin-bottom: 25px; color: #d9e4e9; line-height: 1.86; }
.lexicon-deep-dive { margin: 0 0 25px; padding: 18px 0; border-top: 1px solid rgba(247, 240, 223, .26); border-bottom: 1px solid rgba(247, 240, 223, .26); }
.deep-dive-label { margin-bottom: 11px; color: var(--gold); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.lexicon-deep-dive > p:not(.deep-dive-label) { margin-bottom: 12px; color: #d9e4e9; font-size: 13px; line-height: 1.78; }
.lexicon-deep-dive .misread { margin-bottom: 17px; color: #f8edcf; }
.related-terms > span { display: block; margin-bottom: 7px; color: #9eb2c8; font: 10px var(--mono); }
#lexicon-related { display: flex; flex-wrap: wrap; gap: 6px; }
.related-term { border: 1px solid rgba(247, 240, 223, .36); padding: 5px 7px; color: #fff9ec; background: transparent; font-family: var(--serif); font-size: 12px; cursor: pointer; }
.related-term:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.lexicon-prompt { display: flex; gap: 11px; padding-top: 17px; border-top: 1px solid rgba(247, 240, 223, .26); }
.lexicon-prompt span { display: grid; place-items: center; flex: 0 0 22px; width: 22px; height: 22px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font: 13px var(--mono); }
.lexicon-prompt p { margin: 0; color: #f8edcf; font-size: 13px; line-height: 1.72; }
.lexicon-source { margin: 28px 0 0; color: #63717b; font-size: 11px; line-height: 1.65; }
.lexicon-source a { color: inherit; text-underline-offset: 3px; }
.lexicon-source a:hover { color: var(--red); }


.listen-section { padding: 110px max(22px, calc((100vw - 950px) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(35px, 9vw, 120px); align-items: center; background: #d9e9eb; }
.listen-visual { width: min(330px, 100%); aspect-ratio: 1; border: 1px solid var(--blue); border-radius: 50%; position: relative; display: grid; place-items: center; margin-inline: auto; color: var(--red); }
.listen-visual span { font-family: "Ma Shan Zheng", cursive; font-size: 112px; }
.orbit { position: absolute; border: 1px dashed rgba(37, 78, 121, .55); border-radius: 50%; }
.orbit-one { width: 125%; height: 47%; transform: rotate(29deg); }
.orbit-two { width: 73%; height: 130%; transform: rotate(-38deg); }
.listen-copy > p:not(.eyebrow) { max-width: 450px; line-height: 1.8; color: #435873; }
.language-switcher { display: flex; gap: 8px; margin: 22px 0 15px; flex-wrap: wrap; }
.language-button { border: 1px solid rgba(37, 78, 121, .35); padding: 8px 11px; background: transparent; color: var(--blue); font-family: var(--serif); cursor: pointer; }
.language-button.is-active { background: var(--blue); color: white; }
audio { width: 100%; max-width: 440px; height: 40px; }

.stories-section { background: #f4dfb0; }
.compact-heading { margin-bottom: 42px; }
.story-grid { display: grid; grid-template-columns: 1.45fr 1fr .92fr; gap: 15px; align-items: stretch; }
.image-story { margin: 0; min-height: 285px; position: relative; overflow: hidden; background: var(--blue); }
.image-story img { display: block; width: 100%; height: 100%; min-height: 285px; object-fit: cover; transition: scale .35s ease; }
.image-story:hover img { scale: 1.05; }
.image-story figcaption { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 31px 17px 15px; color: white; background: linear-gradient(transparent, rgba(23, 37, 56, .84)); font-size: 13px; pointer-events: none; }
.image-story figcaption span { color: #f8d177; font-weight: 700; }
.story-hit { position: absolute; z-index: 3; inset: 0; border: 0; background: transparent; color: white; cursor: pointer; }
.story-hit span { position: absolute; right: 13px; top: 13px; padding: 7px 9px; background: rgba(23, 37, 56, .76); border: 1px solid rgba(255, 255, 255, .58); font: 10px var(--mono); }
.story-hit:hover span, .story-hit:focus-visible span { background: var(--red); outline: 0; }
.story-note { padding: 26px 22px; background: var(--red); color: #fff6e5; display: flex; flex-direction: column; justify-content: center; }
.quote-mark { font: 87px/0.6 "Ma Shan Zheng", cursive; color: var(--gold); margin: 0; }
.story-note > p:nth-child(2) { font-size: 17px; line-height: 1.8; margin: 15px 0 24px; }
.story-note span { font: 10px var(--mono); color: #f5d494; }

.studio-dialog { width: min(710px, calc(100% - 30px)); max-height: min(790px, calc(100% - 30px)); padding: clamp(28px, 5vw, 54px); border: 0; color: var(--ink); background: #fff8e9; box-shadow: 0 28px 80px rgba(12, 24, 39, .35); }
.studio-dialog::backdrop { background: rgba(15, 28, 45, .67); backdrop-filter: blur(3px); }
.dialog-close { position: absolute; top: 15px; right: 17px; border: 0; color: var(--ink); background: transparent; font: 33px/1 var(--mono); cursor: pointer; }
.dialog-eyebrow { color: var(--red); font: 10px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.studio-dialog h2 { margin: 15px 0 13px; font-size: clamp(32px, 5vw, 54px); line-height: 1.2; letter-spacing: -.05em; }
.dialog-lead { margin-bottom: 22px; color: var(--red); font-size: 18px; font-weight: 700; }
.studio-dialog > p:not(.dialog-lead, .dialog-note) { max-width: 570px; color: #4d5e6d; line-height: 1.88; }
.studio-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 29px 0 23px; }
.studio-actions article { padding: 16px 13px; background: #dcebed; }
.studio-actions article:nth-child(2) { background: #efd48d; }
.studio-actions article:nth-child(3) { background: #dca5a2; }
.studio-actions span { font-family: "Ma Shan Zheng", cursive; font-size: 37px; color: var(--ink); }
.studio-actions h3 { margin: 7px 0 5px; font-size: 16px; }
.studio-actions p { margin: 0; font-size: 12px; line-height: 1.7; }
.dialog-note { margin: 0; padding-top: 16px; border-top: 1px solid var(--line); color: #586773; font-size: 13px; }

.shop-dialog { width: min(1040px, calc(100% - 30px)); max-height: calc(100% - 26px); padding: clamp(28px, 4vw, 50px); border: 0; color: var(--ink); background: #fff8e9; box-shadow: 0 28px 80px rgba(12, 24, 39, .35); }
.shop-dialog::backdrop { background: rgba(15, 28, 45, .67); backdrop-filter: blur(3px); }
.shop-dialog h2 { margin: 15px 0 10px; font-size: clamp(32px, 5vw, 54px); line-height: 1.15; letter-spacing: -.05em; }
.shop-dialog .dialog-lead { margin-bottom: 27px; }
.shop-products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.product-card { display: flex; flex-direction: column; min-width: 0; padding-bottom: 11px; background: #eef2ed; }
.product-card:nth-child(2) { background: #e4ebf1; }
.product-card:nth-child(3) { background: #e9f0df; }
.product-card:nth-child(4) { background: #ede0cc; }
.product-card:nth-child(5) { background: #e0e9eb; }
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-card > div:not(.quantity-picker) { padding: 10px 11px 3px; }
.product-type { margin-bottom: 3px; color: var(--red); font: 9px var(--mono); letter-spacing: .08em; }
.product-card h3 { min-height: 41px; margin: 0 0 7px; font-size: 14px; line-height: 1.45; }
.product-card strong { font-size: 18px; }
.quantity-picker { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin: auto 11px 0; padding-top: 8px; border-top: 1px solid rgba(23, 37, 56, .15); }
.quantity-picker button { width: 25px; height: 25px; border: 1px solid rgba(23, 37, 56, .32); background: transparent; color: var(--ink); font: 18px/1 var(--mono); cursor: pointer; }
.quantity-picker button:hover { color: white; background: var(--red); border-color: var(--red); }
.quantity-picker output { min-width: 15px; text-align: center; font: 13px var(--mono); }
.shop-checkout { margin-top: 24px; padding: 20px; background: var(--ink); color: #fff8e9; }
.shop-total { display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid rgba(255, 248, 233, .26); }
.shop-total span { color: #bdccd7; font: 11px var(--mono); }
.shop-total strong { color: var(--gold); font-size: 22px; }
.customer-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 17px 0 14px; }
.customer-fields label { display: grid; gap: 6px; color: #dce6eb; font-size: 12px; }
.customer-fields input { width: 100%; border: 1px solid rgba(255, 248, 233, .35); padding: 10px; color: #fff8e9; background: rgba(255, 255, 255, .07); font: 13px var(--serif); outline-color: var(--gold); }
.customer-fields input::placeholder { color: #9dabb8; }
.field-wide { grid-column: 1 / -1; }
.order-message { min-height: 19px; margin: 0 0 12px; color: #f3d485; font-size: 12px; }
.submit-order { border: 0; padding: 12px 16px; color: var(--ink); background: var(--gold); font-family: var(--serif); font-size: 15px; cursor: pointer; }
.submit-order:hover { background: #f4ce6d; }
.submit-order span { margin-left: 15px; font: 18px var(--mono); }
.shop-disclaimer { margin: 11px 0 0; color: #9dabb8; font-size: 10px; line-height: 1.6; }

footer { min-height: 105px; padding: 26px max(22px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; background: var(--ink); color: #f7f0df; }
footer p { margin: 0; font-size: 14px; }
footer a { color: #f7f0df; }

@media (max-width: 760px) {
  .site-header { height: 76px; width: min(100% - 30px, 1180px); }
  nav { gap: 12px; }
  nav a { font-size: 11px; }
  .brand { font-size: 12px; }
  .brand-seal { width: 32px; font-size: 20px; }
  .hero { width: min(100% - 30px, 1180px); grid-template-columns: 1fr; padding: 60px 0 40px; gap: 31px; }
  h1 { font-size: 38px; }
  h1 span { white-space: normal; }
  .meeting-scene { height: 454px; border-radius: 220px 220px 25px 25px; }
  .sun-disc { width: 175px; top: 58px; }
  .character > img { height: 350px; }
  .character p { font-size: 14px; }
  .bridge { bottom: 94px; gap: 7px; font-size: 12px; }
  .concept-section, .stories-section { padding: 74px 22px; }
  .daily-draw { grid-template-columns: 68px 1fr; margin-top: 31px; }
  .daily-date { padding: 16px 6px; }
  .daily-date strong { font-size: 64px; }
  .daily-illustration { min-height: 265px; }
  .daily-copy { grid-column: 1 / -1; padding: 26px 22px; }
  .translation-section { padding: 75px 22px; }
  .word-comparison { grid-template-columns: 1fr; gap: 12px; }
  .word-card { min-height: auto; padding: 22px; }
  .word-label { margin-bottom: 20px; }
  .not-equal { margin: -18px auto; }
  .lexicon-section { padding: 75px 22px; }
  .lexicon-toolbar { grid-template-columns: auto 1fr; gap: 8px 14px; margin: 31px 0 18px; }
  #lexicon-count { grid-column: 1 / -1; justify-self: start; }
  .lexicon-layout { grid-template-columns: 1fr; gap: 25px; }
  .lexicon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
  .lexicon-token { min-height: 81px; }
  .lexicon-token b { font-size: 29px; }
  .lexicon-window { position: static; min-height: 0; padding: 25px; border-radius: 0 36px 0 36px; }
  .listen-section { padding: 75px 22px; grid-template-columns: 1fr; }
  .listen-visual { width: 230px; }
  .listen-copy { text-align: left; }
  .story-grid { grid-template-columns: 1fr; }
  .image-story, .image-story img { min-height: 245px; }
  .studio-dialog { padding: 36px 24px 30px; }
  .studio-actions { grid-template-columns: 1fr; gap: 7px; }
  .studio-actions article { display: grid; grid-template-columns: 42px 1fr; column-gap: 10px; align-items: center; }
  .studio-actions span { grid-row: span 2; }
  .studio-actions h3 { margin: 0; }
  .studio-actions p { grid-column: 2; }
  .shop-dialog { padding: 36px 20px 24px; }
  .shop-products { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(5) { grid-column: 1 / -1; }
  .product-card:nth-child(5) img { max-height: 210px; object-fit: cover; }
  .customer-fields { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  footer { padding: 22px; min-height: 90px; gap: 20px; }
  footer p { font-size: 12px; }
}
