/* Tantalize Records — shared styles for /artist-development/, /record-label/, /your-sound-2026/ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Kode+Mono:wght@400;500;700&family=Poiret+One&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #000;
  --bg-2: #0a0a0a;
  --bg-3: #141414;
  --fg: #fff;
  --muted: #9e9e9e;
  --line: rgba(255, 255, 255, 0.10);
  --red: #f23633;
  --red-hover: #ff463f;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; }
body { font-family: 'Poppins', system-ui, sans-serif; font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- HERO ---------- */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 140px 32px 100px;
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(242,54,51,0.20), transparent 60%),
    radial-gradient(50% 70% at 90% 70%, rgba(242,54,51,0.10), transparent 60%),
    var(--bg);
  position: relative; overflow: hidden;
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero-eyebrow {
  font-family: 'Kode Mono', monospace; font-size: 13px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 32px;
}
.hero h1 {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(56px, 11vw, 168px); line-height: 0.88;
  letter-spacing: -0.04em; margin: 0 0 36px;
  text-transform: uppercase;
}
.hero h1 .accent, .hero h1 .year { color: var(--red); display: block; }
.hero-sub {
  font-family: 'Poppins', sans-serif; font-size: clamp(17px, 1.6vw, 22px);
  color: rgba(255,255,255,0.78); max-width: 760px; margin: 0 0 44px; line-height: 1.5;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; transition: all .2s ease;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

/* ---------- SECTIONS — refined rhythm ---------- */
.section {
  padding: 96px 0;                /* equal top + bottom — no double padding from border */
  border-top: 1px solid var(--line);
}
.section:first-of-type { border-top: 0; padding-top: 64px; }
.section + .section { padding-top: 96px; }  /* override Framer's section-reset */

.section-tag {
  font-family: 'Kode Mono', monospace; font-size: 12px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px;
}
.section-title {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(32px, 4.2vw, 64px);       /* sized so the LONGEST title ("Artist Development Inquiry") fits on one line at 1280px+ */
  letter-spacing: -0.03em; line-height: 1.02;
  margin: 0 0 20px;
  text-transform: uppercase;
  white-space: nowrap;                       /* force single line */
  max-width: none;
}
/* On smaller viewports, allow wrap so text doesn't overflow */
@media (max-width: 900px) {
  .section-title {
    font-size: clamp(28px, 6vw, 44px);
    white-space: normal;
  }
}
.section-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 720px;
  margin: 0 0 40px;                          /* breathing room before the grid/list below */
  line-height: 1.55;
}
.section-title + .section-lead { margin-top: 0; }
/* Ensure grids/cards have a top gap from the lead paragraph */
.section-lead + .grid,
.section-lead + .tags,
.section-lead + .steps,
.section-lead + .form-wrap,
.section-lead + .feature-list,
.section-title + .grid,
.section-title + .tags,
.section-title + .steps,
.section-title + .form-wrap,
.section-title + .feature-list {
  margin-top: 8px;
}

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px;
  padding: 36px; transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.card:hover { border-color: rgba(242,54,51,0.6); background: var(--bg-3); }
.card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 14px; text-transform: uppercase; }
.card p { margin: 0; color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; }

/* Compact step list — 2 columns on desktop/tablet, 1 column on mobile, tighter spacing */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 100%;
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 8px; } }

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.step-n {
  font-family: 'Kode Mono', monospace;
  font-size: 20px;
  font-weight: 500;
  color: var(--red);
  line-height: 1;
  padding-top: 2px;
}
.step h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.step p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  line-height: 1.4;
}

.tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tag {
  display: inline-block; padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--bg-2);
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

/* ---------- CTA BAND ---------- */
section.cta-band {
  background: var(--red) !important; color: #fff !important;
  padding: 120px 32px 140px !important;
  text-align: center !important;
  position: relative !important; overflow: hidden !important;
  margin: 80px 24px 24px 24px !important;   /* breathing room above + side gutter so the rounded corners show */
  border-radius: 32px !important;            /* polished card look */
  display: block !important;
  width: auto !important;                    /* let margins shrink width */
  box-sizing: border-box !important;
}
section.cta-band::before {
  content: "" !important; position: absolute !important; inset: 0 !important;
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(255,255,255,0.08), transparent 70%),
    radial-gradient(50% 50% at 50% 100%, rgba(0,0,0,0.15), transparent 70%) !important;
  pointer-events: none !important;
}
section.cta-band > .cta-band-inner {
  position: relative !important; max-width: 880px !important; margin: 0 auto !important;
  display: flex !important; flex-direction: column !important; align-items: center !important;
}
section.cta-band .cta-eyebrow {
  font-family: 'Kode Mono', monospace !important; font-size: 12px !important; font-weight: 500 !important;
  letter-spacing: 0.18em !important; text-transform: uppercase !important;
  color: rgba(255,255,255,0.85) !important; margin: 0 0 48px 0 !important;
}
section.cta-band h2 {
  font-family: 'Poppins', sans-serif !important; font-weight: 900 !important;
  font-size: clamp(48px, 6vw, 88px) !important; letter-spacing: -0.03em !important; line-height: 0.95 !important;
  margin: 0 0 36px 0 !important; text-transform: uppercase !important; color: #fff !important;
}
section.cta-band p {
  margin: 0 auto 64px auto !important; font-size: clamp(16px, 1.3vw, 19px) !important; max-width: 560px !important;
  color: rgba(255,255,255,0.95) !important; line-height: 1.55 !important;
}
section.cta-band .hero-ctas { justify-content: center !important; gap: 16px !important; flex-wrap: wrap !important; display: flex !important; }
section.cta-band .btn-primary {
  background: #000 !important; color: #fff !important;
  padding: 18px 36px !important; font-size: 12px !important; letter-spacing: 0.16em !important;
  border-radius: 999px !important; font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important; text-transform: uppercase !important; border: 1.5px solid #000 !important;
}
section.cta-band .btn-primary:hover { background: #111 !important; transform: translateY(-2px) !important; }
section.cta-band .btn-secondary {
  background: transparent !important; color: #fff !important;
  border: 1.5px solid #fff !important; padding: 18px 36px !important;
  font-size: 12px !important; letter-spacing: 0.16em !important; border-radius: 999px !important;
  font-family: 'Poppins', sans-serif !important; font-weight: 600 !important; text-transform: uppercase !important;
}
section.cta-band .btn-secondary:hover { background: #fff !important; color: var(--red) !important; }

/* ---------- FORM ---------- */
.form-wrap { max-width: 820px; margin: 0 auto; }
.form-grid { display: grid; gap: 24px; }
.form-row-2 { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 10px; }
.field label {
  font-family: 'Kode Mono', monospace; font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.field label .req { color: var(--red); margin-left: 4px; }
.field input, .field textarea, .field select {
  background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 12px 0; font-size: 16px; font-family: inherit;
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-bottom-color: var(--red); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field textarea { resize: vertical; min-height: 100px; }

/* ---------- PULL QUOTE / FEATURE LIST ---------- */
.pull-quote {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px); letter-spacing: -0.03em; line-height: 1.05;
  text-transform: uppercase;
}
.pull-quote .red { color: var(--red); }
.feature-list { display: grid; gap: 12px; max-width: 720px; padding: 0; margin: 0; list-style: none; }
.feature-list li {
  padding: 16px 24px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  font-size: 15px;
}
.feature-list li::before { content: "→"; color: var(--red); margin-right: 14px; font-weight: 700; }

/* ---------- UTILS ---------- */
.center-text { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
