@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #555555;
  --line: rgba(17,17,17,.10);
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(0,0,0,.06);
  --radius: 16px;
  --max: 1100px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a.inline{ text-decoration: underline; text-underline-offset: 3px; }
a:hover{ opacity: .9; }

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

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.brand__name{
  font-weight: 700;
  letter-spacing: -0.2px;
}

.nav{
  display:flex;
  gap: 4px;
}
.nav a{
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: rgba(17,17,17,.04);
  color: var(--text);
}

/* Hero */
.hero{
  padding: 56px 0 34px;
}

.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: center;
}

.hero h1{
  margin: 0 0 10px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 62ch;
}

.hero__cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #111;
  color: #fff;
  font-weight: 650;
}
.btn:hover{ opacity: .92; }

.btn--ghost{
  background: #fff;
  color: var(--text);
}

.metaRow{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}
.pill{
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
}

/* Right logo card */
.logoCard{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 220px;
}

.logoCard img{
  width: min(220px, 70%);
  height: auto;
  object-fit: contain;
}

/* Sections */
.section{
  padding: 44px 0;
  border-top: 1px solid rgba(17,17,17,.06);
}

.section__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section__head h2{
  margin:0;
  font-size: 1.45rem;
  letter-spacing: -0.3px;
}
.section__head p{
  margin:0;
  color: var(--muted);
}

/* Services grid */
.grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px;
}

.card h3{
  margin: 0 0 6px;
  font-size: 1.02rem;
  letter-spacing: -0.2px;
}
.card p{
  margin:0;
  color: var(--muted);
}

/* Spotify */
.spotify{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 12px;
}

.spotify iframe{
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 12px;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 12px;
  align-items:start;
}

.list{
  list-style:none;
  margin: 12px 0 0;
  padding: 0;
  display:grid;
  gap: 10px;
}
.list li{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.k{ color: var(--muted); }
.v a{ text-decoration: underline; text-underline-offset: 3px; }

/* Form */
.form label{
  display:grid;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 650;
}

.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(17,17,17,.25);
}
textarea{ resize: vertical; }

.form__actions{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: #fff;
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  align-items:center;
  color: var(--muted);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .logoCard{ min-height: 180px; }
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .brand__name{ display:none; }
  .grid{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }
  .spotify iframe{ height: 420px; }
}
/* Social icons */
.social{
  margin-top: 18px;
  display:flex;
  gap: 16px;
}

.social a{
  color: #111;
  display:flex;
  align-items:center;
  justify-content:center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  transition: all .2s ease;
}

.social a:hover{
  background:#111;
  color:#fff;
  transform: translateY(-2px);
}

