/* =========================================================
   Bliss Fox Studio — shared design system
   Cozy / witchy / whimsical editorial. One file, all pages.
   ========================================================= */

:root {
  /* Brand */
  --red: #e60023;
  --red-ink: #b8001c;
  --plum: #211922;
  --muted: #5a5a52;
  --sand: #e5e5e0;
  --warm: #f7f3ec;
  --cream: #fffaf2;
  --dark: #2a2a26;

  /* Theme accents */
  --rose: #ffe1e7;
  --rose-deep: #ff9fb5;
  --lavender: #ebe2ff;
  --lavender-deep: #b79cff;
  --sage: #dce8d2;
  --sage-deep: #92c77d;
  --gold: #fff1c7;
  --gold-deep: #f7bd47;

  --white: #ffffff;
  --line: #deded6;
  --shadow-sm: 0 12px 35px rgba(33, 25, 34, .07);
  --shadow: 0 18px 55px rgba(33, 25, 34, .12);
  --shadow-lg: 0 28px 70px rgba(33, 25, 34, .18);

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius: 24px;
  --radius-lg: 36px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--plum);
  background:
    radial-gradient(1100px 540px at 88% -120px, rgba(230, 0, 35, .10), transparent 60%),
    radial-gradient(900px 520px at -10% 8%, rgba(183, 156, 255, .12), transparent 55%),
    var(--cream);
  background-attachment: fixed;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { width: min(var(--maxw), calc(100% - 32px)); margin: 0 auto; }

/* Typography */
h1, h2, h3 { font-family: var(--display); font-weight: 600; font-optical-sizing: auto; }
h1 { letter-spacing: -2px; line-height: .98; }
h2 { letter-spacing: -1.4px; line-height: 1.0; margin: 0; font-size: clamp(31px, 3.8vw, 52px); }
h3 { letter-spacing: -.5px; }

/* Accessibility */
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -9999px; top: 10px; z-index: 999;
  background: var(--plum); color: #fff; padding: 12px 18px; border-radius: 12px; font-weight: 800;
}
.skip-link:focus { left: 16px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: 16px; padding: 13px 18px; font-weight: 800;
  font-family: var(--body); cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 12px 28px rgba(230, 0, 35, .2); }
.btn-primary:hover { background: var(--red-ink); }
.btn-secondary { background: var(--sand); color: var(--plum); }
.btn-dark { background: var(--plum); color: #fff; }
.btn-ghost { background: var(--white); color: var(--plum); border: 1px solid var(--line); }

/* Chips */
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center; padding: 8px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--muted);
  font-weight: 800; font-size: 13px; box-shadow: var(--shadow-sm);
}
.pill {
  background: rgba(255, 255, 255, .76); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 12px; font-size: 14px; font-weight: 700; color: var(--muted);
}
.tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .2px; border: 1px solid transparent;
}
.tag.cozy    { background: var(--sage);     color: #2f5226; border-color: #c4dcb6; }
.tag.spooky  { background: #efe6f7;          color: #5a3a78; border-color: #ddc9ef; }
.tag.fantasy { background: var(--lavender);  color: #4a3a8c; border-color: #d6c8ff; }
.tag.animals { background: var(--rose);      color: #8a2747; border-color: #f7c4d2; }
.tag.seasonal{ background: var(--gold);      color: #8a6410; border-color: #f0dca0; }
.tag.professions { background: #dff3ff; color: #20506d; border-color: #b9def2; }
.tag.kids { background: #e7f8dd; color: #386226; border-color: #cdeabd; }
.tag.patriotic { background: #e3ecff; color: #284a92; border-color: #c8d7ff; }

/* Nav (shared) */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 250, 242, .88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 222, 214, .65);
}
.nav-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  display: flex; align-items: center; gap: 12px; min-width: 0;
  font-family: var(--display); font-weight: 800; letter-spacing: -.5px; font-size: 22px;
}
.brand > span:not(.logo) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.logo {
  width: 56px; height: 56px; border-radius: 18px; overflow: hidden; flex: none; display: block;
  border: 1px solid rgba(222, 222, 214, .9); box-shadow: 0 10px 25px rgba(230, 118, 35, .16);
}
.logo img { width: 100%; height: 100%; object-fit: contain; display: block; }

.nav-links { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--muted); }
.nav-links a { padding: 10px 12px; border-radius: 16px; }
.nav-links a:hover { background: var(--sand); color: var(--plum); }
.nav-links a[aria-current="page"] { background: var(--sand); color: var(--plum); }

.nav-toggle {
  display: none; align-items: center; justify-content: center; width: 48px; height: 48px;
  border: 1px solid var(--line); border-radius: 14px; background: var(--white); cursor: pointer; color: var(--plum);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Section scaffolding */
section { padding: 70px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-head.align-left { display: block; margin-bottom: 22px; }
.section-head.align-left p { margin-top: 12px; }
.section-head p { margin: 0; color: var(--muted); max-width: 530px; font-size: 17px; }
.center-copy { margin: 0; color: var(--muted); max-width: 560px; font-size: 17px; }
.center-actions { display: flex; justify-content: center; margin: -4px 0 24px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2, .7, .2, 1) forwards; }
.reveal.d1 { animation-delay: .05s; }
.reveal.d2 { animation-delay: .15s; }
.reveal.d3 { animation-delay: .25s; }
.reveal.d4 { animation-delay: .35s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Home hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-cover {
  min-height: clamp(620px, 82vh, 860px);
  display: grid;
  align-items: end;
  padding: clamp(120px, 16vh, 190px) 0 clamp(46px, 8vh, 82px);
  isolation: isolate;
  background: var(--plum);
}
.hero-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: -2;
}
.hero-cover-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(32, 18, 28, .16) 0%, rgba(32, 18, 28, .36) 45%, rgba(32, 18, 28, .78) 100%),
    linear-gradient(90deg, rgba(32, 18, 28, .72) 0%, rgba(32, 18, 28, .32) 48%, rgba(32, 18, 28, .08) 100%);
}
.hero-cover-content { position: relative; }
.hero-copy-card {
  width: min(760px, 100%);
  color: #fff;
  text-shadow: 0 2px 18px rgba(32, 18, 28, .28);
}
.hero h1 { margin: 0 0 18px; max-width: 760px; font-size: clamp(44px, 6.6vw, 78px); letter-spacing: -2.5px; line-height: .96; }
.hero p { max-width: 690px; font-size: clamp(18px, 2vw, 22px); color: rgba(255, 255, 255, .92); margin: 0 0 27px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-cover .btn-secondary { background: rgba(255, 255, 255, .88); color: var(--plum); border-color: rgba(255, 255, 255, .74); }
.hero-cover .btn-secondary:hover { background: #fff; }

/* Cover collage */
.cover-collage { columns: 3 140px; column-gap: 14px; }
.cover-tile {
  break-inside: avoid; display: block; margin: 0 0 14px; border-radius: var(--radius);
  overflow: hidden; background: #fff; border: 8px solid #fff; box-shadow: var(--shadow);
  position: relative; transition: transform .25s ease, box-shadow .25s ease;
}
.cover-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cover-tile img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; background: var(--sand); }
.cover-tile span { display: block; padding: 10px 10px 12px; font-size: 12px; font-weight: 800; color: var(--plum); background: #fff; }
.cover-tile.featured img { aspect-ratio: 3/4; }

/* Feature cards */
.sessions-section { background: linear-gradient(180deg, rgba(255, 250, 242, .55), rgba(255, 225, 231, .24)); }
.sessions-section .section-head { align-items: center; margin-bottom: 24px; }
.sessions-section .section-head h2 {
  max-width: 560px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.03;
  letter-spacing: -1.8px;
}
.sessions-section .section-head p {
  max-width: 520px;
  padding: 14px 17px 14px 18px;
  border-left: 4px solid var(--rose-deep);
  border-radius: 18px;
  background: rgba(255, 255, 255, .58);
  color: #44443d;
  font-size: 16.5px;
  line-height: 1.45;
  box-shadow: 0 10px 28px rgba(33, 25, 34, .04);
}
.sessions-image-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.session-image-card {
  background: rgba(255, 255, 255, .86); border: 1px solid rgba(222, 222, 214, .98); border-radius: 24px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: stretch; gap: 14px;
  min-width: 0; padding: 14px 14px 16px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.session-image-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(255, 159, 181, .6); }
.session-image-card img {
  width: 100%; height: clamp(178px, 17vw, 218px); border-radius: 18px; display: block; object-fit: contain; object-position: center;
  padding: 4px; background: linear-gradient(180deg, #fffdf8, #fff7ee); box-shadow: inset 0 0 0 1px rgba(222, 222, 214, .95);
}
.session-image-card div { padding: 0 2px 2px; min-width: 0; }
.session-image-card h3 { margin: 0 0 6px; font-size: clamp(20px, 2vw, 23px); line-height: 1.08; letter-spacing: -.45px; }
.session-image-card p { margin: 0; color: #55554d; font-size: 13.5px; line-height: 1.4; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 24px; min-height: 250px;
  display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card:after {
  content: ""; position: absolute; width: 130px; height: 130px; right: -52px; top: -56px;
  border-radius: 50%; background: rgba(255, 225, 231, .72); z-index: 0;
}
.card > div { position: relative; z-index: 1; }
.icon {
  width: 76px; height: 76px; display: grid; place-items: center; border-radius: var(--radius);
  background: var(--rose); margin-bottom: 20px; overflow: hidden; border: 6px solid #fff; box-shadow: 0 12px 28px rgba(33, 25, 34, .10);
}
.icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card h3 { margin: 0 0 10px; font-size: 25px; }
.card p { margin: 0; color: var(--muted); }

/* Shop panel */
.shop-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.shop-box {
  border-radius: 32px; padding: 32px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative;
}
.shop-box:after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; right: -70px; bottom: -90px; background: rgba(230, 0, 35, .10); }
.shop-box.amazon:after { background: rgba(247, 189, 71, .22); }
.shop-box h3 { font-size: 33px; letter-spacing: -1px; margin: 8px 0 12px; }
.shop-box p { color: var(--muted); font-size: 17px; margin: 0; max-width: 430px; }
.shop-box .btn { margin-top: 25px; align-self: flex-start; position: relative; z-index: 1; }
.shop-art {
  width: min(170px, 42%); border-radius: 26px; border: 7px solid #fff; box-shadow: 0 18px 35px rgba(33, 25, 34, .13);
  position: absolute; right: 20px; bottom: 20px; transform: rotate(4deg); z-index: 0;
}
.shop-box.amazon .shop-art { transform: rotate(-4deg); }
.platform-note { margin-top: 18px; color: var(--muted); font-size: 13px; font-weight: 700; word-break: break-word; }

/* Book grid (home featured + catalog) */
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.book-card {
  background: #fff; border-radius: var(--radius); padding: 12px; border: 1px solid var(--line);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
  height: 100%; display: flex; flex-direction: column;
}
.book-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.book-card a { display: block; }
.book-cover-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 18px; display: block; background: var(--sand); }
.book-card h3 {
  margin: 12px 4px 4px; font-size: 16px; line-height: 1.15; letter-spacing: -.2px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.3em;
}
.book-card p {
  margin: 2px 4px 8px; color: var(--muted); font-size: 14px; font-weight: 700;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.book-card .tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 4px 6px; }

/* Page hero (inner pages) */
.page-hero { position: relative; overflow: hidden; padding: 56px 0 10px; }
.page-hero h1 { font-size: clamp(40px, 5.4vw, 66px); margin: 16px 0 14px; letter-spacing: -2px; }
.page-hero p { color: var(--muted); font-size: clamp(17px, 2vw, 20px); max-width: 620px; margin: 0; }

/* Breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--muted); font-size: 13px; font-weight: 700; }
.crumbs a:hover { color: var(--plum); text-decoration: underline; }
.crumbs span[aria-hidden] { opacity: .5; }

/* Catalog filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 26px; }
.filter-btn {
  border: 1px solid var(--line); background: #fff; color: var(--muted); border-radius: 999px;
  padding: 9px 15px; font-weight: 800; font-size: 14px; cursor: pointer; transition: all .18s ease;
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn[aria-pressed="true"] { background: var(--plum); color: #fff; border-color: var(--plum); }
.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.catalog-grid .book-card.is-hidden { display: none; }
.catalog-empty { display: none; color: var(--muted); font-weight: 700; padding: 20px 4px; }

/* Book detail */
.book-detail { padding: 40px 0 70px; }
.detail-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: start; }
.detail-cover {
  border-radius: 30px; overflow: hidden; background: #fff; border: 12px solid #fff; box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg); position: sticky; top: 100px;
}
.detail-cover img { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; background: var(--sand); }
.detail-copy h1 { font-size: clamp(36px, 4.8vw, 58px); margin: 14px 0 14px; }
.detail-copy .lede { font-size: 19px; color: var(--muted); margin: 0 0 22px; max-width: 580px; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.format-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0 18px; }
.spec-list { list-style: none; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
.spec-list div { font-size: 14px; }
.spec-list dt { color: var(--muted); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .6px; }
.spec-list dd { margin: 2px 0 0; font-weight: 800; }

.inside-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.inside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.inside-card h3 { margin: 0 0 8px; font-size: 20px; }
.inside-card p { margin: 0; color: var(--muted); font-size: 15px; }

.sample-download {
  padding-top: 34px;
  scroll-margin-top: 118px;
}
.sample-card {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center;
  background: linear-gradient(135deg, #fff, #fff7ee 58%, #ffe1e7);
  border: 1px solid var(--line); border-radius: 32px; padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow);
}
.sample-card .eyebrow { margin-bottom: 14px; }
.sample-card h2 { margin: 0 0 14px; }
.sample-card p { margin: 0 0 12px; color: var(--muted); font-size: 17px; }
.sample-card .sample-note { font-size: 14px; font-weight: 700; color: #6b6254; }
.sample-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.sample-actions span { color: var(--muted); font-size: 14px; font-weight: 800; }

/* About */
.about { background: var(--warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: center; }
.fox-card {
  min-height: 430px; border-radius: 40px; background: linear-gradient(155deg, #fffaf2, #f7f3ec 56%, #ffe1e7);
  display: grid; place-items: center; padding: 28px; box-shadow: var(--shadow); overflow: hidden;
}
.fox-card img { width: min(430px, 100%); border-radius: 30px; box-shadow: 0 12px 35px rgba(33, 25, 34, .12); border: 10px solid #fff; background: transparent; }
.about-copy p { color: var(--muted); font-size: 18px; }

/* Prose (privacy) */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin: 36px 0 12px; letter-spacing: -.8px; }
.prose p, .prose li { color: #3f3f38; font-size: 16.5px; }
.prose ul { padding-left: 20px; }
.prose li { margin: 6px 0; }
.prose a { color: var(--red-ink); font-weight: 700; }
.prose a:hover { text-decoration: underline; }
.note {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--gold-deep);
  border-radius: 16px; padding: 16px 18px; color: var(--muted); font-size: 14.5px; margin: 22px 0;
}


/* 404 */
.notfound { text-align: center; padding: 90px 0; }
.notfound .big { font-family: var(--display); font-size: clamp(80px, 18vw, 180px); line-height: .9; letter-spacing: -6px; color: var(--plum); margin: 0; }

/* Footer */
footer { background: var(--dark); color: #fff; padding: 44px 0; margin-top: 10px; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; color: #c8c8c1; font-size: 14px; }
.footer-grid strong { color: #fff; font-size: 18px; font-family: var(--display); }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-legal { width: 100%; margin-top: 22px; color: #8c8c84; font-size: 13px; }

/* Responsive */
@media (max-width: 980px) {
  .detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .detail-cover { position: static; transform: none; width: min(360px, 100%); }
  .inside-grid { grid-template-columns: 1fr; }
  .sample-card { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .brand { font-size: clamp(19px, 3.2vw, 22px); }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 6px;
    padding: 14px 16px 20px; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 14px; font-size: 16px; border-radius: 14px; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .shop-panel, .about-grid { grid-template-columns: 1fr; }
  .sessions-section .section-head { display: block; }
  .sessions-section .section-head p { margin-top: 14px; max-width: 100%; }
  .sessions-image-grid { gap: 10px; }
  .session-image-card { gap: 10px; padding: 10px; }
  .session-image-card img { width: 100%; height: 150px; border-radius: 14px; }
  .session-image-card h3 { font-size: 18px; }
  .session-image-card p { font-size: 12.5px; line-height: 1.34; }
  .cover-collage { columns: 2 140px; }
  .cards, .inside-grid { grid-template-columns: 1fr; }
  .featured-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .spec-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-inner { min-height: 68px; }
  .brand { gap: 9px; font-size: clamp(18px, 5vw, 21px); }
  .brand > span:not(.logo) { display: inline; max-width: calc(100vw - 132px); }
  .logo { width: 52px; height: 52px; border-radius: 16px; }
  .hero-cover { min-height: 680px; padding: 140px 0 42px; }
  .hero-cover-image { object-position: 62% top; }
  .hero h1 { font-size: clamp(38px, 13vw, 56px); letter-spacing: -1.8px; }
  .hero p { font-size: 17px; }
  .shop-art { display: none; }
  .hero-actions, .format-row { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .format-row .btn { width: 100%; }
  .featured-grid, .catalog-grid { grid-template-columns: 1fr; }
  .sessions-image-grid { grid-template-columns: 1fr; gap: 12px; }
  .session-image-card { display: flex; flex-direction: column; gap: 10px; padding: 11px; }
  .session-image-card img { width: 100%; height: 150px; border-radius: 15px; }
  .fox-card { min-height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
