:root {
  --bg: #f8f6f1;
  --ink: #16140f;
  --card: rgba(255, 255, 255, 0.8);
  --accent: #c0532d;
  --accent-dark: #8d371b;
  --muted: #5b564a;
  --line: rgba(22, 20, 15, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', sans-serif;
  background: radial-gradient(circle at 10% 10%, #fff8e2 0, transparent 45%),
              radial-gradient(circle at 90% 80%, #ffd7ca 0, transparent 40%),
              var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.45;
  z-index: -1;
}

.bg-shape-one {
  width: 300px;
  height: 300px;
  background: #ffb34d;
  top: -80px;
  right: -40px;
}

.bg-shape-two {
  width: 280px;
  height: 280px;
  background: #ff7d66;
  bottom: -70px;
  left: -80px;
}

.page-shell {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 40px 0 60px;
}

.hero {
  text-align: center;
  margin-bottom: 36px;
  animation: fadeIn 0.8s ease-out;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  margin: 0;
  color: var(--muted);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  margin: 10px 0 4px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.subtitle {
  margin: 0;
  color: var(--muted);
}

.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(192, 83, 45, 0.25);
  background: rgba(255, 255, 255, 0.65);
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.link-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(192, 83, 45, 0.22);
  color: var(--accent);
}

.link-pill:focus-visible {
  outline: 2px solid #f5b7a2;
  outline-offset: 2px;
}

.countdown-card {
  margin: 24px auto 0;
  width: min(720px, 100%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  backdrop-filter: blur(6px);
}

.countdown-card h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(60px, 1fr));
  gap: 14px;
}

.countdown div {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 8px;
}

.countdown span {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
}

.countdown small {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-and-form {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.hoodie-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  backdrop-filter: blur(6px);
  padding: 20px;
}

.hoodie-card h2,
.form-card h2 {
  margin-top: 0;
}

.hoodie-card p,
.form-note {
  margin-top: 0;
  color: var(--muted);
}

.product-toggle {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 12px;
}

.toggle-button {
  border: 1px solid rgba(22, 20, 15, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.toggle-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(22, 20, 15, 0.12);
}

.toggle-button.active {
  color: var(--accent-dark);
  border-color: rgba(192, 83, 45, 0.45);
  background: rgba(255, 255, 255, 0.9);
}

.hoodie-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 11px;
  border: 1px solid var(--line);
  padding: 12px;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #f5b7a2;
  border-color: transparent;
}

textarea {
  resize: vertical;
}

button {
  margin-top: 6px;
  border: 0;
  border-radius: 11px;
  padding: 13px;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #da6d44);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(192, 83, 45, 0.25);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  min-height: 1.3em;
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.form-status.success {
  color: #1f7a2d;
}

.form-status.error {
  color: #9a2020;
}

.bot-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .product-and-form {
    grid-template-columns: 1fr;
  }

  .page-shell {
    padding-top: 24px;
  }
}
