/* --------------------------------------------------
   NAK3D — Block-based brand system
-------------------------------------------------- */

:root {
  --pink: #D3279D;
  --gold: #D3B327;
  --green: #27D35D;
  --blue: #2747D3;

  --bg-dark: #000000;
  --text-main: #FFFEF0;
  --text-muted: rgba(255, 254, 240, 0.7);

  --max-width: 900px;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.55;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* Logo */
.logo {
  height: 40px;
  margin-bottom: 1.25rem;
}

/* Blocks */
.block-dark {
  background: var(--bg-dark);
}

.block-pink {
  background: var(--pink);
}

.block-gold {
  background: var(--gold);
  color: #1a1a1a;
}

.block-blue {
  background: var(--blue);
}

/* Typography */
h1 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  max-width: 70ch;
}

.subhead {
  max-width: 60ch;
  opacity: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  opacity: 0.75;
}

/* Lists */
.bullets {
  padding-left: 1.2rem;
  margin: 1.5rem 0;
}

.bullets li {
  margin-bottom: 0.6rem;
}

/* Emphasis */
.emphasis {
  font-weight: 600;
  margin-top: 1.5rem;
}

.accent-green {
  color: var(--green);
}

.muted {
  color: var(--text-muted);
}

/* CTA */
.cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button {
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-main);
  border: 1px solid currentColor;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}

.primary {
  background: var(--green);
  color: #000000;
  border: none;
}

.ghost {
  background: transparent;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 254, 240, 0.15);
  font-size: 0.85rem;
}

footer a {
  color: var(--green);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 600px) {
  .container {
    padding: 3rem 1.25rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}
/* Contact form */

.contact-form {
  max-width: 480px;
}

.contact-form label {
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.6rem;
  border-radius: 4px;
  border: none;
  font-family: inherit;
}

.contact-form input,
.contact-form textarea {
  background: rgba(0,0,0,0.25);
  color: var(--text-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green);
}


