:root {
  --graphite: #1d1c1a;
  --graphite-2: #2a2926;
  --plaster: #f5f1ea;
  --plaster-2: #ebe5da;
  --yellow: #f5b700;
  --yellow-soft: #ffe9a3;
  --blue: #2a5bd7;
  --walnut: #7a4e2d;
  --muted: #6b665e;
  --line: rgba(29, 28, 26, .12);
  --line-light: rgba(245, 241, 234, .15);

  --f-body: "Archivo", system-ui, sans-serif;
  --f-hand: "Caveat", cursive;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  --gutter: clamp(16px, 4vw, 52px);
  --sec: clamp(84px, 11vw, 150px);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--plaster); color: var(--graphite); font: 400 clamp(16px, 1.05vw, 17.5px)/1.6 var(--f-body); font-variation-settings: "wdth" 100; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--f-body); }
::selection { background: var(--yellow); color: var(--graphite); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.skip { position: fixed; top: -60px; left: 12px; z-index: 100; padding: 10px 16px; background: var(--yellow); color: var(--graphite); }
.skip:focus { top: 12px; }
.wrap { width: min(1280px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.hand { font-family: var(--f-hand); font-weight: 700; font-variation-settings: normal; text-transform: none; letter-spacing: 0; color: var(--blue); font-size: 1.08em; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; padding: 1em 1.5em; border-radius: 6px; border: 2px solid transparent; font-weight: 800; font-size: .95rem; letter-spacing: .02em; text-transform: uppercase; font-variation-settings: "wdth" 110; text-decoration: none; cursor: pointer; white-space: nowrap; transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s var(--ease); }
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn:active { transform: translateY(2px); }
.btn-sm { padding: .7em 1.1em; font-size: .82rem; }
.btn-block { width: 100%; }
.btn-yellow { background: var(--yellow); color: var(--graphite); box-shadow: 4px 4px 0 var(--graphite); }
.btn-yellow:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--graphite); }
.btn-outline { border-color: currentColor; }
.btn-outline:hover { background: var(--graphite); color: var(--plaster); }

/* topbar + nav */
.topbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 8px var(--gutter); background: var(--graphite); color: rgba(245,241,234,.78); font-size: .82rem; }
.topbar p { margin: 0; }
.topbar b { color: var(--yellow); }
.topbar a { font-weight: 700; color: var(--plaster); text-decoration: none; white-space: nowrap; }
.nav { position: sticky; top: 0; z-index: 40; display: flex; align-items: center; gap: 28px; padding: 14px var(--gutter); background: rgba(245,241,234,.94); border-bottom: 2px solid var(--graphite); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.logo { display: flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none; }
.logo-mark { width: 40px; height: 40px; flex: none; color: var(--graphite); }
.logo-word { display: flex; flex-direction: column; white-space: nowrap; font-weight: 900; font-size: 1.35rem; line-height: .95; text-transform: uppercase; font-variation-settings: "wdth" 118; letter-spacing: -.01em; }
.logo-word i { font-style: normal; color: var(--yellow); -webkit-text-stroke: 1px var(--graphite); }
.logo-word small { margin-top: 5px; font-size: .58rem; font-weight: 700; letter-spacing: .22em; font-variation-settings: "wdth" 100; color: var(--muted); }
.logo-light { color: var(--plaster); }
.logo-light .logo-mark { color: var(--plaster); }
.logo-light .logo-word i { -webkit-text-stroke: 0; }
.logo-light small { color: rgba(245,241,234,.55); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { position: relative; text-decoration: none; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.nav-links a:hover::after, .nav-links a.is-current::after { transform: scaleX(1); }
.burger { display: none; position: relative; width: 44px; height: 44px; border-radius: 6px; border: 2px solid var(--graphite); background: none; cursor: pointer; }
.burger span { position: absolute; left: 10px; right: 10px; height: 2.5px; background: var(--graphite); transition: transform .45s var(--ease); }
.burger span:first-child { top: 15px; } .burger span:last-child { top: 24px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.drawer { position: fixed; inset: 0; z-index: 35; display: flex; flex-direction: column; gap: 14px; padding: 140px var(--gutter) 40px; background: var(--yellow); opacity: 0; transition: opacity .35s var(--ease); }
.drawer.is-open { opacity: 1; }
.drawer nav { display: flex; flex-direction: column; margin-bottom: auto; }
.drawer nav a { padding: 10px 0; border-bottom: 2px solid var(--graphite); font-weight: 900; font-size: 2.2rem; text-transform: uppercase; font-variation-settings: "wdth" 118; text-decoration: none; }
.drawer .btn-yellow { background: var(--graphite); color: var(--yellow); box-shadow: none; }
.drawer-phone { text-align: center; font-weight: 800; }

/* shared */
.in-up { opacity: 0; transform: translateY(26px); animation: inup 1s var(--ease) var(--d, 0s) forwards; }
@keyframes inup { to { opacity: 1; transform: none; } }
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform 1s var(--ease); transition-delay: var(--rd, 0s); }
[data-reveal].in { opacity: 1; transform: none; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px; font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 10px; background: var(--yellow); border: 2px solid var(--graphite); }
.head { max-width: 860px; margin-bottom: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .95; font-weight: 900; text-transform: uppercase; font-variation-settings: "wdth" 112; letter-spacing: -.01em; }
.lede { max-width: 36em; margin: 20px 0 0; color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.12rem); }
.note { position: absolute; font-family: var(--f-hand); font-weight: 700; font-size: 1.35rem; line-height: 1.05; color: var(--blue); }
.note span { font-size: .8em; color: var(--muted); }

/* hero */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 80px) 0 110px; border-bottom: 2px solid var(--graphite); }
.grid-bg { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(42,91,215,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(42,91,215,.08) 1px, transparent 1px); background-size: 32px 32px; -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent); mask-image: linear-gradient(180deg, #000 60%, transparent); }
.hero-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.hero-title { font-size: clamp(3.6rem, 8.4vw, 8.2rem); line-height: .86; font-weight: 900; text-transform: uppercase; font-variation-settings: "wdth" 125; letter-spacing: -.02em; }
.hero-title > span { display: block; }
.done-word { position: relative; width: fit-content; background: var(--yellow); padding: 0 .08em; margin-top: .06em; box-shadow: 6px 6px 0 var(--graphite); }
.scribble { position: absolute; left: -2%; right: -2%; top: 48%; width: 104%; height: .3em; overflow: visible; pointer-events: none; }
.scribble path { fill: none; stroke: var(--blue); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw .7s var(--ease-io) 1.6s forwards; opacity: 0; }
.hero-title .scribble path { opacity: 0; }
.hero-lede { max-width: 32em; margin: 30px 0; color: var(--muted); font-size: clamp(1.05rem, 1.3vw, 1.2rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.proof { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin-top: 30px; font-size: .9rem; color: var(--muted); }
.proof b { color: var(--graphite); }
.sep { width: 1px; height: 16px; background: var(--line); }
.stars { width: 88px; height: 16px; flex: none; fill: var(--yellow); }

.hero-art { position: relative; padding: 0 0 60px 50px; }
.hero-photo { position: relative; margin: 0; border: 2px solid var(--graphite); box-shadow: 10px 10px 0 var(--graphite); background: var(--graphite); }
.hero-photo img { width: 100%; aspect-ratio: 4 / 3.3; object-fit: cover; }
.note-a { right: 14px; top: -46px; transform: rotate(-3deg); }
.todo { position: absolute; left: 0; bottom: 0; width: min(290px, 70%); padding: 18px 20px 16px; background: #fffdf6; border: 2px solid var(--graphite); box-shadow: 6px 6px 0 var(--yellow); transform: rotate(-2.5deg); background-image: repeating-linear-gradient(transparent 0 27px, rgba(42,91,215,.14) 27px 28px); }
.todo-head { margin: 0 0 6px; font-family: var(--f-hand); font-size: 1.6rem; font-weight: 700; line-height: 1; display: flex; justify-content: space-between; }
.todo ul { list-style: none; margin: 0; padding: 0; }
.todo li { position: relative; padding-left: 26px; font-family: var(--f-hand); font-size: 1.28rem; line-height: 28px; }
.todo li::before { content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 15px; border: 2px solid var(--graphite); border-radius: 3px; }
.todo li::after { content: "✓"; position: absolute; left: 2px; top: -3px; font-family: var(--f-body); font-weight: 900; font-size: 1.1rem; color: var(--blue); opacity: 0; transform: scale(2); transition: opacity .3s, transform .4s var(--ease); }
.todo li span { position: relative; }
.todo li.done { color: var(--muted); }
.todo li.done::after { opacity: 1; transform: none; }
.todo li.done span::after { content: ""; position: absolute; left: -2px; right: -2px; top: 55%; height: 2px; background: var(--blue); transform-origin: left; animation: strike .5s var(--ease-io) both; }
@keyframes strike { from { transform: scaleX(0); } }
.todo-foot { margin: 8px 0 0; padding-top: 8px; border-top: 2px dashed var(--line); font-size: .9rem; font-weight: 700; }
.todo-foot b { background: var(--yellow); padding: 0 4px; }

.tape { position: absolute; left: 0; right: 0; bottom: 0; height: 58px; background: var(--yellow); border-top: 2px solid var(--graphite); overflow: hidden; }
.tape-track { position: absolute; top: 0; bottom: 0; left: 0; display: flex; will-change: transform; }
.tape-track i { position: relative; flex: none; width: 64px; height: 100%; font-style: normal; }
.tape-track i::before { content: ""; position: absolute; left: 0; top: 0; width: 2px; height: 26px; background: var(--graphite); }
.tape-track i::after { content: ""; position: absolute; left: 32px; top: 0; width: 1.5px; height: 14px; background: var(--graphite); box-shadow: -16px 0 0 -0.3px var(--graphite), 16px 0 0 -0.3px var(--graphite); }
.tape-track b { position: absolute; left: 6px; bottom: 6px; font-size: .9rem; font-weight: 900; font-variation-settings: "wdth" 80; }

/* estimator */
.list { padding-block: var(--sec); }
.est { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr); gap: 20px; align-items: start; }
.jobs { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.job { position: relative; display: flex; flex-direction: column; gap: 6px; padding: 16px; text-align: left; border: 2px solid var(--graphite); border-radius: 8px; background: #fffdf6; cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s; }
.job:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--graphite); }
.job-ico { font-size: 1.5rem; line-height: 1; }
.job b { font-size: 1rem; font-weight: 800; line-height: 1.2; }
.job small { font-size: .82rem; color: var(--muted); }
.job-qty { position: absolute; top: 10px; right: 10px; display: grid; place-items: center; min-width: 26px; height: 26px; padding: 0 6px; border-radius: 99px; background: var(--graphite); color: var(--yellow); font-weight: 900; font-size: .8rem; transform: scale(0); transition: transform .35s var(--ease); }
.job.on { background: var(--yellow-soft); }
.job.on .job-qty { transform: scale(1); }
.job.pop { animation: pop .35s var(--ease); }
@keyframes pop { 40% { transform: scale(.96); } }

.ticket { position: sticky; top: 100px; padding: 22px; background: #fffdf6; border: 2px solid var(--graphite); box-shadow: 8px 8px 0 var(--graphite); }
.ticket-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 12px; border-bottom: 2px dashed var(--line); }
.ticket-top p { margin: 0; font-weight: 900; text-transform: uppercase; font-variation-settings: "wdth" 115; }
.ticket-top span { font-weight: 500; color: var(--muted); font-variation-settings: "wdth" 100; }
.clear { border: 0; background: none; font-size: .8rem; font-weight: 700; color: var(--muted); text-decoration: underline; cursor: pointer; }
.ticket-lines { list-style: none; margin: 10px 0 0; padding: 0; min-height: 70px; max-height: 230px; overflow: auto; }
.ticket-lines li { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; font-size: .92rem; border-bottom: 1px solid var(--line); animation: pop .35s var(--ease); }
.ticket-lines li span:last-child { color: var(--muted); white-space: nowrap; }
.ticket-lines .empty { color: var(--muted); border: 0; font-family: var(--f-hand); font-size: 1.3rem; }
.measure { margin: 18px 0; }
.measure-head { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.measure-head b { color: var(--graphite); font-size: 1rem; letter-spacing: 0; }
.ruler { position: relative; height: 44px; border: 2px solid var(--graphite); background: var(--yellow-soft); overflow: hidden; margin-bottom: 22px; overflow: visible; }
.ruler-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--yellow); transition: width .6s var(--ease); }
.ruler-fill.over { background: #f08a5d; }
.ruler-ticks { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, var(--graphite) 0 1.5px, transparent 1.5px 12.5%); -webkit-mask-image: linear-gradient(180deg, #000 45%, transparent 45%); mask-image: linear-gradient(180deg, #000 45%, transparent 45%); }
.mark { position: absolute; top: 100%; margin-top: 4px; font-size: .7rem; font-weight: 800; white-space: nowrap; transform: translateX(-50%); }
.mark::before { content: ""; position: absolute; left: 50%; bottom: 100%; margin-bottom: 4px; width: 2px; height: 50px; background: var(--blue); }
.mark-4 { left: 50%; color: var(--blue); }
.mark-8 { left: 100%; transform: translateX(-100%); color: var(--blue); }
.mark-8::before { left: auto; right: 0; }
.ticket-total div { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding-top: 12px; border-top: 2px dashed var(--line); }
.ticket-total span { font-weight: 800; text-transform: uppercase; font-size: .85rem; letter-spacing: .06em; }
.ticket-total strong { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 900; font-variation-settings: "wdth" 110; line-height: 1; }
.ticket-total p { margin: 6px 0 18px; font-size: .8rem; color: var(--muted); }

/* marquee */
.marquee { overflow: hidden; background: var(--graphite); color: var(--plaster); border-block: 2px solid var(--graphite); }
.mq-track { display: flex; width: max-content; animation: mq 45s linear infinite; }
.mq-track span { display: flex; align-items: center; gap: 30px; padding: 18px 15px; font-weight: 900; font-size: clamp(1.3rem, 2.4vw, 2rem); text-transform: uppercase; font-variation-settings: "wdth" 120; white-space: nowrap; }
.mq-track span::after { content: "✦"; color: var(--yellow); font-size: .7em; }
@keyframes mq { to { transform: translateX(-50%); } }

/* remodel */
.remodel { padding-block: var(--sec); background: var(--graphite); color: var(--plaster); position: relative; overflow: hidden; }
.remodel::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(245,241,234,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(245,241,234,.04) 1px, transparent 1px); background-size: 40px 40px; }
.remodel .wrap { position: relative; }
.remodel .eyebrow::before { border-color: var(--plaster); }
.remodel .hand { color: var(--yellow); }
.remodel .lede { color: rgba(245,241,234,.7); }
.rooms { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.rooms button { padding: .75em 1.3em; border: 2px solid var(--plaster); border-radius: 6px; background: none; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .88rem; cursor: pointer; transition: background .3s, color .3s; }
.rooms button[aria-selected="true"] { background: var(--yellow); border-color: var(--yellow); color: var(--graphite); }
.plan { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.plan-img { position: relative; margin: 0; border: 2px solid var(--plaster); }
.plan-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: opacity .4s; }
.plan-img img.fade { opacity: 0; }
.note-b { left: 12px; bottom: -40px; color: var(--yellow); transform: rotate(-2deg); }
.plan-stats { display: grid; grid-template-columns: 1fr 1fr; border: 2px solid var(--plaster); }
.plan-stats div { padding: 16px 18px; }
.plan-stats div + div { border-left: 2px solid var(--plaster); }
.plan-stats span { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(245,241,234,.6); }
.plan-stats b { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 900; font-variation-settings: "wdth" 112; color: var(--yellow); }
.plan-scope { margin: 20px 0; color: rgba(245,241,234,.8); }
.gantt { display: grid; gap: 8px; }
.g-row { display: grid; grid-template-columns: 110px 1fr; gap: 12px; align-items: center; font-size: .82rem; font-weight: 700; }
.g-row span { color: rgba(245,241,234,.75); }
.g-track { position: relative; height: 22px; background: rgba(245,241,234,.06); border-radius: 4px; }
.g-bar { position: absolute; top: 0; bottom: 0; border-radius: 4px; background: var(--yellow); transform-origin: left; animation: gbar .7s var(--ease) both; animation-delay: calc(var(--i) * 70ms); }
.g-bar.alt { background: var(--plaster); }
@keyframes gbar { from { transform: scaleX(0); } }
.g-axis { display: grid; grid-template-columns: 110px 1fr; gap: 12px; font-size: .7rem; color: rgba(245,241,234,.5); }
.g-axis div { display: flex; justify-content: space-between; }
.plan-foot { margin: 18px 0 0; font-size: .8rem; color: rgba(245,241,234,.5); }

/* rules */
.rules { padding-block: var(--sec); }
.rules-list { list-style: none; margin: 10px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 2px solid var(--graphite); }
.rules-list li { padding: clamp(20px, 2.4vw, 32px); }
.rules-list li + li { border-left: 2px solid var(--graphite); }
.rules-list span { display: inline-block; margin-bottom: 30px; font-weight: 900; font-size: .85rem; background: var(--yellow); padding: 2px 8px; border: 2px solid var(--graphite); }
.rules-list h3 { font-size: 1.4rem; font-weight: 900; line-height: 1.05; text-transform: uppercase; font-variation-settings: "wdth" 108; margin-bottom: 10px; }
.rules-list p { margin: 0; color: var(--muted); font-size: .95rem; }

/* work */
.work { padding-bottom: var(--sec); }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 260px; gap: 14px; }
.g { position: relative; margin: 0; overflow: hidden; border: 2px solid var(--graphite); background: var(--graphite); }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }
.g img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), opacity .5s; }
.g:hover img { transform: scale(1.05); opacity: .85; }
.g figcaption { position: absolute; left: 0; bottom: 0; padding: 10px 14px; background: var(--plaster); border-top: 2px solid var(--graphite); border-right: 2px solid var(--graphite); font-size: .82rem; color: var(--muted); }
.g figcaption b { display: block; color: var(--graphite); font-size: .95rem; text-transform: uppercase; font-variation-settings: "wdth" 108; }

/* reviews */
.reviews { padding-block: var(--sec); background: var(--yellow); border-block: 2px solid var(--graphite); }
.rev-in { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.reviews .eyebrow::before { background: var(--plaster); }
.reviews .hand { display: block; color: var(--graphite); font-size: .55em; margin-top: 6px; }
.rev-nav { display: flex; align-items: center; gap: 12px; margin-top: 30px; font-weight: 800; }
.rev-nav button { width: 50px; height: 50px; border: 2px solid var(--graphite); border-radius: 6px; background: var(--plaster); cursor: pointer; font-size: 1.1rem; transition: transform .3s var(--ease), box-shadow .3s; }
.rev-nav button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--graphite); }
.rev-stage { display: grid; }
.rev { grid-area: 1 / 1; margin: 0; padding: clamp(24px, 3.4vw, 44px); background: var(--plaster); border: 2px solid var(--graphite); box-shadow: 10px 10px 0 var(--graphite); opacity: 0; transform: translateY(20px) rotate(1deg); pointer-events: none; transition: opacity .5s var(--ease), transform .7s var(--ease); }
.rev.is-on { opacity: 1; transform: none; pointer-events: auto; }
.rev blockquote { margin: 0 0 20px; font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.25; font-weight: 600; font-variation-settings: "wdth" 96; }
.rev blockquote::before { content: "“"; display: block; height: .6em; font-size: 3em; line-height: 1; color: var(--yellow); -webkit-text-stroke: 2px var(--graphite); }
.rev figcaption { color: var(--muted); font-size: .92rem; }
.rev figcaption b { color: var(--graphite); }

/* book */
.book { padding-block: var(--sec); }
.book-in { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.area { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; }
.area li { padding: 5px 12px; border: 2px solid var(--graphite); border-radius: 99px; font-size: .85rem; font-weight: 600; }
.book-contact { margin-top: 24px; font-weight: 800; }
.book-contact a { text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 4px; }
.book-form { position: relative; padding: clamp(20px, 3vw, 36px); background: #fffdf6; border: 2px solid var(--graphite); box-shadow: 10px 10px 0 var(--yellow); }
.kind { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-bottom: 18px; }
.kind label { position: relative; }
.kind input { position: absolute; opacity: 0; pointer-events: none; }
.kind span { display: block; height: 100%; padding: 12px 10px; border: 2px solid var(--graphite); border-radius: 6px; text-align: center; font-weight: 800; font-size: .86rem; cursor: pointer; transition: background .3s; }
.kind input:checked + span { background: var(--yellow); }
.kind input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.f { position: relative; }
.f-wide { grid-column: 1 / -1; }
.f input, .f textarea { width: 100%; padding: 24px 14px 9px; border: 2px solid var(--graphite); border-radius: 6px; background: var(--plaster); font: 500 1rem/1.35 var(--f-body); color: var(--graphite); resize: vertical; }
.f input:focus, .f textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.f label { position: absolute; left: 16px; top: 16px; color: var(--muted); pointer-events: none; transform-origin: left; transition: transform .35s var(--ease), color .3s; }
.f input:focus + label, .f input:not(:placeholder-shown) + label, .f textarea:focus + label, .f textarea:not(:placeholder-shown) + label { transform: translateY(-10px) scale(.74); color: var(--blue); }
.f.bad input { border-color: #d9480f; }
.f-err { margin: 10px 0 0; color: #d9480f; font-weight: 700; font-size: .88rem; }
.f-done { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 6px; padding: 40px; background: #fffdf6; animation: inup .6s var(--ease); }
.stamp-done { margin: 0 0 10px; padding: 6px 14px; border: 3px solid var(--blue); color: var(--blue); font-family: var(--f-hand); font-weight: 700; font-size: 2rem; transform: rotate(-6deg); }
.f-done h3 { font-size: 2.4rem; font-weight: 900; text-transform: uppercase; font-variation-settings: "wdth" 115; }
.f-done p { margin: 0; color: var(--muted); }

/* footer */
.footer { background: var(--graphite); color: rgba(245,241,234,.7); padding-top: clamp(56px, 7vw, 90px); }
.foot-in { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 30px; padding-bottom: 50px; }
.foot-in a:not(.logo), .foot-in p { display: block; margin: 0 0 8px; text-decoration: none; font-size: .94rem; }
.foot-in a:not(.logo):hover { color: var(--yellow); }
.foot-blurb { margin-top: 18px !important; max-width: 26em; }
.f-h { font-size: .74rem !important; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px !important; }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; padding-block: 22px 30px; border-top: 1px solid var(--line-light); font-size: .82rem; }
.foot-bottom p { margin: 0; }
.foot-bottom a { text-decoration: none; }
.mobile-cta { display: none; }

/* responsive */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .hero-in, .est, .plan, .rev-in, .book-in { grid-template-columns: minmax(0, 1fr); }
  .hero-art { max-width: 560px; width: 100%; margin-inline: auto; }
  .ticket { position: static; }
  .rules-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rules-list li:nth-child(3) { border-left: 0; }
  .rules-list li:nth-child(n+3) { border-top: 2px solid var(--graphite); }
  .note-b { bottom: -34px; }
}
@media (max-width: 640px) {
  .topbar p { font-size: .74rem; }
  .topbar a { display: none; }
  .nav-cta { display: none; }
  .logo-word { font-size: 1.1rem; }
  .hero-title { font-size: clamp(3.2rem, 17vw, 4.6rem); }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-art { padding-left: 16px; padding-bottom: 90px; }
  .todo { width: 78%; }
  .jobs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .job { padding: 12px; }
  .job small { font-size: .74rem; }
  .rules-list { grid-template-columns: minmax(0, 1fr); }
  .rules-list li + li { border-left: 0; border-top: 2px solid var(--graphite); }
  .gallery { grid-template-columns: minmax(0, 1fr); grid-auto-rows: 240px; }
  .g-wide { grid-column: auto; }
  .g-tall { grid-row: span 1; }
  .g-row, .g-axis { grid-template-columns: 84px 1fr; font-size: .74rem; }
  .kind, .fields { grid-template-columns: minmax(0, 1fr); }
  .foot-in { grid-template-columns: 1fr 1fr; }
  .foot-in > div:first-child { grid-column: 1 / -1; }
  .mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 30; display: flex; justify-content: center; gap: 8px; padding: 16px; border: 2px solid var(--graphite); border-radius: 6px; background: var(--yellow); color: var(--graphite); font-weight: 900; text-transform: uppercase; text-decoration: none; box-shadow: 4px 4px 0 var(--graphite); transform: translateY(160%); transition: transform .5s var(--ease); }
  .mobile-cta.show { transform: none; }
  .footer { padding-bottom: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], .in-up { opacity: 1; transform: none; }
}
