:root {
  --dark: #0d1210;
  --dark-2: #121915;
  --paper: #f8f5ed;
  --paper-2: #eee8dc;
  --ink: #121512;
  --muted: #545b53;
  --line: #bfb8aa;
  --red: #c95436;
  --red-dark: #9f392b;
  --green: #244b2c;
  --green-2: #63a653;
  --blue: #2d6f9b;
  --gold: #c8922e;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% -10%, rgba(201, 84, 54, .08), transparent 28%),
    linear-gradient(180deg, #fcfaf4 0, #f3eee5 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  align-items: center;
  background: rgba(12, 17, 15, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: white;
  display: flex;
  height: 108px;
  justify-content: space-between;
  padding: 0 54px;
}

.brand,
.main-nav {
  align-items: center;
  display: flex;
}

.brand {
  gap: 18px;
}

.brand-ring {
  align-items: center;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.brand-name {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand-by {
  font-size: 16px;
  margin-left: -8px;
}

.main-nav {
  gap: 48px;
  height: 100%;
}

.main-nav a {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-weight: 900;
  height: 100%;
  letter-spacing: .06em;
  position: relative;
  text-transform: uppercase;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  background: var(--red);
  bottom: 25px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.hero {
  background:
    linear-gradient(90deg, rgba(12,17,15,.97) 0%, rgba(12,17,15,.95) 42%, rgba(12,17,15,.34) 58%, rgba(12,17,15,.08) 100%),
    var(--dark);
  color: white;
  display: grid;
  grid-template-columns: minmax(650px, 47%) 1fr;
  min-height: 620px;
}

.hero-copy {
  padding: 56px 0 26px 54px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.panel h2,
.side-card h2,
.connect-band h2 {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .12em;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--red);
  margin-bottom: 18px;
}

h1 {
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 56px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: .025em;
  line-height: 1.02;
  margin: 0;
  max-width: 610px;
  text-transform: uppercase;
}

h1 span {
  color: var(--red);
}

.hero-text {
  font-size: 19px;
  line-height: 1.55;
  margin: 28px 0 0;
  max-width: 545px;
}

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

.button {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 12px;
  height: 60px;
  justify-content: center;
  letter-spacing: .04em;
  min-width: 230px;
  padding: 0 24px;
  text-transform: uppercase;
}

.button.primary {
  background: linear-gradient(180deg, #d96442, #ac3e2e);
}

.button.ghost {
  border: 2px solid rgba(255,255,255,.8);
}

.button-icon {
  font-size: 24px;
}

.feature-strip {
  border: 1px solid rgba(255,255,255,.36);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  max-width: 620px;
}

.feature-strip a {
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.36);
  display: grid;
  gap: 0 12px;
  grid-template-columns: 44px 1fr;
  min-height: 92px;
  padding: 14px 16px;
}

.feature-strip a:last-child {
  border-right: 0;
}

.feature-strip b,
.feature-strip small {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.feature-strip small {
  grid-column: 2;
}

.feature-icon {
  align-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  grid-row: span 2;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.feature-icon.green { color: var(--green-2); }
.feature-icon.route { color: #74ae45; font-size: 16px; }
.feature-icon.eight { color: white; }
.feature-icon.gold { color: var(--gold); }

.hero-map {
  min-height: 620px;
  overflow: hidden;
}

.hero-map svg {
  display: block;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  width: 100%;
}

.map-tag circle {
  fill: #f3efe6;
  stroke: var(--red);
  stroke-width: 4;
}

.map-tag text {
  fill: #0f1512;
  font-size: 18px;
  font-weight: 900;
  text-anchor: middle;
}

.map-tag .label {
  fill: white;
  font-size: 16px;
  letter-spacing: .05em;
  text-anchor: start;
  text-transform: uppercase;
}

.map-tag.broadcast circle,
.map-tag.games circle { fill: #c94938; }
.map-tag.business circle,
.map-tag.community circle { fill: #477642; }
.map-tag.clients circle { fill: var(--blue); }
.map-tag.route circle { fill: #b08636; }
.map-tag.broadcast text,
.map-tag.games text,
.map-tag.business text,
.map-tag.community text,
.map-tag.clients text,
.map-tag.route text { fill: white; }

.dashboard {
  display: grid;
  grid-template-columns: 340px 1fr;
  margin: 0 auto;
  max-width: var(--max);
}

.sidebar {
  border-right: 1px solid var(--line);
}

.side-card,
.panel {
  border-bottom: 1px solid var(--line);
}

.side-card {
  padding: 22px 34px 20px;
}

.side-card h2,
.panel h2,
.connect-band h2 {
  color: #173c23;
}

.nav-card {
  padding-bottom: 0;
}

.nav-card a {
  align-items: center;
  border: 1px solid var(--line);
  border-bottom: 0;
  display: grid;
  gap: 0 18px;
  grid-template-columns: 38px 1fr;
  min-height: 82px;
  padding: 14px 18px;
}

.nav-card a:first-of-type {
  margin-top: 18px;
}

.nav-card a:last-child {
  border-bottom: 1px solid var(--line);
}

.nav-card span {
  color: var(--green);
  font-size: 28px;
  grid-row: span 2;
  text-align: center;
}

.nav-card .selected span,
.nav-card .selected b {
  color: var(--red);
}

.nav-card b {
  font-size: 18px;
  text-transform: uppercase;
}

.nav-card small {
  color: var(--muted);
  font-size: 14px;
}

.status-card {
  border: 1px solid var(--line);
  margin: 18px 0 0;
}

.status-card h2 {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.status-card div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  min-height: 31px;
}

.status-card div:last-child {
  border-bottom: 0;
}

.status-card span::before {
  background: var(--green-2);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: 9px;
  width: 10px;
}

.status-card b {
  font-size: 12px;
  text-transform: uppercase;
}

.quote-card {
  border: 1px solid var(--line);
  border-top: 0;
  font-family: Georgia, serif;
  min-height: 188px;
}

.quote-mark {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.quote-card p {
  font-size: 19px;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 12px;
}

.quote-card cite {
  color: var(--red);
  display: block;
  font-size: 16px;
  text-align: right;
}

.main-panels {
  padding: 22px 32px;
}

.panel {
  margin-bottom: 24px;
}

.panel h2 {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.business-cards,
.project-grid,
.client-row {
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
}

.business-cards {
  grid-template-columns: repeat(4, 1fr);
}

.business-cards article {
  border-right: 1px solid var(--line);
  min-height: 320px;
  padding: 34px 28px 28px;
}

.business-cards article:last-child {
  border-right: 0;
}

.logo-box {
  align-items: center;
  color: #111;
  display: flex;
  font-weight: 900;
  height: 72px;
  justify-content: center;
  margin-bottom: 26px;
  text-align: center;
  text-transform: uppercase;
  width: 86px;
}

.logo-k {
  border: 4px solid #111;
  font-size: 42px;
}

.logo-sw {
  border: 4px solid #111;
  border-radius: 50%;
  font-size: 18px;
  line-height: .95;
}

.logo-sw b {
  color: #c30000;
}

.logo-66 {
  border: 4px solid #111;
  border-radius: 16px;
  font-size: 14px;
  line-height: .9;
}

.logo-66 b {
  font-size: 34px;
}

.logo-8 {
  border: 4px solid #111;
  border-radius: 50%;
  font-size: 36px;
}

.business-cards h3 {
  font-size: 16px;
  letter-spacing: .03em;
  line-height: 1.15;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.business-cards p,
.project-row p,
.clients p {
  font-size: 16px;
  line-height: 1.45;
  margin: 0;
}

.business-cards i {
  background: var(--green);
  display: block;
  height: 4px;
  margin-top: 36px;
  width: 54px;
}

.business-cards article:nth-child(2) i { background: #c00000; }
.business-cards article:nth-child(3) i { background: var(--gold); }

.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid article {
  border-right: 1px solid var(--line);
  padding: 24px;
}

.project-grid article:last-child {
  border-right: 0;
}

.project-grid h3 {
  border-bottom: 2px solid currentColor;
  color: var(--red);
  font-size: 16px;
  letter-spacing: .08em;
  margin: 0 0 22px;
  padding-bottom: 14px;
  text-transform: uppercase;
}

.project-grid article:nth-child(3) h3 {
  color: var(--green);
}

.project-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 34px 1fr;
  margin-bottom: 24px;
}

.project-row span {
  color: var(--red);
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.project-row b {
  display: block;
  font-size: 17px;
  margin-bottom: 3px;
}

.client-row {
  grid-template-columns: repeat(5, 1fr);
}

.client-row a,
.client-row span {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  min-height: 78px;
  padding: 12px 18px;
  text-align: center;
}

.client-row :last-child {
  border-right: 0;
}

.clients p {
  border: 1px solid var(--line);
  border-top: 0;
  padding: 16px;
  text-align: center;
}

.connect-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: var(--max);
}

.connect-info {
  padding: 34px 54px;
}

.connect-info h2 {
  margin-bottom: 26px;
}

.connect-info a {
  align-items: center;
  display: inline-grid;
  gap: 0 18px;
  grid-template-columns: 46px auto;
  margin-right: 58px;
}

.connect-info span {
  align-items: center;
  background: var(--green);
  border-radius: 4px;
  color: white;
  display: flex;
  font-size: 28px;
  grid-row: span 2;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.connect-info a:nth-of-type(2) span {
  background: #315f9d;
  font-family: Georgia, serif;
  font-weight: 900;
}

.connect-info b {
  font-size: 18px;
}

.connect-info small {
  font-size: 13px;
}

.closing-card {
  align-items: center;
  background: radial-gradient(circle at 70% 40%, #183824, #102018 65%);
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 34px 54px;
}

.closing-card blockquote {
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.45;
  margin: 0;
}

.closing-logo {
  text-align: center;
  text-transform: uppercase;
}

.closing-logo span {
  align-items: center;
  border: 4px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  display: inline-flex;
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 900;
  height: 92px;
  justify-content: center;
  margin-bottom: 12px;
  width: 92px;
}

.closing-logo b {
  display: block;
  font-size: 24px;
  letter-spacing: .26em;
}

.closing-logo small {
  color: var(--red);
  display: block;
  font-size: 11px;
  letter-spacing: .24em;
  margin-top: 5px;
}

.site-footer {
  align-items: center;
  background: #090d0b;
  color: white;
  display: grid;
  font-size: 13px;
  grid-template-columns: 1.4fr 1fr .8fr;
  min-height: 72px;
  padding: 0 54px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:nth-child(2) {
  border-left: 1px solid rgba(255,255,255,.45);
  border-right: 1px solid rgba(255,255,255,.45);
  text-align: center;
}

.site-footer p:last-child {
  text-align: right;
}

@media (max-width: 1100px) {
  .topbar,
  .main-nav {
    height: auto;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 22px;
  }

  .main-nav a {
    height: auto;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    bottom: -7px;
  }

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

  .hero-copy {
    padding: 38px 24px;
  }

  .hero-map {
    min-height: 420px;
    order: -1;
  }

  .hero-map svg {
    min-height: 420px;
  }

  .dashboard,
  .connect-band {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .business-cards,
  .project-grid,
  .client-row {
    grid-template-columns: 1fr;
  }

  .business-cards article,
  .project-grid article,
  .client-row a,
  .client-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .brand {
    flex-wrap: wrap;
  }

  .brand-name {
    font-size: 26px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-actions,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .feature-strip a {
    border-bottom: 1px solid rgba(255,255,255,.36);
    border-right: 0;
  }

  .main-panels,
  .connect-info,
  .closing-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .connect-info a {
    margin: 0 0 22px;
  }

  .site-footer {
    gap: 16px;
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }

  .site-footer p,
  .site-footer p:last-child {
    border: 0;
    text-align: left;
  }
}
