@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --paper: #ffffff;
  --paper-raised: #fffcf3;
  --ink: #262220;
  --flame: #e35c1e;
  --flame-dark: #c14a15;
  --steel: #9a9186;
  --steel-dim: #b8b0a2;
  --checker-black: #201c1a;
  --line: #e4dcc8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 108px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Public Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.checker-stripe {
  height: 14px;
  width: 100%;
  background-image: conic-gradient(
    var(--checker-black) 90deg, var(--paper) 90deg 180deg,
    var(--checker-black) 180deg 270deg, var(--paper) 270deg
  );
  background-size: 14px 14px;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 24px 14px;
}

.brand-logo {
  display: block;
  height: 64px;
  width: auto;
}

.brand-meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--steel);
}

/* ---------- Main ---------- */

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 24px 80px;
}

.menu-section {
  padding-top: 44px;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}

.section-heading h2 {
  font-family: 'Public Sans', sans-serif;
  font-weight: 700;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
  color: var(--ink);
}

.item-list {
  margin-top: 14px;
  border-top: 2px solid var(--ink);
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.item-row.is-soldout {
  opacity: 0.5;
}

.item-main {
  flex: 1;
}

.item-name-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.item-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.item-desc {
  margin: 6px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--steel);
  max-width: 56ch;
}

.item-price {
  font-family: 'Public Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--flame-dark);
  white-space: nowrap;
  padding-top: 1px;
}

.tag {
  font-family: 'Public Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

.tag-favorite {
  background: var(--flame);
  color: var(--paper-raised);
}

.tag-soldout {
  background: transparent;
  color: var(--steel);
  border: 1px solid var(--steel-dim);
}

/* ---------- Thank you note ---------- */

.thank-you-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.thank-you-note p {
  margin: 0;
  padding: 24px;
  border: 1.5px solid #2a2625;
  border-radius: 0;
  background: #ff5a00;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #2a2625;
  text-align: center;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px 40px;
  text-align: center;
}

.footer-checker {
  height: 14px;
  width: 100%;
  margin-bottom: 24px;
  background-image: conic-gradient(
    var(--checker-black) 90deg, var(--paper) 90deg 180deg,
    var(--checker-black) 180deg 270deg, var(--paper) 270deg
  );
  background-size: 14px 14px;
}

.footer-text {
  font-size: 12.5px;
  color: var(--steel);
}

/* ---------- Responsive ---------- */

@media (max-width: 560px) {
  .brand-logo { height: 46px; }
  .item-price { font-size: 15px; }
  .item-name { font-size: 15px; }
}
