@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&family=Fredoka+One&family=Permanent+Marker&display=swap');

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* ── ROOT / BODY ── */
body {
  background: #C1783A;
  background-image: repeating-linear-gradient(
    180deg,
    transparent, transparent 20px,
    rgba(0,0,0,0.07) 20px, rgba(0,0,0,0.07) 21px
  );
  font-family: 'Lora', Georgia, serif;
  color: #1A1A1A;
  min-height: 100vh;
}

/* ── HEADER ── */
.site-header {
  padding: 20px 24px 16px;
  text-align: center;
  background: #C1783A;
  background-image: repeating-linear-gradient(
    180deg,
    transparent, transparent 20px,
    rgba(0,0,0,0.07) 20px, rgba(0,0,0,0.07) 21px
  );
}
.sign-wrap {
  display: inline-block;
  background: #3A9E3A;
  border-radius: 5px;
  padding: 8px 12px;
  box-shadow: 0 4px 0 #267326, 0 5px 10px rgba(0,0,0,0.3);
  text-decoration: none;
}
.sign-inner {
  background: #fff;
  border-radius: 2px;
  padding: 6px 16px 8px;
  display: flex;
  align-items: center;
}
.sign-word {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #D42B1E;
  letter-spacing: 2px;
  line-height: 1;
}
.sign-dash {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #D42B1E;
  padding: 0 3px;
  line-height: 1;
}
.sign-e-box {
  background: #3A9E3A;
  border-radius: 2px;
  padding: 4px 10px 5px;
  margin: 0 2px;
}
.sign-e-box span {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.store-manager {
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  color: #FFFDE8;
  letter-spacing: 0.08em;
  margin-top: 8px;
  opacity: 0.85;
}

/* ── NAV ── */
.site-nav {
  background: #1A1A1A;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.site-nav a {
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #F5F0E4;
  text-decoration: none;
  padding: 10px 22px;
  border-right: 1px solid #444;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:first-child { border-left: 1px solid #444; }
.site-nav a:hover { background: #D42B1E; color: #fff; }

/* ── CONTENT AREA ── */
.content-area {
  background: #F5F0E4;
  max-width: 800px;
  margin: 0 auto;
  border-left: 1px solid #d4c9b0;
  border-right: 1px solid #d4c9b0;
}

/* ── STORE WALL BAND ── */
.store-wall-band {
  background: #7BAEC5;
  height: 5px;
  border-bottom: 2px solid #5A8EA8;
}

/* ── GREEN SHELF DIVIDER ── */
.shelf-divider {
  height: 8px;
  background: #3A9E3A;
  border-bottom: 2px solid #267326;
}

/* ── SQUISHEE CUPS ── */
.sq-label {
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  color: #555;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}
.sq-cups {
  display: flex;
  gap: 5px;
  align-items: flex-end;
}

/* ── FOOTER ── */
.site-footer {
  background: #1A1A1A;
  border-top: 3px solid #D42B1E;
  padding: 14px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-family: 'Fredoka One', cursive;
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.06em;
}
.footer-thank {
  font-family: 'Fredoka One', cursive;
  font-size: 11px;
  color: #3A9E3A;
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════
   HOMEPAGE STYLES
   ════════════════════════════════════ */

.hero-review {
  padding: 32px 36px 28px;
  border-bottom: 3px solid #3A9E3A;
  position: relative;
}
.hero-review .price-tag {
  position: absolute;
  top: 28px;
  right: 36px;
  background: #FFFDE8;
  border: 2px solid #D42B1E;
  border-radius: 3px;
  padding: 8px 12px;
  text-align: center;
  transform: rotate(2deg);
  box-shadow: 2px 2px 0 rgba(0,0,0,0.12);
}
.price-tag .pt-label {
  font-family: 'Fredoka One', cursive;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #888;
  display: block;
  text-transform: uppercase;
}
.price-tag .pt-cups { margin: 4px 0 2px; }
.price-tag .pt-max {
  font-family: 'Fredoka One', cursive;
  font-size: 9px;
  color: #aaa;
  display: block;
}
.episode-label {
  font-family: 'Fredoka One', cursive;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #3A9E3A;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.review-title {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 520px;
}
.review-excerpt {
  font-family: 'Lora', serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  max-width: 560px;
  margin-bottom: 20px;
}
.read-more {
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  color: #D42B1E;
  text-decoration: none;
  border-bottom: 2px solid #D42B1E;
  padding-bottom: 1px;
}
.read-more:hover { color: #267326; border-color: #267326; }

/* Review list */
.section-header {
  padding: 20px 36px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.section-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}
.section-header a {
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  color: #3A9E3A;
  text-decoration: none;
}
.section-header a:hover { color: #D42B1E; }

.review-list { padding: 12px 36px 24px; }
.review-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #ddd6c4;
  text-decoration: none;
  color: inherit;
}
.review-row:last-child { border-bottom: none; }
.review-row:hover .rr-title { color: #D42B1E; }

.rr-ep {
  font-family: 'Fredoka One', cursive;
  font-size: 11px;
  color: #aaa;
  min-width: 58px;
  flex-shrink: 0;
}
.rr-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  flex: 1;
  line-height: 1.2;
  transition: color 0.15s;
}
.rr-cups {
  flex-shrink: 0;
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

/* About strip */
.about-strip {
  background: #1A1A1A;
  padding: 28px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.staff-badge {
  background: #3A9E3A;
  color: #fff;
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 10px 12px;
  text-align: center;
  flex-shrink: 0;
  border-radius: 2px;
  line-height: 1.5;
  text-transform: uppercase;
}
.about-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFFDE8;
  margin-bottom: 8px;
}
.about-text p {
  font-family: 'Lora', serif;
  font-size: 13.5px;
  color: #bbb;
  line-height: 1.75;
}

/* ════════════════════════════════════
   REVIEW PAGE STYLES
   ════════════════════════════════════ */

.ep-hero {
  padding: 28px 36px 26px;
  border-bottom: 3px solid #3A9E3A;
}
.back-link {
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  color: #267326;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
}
.back-link:hover { color: #D42B1E; }

.ep-stamp {
  display: inline-block;
  font-family: 'Fredoka One', cursive;
  font-size: 14px;
  color: #D42B1E;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-1.2deg) skewX(-0.5deg);
  padding: 2px 8px;
  border: 2.5px solid #D42B1E;
  border-radius: 2px;
  margin-bottom: 10px;
  opacity: 0.85;
}
.ep-title {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 600px;
}

/* Wall signs */
.wall-signs {
  background: #A8C5D4;
  padding: 18px 36px 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.no-sign {
  background: #FFFDE8;
  border: 2.5px solid #1A1A1A;
  padding: 8px 12px 10px;
  transform: rotate(-2.2deg);
  flex-shrink: 0;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.22);
}
.no-sign .no-big {
  font-family: 'Permanent Marker', cursive;
  font-size: 28px;
  color: #D42B1E;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}
.no-sign ul { list-style: none; }
.no-sign ul li {
  font-family: 'Fredoka One', cursive;
  font-size: 11px;
  color: #333;
  line-height: 1.7;
}
.no-sign ul li::before { content: '· '; color: #888; }

.wall-sign {
  background: #FFFDE8;
  border: 1.5px solid rgba(0,0,0,0.2);
  padding: 10px 14px 13px;
  flex: 1;
  box-shadow: 2px 3px 0 rgba(0,0,0,0.14);
  position: relative;
}
.wall-sign.mvp { transform: rotate(1.1deg); }
.wall-sign.joke { transform: rotate(-0.7deg); }
.wall-sign::before {
  content: '';
  display: block;
  width: 38px;
  height: 13px;
  background: rgba(255,235,100,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.ws-category {
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  color: #D42B1E;
  display: block;
  margin-bottom: 5px;
  border-bottom: 1.5px solid #e0d5c0;
  padding-bottom: 5px;
}
.ws-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 16px;
  color: #1A1A1A;
  display: block;
  line-height: 1.2;
  margin-bottom: 5px;
}
.ws-desc {
  font-family: 'Lora', serif;
  font-size: 11.5px;
  color: #444;
  line-height: 1.55;
  font-style: italic;
}

/* Couch gag */
.couch-gag-block {
  background: #E8E0CC;
  border-top: 1px solid #d4c9b0;
  border-bottom: 3px solid #3A9E3A;
  padding: 18px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.couch-gag-left { flex-shrink: 0; }
.couch-label {
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  color: #555;
  display: block;
  margin-bottom: 6px;
}
.couch-desc-label {
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 4px;
}
.couch-desc-text {
  font-family: 'Lora', serif;
  font-size: 13.5px;
  color: #333;
  line-height: 1.6;
  font-style: italic;
}

/* Review body */
.review-body {
  padding: 26px 36px 28px;
  border-bottom: 1px solid #d4c9b0;
  overflow: hidden;
}
.review-image {
  float: right;
  margin: 4px 0 16px 24px;
  max-width: 260px;
  width: 38%;
}
.review-image img {
  width: 100%;
  display: block;
  border: 2px solid #d4c9b0;
}
.review-image figcaption {
  font-family: 'Fredoka One', cursive;
  font-size: 10px;
  color: #888;
  text-align: center;
  margin-top: 5px;
}
.review-body p {
  font-family: 'Lora', serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.review-body p:last-child { margin-bottom: 0; }
.review-body::after { content: ''; display: table; clear: both; }

/* Receipt */
.receipt-wrap {
  padding: 28px 36px 32px;
  background: #F5F0E4;
}
.receipt {
  background: #FEFCF5;
  border-left: 1px dashed #ccc;
  border-right: 1px dashed #ccc;
  max-width: 360px;
  margin: 0 auto;
  padding: 0 24px;
}
.receipt-tear {
  height: 16px;
  background: repeating-linear-gradient(90deg, #FEFCF5 0px, #FEFCF5 8px, transparent 8px, transparent 14px);
  border-top: 1px dashed #bbb;
}
.receipt-tear.bottom {
  border-top: none;
  border-bottom: 1px dashed #bbb;
}
.receipt-content { padding: 18px 0 16px; }
.receipt-header { text-align: center; margin-bottom: 14px; }
.rh-store {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.15em;
  display: block;
}
.rh-sub {
  font-family: 'Fredoka One', cursive;
  font-size: 10px;
  color: #888;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}
.receipt-divider {
  border: none;
  border-top: 1px dashed #ddd;
  margin: 10px 0;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 12px;
  align-items: flex-start;
}
.rr-item {
  font-family: 'Fredoka One', cursive;
  font-size: 11px;
  color: #777;
  white-space: nowrap;
  flex-shrink: 0;
}
.rr-val {
  font-family: 'Fredoka One', cursive;
  font-size: 11px;
  color: #1A1A1A;
  text-align: right;
  line-height: 1.4;
}
.receipt-cups-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.receipt-total .rr-item {
  font-size: 13px;
  color: #D42B1E;
}
.receipt-footer {
  text-align: center;
  margin-top: 14px;
  font-family: 'Fredoka One', cursive;
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.08em;
  line-height: 2.2;
}

/* ════════════════════════════════════
   ARCHIVE PAGE STYLES
   ════════════════════════════════════ */

.archive-hero {
  padding: 28px 36px 24px;
  border-bottom: 3px solid #3A9E3A;
}
.archive-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
}
.archive-hero p {
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  color: #777;
}

.season-group { border-bottom: 1px solid #d4c9b0; }
.season-label {
  background: #3A9E3A;
  padding: 8px 36px;
  font-family: 'Fredoka One', cursive;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}
.season-reviews { padding: 0 36px; }
.season-reviews .review-row { padding: 14px 0; }

/* ════════════════════════════════════
   ABOUT PAGE STYLES
   ════════════════════════════════════ */
.about-content {
  padding: 36px 36px 40px;
}
.about-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 20px;
}
.about-content p {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.85;
  color: #1A1A1A;
  margin-bottom: 16px;
  max-width: 620px;
}

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 600px) {
  .sign-word { font-size: 26px; }
  .sign-e-box span { font-size: 26px; }
  .sign-dash { font-size: 22px; }
  .ep-title, .review-title { font-size: 28px; }
  .wall-signs { flex-direction: column; }
  .hero-review { padding: 20px; }
  .hero-review .price-tag { position: static; transform: none; margin-bottom: 16px; display: inline-block; }
  .ep-hero, .review-body, .receipt-wrap, .about-content { padding: 20px; }
  .review-list, .season-reviews, .section-header, .archive-hero { padding-left: 20px; padding-right: 20px; }
  .review-image { width: 50%; max-width: 180px; }
  .site-footer { padding: 14px 20px; }
  .couch-gag-block { flex-direction: column; padding: 16px 20px; }
  .about-strip { padding: 20px; flex-direction: column; }
}
