:root {
  --cream: #fff9ef;
  --cream-rgb: 255, 249, 239;
  --aqua: #76ccc5;
  --aqua-wash: #eaf6f4;
  --ink: #35312d;
  --muted: #6f6962;
  --teal: #28625d;
  --coral: #e96b60;
  --apricot: #e89a57;
  --citron: #dde45b;
  --lilac: #c5a5d8;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; overflow-x: clip; background: var(--cream); color: var(--ink); }
body { min-width: 320px; font-family: "Be Vietnam Pro", Avenir, "Segoe UI", system-ui, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button:not(:disabled), a[href], summary, [role="button"], [role="tab"], label[for], select, input[type="checkbox"], input[type="radio"] { cursor: pointer; }
button:disabled, [aria-disabled="true"] { cursor: not-allowed; }

.skip-link { position: fixed; left: 1rem; top: 1rem; z-index: 100; padding: .75rem 1rem; border-radius: 999px; background: var(--ink); color: var(--cream); transform: translateY(-200%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }

.announcement-bar { position: fixed; z-index: 32; inset: 0 0 auto; min-height: 38px; display: flex; align-items: center; justify-content: center; gap: .55rem; padding: .45rem 1rem; background: #e7f1f8; color: #17283b; font-size: .67rem; font-weight: 700; letter-spacing: .11em; line-height: 1.3; text-align: center; text-decoration: none; text-transform: uppercase; transition: background .25s ease; }
.announcement-bar:hover { background: #dcecf6; }
.announcement-bar i { font-style: normal; }
.announcement-bar b { margin-left: .2rem; font-size: 1rem; font-weight: 500; line-height: 1; }
.site-header { position: fixed; inset: 38px 0 auto; z-index: 30; display: flex; align-items: center; justify-content: space-between; min-height: 84px; padding: .55rem clamp(1.25rem, 3.4vw, 4rem); border-bottom: 1px solid rgba(53, 49, 45, .08); background: rgba(var(--cream-rgb), .97); transition: background .35s ease, box-shadow .35s ease; }
.site-header.is-scrolled { background: rgba(var(--cream-rgb), .94); box-shadow: 0 10px 30px rgba(53, 49, 45, .06); backdrop-filter: blur(14px); }
.brand { position: relative; display: inline-flex; width: 184px; height: 54px; overflow: hidden; }
.brand img { position: absolute; top: -30px; left: -35px; width: 254px; max-width: none; height: auto; }
.desktop-navigation { position: absolute; left: 50%; display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); transform: translateX(-50%); }
.desktop-navigation a { min-height: 44px; display: inline-flex; align-items: center; gap: .45rem; color: var(--muted); font-size: .84rem; font-weight: 600; text-decoration: none; white-space: nowrap; transition: color .2s ease; }
.desktop-navigation a:hover { color: var(--teal); }
.desktop-navigation a span { position: relative; top: -.08rem; font-size: 1rem; }
.header-actions { display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.5rem); }
.text-link { font-size: .88rem; font-weight: 650; text-decoration: none; }
.header-cta, .hero-cta { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: .7rem; padding: .76rem 1.25rem; border-radius: 999px; background: var(--teal); box-shadow: 0 8px 24px rgba(40, 98, 93, .18); color: white; font-weight: 750; text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.header-cta:hover, .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(40, 98, 93, .25); }
.header-icon { width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; color: var(--ink); }
.header-icon:disabled { opacity: 1; cursor: default; }
.header-icon-cart { position: relative; cursor: pointer; }
.header-icon-cart:hover { color: var(--teal); }
.cart-count-badge { position: absolute; top: 2px; right: 0; min-width: 20px; height: 20px; display: grid; place-items: center; padding: 0 5px; border: 2px solid var(--cream); border-radius: 999px; background: #7d756d; color: white; font-size: .64rem; font-weight: 750; line-height: 1; }
.cart-count-badge[hidden] { display: none; }
.header-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.mobile-menu-toggle, .mobile-menu, .mobile-scene-progress, .mobile-bottom-nav { display: none; }

.scroll-hero { position: relative; min-height: min(48rem, 100vh); min-height: min(48rem, 100svh); background: var(--cream); }
.hero-stage { position: relative; height: min(48rem, 100vh); height: min(48rem, 100svh); min-height: 620px; overflow: hidden; isolation: isolate; }
.hero-media, .hero-frame, .hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: 0; background: var(--cream); }
.hero-frame { left: auto; object-fit: contain; object-position: right center; opacity: 0; transform: scale(1.012); transform-origin: right center; transition: opacity .75s var(--ease), transform 1.1s var(--ease); will-change: opacity, transform; }
.hero-frame:first-child { opacity: 1; }
.hero-scrim { z-index: 5; background: linear-gradient(90deg, rgba(var(--cream-rgb), .96) 0%, rgba(var(--cream-rgb), .9) 18%, rgba(var(--cream-rgb), .46) 34%, rgba(var(--cream-rgb), 0) 52%), linear-gradient(0deg, rgba(var(--cream-rgb), .15), transparent 38%); pointer-events: none; }

.hero-copy { position: relative; z-index: 10; display: flex; flex-direction: column; justify-content: center; width: min(35rem, 41vw); min-height: 100%; margin-left: clamp(2rem, 5.6vw, 6.5rem); padding: 9rem 0 3rem; }
.eyebrow { margin: 0; color: var(--teal); font-size: clamp(.68rem, .72vw, .78rem); font-weight: 800; letter-spacing: .18em; }
h1, h2 { font-family: "Noto Serif", Georgia, "Times New Roman", serif; font-weight: 600; }
h1 { margin: .75rem 0 1rem; max-width: 9.5ch; font-size: clamp(3.7rem, 5.25vw, 6rem); line-height: .92; letter-spacing: -.045em; }
h1 span { color: var(--teal); }
.hero-beats { --beat-accent: var(--teal); position: relative; width: min(28rem, 100%); height: 11.25rem; margin: 0 0 1.1rem; overflow: hidden; }
.hero-stage[data-active-beat="study"] .hero-beats { --beat-accent: #28625d; }
.hero-stage[data-active-beat="chalk"] .hero-beats { --beat-accent: #756186; }
.hero-stage[data-active-beat="drawing"] .hero-beats { --beat-accent: #c7534b; }
.hero-stage[data-active-beat="sensory"] .hero-beats { --beat-accent: #8b6749; }
.hero-stage[data-active-beat="water"] .hero-beats { --beat-accent: #247e82; }
.hero-stage[data-active-beat="tidy"] .hero-beats { --beat-accent: #28625d; }
.hero-beat { position: absolute; inset: .25rem 0 0; max-width: 27rem; visibility: hidden; opacity: 0; transform: translateY(18px); transition: opacity .18s ease, transform .32s var(--ease), visibility 0s; pointer-events: none; }
.hero-beat.is-visible { visibility: visible; opacity: 1; transform: translateY(0); transition: opacity .38s var(--ease), transform .5s var(--ease), visibility 0s; }
.beat-index { display: inline-flex; align-items: center; gap: .46rem; margin: 0 0 .58rem; padding: .38rem .62rem .36rem .5rem; border: 1px solid color-mix(in srgb, var(--beat-accent) 34%, transparent); border-radius: 999px; background: rgba(var(--cream-rgb), .76); color: var(--beat-accent); font-size: .7rem; font-weight: 850; letter-spacing: .15em; box-shadow: 0 5px 14px rgba(53, 49, 45, .05); backdrop-filter: blur(5px); transition: color .4s ease, border-color .4s ease; }
.beat-index::before { content: ""; width: .48rem; height: .48rem; flex: 0 0 auto; border-radius: 50%; background: currentColor; }
.beat-title { position: relative; margin: 0; max-width: 23ch; padding-left: .85rem; font-size: clamp(1.35rem, 1.75vw, 1.8rem); font-weight: 800; line-height: 1.18; letter-spacing: -.012em; text-shadow: 0 1px 0 rgba(var(--cream-rgb), .95), 0 0 14px rgba(var(--cream-rgb), .9); }
.beat-title::before { content: ""; position: absolute; inset: .12em auto .08em 0; width: 3px; border-radius: 999px; background: var(--beat-accent); }
.beat-detail { margin: .5rem 0 0 .85rem; max-width: 39ch; color: var(--muted); font-size: clamp(.9rem, .95vw, 1rem); line-height: 1.45; text-shadow: 0 1px 0 rgba(var(--cream-rgb), .98), 0 0 12px rgba(var(--cream-rgb), .95); }
.hero-cta { align-self: flex-start; border: 1px solid rgba(40, 98, 93, .55); background: rgba(var(--cream-rgb), .76); box-shadow: none; color: var(--teal); backdrop-filter: blur(10px); }
.hero-stage[data-active-beat="tidy"] .hero-cta { border-color: var(--teal); background: var(--teal); box-shadow: 0 10px 28px rgba(40, 98, 93, .24); color: white; transform: scale(1.035); transform-origin: left center; }
.hero-cta span { font-size: 1.15rem; transition: transform .25s var(--ease); }
.hero-cta:hover span { transform: translateX(3px); }

.hero-progress { position: absolute; z-index: 12; top: 50%; right: clamp(1rem, 2vw, 2.2rem); display: flex; align-items: stretch; gap: .85rem; transform: translateY(-50%); }
.progress-track { position: relative; width: 2px; background: rgba(53, 49, 45, .14); }
.progress-track span { position: absolute; inset: 0 0 auto; display: block; height: calc(var(--hero-progress, 0) * 100%); border-radius: 999px; background: var(--teal); }
.hero-progress ol { display: grid; gap: .75rem; margin: 0; padding: 0; list-style: none; }
.hero-progress li { min-height: 1.25rem; }
.hero-progress button { width: 1.7rem; min-height: 1.25rem; display: flex; align-items: center; gap: .5rem; padding: 0; overflow: hidden; border: 0; background: transparent; color: rgba(53, 49, 45, .48); font: inherit; font-size: .68rem; font-weight: 680; letter-spacing: .04em; white-space: nowrap; transition: color .3s ease, transform .3s var(--ease); }
.hero-progress button span { font-variant-numeric: tabular-nums; font-weight: 800; }
.hero-progress button.is-active { color: var(--teal); transform: translateX(-4px); }
.hero-autoplay-toggle { position: absolute; z-index: 12; right: clamp(1rem, 2vw, 2.2rem); bottom: 1.25rem; padding: .4rem .62rem; border: 1px solid rgba(53, 49, 45, .18); border-radius: 999px; background: rgba(var(--cream-rgb), .74); color: var(--muted); font: inherit; font-size: .62rem; font-weight: 750; letter-spacing: .04em; backdrop-filter: blur(9px); }
.hero-autoplay-toggle:hover { color: var(--teal); border-color: rgba(40, 98, 93, .45); }

.content-section { padding: clamp(6rem, 10vw, 10rem) clamp(2rem, 8vw, 9rem); }
.content-section h2 { margin: 1rem 0 2rem; max-width: 13ch; font-size: clamp(3rem, 5.3vw, 6rem); line-height: 1; letter-spacing: -.035em; }
.content-section { min-height: 68vh; background: var(--cream); }
.content-section p { max-width: 58ch; color: var(--muted); line-height: 1.7; }
.section-heading { display: grid; max-width: 74rem; margin: 0 auto clamp(3rem, 6vw, 5.5rem); }
.section-heading h2 { margin-bottom: 1.35rem; }
.section-heading > p:last-child { margin: 0; }
.play-style-explorer { max-width: 82rem; margin: 0 auto clamp(1.75rem, 2.5vw, 2.5rem); }
.play-style-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .7rem; margin: 0 0 1rem; }
.play-style-tab { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: .65rem; padding: .8rem 1rem; border: 1.5px solid rgba(40, 98, 93, .34); border-radius: 999px; background: rgba(255, 255, 255, .72); box-shadow: 0 7px 18px rgba(40, 98, 93, .07); color: var(--teal); font: inherit; font-size: .84rem; font-weight: 760; line-height: 1.25; cursor: pointer; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease; }
.tab-arrow { width: 1.6rem; height: 1.6rem; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: rgba(40, 98, 93, .1); color: currentColor; font-size: .82rem; font-weight: 850; transition: color .25s ease, background .25s ease, transform .25s var(--ease); }
.play-style-tab:hover { border-color: rgba(40, 98, 93, .55); background: white; box-shadow: 0 10px 25px rgba(40, 98, 93, .12); transform: translateY(-2px); }
.play-style-tab:hover .tab-arrow { transform: translateX(2px); }
.play-style-tab.is-active { border-color: var(--teal); background: var(--teal); box-shadow: 0 10px 28px rgba(40, 98, 93, .18); color: white; }
.play-style-tab.is-active .tab-arrow { background: rgba(255, 255, 255, .18); color: white; }
.play-style-panel { --play-accent: var(--aqua); --play-wash: var(--aqua-wash); display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(20rem, .72fr); min-height: 39rem; overflow: hidden; border: 1px solid rgba(53, 49, 45, .1); border-radius: 2rem; background: var(--play-wash); box-shadow: 0 24px 70px rgba(99, 75, 50, .09); animation: play-panel-in .48s var(--ease) both; }
.play-style-panel[hidden] { display: none; }
.play-style-chalk { --play-accent: var(--lilac); --play-wash: #f3edf8; }
.play-style-craft { --play-accent: var(--coral); --play-wash: #f7edef; }
.play-style-sensory { --play-accent: #d9a8ad; --play-wash: #f8efe7; }
@keyframes play-panel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.play-style-media { position: relative; min-width: 0; min-height: 39rem; margin: 0; overflow: hidden; background: var(--play-wash); }
.play-style-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.play-style-study .play-style-media img { object-position: 50% 47%; }
.play-style-copy { align-self: center; padding: clamp(2rem, 4.2vw, 4.25rem); }
.play-style-kicker { margin: 0 0 .85rem !important; color: var(--teal) !important; font-size: .7rem; font-weight: 850; letter-spacing: .15em; }
.play-style-copy h3 { margin: 0 0 1rem; max-width: 13ch; font-family: "Noto Serif", Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.1vw, 3.35rem); font-weight: 600; line-height: 1; letter-spacing: -.03em; }
.play-style-copy > p:not(.play-style-kicker) { margin: 0; font-size: .94rem; line-height: 1.65; }
.activity-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.activity-tags li { padding: .48rem .72rem; border: 1px solid color-mix(in srgb, var(--play-accent) 62%, #8f867d); border-radius: 999px; background: rgba(255, 255, 255, .62); color: var(--ink); font-size: .72rem; font-weight: 700; }
.activity-tags li.activity-product { padding: 0; border-color: var(--teal); background: var(--teal); box-shadow: 0 7px 18px rgba(40, 98, 93, .18); }
.activity-product a { display: inline-flex; align-items: center; gap: .42rem; padding: .48rem .72rem; color: white; text-decoration: none; }
.activity-product a span { font-size: .85rem; transition: transform .25s var(--ease); }
.activity-product a:hover span { transform: translateX(2px); }
.product-showcase { max-width: 90rem; margin: 0 auto; padding: clamp(3rem, 5.2vw, 5.5rem) clamp(1.4rem, 4.2vw, 4.5rem) clamp(2.5rem, 3.6vw, 3.5rem); scroll-margin-top: 5rem; background: #fbf1e5; }
.product-showcase-heading { margin-bottom: clamp(2.3rem, 4vw, 4rem); }
.product-showcase-heading h2 { margin: 0; max-width: none; font-family: "Be Vietnam Pro", system-ui, sans-serif; font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 500; line-height: 1; letter-spacing: -.055em; }
.product-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(.75rem, 1.2vw, 1.25rem); }
.product-card { min-width: 0; display: flex; flex-direction: column; padding: clamp(.75rem, 1vw, 1rem); overflow: hidden; border: 1px solid rgba(53, 49, 45, .07); border-radius: .9rem; background: rgba(255, 255, 255, .94); box-shadow: 0 9px 24px rgba(99, 75, 50, .045); }
.product-card a { color: inherit; text-decoration: none; }
.product-card a:focus-visible { border-color: var(--teal); }
.product-card-media { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: .15rem; background: #f5f1ea; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.product-card:first-child .product-card-media img { object-position: 67% 50%; }
.product-card:nth-child(2) .product-card-media img { object-position: 51% 43%; }
.product-card:nth-child(3) .product-card-media img { object-position: 56% 48%; }
.product-card:nth-child(4) .product-card-media img { object-position: 67% 50%; }
.product-card:hover .product-card-media img { transform: scale(1.025); }
.product-badge { position: absolute; top: .75rem; left: .75rem; min-height: 30px; display: inline-flex; align-items: center; padding: .3rem .68rem; border-radius: 999px; background: var(--teal); box-shadow: 0 7px 18px rgba(40, 98, 93, .2); color: white; font-size: .63rem; font-weight: 800; letter-spacing: .05em; }
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 1.15rem .25rem .15rem; }
.product-card h3 { min-height: 2.6em; margin: 0 0 .55rem; font-size: clamp(.84rem, 1.1vw, 1.06rem); font-weight: 650; line-height: 1.3; letter-spacing: -.012em; }
.product-card h3 a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2em; }
.product-card h3 a:hover { color: var(--teal); }
.product-list-price { margin: 0 0 1.2rem !important; color: var(--ink) !important; font-size: clamp(.78rem, .9vw, .94rem) !important; line-height: 1.4 !important; }
.product-add-button { min-height: 48px; width: 100%; margin-top: auto; padding: .65rem .75rem; border: 1px solid rgba(53, 49, 45, .68); border-radius: .5rem; background: transparent; color: var(--muted); font: inherit; font-size: .78rem; font-weight: 500; letter-spacing: .02em; cursor: pointer; transition: border-color .22s ease, color .22s ease, background .22s ease, transform .22s var(--ease); }
.product-add-button:hover { border-color: var(--teal); background: var(--teal); color: white; transform: translateY(-1px); }

.cart-drawer { position: fixed; z-index: 120; inset: 0; }
.cart-drawer[hidden] { display: none; }
.cart-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(37, 35, 32, .5); opacity: 0; cursor: default; transition: opacity .32s ease; }
.cart-panel { position: absolute; inset: 0 0 0 auto; width: min(39rem, 100%); height: 100%; display: flex; flex-direction: column; padding: clamp(1.4rem, 2.5vw, 2.5rem); overflow-y: auto; background: #fff; box-shadow: -24px 0 70px rgba(37, 35, 32, .15); transform: translateX(100%); transition: transform .42s var(--ease); }
.cart-drawer.is-open .cart-backdrop { opacity: 1; }
.cart-drawer.is-open .cart-panel { transform: translateX(0); }
body.cart-is-open { overflow: hidden; }
.cart-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.55rem; }
.cart-header h2 { margin: 0; font-family: "Be Vietnam Pro", system-ui, sans-serif; font-size: clamp(1.45rem, 2.4vw, 2rem); font-weight: 650; letter-spacing: -.035em; }
.cart-close { width: 44px; height: 44px; display: grid; place-items: center; border: 0; background: transparent; color: var(--ink); font-size: 2.1rem; font-weight: 300; line-height: 1; cursor: pointer; }
.cart-columns { display: flex; justify-content: space-between; padding: 0 0 1rem; border-bottom: 1px solid rgba(53, 49, 45, .12); color: var(--muted); font-size: .62rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.cart-empty { margin: 0; padding: 1.2rem 0 2rem; color: var(--muted); font-size: .9rem; }
.cart-items { display: grid; }
.cart-items[hidden] { display: none; }
.cart-item { display: grid; grid-template-columns: 7.2rem minmax(0, 1fr) auto; gap: 1rem; align-items: start; padding: 1.4rem 0; border-bottom: 1px solid rgba(53, 49, 45, .12); }
.cart-item > img { width: 7.2rem; height: 7.2rem; aspect-ratio: 1; border-radius: .2rem; object-fit: cover; background: #f4f0e9; }
.cart-item-info { min-width: 0; display: grid; gap: .35rem; }
.cart-item-info strong { max-width: 18ch; font-size: .95rem; line-height: 1.35; }
.cart-item-info > span { color: var(--muted); font-size: .78rem; }
.cart-item-actions { display: flex; align-items: center; gap: .7rem; margin-top: .6rem; }
.cart-quantity { height: 44px; display: grid; grid-template-columns: 2.5rem 2.5rem 2.5rem; overflow: hidden; border: 1px solid rgba(53, 49, 45, .55); border-radius: .45rem; }
.cart-quantity button, .cart-quantity input { min-width: 0; border: 0; background: white; color: var(--ink); font: inherit; text-align: center; }
.cart-quantity button { cursor: pointer; transition: background .2s ease, color .2s ease; }
.cart-quantity button:hover:not(:disabled) { background: var(--aqua-wash); color: var(--teal); }
.cart-quantity button:disabled { color: rgba(53, 49, 45, .3); cursor: not-allowed; }
.cart-quantity input { width: 100%; appearance: textfield; }
.cart-remove { width: 40px; height: 40px; display: grid; place-items: center; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.cart-remove svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cart-line-total { font-size: .88rem; font-weight: 550; white-space: nowrap; }
.cart-note { margin-top: auto; border-bottom: 1px solid rgba(53, 49, 45, .14); }
.cart-note summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; list-style: none; color: var(--muted); font-size: .84rem; cursor: pointer; }
.cart-note summary::-webkit-details-marker { display: none; }
.cart-note textarea { width: 100%; margin-bottom: 1rem; padding: .8rem; resize: vertical; border: 1px solid rgba(53, 49, 45, .25); border-radius: .45rem; font: inherit; }
.cart-summary { padding-top: 1.4rem; }
.cart-summary p { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: 0 0 .65rem; }
.cart-summary p strong { font-size: .95rem; }
.cart-summary p span { color: var(--muted); font-size: .92rem; }
.cart-summary small { display: block; color: var(--muted); font-size: .7rem; line-height: 1.5; }
.cart-summary button { min-height: 52px; width: 100%; margin-top: 1.25rem; border: 0; border-radius: .5rem; background: #bdb3a7; color: white; font: inherit; font-size: .82rem; font-weight: 600; }
.cart-summary .cart-checkout { display: grid; min-height: 52px; width: 100%; margin-top: 1.25rem; place-items: center; border-radius: .5rem; background: var(--teal); color: white; font-size: .82rem; font-weight: 700; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.cart-summary .cart-checkout:hover { background: #1f504c; transform: translateY(-1px); }
.cart-summary .cart-checkout:focus-visible { outline: 3px solid rgba(40, 98, 93, .28); outline-offset: 3px; }
.products-section { min-height: 0; padding-bottom: clamp(1.5rem, 2.5vw, 2.5rem); }
.about-section { max-width: 88rem; display: grid; gap: clamp(5rem, 9vw, 9rem); margin: 0 auto clamp(4.5rem, 8vw, 8rem); padding: clamp(1.5rem, 2.2vw, 2rem) clamp(2rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem); scroll-margin-top: 7.5rem; }
.about-story { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.about-heading { max-width: 47rem; }
.about-heading-care { max-width: 54rem; }
.about-story-content { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(19rem, .85fr); align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.about-story-care .about-story-content { grid-template-columns: minmax(19rem, .85fr) minmax(0, .78fr); }
.about-story-care .about-media { grid-column: 2; }
.about-story-care .about-copy { grid-row: 1; grid-column: 1; }
.about-copy { position: relative; z-index: 2; }
.about-kicker { margin: 0 0 .8rem; color: var(--teal); font-size: .72rem; font-weight: 850; letter-spacing: .18em; }
.about-heading h2 { margin: 0; font-family: "Noto Serif", Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 4.5vw, 5rem); font-weight: 600; line-height: .98; letter-spacing: -.045em; }
.about-heading h3 { margin: 0; font-family: "Noto Serif", Georgia, "Times New Roman", serif; font-size: clamp(2.15rem, 3.5vw, 3.8rem); font-weight: 600; line-height: 1.05; letter-spacing: -.04em; }
.about-copy > p:not(.about-kicker) { margin: 0 0 1rem; color: var(--muted); font-size: clamp(.86rem, 1vw, .96rem); line-height: 1.75; }
.about-copy > p:first-child { color: var(--ink); font-size: clamp(.98rem, 1.2vw, 1.12rem); font-weight: 600; }
.about-copy > p:last-child { margin-bottom: 0; }
.about-copy-care { padding: clamp(1.5rem, 3vw, 3rem); border-radius: 2rem; background: var(--aqua-wash); }
.about-media { overflow: hidden; margin: 0; border-radius: 2rem; background: var(--aqua-wash); box-shadow: 0 24px 70px rgba(84, 66, 48, .13); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media-landscape { aspect-ratio: 1.34; }
.about-media-portrait { aspect-ratio: .75; }
.site-footer { display: flex; align-items: center; justify-content: space-between; padding: 2rem clamp(2rem, 8vw, 9rem); border-top: 1px solid rgba(53, 49, 45, .1); color: var(--muted); font-size: .78rem; }
.footer-brand { position: relative; display: block; width: 140px; height: 44px; overflow: hidden; }
.footer-brand img { position: absolute; top: -20px; left: -27px; width: 193px; max-width: none; height: auto; }
.noscript-note { position: fixed; z-index: 100; right: 1rem; bottom: 1rem; max-width: 28rem; padding: 1rem; border-radius: 1rem; background: var(--ink); color: white; }

@media (max-width: 1050px) {
  .hero-copy { width: min(31rem, 45vw); margin-left: 2.5rem; }
  h1 { font-size: clamp(3.5rem, 5.5vw, 5rem); }
  .desktop-navigation { gap: 1.25rem; }
  .desktop-navigation a { font-size: .76rem; }
  .play-style-panel { grid-template-columns: minmax(0, 1.08fr) minmax(18rem, .92fr); }
  .play-style-copy { padding: clamp(1.8rem, 3vw, 2.7rem); }
  .about-story-content { gap: 2.2rem; }
}

@media (max-width: 760px) {
  body { padding-bottom: 0; }
  body.has-bottom-nav { padding-bottom: 68px; }
  .text-link, .desktop-navigation, .header-icon-account, .hero-progress { display: none; }
  .announcement-bar { min-height: 32px; gap: .32rem; padding: .35rem .6rem; font-size: .49rem; letter-spacing: .065em; }
  .announcement-bar b { margin-left: .05rem; font-size: .8rem; }
  .site-header { inset: 32px 0 auto; min-height: 64px; padding: .35rem .85rem; background: rgba(var(--cream-rgb), .97); }
  .site-header.is-scrolled { background: rgba(var(--cream-rgb), .94); }
  .brand { position: absolute; left: 50%; width: 124px; height: 42px; transform: translateX(-50%); }
  .brand img { top: -21px; left: -23px; width: 170px; }
  .header-actions { margin-left: auto; }
  .header-icon-cart { width: 44px; height: 44px; display: grid; }
  .mobile-menu-toggle { width: 44px; height: 44px; display: grid; align-content: center; gap: 6px; padding: 0 10px; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
  .mobile-menu-toggle span { display: block; width: 22px; height: 1.5px; border-radius: 99px; background: currentColor; }
  .mobile-menu { position: fixed; inset: 0; z-index: 80; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu:not([hidden]) { display: block; }
  .mobile-menu-backdrop { position: absolute; inset: 0; background: rgba(53, 49, 45, .35); opacity: 0; animation: menu-fade .28s ease forwards; }
  .mobile-menu-panel { position: relative; width: min(86vw, 22rem); height: 100%; display: flex; flex-direction: column; padding: 1.25rem 1.5rem 2rem; background: var(--cream); box-shadow: 20px 0 60px rgba(53, 49, 45, .14); transform: translateX(-100%); animation: menu-slide .42s var(--ease) forwards; }
  .mobile-menu-close { align-self: flex-end; width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink); font-size: 2rem; font-weight: 300; cursor: pointer; }
  .mobile-menu-brand { margin: .1rem 0 2.8rem; color: var(--teal); font-family: "Noto Serif", Georgia, "Times New Roman", serif; font-size: 1.35rem; letter-spacing: .18em; }
  .mobile-menu-panel a { min-height: 54px; display: flex; align-items: center; border-bottom: 1px solid rgba(53, 49, 45, .1); font-size: 1.08rem; font-weight: 750; text-decoration: none; }
  .mobile-menu-panel p { margin: auto 0 0; color: var(--muted); font-size: .82rem; line-height: 1.55; }
  @keyframes menu-fade { to { opacity: 1; } }
  @keyframes menu-slide { to { transform: translateX(0); } }

  .scroll-hero { min-height: 100vh; min-height: 100svh; }
  .hero-stage { height: 100vh; height: 100svh; min-height: 600px; background: var(--cream); }
  .hero-media { inset: 0; height: 100%; overflow: hidden; background: #f8f0e4; }
  .hero-media::before { content: ""; position: absolute; z-index: 0; inset: -1.2rem; background-image: url("assets/hero-v2/01-study.webp"); background-position: center; background-size: cover; background-repeat: no-repeat; filter: blur(10px); opacity: .22; transform: scale(1.055); }
  .hero-frame { z-index: 1; inset: 16.5% auto auto -4%; width: 108%; max-width: none; height: auto; object-fit: contain; object-position: center; transform: scale(1.006); transform-origin: center; }
  .hero-frame[data-frame="sensory"],
  .hero-frame[data-frame="water"],
  .hero-frame[data-frame="tidy"] { inset-block-start: 15.5%; width: 106%; left: -3%; }
  .hero-scrim { background: linear-gradient(180deg, rgba(var(--cream-rgb), .62) 0%, rgba(var(--cream-rgb), .25) 24%, rgba(var(--cream-rgb), 0) 48%, rgba(var(--cream-rgb), .16) 70%, rgba(var(--cream-rgb), .52) 100%); }
  .hero-copy { position: absolute; inset: 0; display: block; width: auto; min-height: 0; margin: 0; padding: 0 1rem; }
  .hero-copy > .eyebrow { position: absolute; top: 6.8rem; left: 1rem; font-size: .58rem; letter-spacing: .13em; text-shadow: 0 1px 10px rgba(var(--cream-rgb), .92); }
  h1 { position: absolute; top: 7.85rem; left: 1rem; width: calc(100% - 2rem); max-width: none; margin: 0; font-size: clamp(1.9rem, 8.6vw, 2.45rem); font-weight: 600; line-height: .98; letter-spacing: -.055em; text-shadow: 0 2px 18px rgba(var(--cream-rgb), .72); }
  h1 span { display: block; white-space: nowrap; font-size: inherit; }
  .hero-beats { position: absolute; left: 1rem; right: auto; bottom: max(1rem, env(safe-area-inset-bottom)); width: min(19rem, calc(100% - 2rem)); height: 5.75rem; margin: 0; padding: .65rem .78rem; overflow: hidden; border: 1px solid rgba(255, 255, 255, .56); border-radius: 1rem; background: rgba(var(--cream-rgb), .06); box-shadow: inset 0 0 0 1px rgba(53, 49, 45, .025), 0 4px 14px rgba(81, 62, 42, .035); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hero-stage[data-active-beat="study"] .hero-beats { width: min(17.5rem, calc(100% - 2rem)); }
  .hero-stage[data-active-beat="chalk"] .hero-beats { width: min(21rem, calc(100% - 2rem)); }
  .hero-stage[data-active-beat="drawing"] .hero-beats { width: min(18.5rem, calc(100% - 2rem)); }
  .hero-stage[data-active-beat="sensory"] .hero-beats { width: min(21rem, calc(100% - 2rem)); }
  .hero-stage[data-active-beat="water"] .hero-beats { width: min(19.5rem, calc(100% - 2rem)); }
  .hero-beat { inset: .65rem .78rem auto; max-width: none; }
  .beat-index { margin-bottom: .4rem; padding: 0; border: 0; background: transparent; box-shadow: none; font-size: .62rem; text-shadow: 0 1px 8px rgba(var(--cream-rgb), .98), 0 0 3px rgba(var(--cream-rgb), .98); backdrop-filter: none; }
  .beat-title { max-width: none; padding-left: .68rem; font-size: 1.08rem; line-height: 1.16; text-shadow: 0 1px 10px rgba(var(--cream-rgb), .98), 0 0 4px rgba(var(--cream-rgb), .98); }
  .beat-title::before { width: 2px; }
  .beat-detail { display: none; }
  .hero-cta { position: absolute; left: 1rem; right: auto; bottom: max(1rem, env(safe-area-inset-bottom)); min-height: 44px; padding: .65rem 1rem; opacity: 0; pointer-events: none; font-size: .78rem; transform: translateY(8px); transition: opacity .3s ease, transform .3s var(--ease); }
  .hero-stage[data-active-beat="tidy"] .hero-beats { display: none; }
  .hero-stage[data-active-beat="tidy"] .hero-cta { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero-stage[data-active-beat="tidy"] .hero-autoplay-toggle { display: none; }
  .mobile-scene-progress { position: absolute; z-index: 12; right: 1rem; top: 6.95rem; display: grid; justify-items: end; gap: .5rem; }
  .mobile-scene-number { color: var(--muted); font-size: .65rem; font-variant-numeric: tabular-nums; letter-spacing: .08em; }
  .mobile-scene-number b { color: var(--teal); }
  .mobile-scene-progress ol { display: flex; gap: .3rem; margin: 0; padding: 0; list-style: none; }
  .mobile-scene-progress li { width: .33rem; height: .33rem; border-radius: 99px; background: rgba(53, 49, 45, .2); transition: width .32s var(--ease), background .32s ease; }
  .mobile-scene-progress li.is-active { width: 1.15rem; background: var(--teal); }
  .hero-autoplay-toggle { top: 6.45rem; right: 4.25rem; bottom: auto; width: 44px; min-height: 44px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; color: var(--teal); font-size: 0; line-height: 1; box-shadow: none; backdrop-filter: none; }
  .hero-autoplay-toggle::before { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(255, 255, 255, .62); border-radius: 50%; background: rgba(var(--cream-rgb), .34); box-shadow: 0 3px 10px rgba(53, 49, 45, .06); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
  .hero-autoplay-toggle::after { content: "Ⅱ"; position: relative; font-size: .72rem; font-weight: 850; letter-spacing: -.14em; }
  .hero-autoplay-toggle[aria-pressed="true"]::after { content: "▶"; padding-left: .08rem; font-size: .68rem; letter-spacing: 0; }

  .content-section { padding: 5rem 1rem; }
  .content-section h2 { margin: .85rem 0 1.25rem; max-width: 11ch; font-size: clamp(2.55rem, 11.5vw, 3.4rem); }
  .products-section { min-height: 0; padding-bottom: 2rem; }
  .section-heading { margin-bottom: 2.2rem; }
  .section-heading > p:last-child { font-size: .9rem; line-height: 1.6; }
  .play-style-explorer { margin-bottom: 1.75rem; }
  .play-style-tabs { display: flex; gap: .5rem; margin: 0 -1rem 1rem; padding: 0 1rem .2rem; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; scrollbar-width: none; }
  .play-style-tabs::-webkit-scrollbar { display: none; }
  .play-style-tab { min-width: max-content; min-height: 48px; flex: 0 0 auto; padding: .68rem .9rem; scroll-snap-align: start; font-size: .76rem; }
  .play-style-panel { display: block; min-height: 0; border-radius: 1.5rem; }
  .play-style-media { min-height: 24rem; aspect-ratio: 4 / 5; }
  .play-style-study .play-style-media img { object-position: 50% 45%; }
  .play-style-chalk .play-style-media img, .play-style-craft .play-style-media img, .play-style-sensory .play-style-media img { object-position: 59% 50%; }
  .play-style-copy { padding: 1.5rem; }
  .play-style-copy h3 { max-width: 14ch; font-size: 2.05rem; }
  .play-style-copy > p:not(.play-style-kicker) { font-size: .86rem; line-height: 1.58; }
  .activity-tags { margin: 1.15rem 0; }
  .activity-tags li { font-size: .66rem; }
  .product-showcase { margin: 0 -.25rem; padding: 3.2rem 1rem 2.4rem; scroll-margin-top: 4rem; }
  .product-showcase-heading { margin-bottom: 1.8rem; }
  .product-showcase-heading h2 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .product-card-grid { grid-template-columns: none; grid-auto-columns: min(78vw, 20rem); grid-auto-flow: column; gap: .75rem; margin: 0 -1rem; padding: 0 1rem .6rem; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .product-card-grid::-webkit-scrollbar { display: none; }
  .product-card { padding: .7rem; border-radius: .75rem; scroll-snap-align: start; }
  .product-card-body { padding: 1rem .15rem .1rem; }
  .product-card h3 { min-height: 0; margin-bottom: .45rem; font-size: .9rem; }
  .product-list-price { margin-bottom: 1rem !important; font-size: .78rem !important; }
  .product-add-button { min-height: 46px; font-size: .72rem; }
  .cart-panel { padding: 1.25rem 1rem 1.1rem; }
  .cart-item { grid-template-columns: 5.3rem minmax(0, 1fr); gap: .8rem; }
  .cart-item > img { width: 5.3rem; height: 5.3rem; }
  .cart-line-total { display: none; }
  .cart-item-info strong { font-size: .86rem; }
  .cart-quantity { grid-template-columns: 2.2rem 2.2rem 2.2rem; }
  .site-footer { display: grid; justify-items: center; gap: .2rem; padding: 2rem 1rem 6rem; text-align: center; }
  .footer-brand { width: 124px; }
  .footer-brand img { top: -17px; left: -24px; width: 172px; }

  .mobile-bottom-nav { position: fixed; z-index: 40; inset: auto .75rem .6rem; height: 60px; display: grid; grid-template-columns: repeat(3, 1fr); padding: .35rem; border: 1px solid rgba(53, 49, 45, .08); border-radius: 1.2rem; background: rgba(var(--cream-rgb), .94); box-shadow: 0 10px 36px rgba(53, 49, 45, .14); backdrop-filter: blur(14px); opacity: 0; transform: translateY(calc(100% + 1.5rem)); transition: opacity .3s ease, transform .42s var(--ease); pointer-events: none; }
  body.has-bottom-nav .mobile-bottom-nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-bottom-nav a { min-width: 0; min-height: 48px; display: grid; place-items: center; align-content: center; gap: .15rem; border-radius: .9rem; color: var(--muted); font-size: .62rem; font-weight: 720; text-decoration: none; }
  .mobile-bottom-nav a:active { background: var(--aqua-wash); color: var(--teal); }
  .mobile-bottom-nav i { width: 18px; height: 18px; display: block; border: 1.7px solid currentColor; }
  .nav-home { border-radius: 3px 3px 5px 5px !important; transform: rotate(45deg) scale(.72); }
  .nav-worlds { border-radius: 50% !important; box-shadow: 7px 0 0 -2px var(--cream), 7px 0 0 -1px currentColor; transform: translateX(-3px); }
  .nav-products { border-radius: 4px !important; }
  .about-section { gap: 4.5rem; margin: 0 auto 3.5rem; padding: 1.25rem; scroll-margin-top: 6.5rem; }
  .about-story { gap: 1.25rem; }
  .about-story-content, .about-story-care .about-story-content { display: flex; flex-direction: column; align-items: stretch; gap: 1.5rem; }
  .about-story-care .about-media, .about-story-care .about-copy { order: initial; }
  .about-heading h2 { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .about-heading h3 { font-size: clamp(2rem, 9vw, 2.9rem); line-height: 1.08; }
  .about-copy > p:not(.about-kicker) { font-size: .86rem; line-height: 1.7; }
  .about-copy > p:first-child { font-size: .96rem; }
  .about-copy-care { padding: 1.5rem; border-radius: 1.5rem; }
  .about-media { border-radius: 1.25rem; }
  .about-media-portrait { width: min(88%, 28rem); align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .scroll-hero { min-height: 100vh; min-height: 100svh; }
  .hero-stage { height: 100vh; height: 100svh; }
  .hero-frame:not(:first-child), .hero-progress, .hero-autoplay-toggle { display: none; }
  .hero-frame:first-child { opacity: 1 !important; transform: none !important; }
  .hero-beats { height: auto; }
  .hero-beat { display: none; }
  .hero-beat[data-beat="study"] { position: static; display: block; opacity: 1; transform: none; }
  .play-style-panel { animation: none; }
}
