:root {
  --ink: #1a1410;
  --chalk: #f6f1ea;
  --paper: #fffaf4;
  --muted: #6e6258;
  --line: rgba(26, 20, 16, 0.12);
  --hot: #ff4d2e;
  --hot-deep: #d93616;
  --navy: #1e2a44;
  --sage: #3d5c54;
  --display: "Alfa Slab One", serif;
  --sans: "Mulish", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--chalk);
  line-height: 1.65;
}

.awning {
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    var(--hot) 0 28px,
    var(--paper) 28px 56px
  );
}

.utility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  justify-content: space-between;
  padding: 0.45rem clamp(1.1rem, 4vw, 3rem);
  background: var(--navy);
  color: #f0e8df;
  font-size: 0.8rem;
  font-weight: 700;
}

.utility a { color: #ffb4a4; }

a { color: var(--hot-deep); }

.facade-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1.1rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo em {
  font-style: normal;
  color: var(--hot);
}

.facade-bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.facade-bar nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.facade-bar nav a:hover { color: var(--hot-deep); }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  position: relative;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
}

.burger::before { top: 15px; }
.burger::after { top: 24px; }

.front {
  padding: clamp(2.5rem, 7vh, 4.5rem) clamp(1.1rem, 4vw, 3rem) 3rem;
}

.window {
  max-width: 920px;
  margin: 0 auto;
  background: var(--navy);
  border: 10px solid #2a354f;
  box-shadow:
    0 0 0 6px #c4b8a8,
    0 30px 60px rgba(26, 20, 16, 0.2);
  position: relative;
}

.window::before,
.window::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.window::before {
  inset: 0 50% 0 0;
  border-right: 2px solid rgba(255, 255, 255, 0.12);
}

.window::after {
  inset: 0 0 50% 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.window-glass {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.2rem);
  color: #f6f1ea;
}

.brand {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
  margin: 0 0 1.1rem;
  color: var(--hot);
  letter-spacing: 0.02em;
}

.front h1 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 16ch;
  font-weight: 400;
}

.lead {
  margin: 0 0 1.5rem;
  color: rgba(246, 241, 234, 0.75);
  max-width: 42ch;
  font-size: 1.05rem;
}

.window-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  text-decoration: none;
  font-weight: 800;
  padding: 0.9rem 1.2rem;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.hot {
  background: var(--hot);
  color: #fff;
}

.btn.cool {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.window-sill {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  padding: 0.85rem 1.4rem;
  background: #c4b8a8;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

section {
  padding: clamp(3.2rem, 8vh, 5rem) clamp(1.1rem, 4vw, 3rem);
}

.block-head {
  max-width: 640px;
  margin-bottom: 1.8rem;
}

.block-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--hot-deep);
}

h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  margin: 0;
  font-weight: 400;
}

.storefronts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.shop {
  border: 2px solid var(--line);
  background: #fff;
  padding: 1rem 0.85rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
  border-radius: 6px 6px 0 0;
  border-bottom-width: 4px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.shop:hover { transform: translateY(-4px); }

.shop.active {
  border-color: var(--hot);
  background: #fff5f2;
}

.shop-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--hot);
  letter-spacing: 0.08em;
}

.shop strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 0.35rem 0 0.2rem;
  font-weight: 400;
}

.shop em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.bays {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 0 12px 12px 12px;
  padding: clamp(1.3rem, 3vw, 2rem);
  min-height: 280px;
}

.bay { display: none; }
.bay.show { display: block; animation: fade 0.35s ease; }

@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.bay h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin: 0 0 0.7rem;
  font-weight: 400;
}

.bay > p {
  color: var(--muted);
  max-width: 70ch;
}

.bay ul {
  columns: 2;
  gap: 1.5rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.tag-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1rem;
  justify-items: center;
}

.swing {
  width: min(100%, 220px);
  background: #fff;
  border: 2px solid var(--ink);
  padding: 1.4rem 1rem 1.1rem;
  text-align: center;
  position: relative;
  transform: rotate(-2deg);
  box-shadow: 4px 6px 0 rgba(26, 20, 16, 0.08);
}

.swing:nth-child(even) { transform: rotate(2deg); }

.swing::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 2px;
  height: 18px;
  background: var(--muted);
  transform: translateX(-50%);
}

.swing::after {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--chalk);
}

.swing span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hot);
}

.swing h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0.4rem 0;
  font-weight: 400;
}

.swing p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.receipt {
  background: var(--navy);
  color: #f6f1ea;
}

.receipt .eyebrow { color: var(--hot); }
.receipt h2 { color: #fff; }

.receipt-slip {
  max-width: 380px;
  margin: 0 auto;
  background: #f3f0e8;
  color: var(--ink);
  padding: 1.5rem 1.3rem;
  font-family: "Mulish", monospace;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.receipt-slip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 10px;
  background:
    linear-gradient(135deg, #f3f0e8 33.33%, transparent 33.33%) -8px 0 / 16px 10px,
    linear-gradient(225deg, #f3f0e8 33.33%, transparent 33.33%) -8px 0 / 16px 10px;
}

.receipt-head {
  text-align: center;
  font-family: var(--display);
  font-size: 1.3rem;
  margin: 0 0 0.3rem;
}

.receipt-sub {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  color: var(--muted);
}

.receipt-slip ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  border-block: 1px dashed var(--muted);
}

.receipt-slip li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.receipt-slip li span:last-child {
  color: var(--hot-deep);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.receipt-total {
  text-align: center;
  font-weight: 800;
  margin: 1rem 0 0.5rem;
  font-size: 0.95rem;
}

.receipt-foot {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.market-board {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.55rem;
}

.market-board > div {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--hot);
  padding: 0.9rem 0.75rem;
  min-height: 140px;
}

.market-board h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  color: var(--hot-deep);
  font-size: 1.2rem;
  font-weight: 400;
}

.market-board p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.stories article {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  max-width: 820px;
}

.stories article:last-child { border-bottom: 1px solid var(--line); }

.stories h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  font-weight: 400;
}

.stories p {
  margin: 0;
  color: var(--muted);
}

.stamp-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 3px dashed var(--line);
  padding: 1.2rem;
  border-radius: 16px;
}

.stamp {
  aspect-ratio: 1;
  border: 2px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  padding: 0.5rem;
  gap: 0.2rem;
}

.stamp.filled {
  border-color: var(--hot);
  color: var(--ink);
  background: #fff5f2;
}

.stamp span {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--hot);
  color: #fff;
  font-size: 0.7rem;
  line-height: 22px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.who-grid article {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.15rem;
  border-radius: 10px;
}

.who-grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
}

.who-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-grid p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.parcel {
  background: #efe8de;
}

.parcel-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  max-width: 1060px;
  margin: 0 auto;
}

.label-box {
  margin-top: 1.3rem;
  background: #fff;
  border: 3px solid var(--ink);
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}

.label-box .from {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 2px dashed var(--line);
}

.parcel form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  background: #fff;
  border: 2px solid var(--line);
  padding: 1.3rem;
  border-radius: 12px;
}

.parcel label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 800;
}

.parcel .full { grid-column: 1 / -1; }

.parcel input,
.parcel select,
.parcel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem;
  font: inherit;
  background: var(--chalk);
}

.parcel button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  background: var(--hot);
  color: #fff;
  font: inherit;
  font-weight: 800;
  padding: 0.9rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--hot-deep);
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2.3rem clamp(1.1rem, 4vw, 3rem) 2.8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer strong {
  font-family: var(--display);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 400;
}

.footer p:last-child { grid-column: 1 / -1; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .storefronts,
  .tag-rail,
  .market-board,
  .stamp-card,
  .who-grid,
  .faq-grid,
  .parcel-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .storefronts { grid-template-columns: 1fr 1fr; }

  .bay ul { columns: 1; }

  .burger { display: block; }

  .facade-bar nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.2rem;
    background: rgba(246, 241, 234, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .facade-bar nav.open { display: flex; }
}

@media (max-width: 640px) {
  .storefronts,
  .tag-rail,
  .market-board,
  .stamp-card,
  .who-grid,
  .faq-grid,
  .parcel-wrap,
  .parcel form,
  .footer {
    grid-template-columns: 1fr;
  }

  .window::before,
  .window::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .bay.show { animation: none; }
  .shop:hover { transform: none; }
}
