/* =========================================================
   Luck Is For Dudes — styles
   CHANGE COLOURS HERE (the :root block). Save & refresh browser.
   ========================================================= */

:root {
  /* Brand colours — edit these hex codes to re-theme the whole site */
  --yellow: #FF9F1C;
  --yellow-hot: #FFC14D;
  --red: #E63946;
  --red-dark: #C1121F;
  --ink: #111111;
  --ink-soft: #2B2B2B;
  --paper: #FFFDF5;
  --panel: #FFFFFF;
  --blue-pop: #1D7AFC;
  --muted: #5C5C5C;
  --line: #111111;
  --shadow: 4px 4px 0 #111111;
  --shadow-lg: 8px 8px 0 #111111;
  --radius: 12px;
  --max-width: 1100px;
  --header-h: 72px;
  --font-display: "Bangers", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-pop);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red-dark);
}

:focus-visible {
  outline: 3px solid var(--blue-pop);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 3px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  color: inherit;
  text-decoration: none;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  color: #fff;
}

.btn-secondary {
  background: var(--panel);
  color: var(--ink);
}

.btn-full {
  width: 100%;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--yellow);
  border-bottom: 4px solid var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  text-shadow: 2px 2px 0 #fff;
}

.logo:hover {
  color: var(--ink);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 2px 2px 0 var(--ink);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 3px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.35rem;
}

.nav-list a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  border: 3px solid transparent;
  border-radius: 999px;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--panel);
  border-color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  outline: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.08) 0 1.5px, transparent 2px),
    radial-gradient(circle at 40% 70%, rgba(0, 0, 0, 0.07) 0 1.5px, transparent 2px),
    linear-gradient(135deg, var(--yellow) 0%, var(--yellow-hot) 45%, #FF7A00 100%);
  border-bottom: 4px solid var(--ink);
}

.hero-burst {
  position: absolute;
  inset: auto -10% -40% auto;
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: repeating-conic-gradient(from 0deg, var(--red) 0 12deg, transparent 12deg 24deg);
  opacity: 0.18;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 40rem;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-shadow:
    3px 3px 0 #fff,
    6px 6px 0 var(--ink);
}

.hero-tagline {
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 600;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Sections shared ---------- */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-kicker {
  margin: 0 0 0.4rem;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-intro {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---------- About ---------- */
.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  margin: 0 0 1rem;
}

.about-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.about-points li {
  position: relative;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.about-points li::before {
  content: "★";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.1rem;
}

.about-placeholder,
.about-photo {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
}

.about-photo {
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: #ddd;
}

.placeholder-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0 2px, transparent 3px),
    linear-gradient(145deg, var(--blue-pop), #4CC9F0);
  text-align: center;
  color: #fff;
}

.placeholder-badge {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-8deg);
  background: var(--red);
  border: 4px solid var(--ink);
  border-radius: 50%;
  width: 7rem;
  height: 7rem;
  display: grid;
  place-items: center;
  box-shadow: 4px 4px 0 var(--ink);
}

.placeholder-caption {
  font-weight: 800;
  padding: 0.5rem 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  line-height: 1.35;
}

.placeholder-caption small {
  font-weight: 600;
  opacity: 0.9;
}

/* ---------- Products ---------- */
.products {
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(0, 0, 0, 0.03) 18px,
      rgba(0, 0, 0, 0.03) 19px
    ),
    #FFF8E0;
  border-block: 4px solid var(--ink);
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.product-art {
  display: grid;
  place-items: center;
  min-height: 150px;
  border-bottom: 4px solid var(--ink);
}

.product-art-1 { background: linear-gradient(135deg, #FF9F1C, #FFB703); }
.product-art-2 { background: linear-gradient(135deg, #E63946, #FF6B6B); }
.product-art-3 { background: linear-gradient(135deg, #1D7AFC, #4CC9F0); }
.product-art-4 { background: linear-gradient(135deg, #2A9D8F, #95D5B2); }

.product-emoji {
  font-size: 3.5rem;
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.25));
}

.product-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-name {
  margin: 1rem 1.15rem 0.4rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.product-desc {
  margin: 0 1.15rem 1rem;
  flex: 1;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.98rem;
}

.product-price {
  margin: 0;
  padding: 0.85rem 1.15rem;
  border-top: 3px dashed var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  background: var(--yellow-hot);
}

.product-price span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--red-dark);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact-details {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-details li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--ink);
}

.contact-details strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-details a {
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--red);
  text-decoration: underline;
}

.contact-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.35rem;
}

.form-group label {
  font-weight: 800;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--panel);
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 2px 2px 0 var(--ink);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-pop);
  box-shadow: 3px 3px 0 var(--blue-pop);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  font-weight: 800;
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: #D8F3DC;
  box-shadow: 2px 2px 0 var(--ink);
}

.form-status.is-error {
  background: #FFCDD2;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #f5f5f5;
  padding: 2rem 0;
  border-top: 4px solid var(--yellow);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--yellow);
}

.footer-copy,
.footer-tag {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: #cfcfcf;
  font-weight: 600;
}

/* ---------- Responsive: tablets+ ---------- */
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--yellow);
    border-bottom: 4px solid var(--ink);
    padding: 0.75rem 1rem 1rem;
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.35rem;
  }

  .nav-list a {
    background: var(--panel);
    border-color: var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    text-align: center;
  }
}

/* Slightly reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .product-card {
    transition: none;
  }
}

/* =========================================================
   Holding / Coming Soon page (coming-soon.html)
   ========================================================= */

.holding-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.4) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 25%, rgba(0, 0, 0, 0.08) 0 1.5px, transparent 2px),
    radial-gradient(circle at 50% 80%, rgba(0, 0, 0, 0.07) 0 1.5px, transparent 2px),
    linear-gradient(145deg, var(--yellow) 0%, var(--yellow-hot) 40%, #FF7A00 100%);
}

.holding {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 1.5rem;
  overflow: hidden;
}

.holding-burst {
  position: absolute;
  top: -15%;
  right: -10%;
  width: min(70vw, 480px);
  height: min(70vw, 480px);
  background: repeating-conic-gradient(from 0deg, var(--red) 0 12deg, transparent 12deg 24deg);
  opacity: 0.16;
  border-radius: 50%;
  pointer-events: none;
}

.holding-dots {
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: min(60vw, 380px);
  height: min(60vw, 380px);
  background: repeating-conic-gradient(from 20deg, var(--blue-pop) 0 10deg, transparent 10deg 22deg);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
}

.holding-card {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
}

.holding-kicker {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}

.holding-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-shadow:
    2px 2px 0 var(--yellow),
    4px 4px 0 var(--ink);
}

.holding-stamp {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.45rem 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  background: var(--red);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-3deg);
  text-transform: uppercase;
}

.holding-text {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.holding-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.holding-tags li {
  padding: 0.4rem 0.75rem;
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--yellow-hot);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
}

.holding-form {
  margin: 0 0 1.25rem;
  text-align: left;
}

.holding-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.holding-form-row input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
}

.holding-form-row input:focus {
  outline: none;
  border-color: var(--blue-pop);
  box-shadow: 3px 3px 0 var(--blue-pop);
}

.holding-form-row .btn {
  width: 100%;
}

.holding-form-note {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.holding-form .form-status {
  margin-top: 0.75rem;
  text-align: center;
}

.holding-contact {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.holding-contact a {
  font-weight: 800;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.holding-contact a:hover {
  color: var(--red);
}

.holding-footer {
  position: relative;
  z-index: 1;
  margin: 1.5rem 0 0;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot field — off-screen so bots may fill it, humans never see it */
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.holding-form .btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  box-shadow: var(--shadow);
}

@media (min-width: 520px) {
  .holding-form-row {
    flex-direction: row;
    align-items: stretch;
  }

  .holding-form-row .btn {
    width: auto;
    white-space: nowrap;
  }
}
