@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Fraunces:opsz,wght@9..144,400;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&display=swap");
:root {
  /* Oasis snapshot: orlandoorange-oasis-restore-2026-09-01
     was paper #FF8A1F, ink #1A0D00, accent #0E4D2C, surface #FFE0B8
     Fraunces + IBM Plex Sans, 6px hard shadow. */
  --paper: #F3EBE0;
  --ink: #2A241C;
  --accent: #C45C12;
  --surface: #EFE6D4;
  --valencia: #C45C12;
  --olive: #5C6640;
  --brass: #B08A3C;
  --crate-blue: #2F4E6F;
  --rule: 1px solid color-mix(in srgb, var(--ink) 70%, var(--brass));
  --font-display: "Fraunces", "Palatino Linotype", Palatino, serif;
  --font-wordmark: "Cinzel", "Palatino Linotype", Palatino, serif;
  --font-ui: "Source Serif 4", Georgia, serif;
  --shadow: none;
}
* { box-sizing: border-box; }
html {
  overflow-x: clip;
  overflow-y: auto;
}
html, body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-ui); line-height: 1.55; }
body {
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
  background-color: var(--paper);
  background-image: linear-gradient(180deg, color-mix(in srgb, var(--valencia) 11%, var(--paper)) 0, var(--paper) 11rem);
}
a { color: var(--crate-blue); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--valencia); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--valencia); outline-offset: 2px; }
.skip { position: absolute; left: .5rem; top: -3rem; background: var(--ink); color: var(--paper); padding: .4rem .7rem; }
.skip:focus { top: .5rem; }
.mast {
  position: sticky; top: 0; z-index: 5;
  background: var(--paper);
  border-bottom: none;
  box-shadow: 0 1px 0 var(--ink), 0 4px 0 var(--paper), 0 5px 0 var(--valencia);
  display: flex; justify-content: space-between; gap: .75rem; align-items: center;
  padding: .7rem 1.1rem .85rem;
}
.nav-desktop { display: none; }
.brand {
  display: flex; align-items: center; gap: .55rem; min-width: 0;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-wordmark); font-weight: 700;
  font-size: clamp(.72rem, 2.6vw, 1.05rem);
  letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.15;
}
.brand img { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; filter: none; }
nav details { position: relative; }
nav summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-wordmark); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; font-size: .78rem;
  border: 1px dashed var(--ink); background: var(--surface); color: var(--ink);
  padding: .38rem .85rem;
}
nav summary::-webkit-details-marker { display: none; }
nav details[open] ul {
  position: absolute; right: 0; z-index: 6;
  background: var(--surface);
  border: 1px solid var(--ink);
  box-shadow: inset 0 0 0 3px var(--surface), inset 0 0 0 4px var(--ink);
  padding: .55rem 0; margin: .4rem 0 0;
  min-width: 12rem; max-width: min(16rem, calc(100vw - 1.4rem));
}
nav details:not([open]) ul { display: none; }
nav li { list-style: none; }
nav a { display: block; padding: .35rem 1rem; text-decoration: none; color: var(--ink); }
nav a:hover { color: var(--valencia); }
main { max-width: 68rem; margin: 0 auto; padding: 1.4rem 1.1rem 3rem; overflow-x: clip; }
.hero {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(140px, 280px);
  gap: 1.2rem; align-items: end;
  background: var(--surface);
  border: 1px solid var(--ink);
  box-shadow: inset 0 0 0 4px var(--surface), inset 0 0 0 5px var(--ink);
  padding: 1.45rem 1.3rem 1.3rem;
  overflow: clip;
}
.hero.blossom-corner::before,
.hero.blossom-corner::after,
.sheet.blossom-corner::before,
.sheet.blossom-corner::after {
  content: "";
  position: absolute;
  width: 64px; height: 64px;
  background: url("/media/ornament-blossom.svg") no-repeat center / contain;
  pointer-events: none; opacity: .85;
}
.hero.blossom-corner::before,
.sheet.blossom-corner::before { top: 8px; left: 8px; }
.hero.blossom-corner::after,
.sheet.blossom-corner::after { right: 8px; bottom: 8px; transform: rotate(180deg); }
.hero h1 { font-family: var(--font-display); font-size: clamp(1.85rem, 5.6vw, 3.35rem); line-height: 1.05; margin: .2rem 0 .5rem; color: var(--ink); }
.kicker {
  text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 600;
  margin: 0; color: var(--crate-blue); font-family: var(--font-wordmark);
}
.hero img { width: 100%; height: auto; object-fit: contain; filter: none; }
.lede { font-size: 1.12rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1rem; margin: 1.4rem 0; }
.card {
  background: var(--surface); color: inherit; text-decoration: none;
  border: 1px solid var(--ink);
  box-shadow: inset 0 0 0 3px var(--surface), inset 0 0 0 4px color-mix(in srgb, var(--brass) 70%, var(--ink));
  padding: 1rem 1.05rem;
}
.card h2 { font-family: var(--font-display); margin: 0 0 .35rem; color: var(--valencia); }
aside.fact {
  border: 1px solid var(--ink); border-left: 6px solid var(--valencia);
  background: var(--surface); padding: 1rem 1.1rem; margin: 1.3rem 0;
}
aside.fact .k { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 700; color: var(--crate-blue); }
dl { margin: .4rem 0 0; }
dt { font-weight: 700; }
dd { margin: 0 0 .6rem; }
table { width: 100%; border-collapse: collapse; margin: 1rem 0; background: var(--surface); }
th, td { border: 1px solid var(--ink); padding: .45rem .6rem; text-align: left; }
.merch { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1rem; }
blockquote {
  font-family: var(--font-display); font-style: italic;
  border-left: 4px solid var(--valencia);
  margin: 1.2rem 0; padding: .15rem 0 .15rem 1rem;
  color: var(--ink);
}
blockquote cite {
  display: block; font-style: normal; font-family: var(--font-wordmark);
  letter-spacing: .1em; text-transform: uppercase; font-size: .72rem;
  color: var(--crate-blue); margin-top: .55rem;
}
footer {
  border-top: none;
  box-shadow: 0 -1px 0 var(--ink), 0 -4px 0 var(--paper), 0 -5px 0 var(--olive);
  padding: 1.35rem 1.1rem 2rem;
  background: var(--surface);
}
footer nav { display: flex; flex-wrap: wrap; gap: .7rem 1rem; margin: .6rem 0; }
footer nav a { color: var(--ink); text-decoration: none; }
footer nav a:hover { color: var(--valencia); }
.next { margin: 2rem 0 0; }
.next a { font-weight: 700; }
@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; }
}

main, p, li, td, th, dd, dt, figcaption, summary { color: var(--ink); }
.sheet {
  position: relative;
  background: transparent;
  color: var(--ink);
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  overflow: clip;
  isolation: isolate;
}
.sheet h1, .sheet h2 { font-family: var(--font-display); }
.sheet h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); line-height: 1.08; margin: .15rem 0 .6rem; }
.sheet h2 { font-size: 1.35rem; margin: 1.4rem 0 .45rem; }
.still { margin: 0 0 1.15rem; }
.still img {
  width: 100%; max-height: 26rem; object-fit: cover; display: block;
  border: 1px solid var(--ink); background: var(--paper);
}
.still figcaption { font-size: .88rem; margin: .4rem 0 0; color: var(--crate-blue); }
.faq details { border: 1px solid var(--ink); background: var(--surface); padding: .45rem .8rem; margin: .45rem 0; }
.faq summary { cursor: pointer; font-weight: 700; }
.poses { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 1rem; }
.poses figure { margin: 0; background: var(--surface); border: 1px solid var(--ink); padding: .55rem; }
.poses img { width: 100%; height: auto; display: block; }
.mark-wrap { display: grid; grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); gap: 1.2rem; align-items: start; margin: 1.2rem 0 2rem; }
.mark-wrap img { width: 100%; height: auto; border: 1px solid var(--ink); background: var(--paper); }
a.cta, button.btn, .merch a.cta, a.merch-still .cta {
  display: inline-block; margin-top: .6rem;
  background-color: var(--valencia); color: var(--paper);
  background-image:
    radial-gradient(circle at 0 50%, var(--paper) 5px, transparent 5.5px),
    radial-gradient(circle at 100% 50%, var(--paper) 5px, transparent 5.5px);
  border: 1px solid var(--ink);
  padding: .45rem 1.15rem;
  font-family: var(--font-wordmark); font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; font-size: .78rem;
  text-decoration: none; box-shadow: none;
}
a.cta:hover, button.btn:hover { color: var(--paper); background-color: color-mix(in srgb, var(--valencia) 82%, var(--ink)); }
.char-hero { max-width: 22rem; filter: none; }
ol.steps { padding-left: 1.2rem; }
body[data-brand="orlandoberry"] .sheet,
body[data-brand="orlandoberry"] aside.fact,
body[data-brand="orlandoberry"] table,
body[data-brand="orlandoberry"] .card,
body[data-brand="orlandoberry"] footer,
body[data-brand="orlandoberry"] .faq details,
body[data-brand="orlandoberry"] .poses figure,
body[data-brand="orlandoberry"] nav details[open] ul {
  background: #FFF4F0;
  color: #3B1020;
}
body[data-brand="orlandoberry"] .hero { background: #FFF4F0; }
@media (max-width: 700px) {
  .mark-wrap { grid-template-columns: 1fr; }
}
.mast { border-bottom-width: 0; }
.brand img { background: transparent; }
.merch, .gshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11.5rem, 1fr));
  gap: .65rem;
}
.merch .card, .gshop-card { padding: .65rem .7rem; }
.merch .card h2, .gshop-card h2 { font-size: 1.05rem; margin: 0 0 .3rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 700; margin: 0 0 .25rem; color: var(--valencia); font-family: var(--font-wordmark); }
.band { font-size: .82rem; margin: .3rem 0 0; }
.thumb { width: 100%; height: 6.4rem; object-fit: contain; background: var(--paper); border: 1px solid var(--ink); margin: 0 0 .45rem; display: block; }
.gshop-aisles { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0 .55rem; }
.gshop-aisles button {
  border: 1px dashed var(--ink); background: var(--surface); color: var(--ink);
  font-family: var(--font-wordmark); font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; font-size: .72rem;
  padding: .28rem .62rem; cursor: pointer;
}
.gshop-aisles button.on { background: var(--valencia); color: var(--paper); border-style: solid; box-shadow: none; }
.gshop-count { font-size: .88rem; margin: 0 0 .7rem; }
@media (min-width: 1100px) {
  .merch, .gshop-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .merch, .gshop-grid { grid-template-columns: 1fr; }
  .brand img { width: 36px; height: 36px; }
  main { padding-left: .85rem; padding-right: .85rem; }
}
.quiz-q { border: 1px solid var(--ink); background: var(--surface); padding: .75rem .85rem; margin: .7rem 0; }
.quiz-q h2 { font-size: 1.1rem; margin: 0 0 .4rem; }
.quiz-q label { display: block; margin: .25rem 0; }
.quiz-q.ok { box-shadow: inset 0 0 0 2px var(--valencia); }
.quiz-q.bad { outline: 1px solid var(--ink); }
#quiz-score { font-weight: 700; margin: 1rem 0; }
.labels { display: flex; flex-wrap: wrap; gap: .5rem; margin: .8rem 0 1.2rem; }
.label { border: 1px solid var(--ink); background: var(--paper); padding: .45rem .75rem; font-weight: 700; }
.stamps { display: grid; grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr)); gap: .75rem; margin: 1rem 0 1.4rem; }
.stamps figure { margin: 0; background: var(--surface); border: 1px solid var(--ink); padding: .45rem; }
.stamps img { width: 100%; height: auto; display: block; }
.postcard { width: 100%; height: auto; border: 1px solid var(--ink); background: var(--paper); display: block; }
.callout { border: 1px solid var(--ink); background: var(--surface); padding: .85rem 1rem; margin: 1rem 0 1.3rem; box-shadow: none; }
.callout .k { font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--valencia); margin: 0 0 .35rem; font-family: var(--font-wordmark); }
.home-poses { margin: 0 0 1.2rem; }

.dotcom-brand {
  font-family: var(--font-wordmark);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crate-blue);
  margin: 0.15rem 0 0.4rem;
}

/* House modules: CratePlate, ProspectusRule, HouseStamp */
.manifesto {
  font-size: 1.08rem;
  max-width: 44rem;
  margin: 1.15rem 0 1.2rem;
}
.crate-plates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 1.5rem;
}
a.crate-plate {
  display: block;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 3;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  border: 1px dashed var(--ink);
  box-shadow:
    inset 0 0 0 3px var(--surface),
    inset 0 0 0 4px color-mix(in srgb, var(--brass) 70%, var(--ink)),
    3px 3px 0 color-mix(in srgb, var(--ink) 16%, transparent);
  padding: 1rem 1.05rem 1.15rem;
  background-image:
    radial-gradient(circle at 0 50%, var(--paper) 7px, transparent 7.5px),
    radial-gradient(circle at 100% 50%, var(--paper) 7px, transparent 7.5px);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
a.crate-plate:hover,
a.crate-plate:focus-visible {
  transform: rotate(-0.5deg) translateY(-2px);
  color: inherit;
  box-shadow:
    inset 0 0 0 3px var(--surface),
    inset 0 0 0 4px color-mix(in srgb, var(--valencia) 55%, var(--ink)),
    5px 5px 0 color-mix(in srgb, var(--valencia) 28%, transparent);
}
a.crate-plate h2 {
  font-family: var(--font-display);
  margin: 0 0 .35rem;
  color: var(--valencia);
}
.crate-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1rem;
  margin: 1.35rem 0 1.5rem;
}
figure.crate-plate { margin: 0; min-width: 0; }
.crate-plate__frame {
  aspect-ratio: 1 / 1;
  display: grid;
  border: 1px solid var(--ink);
  padding: 7px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--brass);
  overflow: clip;
}
figure.crate-plate img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  background: var(--paper);
  grid-area: 1 / 1;
}
figure.crate-plate figcaption {
  font-size: .78rem; margin: .45rem 0 0;
  color: var(--crate-blue); letter-spacing: .02em;
}
.prospectus-rule {
  display: flex; align-items: center; gap: .7rem;
  margin: 1.35rem 0; border: 0; height: auto; background: none;
}
.prospectus-rule::before,
.prospectus-rule::after {
  content: "";
  flex: 1 1 auto;
  height: 7px;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 100% / 100% 1px no-repeat;
}
.prospectus-rule img { width: 28px; height: 14px; flex: 0 0 auto; }
.house-stamp {
  margin: 0 auto;
  max-width: 12rem;
  padding: 12px;
  background:
    radial-gradient(circle, var(--paper) 2.6px, transparent 2.8px) -3px -3px / 10px 10px,
    var(--surface);
  border: 1px dashed var(--crate-blue);
}
.house-stamp img {
  width: 100%; aspect-ratio: 1; object-fit: contain; display: block;
  background: var(--paper); border: 1px solid var(--ink);
}
.house-stamp figcaption {
  text-align: center; margin: .45rem 0 0;
  font-family: var(--font-wordmark); font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--crate-blue);
}
.heritage-note { font-size: .95rem; margin: .4rem 0 1.1rem; }
.disclaimer {
  border: 1px solid var(--ink);
  border-left: 6px solid var(--olive);
  background: var(--surface);
  padding: .9rem 1.05rem;
  margin: 1.2rem 0 1.4rem;
}
.form-grid { display: grid; gap: .75rem; margin: 1rem 0; }
.form-grid .field { display: grid; gap: .25rem; }
.form-grid input, .form-grid select, .form-grid textarea {
  font: inherit; border: 1px solid var(--ink); background: var(--paper); color: var(--ink);
  padding: .4rem .5rem; width: 100%; max-width: 100%;
}
.form-grid textarea { min-height: 7rem; }
.field--check { display: flex; align-items: center; gap: .45rem; }

.gshop-card, .aff-card, .suite-card, .dshop-card, .helm-shop-card {
  transition: none;
}
.gshop-card:hover, .aff-card:hover, .suite-card:hover, .dshop-card:hover, .helm-shop-card:hover {
  transform: none;
  box-shadow: inset 0 0 0 3px var(--surface), inset 0 0 0 4px color-mix(in srgb, var(--brass) 70%, var(--ink));
}
.gshop-card img, .aff-card img, .suite-card img.thumb, .dshop-card img, .helm-shop-card img {
  border-radius: 0;
}

/* Brochure desk + prospectus sheet. Genre from /Users/gooby/OrlandoOrange study. */
body {
  background-color: var(--valencia);
  background-image:
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--ink) 9%, transparent) 0 1px, transparent 1px 13px),
    linear-gradient(180deg, color-mix(in srgb, var(--ink) 16%, var(--valencia)), var(--valencia) 28rem);
}
.mast {
  background: var(--paper);
  box-shadow: 0 1px 0 var(--ink), 0 3px 0 var(--paper), 0 4px 0 var(--ink), 0 7px 0 var(--valencia);
}
main {
  max-width: 68rem;
  margin: 1.15rem auto 2.2rem;
  background-color: var(--paper);
  background-image: linear-gradient(180deg, color-mix(in srgb, var(--valencia) 10%, var(--paper)), var(--paper) 9rem);
  border: 1px solid var(--ink);
  box-shadow:
    inset 0 0 0 5px var(--paper),
    inset 0 0 0 6px var(--ink);
  padding: 1.7rem 1.25rem 2.4rem;
  overflow-x: clip;
}
main.home {
  margin-top: 0.4rem;
  padding-top: 0.8rem;
}
footer {
  background: var(--paper);
  box-shadow: 0 -1px 0 var(--ink), 0 -3px 0 var(--paper), 0 -4px 0 var(--ink);
}
.cover-desk { margin: 0 0 0.75rem; }
.cover-head { text-align: center; margin: 0 0 0.55rem; }
.cover-head h1,
.cover-head .lockup {
  font-family: var(--font-wordmark);
  font-weight: 700;
  font-size: clamp(2.35rem, 9vw, 4.4rem);
  line-height: .92;
  letter-spacing: 0.01em;
  margin: .35rem 0 .55rem;
  color: var(--valencia);
  text-shadow: 1px 1px 0 var(--ink);
}
.cover-desk .cover-head h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.8vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0.1rem 0 0.3rem;
  padding-bottom: 0.35rem;
  color: var(--ink);
  text-shadow: none;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
}
.cover-head .kicker { margin: 0 0 0.12rem; }
.cover-head .lede { max-width: 36rem; margin: .4rem auto 0; }
.cover-desk .cover-copy > p { margin: 0.45rem 0 0; }
.cover-desk .crate-plates { margin: 0.85rem 0 0; }
.cover-stack {
  display: flex;
  justify-content: center;
  margin: 0 0 1rem;
  min-width: 0;
}
.cover-frame {
  width: min(22rem, 88%);
  margin: 0 auto;
}
.cover-plate { margin: 0; }
.cover-plate img { width: 100%; height: 100%; object-fit: cover; display: block; }
.house-vignette {
  position: absolute;
  left: -0.4rem;
  bottom: -1.1rem;
  width: min(42%, 15rem);
  margin: 0;
  filter: none;
}
.house-vignette img { width: 100%; height: auto; display: block; background: transparent; }
.house-vignette figcaption {
  text-align: center;
  font-family: var(--font-wordmark);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--crate-blue);
  margin: .2rem 0 0;
}
.cover-stack + .manifesto { margin-top: 1.8rem; }
.prospectus-rule img { width: 72px; height: auto; }
.prospectus-rule.bar { margin: 1.1rem 0 1.25rem; }
.prospectus-rule.bar img { width: 100%; max-width: 100%; height: auto; }
.scroll-cap { display: block; width: 100%; height: auto; margin: 0 auto; }
.cover-frame .scroll-cap { width: 78%; }
.kit-vignette img { background: transparent; }
.vignette-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 1.5rem;
}
.vignette-row figure { margin: 0; text-align: center; }
.vignette-row img { width: 100%; height: auto; display: block; background: transparent; }
.hourglass-stamp { display: block; width: min(16rem, 70%); margin: .4rem auto 1rem; }
a.crate-plate {
  text-align: center;
  padding: 1.15rem .9rem 1.2rem;
}
a.crate-plate h2 {
  font-size: 1.35rem;
}
.tm-mark {
  font-family: var(--font-ui);
  font-size: .68rem;
  letter-spacing: .04em;
  color: var(--crate-blue);
  margin: .35rem 0 0;
}
.gshop-card, .merch-still {
  position: relative;
}
.gshop-card .tm-mark,
.merch-still .tm-mark {
  margin: .25rem 0 .15rem;
}
.merch-still { position: relative; margin: 0; }
.merch-still img { width: 100%; height: auto; display: block; border: 1px solid var(--ink); }
.merch-still.kit-vignette {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
}
.merch-still.kit-vignette img { border: 0; }
.sheet-flares {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.sheet-flares .flare {
  position: absolute;
  width: 4.6rem;
  height: 4.6rem;
  opacity: 0.88;
}
.flare-nw { top: 4px; left: 4px; }
.flare-ne { top: 4px; right: 4px; transform: scaleX(-1); }
.flare-sw { bottom: 4px; left: 4px; transform: scaleY(-1); }
.flare-se { bottom: 4px; right: 4px; transform: scale(-1); }
main { position: relative; }
main > *:not(.sheet-flares):not(.wash) { position: relative; z-index: 2; }
.sheet > *:not(.wash),
.home-end > *:not(.wash),
.pcard-intro > *:not(.wash) { position: relative; z-index: 2; }
.photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 280 / 520;
  margin: 0;
  overflow: hidden;
  padding: 0;
  background: var(--paper);
}
.photo-frame-ornament {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  z-index: 2;
}
.photo-frame .cover-plate {
  position: absolute;
  top: 9.23%;
  right: 6.43%;
  bottom: 9.23%;
  left: 6.43%;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--paper) 82%, var(--valencia) 18%);
}
.photo-frame .cover-plate img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  background: transparent;
}
.photo-frame .char-hero {
  position: relative;
  z-index: 1;
}
.house-vignette.fruit-stamp {
  left: -0.15rem;
  bottom: -0.85rem;
  width: min(38%, 13rem);
  z-index: 4;
}
.house-vignette.truck-stamp {
  left: auto;
  right: 0.1rem;
  bottom: 18%;
  width: min(32%, 11rem);
  z-index: 4;
}
.house-vignette.jewel-stamp {
  left: auto;
  right: 1.1rem;
  top: 8%;
  bottom: auto;
  width: min(18%, 6rem);
  z-index: 4;
}
.char-stack {
  position: relative;
  max-width: 22rem;
  margin: 0.6rem 0 1.2rem;
}
.char-stack .char-hero {
  width: 100%;
  max-width: none;
  display: block;
  background: transparent;
}
.char-stack .house-vignette {
  left: auto;
  right: -0.4rem;
  bottom: -0.6rem;
  width: 42%;
}
.page-rule-cap { margin: 0.2rem 0 0.85rem; }
body[data-brand="orlandoorange"] .gshop-card img,
body[data-brand="orlandoorange"] .gshop-card img.thumb {
  background: var(--paper);
  border-radius: 0;
}
footer .legal-pub {
  font-size: 0.88rem;
  margin: 0.55rem 0 0.2rem;
}
@media (max-width: 700px) {
  main { margin: .7rem .55rem 1.4rem; padding: 1.15rem .85rem 1.8rem; }
  main.home { margin-top: 0.3rem; padding-top: 0.6rem; }
  .house-vignette,
  .house-vignette.fruit-stamp,
  .house-vignette.truck-stamp,
  .house-vignette.jewel-stamp {
    position: static;
    width: min(70%, 14rem);
    margin: .4rem auto 0;
  }
  .cover-stack + .manifesto { margin-top: .8rem; }
  .sheet-flares .flare { width: 3.2rem; height: 3.2rem; }
}

/* grove-home-gfx */
.home-board { position: relative; margin: 1.1rem 0 1.4rem; }
.home-board .ornament {
  position: absolute;
  width: 4.8rem;
  height: auto;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(3px 3px 0 var(--ink));
}
body[data-brand="orlandoorange"] .home-board .ornament { filter: none; }
.home-board .ornament.tl { top: -0.35rem; left: -0.2rem; }
.home-board .ornament.tr { top: -0.35rem; right: -0.2rem; }
.home-stills {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1rem;
  margin: 0 0 1.1rem;
  align-items: stretch;
}
.home-frame {
  margin: 0;
  background: var(--surface);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 0.65rem;
  position: relative;
}
.home-frame .home-frame-photo {
  width: 100%;
  max-height: 20rem;
  object-fit: cover;
  display: block;
  border: 2px solid var(--ink);
  background: #fff;
}
.home-frame.mate .home-frame-photo {
  object-fit: contain;
  background: color-mix(in srgb, var(--paper) 40%, #fff);
  max-height: 20rem;
}
.home-frame figcaption { font-size: .82rem; margin: .4rem 0 0; }
.home-frame .pose-chip {
  position: absolute;
  right: 0.55rem;
  bottom: 2.1rem;
  width: 5.2rem;
  height: auto;
  filter: drop-shadow(4px 4px 0 var(--ink));
  pointer-events: none;
}
body[data-brand="orlandoorange"] .home-frame .pose-chip { filter: none; bottom: 0.7rem; }
.merch-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0.9rem 0 1.25rem;
}
.merch-row a {
  background: var(--surface);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 0.65rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.merch-row img {
  width: 100%;
  height: 7.2rem;
  object-fit: contain;
  background: color-mix(in srgb, var(--paper) 55%, #fff);
  border: 2px solid var(--ink);
  display: block;
  margin: 0 0 0.45rem;
}
.merch-row h2 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.merch-row .cta { margin-top: auto; align-self: flex-start; }
.grid .card > img,
.crate-plates a.crate-plate > img {
  width: 100%;
  height: 7.6rem;
  object-fit: cover;
  display: block;
  border: 2px solid var(--ink);
  margin: 0 0 0.55rem;
  background: #fff;
}
.grid .card > img.cutout,
.crate-plates a.crate-plate > img.cutout {
  object-fit: contain;
  background: #111;
}
.hero.cover-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 240px);
  gap: 1rem;
  align-items: end;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 0 1rem;
}
.hero.cover-hero .cover-head { text-align: left; margin: 0; }
.hero.cover-hero .cover-head .lede { margin-left: 0; max-width: none; }
.hero.cover-hero > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cover-plate { position: relative; overflow: hidden; }
@media (max-width: 800px) {
  .merch-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-stills { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .hero.cover-hero { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .merch-row { grid-template-columns: 1fr; }
  .home-board .ornament { width: 3.2rem; }
}

@media (min-width: 900px) {
  header.mast {
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.4rem 0.9rem;
  }
  header.mast nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
  }
  header.mast .nav-desktop {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  header.mast .nav-desktop li { list-style: none; }
  header.mast .nav-desktop a {
    display: inline-block;
    padding: 0.28rem 0.48rem;
    font-family: var(--font-wordmark);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.68rem;
  }
  header.mast .nav-desktop .nav-more {
    position: relative;
    margin-left: 0.35rem;
    padding-left: 0.55rem;
    border-left: 1px solid color-mix(in srgb, var(--ink) 28%, transparent);
  }
  header.mast .nav-desktop .nav-more summary {
    display: inline-block;
    cursor: pointer;
    list-style: none;
    padding: 0.28rem 0.52rem;
    font-family: var(--font-wordmark);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.68rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
  }
  header.mast .nav-desktop .nav-more summary::-webkit-details-marker { display: none; }
  header.mast .nav-desktop .nav-more[open] summary { color: var(--valencia); }
  header.mast .nav-mobile { display: none; }
  .cover-desk {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    margin: 0 0 0.75rem;
  }
  .cover-desk .cover-copy,
  .cover-desk .cover-stack {
    grid-area: 1 / 1;
  }
  .cover-desk .cover-stack {
    justify-self: end;
    width: min(22rem, 40%);
    z-index: 1;
    margin: 0;
    pointer-events: none;
  }
  .cover-desk .cover-copy {
    position: relative;
    z-index: 2;
    padding-right: min(21.5rem, 42%);
  }
  .cover-desk .cover-head { text-align: left; margin: 0 0 0.4rem; }
  .cover-desk .cover-head .lede { max-width: none; margin: 0.4rem 0 0; }
  .cover-desk .manifesto { margin: 0 0 0.9rem; }
  .cover-desk .crate-plates {
    grid-template-columns: 1fr 1fr;
    margin: 0.7rem 0 0;
  }
  .cover-desk .cover-frame { width: 100%; }
}

.home-lesson { margin: 0 0 1.5rem; }
.home-end, .pcard-intro {
  position: relative;
  overflow: clip;
  isolation: isolate;
}
.wash {
  position: absolute;
  margin: 0;
  width: min(17.5rem, 42vw);
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
.wash img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  border: 0;
  opacity: 0.34;
}
.wash figcaption { display: none; }
.wash--ne { top: 20.5rem; right: -1.1rem; }
.wash--nw { top: 24rem; left: -1.1rem; }
.wash--se { bottom: 5%; right: -0.9rem; }
.wash--sw { bottom: 16%; left: -1.1rem; }
.wash--sm { width: min(11rem, 32vw); }
.wash--grove {
  right: -1rem;
  bottom: -1.2rem;
  width: min(28rem, 72%);
  top: auto;
}
.wash--grove img { opacity: 0.26; }
a.merch-still {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.merch-still .cta { margin-top: 0.45rem; }
@media (max-width: 700px) {
  .wash {
    width: min(10rem, 46vw);
  }
  .wash img { opacity: 0.28; }
  .wash--ne { top: 16.5rem; right: -0.7rem; }
  .wash--nw { top: 19rem; left: -0.7rem; }
  .wash--grove { width: min(16rem, 78%); }
}

#cookie-consent-banner {
  background: #1a1a1a !important;
  color: #f5f0e8 !important;
}
#cookie-consent-banner,
#cookie-consent-banner p,
#cookie-consent-banner strong,
#cookie-consent-banner li,
#cookie-consent-banner button {
  color: #f5f0e8 !important;
}
#cookie-consent-banner a { color: #c5e0ff !important; }
#cookie-consent-banner .cookie-consent__btn--accept { color: #1a1a1a !important; background: #D4A843 !important; }
#cookie-consent-banner .cookie-consent__inner {
  max-width: none !important;
  margin: 0 !important;
  padding: 0.75rem 0.9rem !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 0.65rem !important;
}
#cookie-consent-banner .cookie-consent__text { flex: 1 1 100% !important; min-width: 0 !important; }
#cookie-consent-banner .cookie-consent__text p { margin: 0 0 0.3rem !important; font-size: 0.82rem !important; }
#cookie-consent-banner .cookie-consent__actions { width: 100% !important; justify-content: flex-start !important; }



  #cookie-consent-banner .cookie-consent__inner {
    flex-wrap: nowrap !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 0.45rem !important;
  }
  #cookie-consent-banner .cookie-consent__text { flex: 0 1 auto !important; min-width: 0 !important; }





}

/* ==== Grove desktop nav density lock (2026-09-15b) ====
   One-row mast: brand | primary+More | advertiny.
   No in-flow vertical primary list; no More wrap under Grow. */
.mast nav[aria-label="Primary"] > ul.nav-row { display: none !important; }
.mast nav[aria-label="Primary"] .nav-desktop {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.mast nav[aria-label="Primary"] .nav-desktop a {
  display: inline-flex !important;
  align-items: center;
  padding: 0.22rem 0.4rem !important;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap !important;
  min-height: 34px;
  font-size: 0.86rem;
}
.mast nav[aria-label="Primary"] .nav-desktop a:hover,
.mast nav[aria-label="Primary"] .nav-desktop a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}
.mast nav[aria-label="Primary"] .nav-more {
  display: none;
  position: relative;
  flex: 0 0 auto;
}
.mast nav[aria-label="Primary"] .nav-more > summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.4rem;
  font-size: 0.86rem;
  white-space: nowrap;
}
.mast nav[aria-label="Primary"] .nav-more > summary::-webkit-details-marker { display: none; }
.mast nav[aria-label="Primary"] .nav-more[open] > ul {
  position: absolute;
  right: 0;
  top: calc(100% + 0.2rem);
  z-index: 30;
  min-width: 11rem;
  margin: 0;
  padding: 0.3rem 0;
  list-style: none;
  background: var(--surface, var(--paper, #fff));
  border: 3px solid var(--ink, #111);
  box-shadow: var(--shadow, 4px 4px 0 var(--ink, #111));
}
.mast nav[aria-label="Primary"] .nav-more[open] > ul a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.3rem 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.mast nav[aria-label="Primary"] .nav-more[open] > ul a:hover,
.mast nav[aria-label="Primary"] .nav-more[open] > ul a[aria-current="page"] {
  background: var(--ink, #111);
  color: var(--paper, #fff);
}
@media (min-width: 860px) {
  header.mast,
  .mast {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }
  .mast > .brand {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 36%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mast > nav[aria-label="Primary"] {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 0.12rem !important;
    min-width: 0;
    margin-left: auto;
  }
  .mast nav[aria-label="Primary"] .nav-desktop {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    flex: 0 1 auto;
    min-width: 0;
    width: auto !important;
    max-width: none !important;
  }
  .mast nav[aria-label="Primary"] .nav-desktop > li {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    list-style: none !important;
  }
  .mast nav[aria-label="Primary"] .nav-more {
    display: inline-flex !important;
    flex: 0 0 auto !important;
  }
  .mast nav[aria-label="Primary"] .nav-mobile {
    display: none !important;
  }
  .mast nav[aria-label="Primary"] > ul.nav-row {
    display: none !important;
  }
  .mast > .nav-bug,
  .mast > a.nav-bug {
    flex: 0 0 auto !important;
  }
}
@media (max-width: 859px) {
  .mast nav[aria-label="Primary"] .nav-desktop,
  .mast nav[aria-label="Primary"] .nav-more {
    display: none !important;
  }
}

