:root {
  --ink: #17130f;
  --ink-2: #302921;
  --cream: #fff7e8;
  --paper: #f7eddb;
  --white: #fffdf8;
  --tomato: #e84b31;
  --butter: #f5c84b;
  --cobalt: #3157d5;
  --sky: #dbe4ff;
  --mint: #bce8d2;
  --line: rgba(23, 19, 15, .2);
  --shadow: 8px 8px 0 var(--ink);
  --max: 1200px;
  --display: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --body: 'Trebuchet MS', 'Avenir Next', Avenir, Arial, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
  --ease: cubic-bezier(.2,.8,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font: 16px/1.68 var(--body); -webkit-font-smoothing: antialiased; }
body::before { content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .24; background-image: radial-gradient(rgba(23,19,15,.3) .5px, transparent .5px); background-size: 7px 7px; }
img { display: block; max-width: 100%; }
a { color: var(--cobalt); text-underline-offset: .2em; text-decoration-thickness: .09em; }
a:hover { color: var(--tomato); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 4px solid var(--cobalt); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -10rem; z-index: 100; padding: .8rem 1rem; background: var(--butter); color: var(--ink); font-weight: 900; }
.skip-link:focus { top: 0; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 800px); margin-inline: auto; }

.site-header { position: relative; z-index: 30; border-bottom: 3px solid var(--ink); background: rgba(255,247,232,.97); }
.nav-row { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--ink); text-decoration: none; }
.brand-block { display: grid; place-items: center; width: 46px; height: 46px; border: 3px solid var(--ink); background: var(--tomato); color: white; box-shadow: 4px 4px 0 var(--butter); font: 900 1rem/1 var(--body); transform: rotate(-2deg); }
.brand-copy { font: 900 1.08rem/.95 var(--body); letter-spacing: -.04em; }
.brand-copy small { display: block; margin-top: .22rem; color: var(--tomato); font-size: .57rem; letter-spacing: .14em; text-transform: uppercase; }
.nav-toggle { display: none; min-height: 44px; padding: .55rem .8rem; border: 3px solid var(--ink); background: var(--butter); color: var(--ink); font: 900 .82rem/1 var(--body); text-transform: uppercase; }
.site-nav ul { display: flex; align-items: center; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.site-nav a { display: block; padding: .58rem .65rem; color: var(--ink); font-size: .78rem; font-weight: 900; letter-spacing: .03em; text-decoration: none; text-transform: uppercase; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--cobalt); color: white; }

.ticker { overflow: hidden; border-bottom: 3px solid var(--ink); background: var(--butter); color: var(--ink); }
.ticker-inner { display: flex; width: max-content; gap: 1.5rem; padding: .55rem 0; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.ticker-inner span::after { content: '◆'; margin-left: 1.5rem; color: var(--tomato); }
.hero { overflow: hidden; padding: clamp(2.5rem,7vw,6.5rem) 0; background: var(--ink); color: var(--cream); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr); align-items: center; gap: clamp(2rem,6vw,5.5rem); }
.kicker { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; color: var(--tomato); font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.kicker::before { content: ''; width: 35px; height: 5px; background: currentColor; }
h1, h2, h3 { margin-top: 0; color: var(--ink); }
h1 { margin-bottom: 1.1rem; font: 400 clamp(3.8rem,9.4vw,8.8rem)/.78 var(--display); letter-spacing: -.035em; text-transform: uppercase; }
.hero h1 { color: var(--cream); }
h2 { margin-bottom: 1rem; font: 400 clamp(2.5rem,5.2vw,4.8rem)/.9 var(--display); letter-spacing: -.02em; text-transform: uppercase; }
h3 { margin-bottom: .65rem; font-size: 1.15rem; line-height: 1.2; }
.lead { max-width: 720px; color: var(--ink-2); font: 400 clamp(1.08rem,2vw,1.34rem)/1.55 var(--serif); }
.hero .lead { color: #e7ddcc; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .72rem 1.1rem; border: 3px solid var(--ink); background: var(--butter); color: var(--ink); box-shadow: 5px 5px 0 var(--tomato); font-weight: 900; text-decoration: none; text-transform: uppercase; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.button:hover { color: var(--ink); transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--tomato); }
.button.dark { background: var(--ink); color: white; box-shadow: 5px 5px 0 var(--cobalt); }
.button.dark:hover { color: white; }
.button.outline { background: transparent; color: inherit; box-shadow: none; border-color: currentColor; }
.hero-photo { position: relative; }
.hero-photo::before { content: 'MADE TO ORDER'; position: absolute; top: -24px; right: -10px; z-index: 2; display: grid; place-items: center; width: 112px; aspect-ratio: 1; border: 3px solid var(--ink); border-radius: 50%; background: var(--butter); color: var(--ink); font-size: .67rem; font-weight: 900; letter-spacing: .08em; text-align: center; transform: rotate(9deg); }
.hero-photo img { width: 100%; aspect-ratio: 1.22; object-fit: cover; border: 4px solid var(--cream); box-shadow: 12px 12px 0 var(--tomato); transform: rotate(1.5deg); }

.section { padding: clamp(3.7rem,8vw,7rem) 0; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h2, .section-dark h3, .section-dark .lead { color: var(--cream); }
.section-blue { background: var(--cobalt); color: white; }
.section-blue h2, .section-blue h3, .section-blue .lead { color: white; }
.section-butter { background: var(--butter); }
.section-heading { max-width: 820px; margin-bottom: 2.3rem; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.ticket { position: relative; padding: 1.5rem; border: 3px solid var(--ink); background: var(--white); box-shadow: var(--shadow); }
.ticket::before, .ticket::after { content: ''; position: absolute; top: 26px; width: 18px; height: 18px; border: 3px solid var(--ink); border-radius: 50%; background: var(--paper); }
.ticket::before { left: -12px; } .ticket::after { right: -12px; }
.ticket h3 { font-size: 1.3rem; }
.ticket p:last-child { margin-bottom: 0; }
.card-link { display: block; color: inherit; text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.card-link:hover { color: inherit; transform: translateY(-5px); box-shadow: 11px 13px 0 var(--tomato); }
.ticket-no { display: block; margin-bottom: 1rem; color: var(--tomato); font: 400 2.8rem/1 var(--display); }
.label { display: inline-block; margin-bottom: .8rem; padding: .3rem .5rem; background: var(--ink); color: white; font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.card-media { margin: -1.5rem -1.5rem 1.2rem; overflow: hidden; border-bottom: 3px solid var(--ink); }
.card-media img { width: 100%; aspect-ratio: 1.45; object-fit: cover; transition: transform .45s var(--ease); }
.card-link:hover img { transform: scale(1.04); }
.fact-strip { display: grid; grid-template-columns: repeat(4,1fr); border: 3px solid var(--ink); background: var(--white); box-shadow: var(--shadow); }
.fact-strip > div { padding: 1.25rem; border-right: 2px solid var(--ink); }
.fact-strip > div:last-child { border: 0; }
.fact-strip strong { display: block; margin-bottom: .4rem; color: var(--tomato); font-size: 1rem; }
.steps { counter-reset: step; display: grid; gap: 1rem; padding: 0; list-style: none; }
.steps li { counter-increment: step; position: relative; min-height: 64px; padding: .9rem 1rem .9rem 4.7rem; border-top: 2px solid var(--ink); }
.steps li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: .75rem; color: var(--tomato); font: 400 2.6rem/1 var(--display); }
.quote { margin: 0; padding: 2rem; border: 4px solid var(--cream); color: var(--cream); box-shadow: 9px 9px 0 var(--tomato); font: 700 clamp(1.6rem,3vw,2.8rem)/1.22 var(--serif); }
.note { padding: 1.2rem 1.35rem; border: 3px solid var(--ink); background: var(--butter); box-shadow: 5px 5px 0 var(--tomato); }
.note strong { color: var(--tomato); }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: .72rem 0; padding-left: 2rem; }
.check-list li::before { content: '■'; position: absolute; left: 0; color: var(--tomato); }

.split-photo { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { display: grid; align-content: center; padding: clamp(2rem,6vw,5rem); background: var(--tomato); color: white; }
.split-copy h2, .split-copy .lead { color: white; }
.big-callout { padding: clamp(2rem,5vw,4.5rem); border: 4px solid var(--ink); background: var(--sky); box-shadow: 12px 12px 0 var(--cobalt); }

.page-hero { padding: clamp(3rem,7vw,6rem) 0 3.5rem; border-bottom: 3px solid var(--ink); background: var(--paper); }
.page-hero h1 { max-width: 1000px; font-size: clamp(3.8rem,8.2vw,7.4rem); }
.breadcrumbs { margin-bottom: 1.25rem; color: #64594e; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.breadcrumbs a { color: inherit; }
.meta-row { display: flex; flex-wrap: wrap; gap: .45rem 1.2rem; margin-top: 1.5rem; color: #64594e; font-size: .76rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.article-layout { display: grid; grid-template-columns: minmax(0,780px) 260px; justify-content: space-between; gap: 3rem; align-items: start; }
.article-body { min-width: 0; }
.article-body > p:first-of-type { color: var(--ink); font: 400 1.25rem/1.62 var(--serif); }
.article-body h2 { margin-top: 3.2rem; font-size: clamp(2.1rem,4vw,3.4rem); }
.article-body h3 { margin-top: 2rem; }
.article-body p, .article-body li { color: #3f372f; }
.article-body li { margin-bottom: .55rem; }
.article-figure { margin: 2rem 0; }
.article-figure img { width: 100%; max-height: 560px; object-fit: cover; border: 4px solid var(--ink); box-shadow: 8px 8px 0 var(--tomato); }
.article-figure figcaption { margin-top: .85rem; color: #6f6257; font-size: .76rem; }
.side-slip { position: sticky; top: 1rem; padding: 1.2rem; border: 3px dashed var(--ink); background: var(--white); }
.side-slip::before { content: 'ORDER NOTES'; display: block; margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--ink); color: var(--tomato); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.side-slip h2 { font-size: 1.8rem; }
.side-slip ul { padding-left: 1.15rem; }
.table-wrap { margin: 2rem 0; overflow-x: auto; border: 3px solid var(--ink); background: var(--white); box-shadow: 6px 6px 0 var(--butter); }
table { width: 100%; min-width: 650px; border-collapse: collapse; }
th, td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--ink); color: white; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
tr:last-child td { border-bottom: 0; }

.site-footer { padding: 4rem 0 2rem; border-top: 6px solid var(--tomato); background: var(--ink); color: #d8cec1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 2rem; }
.site-footer .brand { color: white; }
.site-footer h2 { color: white; font: 900 .8rem/1 var(--body); letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: .45rem 0; }
.site-footer a { color: #f4eadb; }
.disclaimer { max-width: 560px; color: #a99d90; font-size: .75rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.15); color: #9c9084; font-size: .73rem; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; inset: 80px 1rem auto; display: none; padding: .7rem; border: 3px solid var(--ink); background: var(--white); box-shadow: var(--shadow); }
  .site-nav.is-open { display: block; }
  .site-nav ul { display: grid; }
  .site-nav a { padding: .8rem; }
  .hero-grid, .split-photo { grid-template-columns: 1fr; }
  .hero-photo { width: min(88%,680px); margin: 2.5rem auto 0; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .fact-strip { grid-template-columns: repeat(2,1fr); }
  .fact-strip > div:nth-child(2) { border-right: 0; }
  .fact-strip > div:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .article-layout { grid-template-columns: 1fr; }
  .side-slip { position: static; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .wrap, .narrow { width: min(calc(100% - 1.2rem), var(--max)); }
  .nav-row { min-height: 72px; }
  .site-nav { inset: 72px .6rem auto; }
  .brand-block { width: 40px; height: 40px; }
  .brand-copy { font-size: .95rem; }
  .hero h1 { font-size: clamp(3.8rem,22vw,6rem); }
  .page-hero h1 { font-size: clamp(3.2rem,17vw,5rem); }
  .grid-2, .grid-3, .grid-4, .fact-strip { grid-template-columns: 1fr; }
  .fact-strip > div { border-right: 0; border-bottom: 2px solid var(--ink); }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { text-align: center; }
  .hero-photo::before { width: 88px; top: -18px; font-size: .55rem; }
  .ticket { box-shadow: 6px 6px 0 var(--ink); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .big-callout { box-shadow: 7px 7px 0 var(--cobalt); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
