/* ==========================================================
   TODAY RECORDS
   Direction 1 – Minimal Record Label
   Clean editorial aesthetic with restrained purple accents.
   ========================================================== */

:root{
  --bg-dark:#050505;
  --bg-light:#ffffff;

  --accent:#b58cff;
  --accent-soft:#d8c3ff;

  --text-main:#111111;
  --text-muted:#8b8b8b;

  --border:rgba(255,255,255,.08);

  --radius-sm:4px;
  --radius-md:8px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg-dark);
  color:#fff;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

.container{
  width:min(1120px,100% - 2.5rem);
  margin-inline:auto;
}

/* ---------- HEADER ---------- */

.site-header{
  position:sticky;
  top:0;
  z-index:50;

  background:rgba(5,5,5,.95);
  backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.15rem 0;
}

.nav{
  display:flex;
  gap:2rem;
}

.nav a{
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  transition:.18s;
}

.nav a:hover{
  color:var(--accent);
}

/* ---------- HERO ---------- */

.hero{
  background:#050505;
}

.hero-inner{
  padding:9rem 0;
}

.hero-copy{
  max-width:620px;
}

.hero h1{
  margin:0;
  font-size:clamp(3rem,6vw,5.25rem);
  line-height:.95;
  letter-spacing:-.03em;
  font-weight:700;
}

.hero p{
  margin-top:1.8rem;
  max-width:460px;
  font-size:1.15rem;
  color:#c7c7c7;
}

.accent{
  color:var(--accent);
}

/* ---------- BUTTONS ---------- */

.button-row{
  display:flex;
  gap:1rem;
  margin-top:2rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 28px;

  border-radius:4px;
  text-decoration:none;

  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  font-weight:600;

  transition:.18s ease;
}

.btn-primary{
  background:var(--accent);
  color:#050505;
}

.btn-primary:hover{
  transform:translateY(-2px);
  background:#c6a4ff;
}

.btn-dark{
  color:#fff;
  border:1px solid rgba(255,255,255,.15);
  background:transparent;
}

/* ---------- FEATURE ---------- */

.feature-split{
  background:#fff;
  color:#111;
}

.feature-inner{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:4rem;
  align-items:center;
  padding:7rem 0;
}

.feature-copy h2{
  margin:0 0 1rem;
  font-size:clamp(2.6rem,5vw,4rem);
  line-height:1;
}

.feature-copy p{
  max-width:420px;
  color:#666;
  font-size:1.1rem;
}

.feature-media img{
  width:100%;
  display:block;
  border-radius:0;
}

/* ---------- SERVICES ---------- */

.services{
  background:#050505;
}

.services-title{
  text-align:center;
  padding-top:5rem;
  margin-bottom:4rem;

  color:#fff;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.9rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;

  padding-bottom:5rem;
}

.service-card{
  padding:42px;

  background:#0b0b0b;

  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;

  transition:.18s ease;
}

.service-card:hover{
  transform:translateY(-3px);
  border-color:var(--accent);
}

.service-card h3{
  margin:0 0 1rem;
  font-size:1.4rem;
}

.service-card p{
  margin:0;
  color:#a8a8a8;
  line-height:1.8;
}

/* ---------- APPLY ---------- */

.apply{
  background:#fff;
  color:#111;
  padding:5rem 0;
}

.apply-inner{
  max-width:640px;
  margin:auto;
  text-align:center;
}

.apply-form{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.form-row{
  display:flex;
  gap:1rem;
}

.apply-form input,
.apply-form textarea{
  flex:1;
  padding:14px 16px;

  border:1px solid #ddd;
  border-radius:4px;

  font:inherit;
}

.apply-form textarea{
  resize:vertical;
}

/* ---------- FOOTER ---------- */

.site-footer{
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  padding:2rem 0;

  color:#777;
  font-size:.8rem;

  text-transform:uppercase;
  letter-spacing:.08em;
}

/* ---------- MOBILE ---------- */

@media (max-width:768px){

  .feature-inner{
    grid-template-columns:1fr;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .form-row{
    flex-direction:column;
  }

  .footer-inner{
    flex-direction:column;
    gap:.75rem;
  }

  .hero-inner{
    padding:6rem 0;
  }
}
