:root {
  --cyan: #14ace0;
  --cyan-dark: #078fbd;
  --ink: #17181b;
  --ink-soft: #25272a;
  --review-bg: #303236;
  --gray-900: #262729;
  --gray-800: #3a3c40;
  --gray-500: #9ea1a5;
  --gray-300: #d6d8da;
  --gray-100: #f5f5f3;
  --white: #ffffff;
  --yellow: #ffd86a;
  --border: rgba(23, 24, 27, .16);
  --shadow: 0 18px 50px rgba(0, 0, 0, .14);
  --max: 1180px;
  --display: "Trebuchet MS", "Arial Black", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--gray-100);
  font-family: var(--body);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

input,
textarea {
  font-size: 16px;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100% - var(--max)) / 2));
  background: rgba(23, 24, 27, .96);
  color: var(--white);
  border-bottom: 4px solid var(--cyan);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: var(--cyan);
  color: var(--ink);
  font: 900 17px/1 var(--display);
  letter-spacing: .04em;
  transform: skew(-6deg);
  box-shadow: 4px 4px 0 #fff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
}

.brand-copy span {
  margin-top: 4px;
  font-size: 12px;
  color: #d6d8da;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

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

.nav-phone {
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 10px 14px;
}

.nav-phone:hover {
  border-color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: white;
  cursor: pointer;
}

.nav-toggle span.burger-line {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.section-dark {
  background: var(--gray-900);
  color: var(--white);
}

.section-light {
  background: var(--gray-100);
}

.section-gray {
  background: var(--gray-300);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--white);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: var(--cyan);
}

.hero::after {
  bottom: 14px;
  height: 2px;
  opacity: .45;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -180px;
  top: -120px;
  background: radial-gradient(circle, rgba(20, 172, 224, .24), transparent 68%);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 24px;
  padding-block: 72px;
}

.hero-copy > .eyebrow {
  text-align: center;
}

.color-cyan {
  color: var(--cyan);
}

.cyan-line-before {
  display: flex;
}

.cyan-line-before::before {
  content: "\2014";
  color: var(--cyan);
  margin-right: 10px;
}

.hero-subtext > span {
  font-size: 16px;
  white-space: nowrap;
}

.hero-subtext > span::after {
  --dot-size: 2px;
  --dot-size-plus-one: calc(var(--dot-size) + 1px);
  --word-spacing: 1em;
  content: " ";
  word-spacing: var(--word-spacing);
  background-image: radial-gradient(
    currentColor var(--dot-size),
    transparent var(--dot-size-plus-one),
    transparent calc(100% - var(--dot-size-plus-one))
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: var(--word-spacing) var(--word-spacing);
}

@media (max-width: 350px) {
  .hero-subtext > span::after {
    content: '\a';
    white-space: pre;
  }
}

.eyebrow {
  margin: 0 0 14px;
  font: 800 clamp(12px, 1.4vw, 16px)/1.4 var(--display);
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--cyan);
}

.eyebrow.dark {
  color: var(--cyan-dark);
}

h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(17px, 2vw, 21px);
  color: #e5e6e7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font: 900 12px/1 var(--display);
  letter-spacing: .11em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: #57c8eb;
}

.button-outline {
  border-color: rgba(255, 255, 255, .55);
  color: white;
}

.button-outline:hover {
  background: white;
  color: var(--ink);
}

.hero-note {
  margin: 24px 0 0;
  font-size: 14px;
  letter-spacing: .04em;
  color: #c6c8ca;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-art img {
  width: min(100%, 460px);
  filter: drop-shadow(0 0 10px white);
  /* filter: drop-shadow(0 0 20px var(--cyan)); */
}

.intro {
  padding: 92px 0 96px;
}

.intro h2 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
}

.intro p:last-child {
  margin-top: 26px;
  max-width: 820px;
  font-size: 18px;
  color: #4b4d51;
}

.services,
.reviews,
.contact {
  padding: 92px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
}

.section-heading > p {
  max-width: 500px;
  margin: 0;
  color: #52555a;
  text-align: right;
}

.section-heading.light > p {
  color: #c7c9cc;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 235px;
  padding: 26px;
  background: var(--gray-100);
  border: 2px solid rgba(255, 255, 255, .7);
  box-shadow: 7px 7px 0 rgba(23, 24, 27, .12);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  bottom: -50px;
  border: 14px solid rgba(20, 172, 224, .08);
  transform: rotate(20deg);
}

.service-card h3 {
  margin: 0;
  font: 900 21px/.98 var(--display);
  text-transform: uppercase;
}

.service-card p {
  margin: 15px 0 0;
  color: #55585c;
}

.reviews {
  position: relative;
  overflow: hidden;
}

.reviews::before, .reviews::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border: 70px solid rgba(20, 172, 224, .06);
  border-radius: 50%;
}

.reviews::before {
  right: -250px;
  top: 100px;
}

.reviews::after {
  left: -250px;
  bottom: -200px;
}

.see-all-reviews-button {
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 10px 14px;
  background-color: rgb(23, 24, 27);
  white-space: nowrap;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  z-index: 1;
}

.see-all-reviews-button:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.review-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card-container {
  text-decoration: inherit;
  display: flex;
}

.review-card {
  background: var(--review-bg);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 27px;
  box-shadow: inset 0 3px 0 var(--cyan);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 75%;
  z-index: -1;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--cyan), var(--review-bg) 75%) 0%,
    transparent 100%
  );
  transform: translateY(100%);
  transition: transform .25s ease;
  pointer-events: none;
}

.review-card:hover::before {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .review-card::before {
    transition: none;
  }
}

.stars {
  color: var(--yellow);
  letter-spacing: .1em;
  font-size: 17px;
}

.review-card p {
  margin: 24px 0;
  font-size: 16px;
  color: #ededed;
}

.review-card p::before {
  content: '\201C';
}

.review-card p::after {
  content: '\201D';
}

.review-card strong {
  display: block;
  font: 900 13px/1.2 var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: auto;
}

.review-card strong::before {
  content: '\2014\20';
}

.review-card span {
  display: block;
  margin-top: 6px;
  color: #96999e;
  font-size: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
}

.contact-copy > p:not(.eyebrow) {
  margin: 24px 0 34px;
  color: #4f5155;
  max-width: 650px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-details > * {
  display: block;
  padding: 18px 20px;
  border-left: 5px solid var(--cyan);
  background: white;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.contact-details span,
.contact-details small {
  display: block;
  color: #74777b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-details strong {
  display: block;
  margin-top: 4px;
  font: 900 19px/1.3 var(--display);
  text-transform: uppercase;
}

.contact-details small {
  margin-top: 4px;
  text-transform: none;
  letter-spacing: normal;
}

.hours {
  padding-top: 10px;
}

.hours h3 {
  margin: 0 0 12px;
  font: 900 18px/1 var(--display);
  text-transform: uppercase;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.hours-row.closed {
  color: #888b8e;
}

.contact-form {
  padding: 30px;
  background: #202124;
  color: white;
  box-shadow: var(--shadow);
  border-top: 8px solid var(--cyan);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font: 800 12px/1 var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid #55595e;
  background: #2c2e31;
  color: white;
  outline: none;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(20, 172, 224, .16);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  text-align: center;
  color: #bfeafa;
  font-size: 13px;
}

.website-input {
  position: absolute;
  left: -9999px;
}

.site-footer {
  background: #111214;
  color: white;
  padding: 24px 0;
  border-top: 4px solid var(--cyan);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 35px;
  row-gap: 22px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-inner strong {
  font: 900 13px/1 var(--display);
  text-transform: uppercase;
  text-decoration: none;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
  gap: 7.5px;
}

.footer-copyright,
.footer-company-subtext {
  color: #90949a;
}

.granet-link {
  color: var(--cyan);
}

@media (max-width: 980px) {
  .site-nav {
    gap: 18px;
  }

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 12px 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 4px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #1b1c1f;
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .nav-phone {
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 56px 74px;
  }

  .hero-art {
    order: -1;
    min-height: 180px;
  }

  .hero-art img {
    width: 250px;
  }

  .hero-art::before {
    inset: 15% 20%;
  }

  .section-heading:not(.light) {
    align-items: start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .section-heading > p {
    text-align: left;
  }

  .services,
  .reviews,
  .contact,
  .intro {
    padding: 70px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 520px) {
  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 14px;
  }

  .section-heading.light {
    align-items: start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .see-all-reviews-button {
    width: 100%;
  }

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

  .service-card {
    min-height: auto;
  }

  .contact-form {
    padding: 22px 18px;
  }
}
