:root {
  --red: #d7192a;
  --red-dark: #9c0d1a;
  --blue: #123a73;
  --navy: #071427;
  --cream: #fff1cf;
  --paper: #fff8e7;
  --ink: #151515;
  --muted: #6f6a60;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0,0,0,.22);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215,25,42,.25), transparent 28rem),
    linear-gradient(180deg, #fff4d8 0%, #f9e1a8 42%, #fff8e7 100%);
}

p, a, input, select, textarea, button, label, span {
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem clamp(1rem, 4vw, 3rem);
  background: rgba(7, 20, 39, .92);
  backdrop-filter: blur(14px);
  color: var(--white);
  border-bottom: 4px solid var(--red);
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.brand img { width: 48px; height: 48px; border-radius: 50%; }
nav { display: flex; gap: clamp(.65rem, 2vw, 1.4rem); flex-wrap: wrap; justify-content: flex-end; }
nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .08em;
  opacity: .9;
}
nav a:hover { color: var(--cream); opacity: 1; }


.storefront-top {
  background: var(--navy);
  border-bottom: 5px solid var(--red);
}
.storefront-top img {
  width: 100%;
  max-height: 68vh;
  object-fit: cover;
  object-position: center;
}

.section-pad { padding: clamp(3rem, 7vw, 6rem) clamp(1.1rem, 5vw, 4.5rem); }
.hero {
  min-height: 58vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.eyebrow {
  margin: 0 0 .65rem;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .82rem;
}
h1, h2, h3 { margin: 0; line-height: .92; text-transform: uppercase; }
h1 {
  font-size: clamp(4.3rem, 14vw, 12rem);
  color: var(--navy);
  text-shadow: 5px 5px 0 var(--red), 8px 8px 0 rgba(0,0,0,.13);
  letter-spacing: .01em;
}
h2 { font-size: clamp(2.3rem, 7vw, 5rem); color: var(--navy); }
h3 { font-size: clamp(1.45rem, 4vw, 2.2rem); color: var(--navy); }
.tagline {
  display: inline-block;
  margin: .75rem 0 1.2rem;
  padding: .45rem .7rem .35rem;
  background: var(--red);
  color: var(--cream);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  transform: rotate(-1.5deg);
  box-shadow: 8px 8px 0 var(--navy);
}
.lede {
  max-width: 650px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: #2e2a23;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  border: 0;
  cursor: pointer;
}
.primary { background: var(--red); color: var(--white); box-shadow: 0 8px 0 var(--red-dark); }
.secondary { background: var(--navy); color: var(--white); box-shadow: 0 8px 0 #000; }
.button:hover { transform: translateY(2px); box-shadow: 0 5px 0 rgba(0,0,0,.65); }
.hero-art {
  padding: clamp(.6rem, 2vw, 1rem);
  background: var(--navy);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-art img { border-radius: 50%; }


.hero-art-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  padding: 0;
}
.hero-art-stack .hero-logo {
  width: min(430px, 78vw);
  margin: 0 auto;
  border-radius: 50%;
  background: var(--navy);
  padding: .55rem;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-stand-card {
  display: block;
  text-decoration: none;
  background: var(--navy);
  color: var(--cream);
  border: 4px solid var(--red);
  border-radius: 22px;
  padding: .55rem;
  box-shadow: 8px 8px 0 rgba(0,0,0,.22);
  max-width: 520px;
  margin: 0 auto;
  transform: rotate(-1deg);
}
.hero-stand-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
}
.hero-stand-card span {
  display: block;
  margin-top: .5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-stand-card small {
  display: block;
  margin-top: .15rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #f6dfb0;
}

.notice-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: .9rem 1rem;
  color: var(--cream);
  background: var(--navy);
  border-block: 5px solid var(--red);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
}
.notice-bar span { font-size: .87rem; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: 1rem;
}
.card, .menu-item, .pack-card, .shirt-card, .price-card, .order-panel, .contact-card {
  background: rgba(255,255,255,.86);
  border: 4px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 rgba(7,20,39,.22);
}
.card { padding: 1.5rem; }
.card p { line-height: 1.5; color: #3d362e; margin-bottom: 0; }
.dark-card { background: var(--navy); color: var(--white); }
.dark-card h2 { color: var(--cream); font-size: clamp(2.2rem, 5vw, 4.2rem); }
.dark-card p { color: var(--cream); }

.section-heading { max-width: 840px; margin: 0 auto 2rem; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }
.menu-grid { display: grid; gap: 1rem; max-width: 1100px; margin: 0 auto; }
.menu-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
}
.menu-thumb {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  background: #f4f0e8;
  border: 3px solid rgba(7,20,39,.15);
}

.menu-item p { margin: .45rem 0 0; line-height: 1.45; color: #39332b; }
.menu-item strong, .pack-card strong, .price-card h3 {
  color: var(--red);
  font-size: clamp(2rem, 5vw, 3.4rem);
  white-space: nowrap;
}
.menu-item.feature { background: #fff1c1; }
.menu-item.big-bad { background: var(--navy); color: var(--white); }
.menu-item.big-bad h3, .menu-item.big-bad strong { color: var(--cream); }
.menu-item.big-bad p { color: #f6dfb0; }
.menu-item.big-bad .menu-thumb { border-color: rgba(255,241,207,.35); background: rgba(255,255,255,.12); }

.packs {
  max-width: 1100px;
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.pack-card { padding: 1.35rem; }
.pack-card p:not(.eyebrow) { line-height: 1.45; color: #39332b; }
.red-card { background: var(--red); color: var(--white); }
.red-card h3, .red-card strong, .red-card .eyebrow { color: var(--cream); }
.red-card p:not(.eyebrow) { color: var(--white); }
.extras-row {
  max-width: 1100px;
  margin: 1.2rem auto 0;
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  justify-content: center;
}
.extras-row span {
  padding: .6rem .8rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-weight: 900;
  text-transform: uppercase;
}


.storefront-card {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,.86);
  border: 4px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 rgba(7,20,39,.22);
  overflow: hidden;
}
.storefront-card img {
  width: 100%;
  height: auto;
  display: block;
}

.merch-section { background: linear-gradient(180deg, rgba(7,20,39,.96), rgba(18,58,115,.96)); color: var(--white); }
.merch-section h2, .merch-section h3 { color: var(--cream); }
.merch-section .section-heading p:not(.eyebrow) { color: #e7d6b1; }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.shirt-card, .price-card { padding: 1rem; background: rgba(255,255,255,.08); border-color: var(--cream); color: var(--white); }
.shirt-card img { width: 100%; border-radius: calc(var(--radius) - 8px); background: #000; }
.shirt-card p, .price-card p { line-height: 1.45; color: #f8e6bd; }
.price-card { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.price-card h3 { font-size: clamp(4.5rem, 10vw, 8rem); color: var(--cream); text-shadow: 5px 5px 0 var(--red); }

.orders-section { background: var(--paper); }
.order-panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.order-panel p { line-height: 1.55; color: #3d362e; }
.order-form { display: grid; gap: .85rem; }
.order-form label { font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.order-form input, .order-form select, .order-form textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .85rem;
  border: 3px solid var(--navy);
  border-radius: 14px;
  font-size: 1rem;
  background: #fffdf7;
}
.hidden { display: none; }

.contact-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 1.4rem;
  padding: 1.2rem;
  background: #fff7de;
}
.contact-card img { border-radius: 50%; background: var(--cream); }
.contact-card p { line-height: 1.45; }
.thai { font-size: 1.2rem; font-weight: 900; color: var(--red); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  background: #050a12;
  color: var(--cream);
}
.site-footer a { text-transform: uppercase; font-weight: 900; text-decoration: none; }

.thanks-page { min-height: 100vh; display: grid; place-items: center; background: var(--navy); color: var(--cream); }
.thanks-wrap { max-width: 680px; text-align: center; padding: 2rem; }
.thanks-wrap img { width: min(300px, 70vw); margin: 0 auto 1.5rem; border-radius: 50%; }
.thanks-wrap h1 { font-size: clamp(3rem, 8vw, 6rem); color: var(--cream); text-shadow: 5px 5px 0 var(--red); }
.thanks-wrap p { font-size: 1.15rem; line-height: 1.5; margin-bottom: 2rem; }

@media (max-width: 900px) {
  .hero, .intro-grid, .merch-grid, .order-panel, .contact-card { grid-template-columns: 1fr; }
  .hero { text-align: center; min-height: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { max-width: 560px; margin: 0 auto; }
  .intro-grid { padding-top: 2rem; }
  .packs { grid-template-columns: 1fr; }
  .contact-card { text-align: center; }
  .contact-card img { margin: 0 auto; }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  h1 { font-size: 4.2rem; }
  .menu-item { grid-template-columns: 1fr; }
  .menu-thumb { width: 100%; max-width: 320px; height: auto; justify-self: center; }
  .menu-item strong { justify-self: start; }
  .notice-bar { justify-content: flex-start; }
}

.page-title {
  font-size: clamp(3.4rem, 10vw, 8rem);
  color: var(--navy);
  text-shadow: 4px 4px 0 var(--red), 7px 7px 0 rgba(0,0,0,.12);
}
.locations-hero .section-heading { margin-bottom: 1.4rem; }
.location-card { max-width: 1180px; }


.th, .th-nav, nav a small, .button small, .notice-bar small, .extras-row small, strong small, label small, .site-footer small {
  display: block;
  font-family: "Tahoma", "Noto Sans Thai", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
}
.th {
  margin: .2rem 0 .55rem;
  color: #7b302a;
  font-size: .88rem;
  opacity: .88;
}
.big-th { font-size: clamp(1rem, 2vw, 1.35rem); }
.dark-card .th, .merch-section .th, .big-bad .th, .red-card .th { color: #ffe8b6; opacity: .92; }
.brand span { display: grid; line-height: 1.05; }
.th-nav { font-size: .72rem; opacity: .8; margin-top: .12rem; }
nav a { display: grid; gap: .08rem; line-height: 1.1; }
nav a small { font-size: .68rem; opacity: .72; }
.button { flex-direction: column; gap: .05rem; }
.button small { font-size: .72rem; opacity: .85; }
.notice-bar span { display: grid; gap: .15rem; text-align: center; }
.notice-bar small { font-size: .7rem; color: #ffe6b0; opacity: .86; }
.menu-item .th, .pack-card .th, .shirt-card .th, .price-card .th, .order-panel .th, .contact-card .th { font-size: .86rem; }
.menu-item strong small, .pack-card strong small {
  font-size: .78rem;
  color: inherit;
  opacity: .85;
  margin-top: -.25rem;
}
.extras-row span { display: grid; gap: .08rem; text-align: center; }
.extras-row small { font-size: .68rem; color: #ffe6b0; opacity: .86; }
.order-form label small { font-size: .78rem; color: var(--red); margin-top: .1rem; }
.site-footer a { display: grid; gap: .08rem; }
.site-footer small { font-size: .72rem; opacity: .8; }

.intro-grid .card > p:first-child {
  margin-top: 0;
}
.intro-grid .card:not(.dark-card) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.merch-grid-updated .shirt-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: linear-gradient(180deg, #f6f6f6 0%, #ececec 100%);
}
.merch-price-card {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--red);
}
.merch-price-card p { color: #2d2922; }
.merch-price-card .th { color: #7b302a; }
.location-tagline {
  background: var(--navy);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--red);
  font-size: clamp(1rem, 2vw, 1.25rem);
}


.paypal-block {
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 3px solid rgba(7,20,39,.18);
}
.paypal-block p {
  margin: 0 0 .4rem;
}
.paypal-button {
  margin-top: .35rem;
}


/* v16 clean page layout */
.home-body {
  background: var(--navy);
}
.home-main, .home-compact {
  min-height: calc(100svh - 78px);
}
.home-compact {
  display: grid;
  grid-template-rows: minmax(240px, 45svh) 1fr;
  background: var(--paper);
}
.home-stand {
  min-height: 0;
  background: var(--navy);
  border-bottom: 5px solid var(--red);
  overflow: hidden;
}
.home-stand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: .35rem;
  text-align: center;
  padding: clamp(.8rem, 3vw, 1.4rem) 1rem;
}
.home-logo {
  width: clamp(64px, 18vw, 110px);
  border-radius: 50%;
  background: var(--navy);
  padding: .2rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
}
.home-title {
  font-size: clamp(3rem, 12vw, 6.5rem);
}
.home-panel .eyebrow {
  margin: .15rem 0 0;
  font-size: .74rem;
}
.home-panel .tagline {
  margin: .15rem 0 .25rem;
  padding: .34rem .58rem .28rem;
  font-size: .82rem;
  box-shadow: 5px 5px 0 var(--navy);
}
.home-lede {
  margin: .05rem 0 0;
  font-size: clamp(1rem, 3.6vw, 1.2rem);
  line-height: 1.3;
  color: #2e2a23;
}
.home-panel .th {
  margin: 0;
}
.home-actions {
  justify-content: center;
  gap: .55rem;
  margin-top: .45rem;
}
.home-actions .button {
  min-height: 40px;
  padding: .62rem .9rem;
  font-size: .78rem;
}
.about-hero {
  padding-bottom: 0;
}
@media (max-width: 620px) {
  .home-body .site-header {
    flex-direction: row;
    align-items: center;
    padding: .5rem .65rem;
    gap: .55rem;
  }
  .home-body .brand {
    flex: 0 0 auto;
    gap: .45rem;
  }
  .home-body .brand img { width: 38px; height: 38px; }
  .home-body .brand span { display: none; }
  .home-body nav {
    gap: .2rem;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
  }
  .home-body nav a {
    flex: 1 1 0;
    text-align: center;
    font-size: .82rem;
    letter-spacing: .03em;
  }
  .home-body nav a small { font-size: .60rem; }
  .home-main, .home-compact {
    min-height: calc(100svh - 59px);
  }
  .home-compact {
    grid-template-rows: 42svh 1fr;
  }
}


/* v17: tighten menu page spacing and remove wasted mobile height */
.menu-page-compact {
  padding-top: clamp(1.4rem, 4vw, 2.5rem);
}

.menu-page-compact .section-heading {
  margin-bottom: 1rem;
}

.menu-page-compact .section-heading .eyebrow,
.menu-page-compact .section-heading .th,
.menu-page-compact .section-heading .big-th {
  margin-bottom: .25rem;
}

.menu-page-compact .section-heading h2 {
  font-size: clamp(2.5rem, 10vw, 4.5rem);
}

@media (max-width: 720px) {
  .section-pad {
    padding-top: 1.6rem;
    padding-bottom: 1.8rem;
  }

  .menu-page-compact {
    padding-top: 1.2rem;
  }

  .menu-page-compact .section-heading {
    margin-bottom: .75rem;
  }

  .menu-page-compact .section-heading h2 {
    font-size: 3rem;
    line-height: .9;
  }

  .menu-page-compact .section-heading p {
    margin-top: .15rem;
    margin-bottom: .15rem;
  }

  .menu-item {
    gap: .7rem;
    padding: .85rem;
  }

  .menu-thumb {
    height: auto;
  }
}

.location-map-heading {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.map-card img {
  width: 100%;
  height: auto;
}
.merch-hat-section {
  padding-top: 0;
}
