:root{
  --bg: #050505;
  --fg: #f2f2f2;
  --muted: rgba(242,242,242,.55);
  --line: rgba(242,242,242,.18);
  --line-strong: rgba(242,242,242,.35);

  /* Accent */
  --accent: #7b37d4;
  --accent-soft: rgba(123,55,212,.22);
}

*{ box-sizing: border-box; }

.ls-contact{
  background: radial-gradient(900px 500px at 70% 40%, rgba(123,55,212,.10), transparent 55%),
              radial-gradient(700px 420px at 20% 65%, rgba(123,55,212,.08), transparent 55%),
              var(--bg);
  color: var(--fg);
  min-height: 100vh;
  padding: clamp(48px, 6vw, 84px) 20px;
}

.ls-contact__inner{
  max-width: 1200px;
  margin: 0 auto;
}

.ls-contact__title{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 clamp(38px, 5vw, 70px);
  font-size: clamp(40px, 5vw, 64px);

  /* subtle accent glow */
  text-shadow: 0 0 26px rgba(123,55,212,.22);
}

.ls-contact__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 120px);
  align-items: start;
}

.ls-contact__kicker{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 28px;
  color: var(--fg);
  position: relative;
}

/* small accent underline under the kicker */
.ls-contact__kicker::after{
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .9;
}

.ls-form{
  max-width: 520px;
}

.ls-field{
  margin-bottom: 26px;
  position: relative;
}

.ls-field input,
.ls-field textarea{
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  padding: 12px 0 12px;
  outline: none;
  font: 300 15px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ls-field textarea{
  resize: vertical;
  min-height: 80px;
}

.ls-field input::placeholder,
.ls-field textarea::placeholder{
  color: var(--muted);
}

/* Accent focus */
.ls-field input:focus,
.ls-field textarea:focus{
  border-bottom-color: var(--accent);
  box-shadow: 0 10px 18px -18px rgba(123,55,212,.8);
}

/* Optional: a faint accent line that appears on focus */
.ls-field::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0%;
  background: var(--accent);
  transition: width .22s ease;
}

.ls-field:has(input:focus)::after,
.ls-field:has(textarea:focus)::after{
  width: 100%;
}

.ls-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 8px;
  padding: 12px 18px;

  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-strong);

  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;

  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

/* Accent hover */
.ls-btn:hover{
  border-color: var(--accent);
  background: rgba(123,55,212,.10);
  box-shadow: 0 12px 30px -18px rgba(123,55,212,.85);
  transform: translateY(-1px);
}

.ls-btn:active{
  transform: translateY(0);
}

.ls-btn--wide{
  margin-top: 26px;
  padding: 14px 18px;
  width: min(520px, 100%);
}

/* If you want the newsletter button to be more "primary" */
.ls-btn--wide{
  border-color: rgba(123,55,212,.75);
  background: linear-gradient(180deg, rgba(123,55,212,.18), rgba(123,55,212,.08));
}

.ls-btn--wide:hover{
  background: linear-gradient(180deg, rgba(123,55,212,.28), rgba(123,55,212,.12));
}

.ls-contact__text{
  max-width: 520px;
  margin: 0 0 26px;
  color: var(--muted);
  font: 300 14px/1.9 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.ls-contact__text a{
  color: var(--accent);
  text-decoration: none;
  transition: color .12s ease;
}

.ls-contact__text a:hover{
  color: var(--accent-light);
}

.ls-social{
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0 10px;
}

.ls-social__link{
  color: var(--fg);
  opacity: .85;
  font-size: 16px;
  text-decoration: none;
  transition: opacity .12s ease, transform .12s ease, color .12s ease, text-shadow .12s ease;
}

.ls-social__link:hover{
  opacity: 1;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(123,55,212,.55);
  transform: translateY(-1px);
}

/* Screen-reader only */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 900px){
  .ls-contact__grid{
    grid-template-columns: 1fr;
  }
  .ls-form,
  .ls-contact__text{
    max-width: 100%;
  }
}

/* Fallback if :has isn't supported (older browsers) */
@supports not selector(:has(*)){
  .ls-field::after{ display:none; }
  .ls-field input:focus,
  .ls-field textarea:focus{
    border-bottom-color: var(--accent);
  }
}
