:root {
  --bg: #2A0E05;
  --surface: #3A1408;
  --text: #FFF7ED;
  --muted: #FDBA74;
  --primary: #F97316;
  --secondary: #FB7185;
  --accent: #FACC15;
  --border: rgba(255, 247, 237, 0.14);
  --max-w: 1280px;
  --style-brutalism: brutalism;
  --style-minimal: minimal;
  --style-monochrome: monochrome;
  --style-raw: raw;
  --style-rigid-grid: rigid grid;
  --style-bold-borders: bold borders;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(180deg, rgba(249, 115, 22, 0.06) 0%, transparent 40%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(255, 247, 237, 0.02) 48px,
      rgba(255, 247, 237, 0.02) 49px
    );
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(251, 113, 133, 0.08), transparent 55%);
}

main {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

.compliance-banner {
  width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  text-align: center;
  line-height: 1.45;
  color: var(--text);
  background-color: var(--surface);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 247, 237, 0.04),
    rgba(255, 247, 237, 0.04) 8px,
    rgba(255, 247, 237, 0.08) 8px,
    rgba(255, 247, 237, 0.08) 16px
  );
  position: relative;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--bg);
  border-bottom: 4px solid var(--primary);
  height: 56px;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo img {
  height: 32px;
  width: auto;
}

.header-nav {
  display: none;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 4px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 600;
}

.header-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--accent);
}

.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 3px solid var(--border);
  padding: 8px 10px;
  cursor: pointer;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--text);
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  padding: 80px 24px 24px;
}

.mobile-overlay.open {
  display: block;
}

.mobile-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.mobile-nav a {
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
}

.brutalist-label {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent);
  border: 3px solid var(--accent);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.site-footer {
  background: var(--surface);
  border-top: 4px solid var(--primary);
  padding: 48px 24px 24px;
  position: relative;
  z-index: 1;
  margin-top: auto;
  flex-shrink: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 247, 237, 0.03) 20px,
    rgba(255, 247, 237, 0.03) 22px
  );
  pointer-events: none;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links h4,
.footer-legal h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--text);
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
  font-size: 14px;
  color: var(--muted);
}

.footer-badges {
  max-width: var(--max-w);
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.footer-badges a {
  display: block;
}

.footer-badges img {
  height: 40px;
  width: auto;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 2px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

.footer-cookie-link {
  font-size: 12px;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 14, 5, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.hidden {
  display: none;
}

.modal-box {
  background: var(--surface);
  border: 4px solid var(--primary);
  padding: 32px;
  max-width: 440px;
  width: 100%;
}

.modal-box h2 {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid var(--border);
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 4px solid var(--accent);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 12px;
}

.legal-content h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 28px 0 12px;
  color: var(--accent);
}

.legal-content h3 {
  font-size: 1rem;
  margin: 16px 0 8px;
}

.legal-content p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-content ul {
  margin: 12px 0 12px 20px;
  color: var(--muted);
  font-size: 14px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border: 3px solid var(--accent);
}

.info-cta-link:hover {
  background: var(--accent);
  color: var(--bg);
}

@media (min-width: 900px) {
  .header-nav {
    display: flex;
  }

  .burger-btn {
    display: none;
  }
}

@media (max-width: 899px) {
  .header-nav {
    display: none;
  }
}

.contact-layout {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.contact-layout h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 12px;
}

.contact-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 3px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}

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

.form-error {
  display: none;
  font-size: 12px;
  color: var(--secondary);
  margin-top: 6px;
}

.contact-success {
  display: none;
  padding: 32px;
  border: 4px solid var(--accent);
  background: var(--surface);
}

.contact-success h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--accent);
}

.contact-success p {
  font-size: 15px;
  color: var(--muted);
}
