/* ==========================================================================
   Next Steps Development — brand tokens
   ========================================================================== */
:root {
  --ink: #35204F;          /* wordmark deep purple */
  --purple: #6B2FA0;
  --violet: #870BA9;       /* sail purple */
  --magenta: #D6266F;
  --flame: #E8451E;        /* "DEVELOPMENT" orange-red */
  --orange: #F67645;
  --gold: #F7C844;
  --paper: #FFFFFF;
  --soft: #F8F5FC;         /* faint purple-tinted section bg */
  --text: #40355A;
  --muted: #6E6485;

  --grad: linear-gradient(100deg, var(--gold) 0%, var(--orange) 30%, var(--magenta) 65%, var(--violet) 100%);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Lora", Georgia, serif;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(53, 32, 79, 0.10);
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
}

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 600; }

a { color: var(--flame); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 2px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.9rem;
}
.eyebrow-light { color: var(--gold); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-flame { background: var(--flame); color: #fff; }
.btn-flame:hover { background: #D23A15; }
.btn-purple { background: var(--ink); color: #fff; }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #E9B72E; }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(53, 32, 79, 0.08);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.brand-mark { height: 38px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-name em { font-style: normal; color: var(--flame); font-weight: 600; letter-spacing: 0.14em; font-size: 0.72em; display: block; line-height: 1; }
.nav-links { margin-left: auto; display: flex; gap: 1.4rem; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
}
.nav-links a:hover { color: var(--flame); }
.nav-cta { padding: 0.6rem 1.2rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--paper);
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) 1.25rem clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
}
.hero-copy .lede { font-size: 1.18rem; color: var(--muted); margin: 1.2rem 0 2rem; max-width: 34em; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-art { text-align: center; }
.hero-logo {
  width: min(100%, 380px);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(135, 11, 169, 0.18));
}
.grad-rule { height: 5px; background: var(--grad); flex-shrink: 0; }

/* ==========================================================================
   About
   ========================================================================== */
.about {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 5.5rem) 1.25rem;
}
.about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.about-copy .eyebrow { margin-bottom: 1.4rem; }
.about-copy h2 { margin-bottom: 1.6rem; }
.about-copy p { margin-bottom: 1.8rem; max-width: 36em; }
.about-copy .btn { margin-top: 1rem; }
.about-card {
  background: linear-gradient(160deg, #fff 0%, var(--soft) 100%);
  border: 1px solid rgba(53, 32, 79, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-left: 1.5rem;
}
.about-photo {
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}
.about-card figcaption { display: grid; gap: 0.15rem; }
.about-card strong { font-family: var(--font-display); color: var(--ink); font-size: 1.1rem; }
.about-card span:last-child { color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  background: var(--ink);
  color: #EDE7F6;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5.5rem) 1.25rem;
}
.contact h2 { color: #fff; }
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-copy p { color: #C9BEDD; max-width: 32em; margin: 1.3rem auto 0; }
.contact-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.2rem;
}
.contact-list { list-style: none; margin-top: 3.2rem; display: grid; gap: 1.2rem; }
.contact-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-list a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}
.contact-list a:hover { color: var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #2A1940;
  color: #C9BEDD;
  padding: 2.5rem 1.25rem;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
}
.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-mark { background: #fff; border-radius: 8px; padding: 3px; }
.footer-contact a { color: #EDE7F6; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.footer-legal { font-size: 0.85rem; color: #8E7FAB; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-logo { width: min(70%, 300px); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; }
}
