/* ==========================================================================
   TV Solutions — tvsols.com
   Serif display over a sans body. Black, white, soft gray, one muted blue.
   The brand gradient lives only in the logo file so the page stays quiet.
   ========================================================================== */

:root {
  --ink: #0b0c0e;
  --ink-2: #3d434c;
  --muted: #767c87;
  --line: #e6e8ec;
  --blue: #1f4fc7;

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
p { margin: 0; }

h1, h2 { font-weight: 400; margin: 0; }

.wrap {
  width: 100%;
  max-width: 1020px;
  margin-inline: auto;
  padding-inline: clamp(22px, 5vw, 48px);
}

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 3px; }

/* --------------------------------------------------------------- header -- */

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.brand-logo { width: 30px; flex: none; }

.btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--blue); }

/* ----------------------------------------------------------------- hero -- */

.hero { padding: clamp(76px, 13vw, 152px) 0 clamp(64px, 10vw, 112px); }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.6vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.012em;
  max-width: 17ch;
  text-wrap: balance;
  margin-bottom: 30px;
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 54ch;
}

/* ------------------------------------------------------------- practice -- */

.practice { padding-bottom: clamp(76px, 11vw, 124px); }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4.5vw, 52px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.practice-grid h2 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.practice-grid h2::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 18px;
}
.practice-grid p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 720px) {
  .practice-grid { grid-template-columns: 1fr; gap: 30px; }
}

.note {
  margin-top: clamp(48px, 6.5vw, 76px);
  font-size: 1.02rem;
  color: var(--ink-2);
  max-width: 58ch;
}

.scope {
  margin-top: 22px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 64ch;
}

/* -------------------------------------------------------------- contact -- */

.contact {
  background: var(--ink);
  color: #fff;
  padding: clamp(78px, 11vw, 124px) 0;
}
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  max-width: 17ch;
  text-wrap: balance;
}
.contact-sub {
  margin-top: 20px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.64);
  max-width: 48ch;
}

.contact-grid { display: flex; flex-wrap: wrap; gap: 22px 56px; }
.contact-item { text-decoration: none; color: #fff; }
.contact-item span {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}
.contact-item strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}
.contact-item:hover strong { border-bottom-color: #fff; }

/* --------------------------------------------------------------- footer -- */

.site-footer {
  padding: 28px 0;
  font-size: 13.5px;
  color: var(--muted);
}
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
