/* ==========================================================================
   Appliance Repairs UAE — Design System
   Palette: stone #F2EFE9 · ink #16232F · brass #A9823C · teal #2F5D62 · body #3B3F42
   Fonts: Fraunces (headings) · Public Sans (body) · IBM Plex Mono (labels)
   ========================================================================== */

/* ---------- Self-hosted fonts (no render-blocking Google chain) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/fraunces-var.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/public-sans-var.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-500.woff2") format("woff2");
}

:root {
  --stone: #f2efe9;
  --stone-2: #ebe6dc;
  --ink: #16232f;
  --ink-2: #1e3040;
  --brass: #a9823c;
  --brass-dark: #916d2f;
  --teal: #2f5d62;
  --body: #3b3f42;
  --hairline: rgba(59, 63, 66, 0.16);
  --hairline-light: rgba(242, 239, 233, 0.16);
  --radius: 4px;
  --maxw: 1180px;
  --gutter: 1.5rem;
  --shadow: 0 1px 2px rgba(22, 35, 47, 0.05);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Public Sans", system-ui, -apple-system, sans-serif;
  color: var(--body);
  background-color: var(--stone);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  line-height: 1.12;
  font-weight: 500;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.9rem);
  font-weight: 600;
}
h2 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
}
h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--brass);
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Accessible focus states */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-block;
  margin-bottom: 1rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section--tight {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}
.section-head p {
  font-size: 1.075rem;
}

.text-center {
  text-align: center;
}
.center-head {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Public Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background-color: var(--brass);
  color: #fff;
}
.btn--primary:hover {
  background-color: var(--brass-dark);
  color: #fff;
}

.btn--wa {
  background-color: #25d366;
  color: #08351b;
}
.btn--wa:hover {
  background-color: #1fbb58;
  color: #08351b;
}

.btn--ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn--ghost:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.btn--on-dark {
  border-color: var(--hairline-light);
  color: var(--stone);
}
.btn--on-dark:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(242, 239, 233, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 74px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--ink);
}
.brand:hover {
  color: var(--ink);
}
.brand__name {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand__tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 3px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav-desktop a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-desktop a:hover {
  color: var(--brass);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.lang-switcher a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}

.lang-switcher a:hover {
  color: var(--brass);
}

.lang-switcher a.active {
  color: var(--brass);
  border-bottom: 2px solid var(--brass);
}

.lang-sep {
  color: var(--brass);
  opacity: 0.5;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
}
.header-phone:hover {
  color: var(--brass);
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0 11px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  width: 100%;
  background-color: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav slide-down */
.nav-mobile {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
  border-bottom: 1px solid transparent;
  background-color: var(--stone);
}
.nav-mobile.open {
  max-height: 460px;
  border-bottom-color: var(--hairline);
}
.nav-mobile__inner {
  display: flex;
  flex-direction: column;
  padding: 0.5rem var(--gutter) 1.5rem;
  gap: 0.25rem;
}
.nav-mobile a.nav-link {
  color: var(--ink);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--hairline);
}
.nav-mobile .btn-row {
  margin-top: 1rem;
}
.nav-mobile .btn {
  flex: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--ink);
  color: var(--stone);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 420px;
  height: 620px;
  background: url("../assets/palm.svg") no-repeat center / contain;
  opacity: 0.22;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
  max-width: 44rem;
}
.hero h1 {
  color: var(--stone);
}
.hero__lead {
  font-size: 1.2rem;
  color: rgba(242, 239, 233, 0.82);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero .eyebrow {
  color: var(--brass);
}

/* Split hero with technician image */
.hero__inner--split {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__inner--split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}
.hero__media {
  display: none;
}
@media (min-width: 900px) {
  .hero__media {
    display: block;
    justify-self: end;
  }
  .hero__media img {
    display: block;
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--hairline-light);
  }
}

/* Hero trust badges */
.hero-badges {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone);
  background-color: rgba(242, 239, 233, 0.08);
  border: 1px solid var(--hairline-light);
  border-radius: 999px;
}
.hero-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brass);
}

/* Lead intro paragraph on service pages */
.lead-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 2rem;
}

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--hairline-light);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--hairline-light);
}
.trust-bar .container {
  display: contents;
}
.trust-stat {
  background-color: var(--ink);
  padding: 1.5rem 1.25rem;
}
.trust-stat__num {
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
  color: var(--brass);
  line-height: 1;
}
.trust-stat__label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.7);
  margin-top: 0.55rem;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 1.25rem;
}
.grid--services {
  grid-template-columns: 1fr;
}

.card {
  background-color: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
}
.card__icon {
  width: 44px;
  height: 44px;
  color: var(--brass);
  margin-bottom: 1rem;
}
.card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.4;
}
.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}
.card__links {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
}
.chip {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--teal);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.chip:hover {
  background-color: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* ---------- Major brands ---------- */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.brand-pill {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 1.1rem;
  background-color: var(--stone);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--ink);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.brand-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ---------- Symptom grid ---------- */
.symptom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .symptom-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
  }
}
.symptom {
  padding: 1.1rem 1.25rem;
  background-color: var(--stone);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
}
.symptom__term {
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: var(--ink);
}
.symptom__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--body);
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 3.5rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brass);
  color: var(--brass);
  border-radius: 50%;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
}
.step h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}
.step p {
  margin: 0;
}

/* ---------- Section variants ---------- */
.section--dark {
  background-color: var(--ink);
  color: rgba(242, 239, 233, 0.82);
}
.section--dark h2,
.section--dark h3 {
  color: var(--stone);
}
.section--stone2 {
  background-color: var(--stone-2);
}

/* Testimonials */
.testimonial {
  background-color: var(--ink-2);
  border: 1px solid var(--hairline-light);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial p {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--stone);
  line-height: 1.4;
}
.testimonial__by {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 1rem;
}
.stars {
  color: var(--brass);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background-color: var(--brass);
  color: #fff;
}
.cta-band__inner {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.cta-band h2 {
  color: #fff;
  margin: 0;
  max-width: 30rem;
}
.cta-band .btn--primary {
  background-color: var(--ink);
}
.cta-band .btn--primary:hover {
  background-color: var(--ink-2);
}
.cta-band .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-band .btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

/* ---------- Checklists ---------- */
.checklist {
  display: grid;
  gap: 0.85rem;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.2rem;
  height: 1.2rem;
  background-color: rgba(169, 130, 60, 0.14);
  border-radius: 50%;
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.42rem;
  width: 0.38rem;
  height: 0.62rem;
  border: solid var(--brass);
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background-color: var(--stone-2);
  border-bottom: 1px solid var(--hairline);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  padding: 0.9rem 0;
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--body);
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--brass);
}
.breadcrumb a {
  color: var(--teal);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 1.25rem;
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1.25rem;
}
.faq__q {
  font-family: "Fraunces", serif;
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.faq__a {
  margin: 0;
}

/* ---------- Two-column layouts ---------- */
.two-col {
  display: grid;
  gap: 2.5rem;
}
.prose {
  text-align: left;
}

.prose p {
  font-size: 1.05rem;
  text-align: left;
}
.panel {
  background-color: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.panel--sticky {
  align-self: start;
}

.tag {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  margin: 0 0.4rem 0.4rem 0;
}

/* Area feature grid of service links */
.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  background-color: #fff;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.link-grid a::after {
  content: "→";
  color: var(--brass);
}
.link-grid a:hover {
  border-color: var(--brass);
  color: var(--brass);
  transform: translateX(3px);
}

/* Divider with palm accent */
.divider {
  height: 1px;
  background-color: var(--hairline);
  border: none;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--ink);
  color: rgba(242, 239, 233, 0.72);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
.site-footer h4 {
  color: var(--stone);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.site-footer a {
  color: rgba(242, 239, 233, 0.72);
  font-size: 0.92rem;
}
.site-footer a:hover {
  color: var(--brass);
}
.footer-links {
  display: grid;
  gap: 0.55rem;
}
.footer-cols {
  columns: 2;
  column-gap: 1.5rem;
}
.footer-cols a {
  display: block;
  margin-bottom: 0.55rem;
}
.footer-brand__name {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--stone);
  margin-bottom: 0.75rem;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-light);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(242, 239, 233, 0.55);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.07);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ---------- Scroll reveal ---------- */
/* Content is visible by default. The hidden/animated state only applies when
   JS is confirmed available (html.js), so no-JS visitors, crawlers, and slow
   loads always see the content. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover,
  .card:hover,
  .wa-float:hover,
  .link-grid a:hover {
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Responsive ---------- */
@media (min-width: 560px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--services {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --gutter: 2rem;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .two-col--sidebar {
    grid-template-columns: 1.7fr 1fr;
  }
  .two-col--half {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .nav-mobile {
    display: none;
  }
  .grid--services {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero::before {
    width: 480px;
    height: 680px;
    opacity: 0.28;
  }
}
