:root {
  --ink: #17212b;
  --muted: #5d6874;
  --paper: #f8f7f3;
  --white: #ffffff;
  --line: #d9dedc;
  --teal: #0c6f6e;
  --teal-dark: #084f50;
  --gold: #d69427;
  --clay: #af4f34;
  --blue: #255b8f;
  --shadow: 0 22px 60px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(248, 247, 243, 0.94);
  border-bottom: 1px solid rgba(23, 33, 43, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-weight: 800;
  background: var(--teal);
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 12vw, 130px) clamp(18px, 5vw, 68px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 29, 37, 0.84), rgba(9, 29, 37, 0.54), rgba(9, 29, 37, 0.22)),
    url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1800&q=82")
      center / cover;
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.community h2,
.contact h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 9vw, 6.8rem);
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
}

.service-strip a {
  padding: 18px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.service-strip a:hover {
  background: var(--teal);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 68px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}

.intro h2,
.section-heading h2,
.community h2,
.contact h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.intro p:not(.eyebrow),
.community p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  display: grid;
  gap: 26px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 18px;
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(300px, 1fr);
  min-height: 440px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-panel.reversed {
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.86fr);
}

.service-panel.reversed .service-image {
  order: 2;
}

.service-image {
  min-height: 320px;
  background-position: center;
  background-size: cover;
}

.streaming-image {
  background-image: url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=1300&q=82");
}

.security-image {
  background-image: url("https://images.unsplash.com/photo-1557597774-9d273605dfa9?auto=format&fit=crop&w=1300&q=82");
}

.repair-image {
  background-image: url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1300&q=82");
}

.digital-image {
  background-image: url("https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?auto=format&fit=crop&w=1300&q=82");
}

.service-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 58px);
}

.service-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 900;
}

.service-copy h3,
.why-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.service-copy p,
.why-grid p {
  margin: 0;
  color: var(--muted);
}

.service-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.service-copy li {
  position: relative;
  padding-left: 22px;
}

.service-copy li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.community {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 68px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 42, 55, 0.92), rgba(16, 42, 55, 0.76)),
    url("https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=1800&q=82")
      center / cover;
}

.community p {
  max-width: 740px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.event-list span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px;
  color: var(--ink);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}

.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.why-grid div {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 68px);
  background: var(--teal-dark);
  color: var(--white);
}

.contact p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-line {
  display: block;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  border-radius: 8px;
}

.contact-line span,
.contact-line strong {
  display: block;
}

.contact-line span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-line strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 68px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-open .site-nav {
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 720px;
    background-position: 58% center;
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .service-panel,
  .service-panel.reversed,
  .community,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-panel.reversed .service-image {
    order: 0;
  }

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

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 10px;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 660px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.8rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip a {
    text-align: left;
  }

  .event-list {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 0;
  }
}
