:root {
  --cream: #fff6e8;
  --paper: #fffdf7;
  --chilli: #d8262c;
  --deep: #8e1a1e;
  --mustard: #f5b324;
  --brown: #3a2115;
  --display: 'Alfa Slab One', serif;
  --body: 'Karla', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--brown);
  font-size: 17px;
  line-height: 1.65;
}
a {
  color: var(--deep);
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}
img {
  max-width: 100%;
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute;
  left: -9999px;
}
/* Honeypot: kept in the layout (so bots see a real field) but off-screen and
   out of the tab order for humans. Don't use display:none — some bots skip it. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Awning header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
}
.topbar {
  height: 8px;
  background: var(--deep);
}
.stripes {
  height: 26px;
  background: repeating-linear-gradient(
    90deg,
    var(--chilli) 0 44px,
    var(--paper) 44px 88px
  );
}
.scallops {
  height: 22px;
  background: radial-gradient(
        circle 22px at 22px 0,
        var(--chilli) 98%,
        transparent 100%
      )
      0 0 / 88px 22px repeat-x,
    radial-gradient(circle 22px at 22px 0, var(--paper) 98%, transparent 100%)
      44px 0 / 88px 22px repeat-x;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
}
.wordmark {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wordmark .tag {
  background: var(--mustard);
  color: var(--deep);
  border: 2px solid var(--deep);
  border-radius: 6px;
  padding: 0 9px;
  font-size: 0.95rem;
  transform: rotate(-4deg);
  display: inline-block;
}
nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}
nav ul a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: lowercase;
}
nav ul a:hover {
  color: var(--chilli);
}
.nav-cta {
  background: var(--chilli);
  color: var(--paper) !important;
  padding: 9px 18px;
  border-radius: 999px;
}
.nav-cta:hover {
  background: var(--deep);
  color: var(--paper) !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px 80px;
  text-align: center;
}
.hero .arabic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14rem, 38vw, 26rem);
  color: rgba(216, 38, 44, 0.07);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.eyebrow {
  display: inline-block;
  background: var(--paper);
  border: 1.5px dashed var(--deep);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 26px;
}
h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  line-height: 1.1;
  color: var(--brown);
  max-width: 820px;
  margin: 0 auto 22px;
  font-weight: 400;
}
h1 em {
  font-style: normal;
  color: var(--chilli);
}
.hero p.sub {
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 1.15rem;
  color: #5c4632;
}
.tag-cta {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.15rem;
  background: var(--mustard);
  color: var(--deep);
  border: 3px solid var(--deep);
  border-radius: 10px;
  padding: 16px 34px;
  text-decoration: none;
  transform: rotate(-2deg);
  transition: transform 0.15s ease;
  position: relative;
}
.tag-cta::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background: var(--cream);
  border: 2px solid var(--deep);
  border-radius: 50%;
}
.tag-cta:hover {
  transform: rotate(0deg) scale(1.03);
}
.tag-cta span {
  margin-left: 14px;
}
.hero .small {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #7a6350;
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--deep);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 11px 0;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: tick 26s linear infinite;
}
.ticker-group {
  display: inline-block;
  flex: 0 0 auto;
  min-width: 100vw;
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker b {
  color: var(--mustard);
  margin: 0 14px;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-inner {
    animation: none;
  }
}

/* ---------- Sections ---------- */
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 84px 24px;
}
h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  color: var(--brown);
  font-weight: 400;
  margin-bottom: 14px;
}
.section-lede {
  max-width: 620px;
  color: #5c4632;
  font-size: 1.08rem;
  margin-bottom: 48px;
}
.section-lede.tight {
  margin: 0 auto;
}
.divider {
  height: 22px;
  max-width: 1100px;
  margin: 0 auto;
  background: radial-gradient(
      circle 16px at 16px 0,
      var(--chilli) 98%,
      transparent 100%
    )
    0 0 / 64px 16px repeat-x;
  opacity: 0.25;
}

/* ---------- Shelf / product grid ---------- */
.shelf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.crisp {
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 14px;
  padding: 26px 22px 22px;
  position: relative;
  transition: transform 0.15s ease;
}
.crisp:hover {
  transform: translateY(-5px) rotate(-0.5deg);
}
.crisp .heat {
  position: absolute;
  top: -13px;
  right: 16px;
  background: var(--chilli);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  border: 2px solid var(--deep);
}
.crisp .heat.mild {
  background: var(--mustard);
  color: var(--deep);
}
.crisp h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--deep);
}
.crisp .count {
  font-size: 0.85rem;
  font-weight: 700;
  color: #7a6350;
  margin-bottom: 10px;
  display: block;
}
.crisp p {
  font-size: 0.95rem;
  color: #5c4632;
}

/* ---------- Box summary ---------- */
.boxdeal {
  margin-top: 52px;
  background: var(--chilli);
  border-radius: 20px;
  color: var(--paper);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 36px 40px;
  border: 3px solid var(--deep);
}
.boxdeal h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.boxdeal p {
  color: #ffd9b0;
  max-width: 460px;
}
.price-lockup {
  text-align: center;
}
.price-lockup .price {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}
.price-lockup .ship {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd9b0;
  margin-top: 4px;
}
.tag-cta.on-red {
  background: var(--mustard);
  margin-top: 14px;
}

/* ---------- Trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.trust {
  background: var(--paper);
  border: 1.5px dashed var(--deep);
  border-radius: 14px;
  padding: 26px 24px;
}
.trust h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px;
  text-transform: lowercase;
}
.trust p {
  font-size: 0.93rem;
  color: #5c4632;
}

/* ---------- Story ---------- */
.story {
  background: var(--paper);
  border-radius: 20px;
  border: 2px solid var(--brown);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story blockquote {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  color: var(--deep);
  font-weight: 400;
}
.story blockquote footer {
  font-family: var(--body);
  font-size: 0.9rem;
  color: #7a6350;
  margin-top: 18px;
  font-weight: 700;
}
.story .body p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #5c4632;
}
@media (max-width: 760px) {
  .story {
    grid-template-columns: 1fr;
    padding: 36px 26px;
  }
}

/* ---------- FAQ ---------- */
details {
  background: var(--paper);
  border: 1.5px solid var(--brown);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::after {
  content: '+';
  font-family: var(--display);
  color: var(--chilli);
  font-size: 1.2rem;
}
details[open] summary::after {
  content: '–';
}
details p {
  padding: 0 22px 20px;
  font-size: 0.96rem;
  color: #5c4632;
}

/* ---------- Signup ---------- */
.signup {
  text-align: center;
}
.signup form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.signup input {
  font-family: var(--body);
  font-size: 1rem;
  padding: 14px 20px;
  border: 2px solid var(--brown);
  border-radius: 999px;
  min-width: 280px;
  background: var(--paper);
}
.signup button {
  font-family: var(--display);
  font-size: 1rem;
  background: var(--chilli);
  color: var(--paper);
  border: 3px solid var(--deep);
  border-radius: 999px;
  padding: 12px 28px;
  cursor: pointer;
}
.signup button:hover {
  background: var(--deep);
}
.signup button:disabled {
  opacity: 0.6;
  cursor: default;
}
.signup-status {
  margin-top: 18px;
  min-height: 1.4em;
  font-weight: 700;
  font-size: 0.95rem;
}
.signup-status.ok {
  color: var(--deep);
}
.signup-status.error {
  color: var(--chilli);
}

/* ---------- Error pages ---------- */
.error-page {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-page .arabic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14rem, 38vw, 26rem);
  color: rgba(216, 38, 44, 0.07);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.error-page h1 {
  margin-bottom: 18px;
}
.error-page .sub {
  max-width: 460px;
  margin: 0 auto 34px;
  font-size: 1.1rem;
  color: #5c4632;
}

/* ---------- Footer ---------- */
footer.site {
  background: var(--brown);
  color: var(--cream);
  margin-top: 60px;
}
footer.site .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 24px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  font-size: 0.9rem;
}
footer.site h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--mustard);
  margin-bottom: 12px;
}
footer.site a {
  color: var(--cream);
}
footer.site .legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 246, 232, 0.25);
  padding-top: 22px;
  color: #c9b8a5;
  font-size: 0.82rem;
  line-height: 1.8;
}
@media (max-width: 640px) {
  nav ul {
    gap: 16px;
  }
  nav ul li:nth-child(-n + 2) {
    display: none;
  }
}
