/* ============================================================
   Paw Street — where care is pawfect
   Design system & styles. Mobile-first.
   ============================================================ */

:root {
  /* Palette — keyed to brand logo */
  --bg:        #FBF8FD;
  --surface:   #FFFFFF;
  --text:      #2A2331;
  --muted:     #6E6577;
  --primary:   #893DA6;
  --primary-d: #6E2E87;   /* darker purple for hovers/active */
  --secondary: #B07FC4;
  --accent:    #F5A85C;
  --accent-d:  #E8923F;
  --border:    #ECE4F0;
  --focus:     #893DA6;

  /* Soft brand tints */
  --lilac-1:   #F4ECF8;
  --lilac-2:   #EBDDF2;
  --peach-1:   #FDF1E3;

  /* Type */
  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(42, 35, 49, .06);
  --sh-md: 0 12px 30px rgba(99, 53, 122, .10);
  --sh-lg: 0 26px 60px rgba(99, 53, 122, .16);

  /* Layout */
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 56px);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; color: var(--text); letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); font-weight: 600; }

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

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(58px, 9vw, 116px); }
.section--tint { background: var(--lilac-1); }
.eyebrow {
  font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .8rem; color: var(--primary);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 1.06rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--r-pill);
  min-height: 52px; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(137,61,166,.28); }
.btn--primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(137,61,166,.36); }
.btn--accent { background: var(--accent); color: #4A2D0C; box-shadow: 0 8px 20px rgba(245,168,92,.36); }
.btn--accent:hover { background: var(--accent-d); transform: translateY(-2px); }
.btn--ghost { background: var(--surface); color: var(--primary); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--secondary); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.btn--wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.30); }
.btn--wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; min-height: 58px; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,253,.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.header.is-scrolled { border-bottom-color: var(--border); box-shadow: 0 6px 22px rgba(99,53,122,.07); background: rgba(255,255,255,.92); }
.header__bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 52px; width: auto; }
.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .98rem;
  color: var(--text); padding: 10px 15px; border-radius: var(--r-pill);
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--primary); background: var(--lilac-1); }
.header__cta { display: none; align-items: center; gap: 10px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--primary); font-size: .96rem; }
.header__phone svg { width: 18px; height: 18px; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 12px;
  border-radius: 12px; background: var(--surface); box-shadow: var(--sh-sm);
}
.nav-toggle span { width: 22px; height: 2.4px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
  background: rgba(42,35,49,.42); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav__panel {
  background: var(--surface); padding: 22px var(--gut) 32px;
  border-radius: 0 0 var(--r-lg) var(--r-lg); box-shadow: var(--sh-lg);
  transform: translateY(-12px); transition: transform .3s ease;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateY(0); }
.mobile-nav a.mlink {
  display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.18rem;
  padding: 15px 6px; border-bottom: 1px solid var(--border); color: var(--text);
}
.mobile-nav a.mlink:last-of-type { border-bottom: none; }
.mobile-nav__actions { display: grid; gap: 12px; margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(28px, 5vw, 60px); padding-bottom: clamp(40px, 6vw, 80px); }
.hero__grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero__copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.2rem); line-height: 1.04; letter-spacing: -.025em;
  margin: 18px 0 0;
}
.hero h1 .accent { color: var(--primary); }
.hero__sub { margin-top: 20px; font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--muted); max-width: 48ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 30px; }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-size: .95rem; font-weight: 500; color: var(--text); }
.hero__trust svg { width: 18px; height: 18px; color: var(--primary); flex: none; }

.hero__media { position: relative; }
.hero__media-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4 / 4.4; background: var(--lilac-2);
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 13px; max-width: calc(100% - 36px);
}
.hero__badge .dot { width: 42px; height: 42px; border-radius: 50%; background: var(--peach-1); display: grid; place-items: center; flex: none; }
.hero__badge .dot svg { width: 22px; height: 22px; color: var(--accent-d); }
.hero__badge b { font-family: var(--font-head); font-size: .98rem; display: block; }
.hero__badge span { font-size: .82rem; color: var(--muted); }
.hero__blob {
  position: absolute; z-index: -1; width: 58%; aspect-ratio: 1; right: -6%; top: -8%;
  background: radial-gradient(circle at 30% 30%, var(--lilac-2), transparent 70%);
  filter: blur(6px);
}

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.trust {
  background: var(--primary); color: #fff;
}
.trust .wrap { padding-block: 26px; }
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.trust__item { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 500; font-size: 1rem; }
.trust__item svg { width: 22px; height: 22px; color: var(--accent); flex: none; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.scard {
  background: var(--surface); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.scard__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--lilac-2); }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.scard:hover .scard__media img { transform: scale(1.05); }
.scard__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.scard__tag { font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--secondary); }
.scard h3 { margin: 8px 0 10px; }
.scard p { color: var(--muted); font-size: .98rem; flex: 1; }
.scard__link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; color: var(--primary);
}
.scard__link svg { width: 17px; height: 17px; transition: transform .2s; }
.scard:hover .scard__link svg { transform: translateX(4px); }

/* ============================================================
   SERVICE DETAIL SECTIONS
   ============================================================ */
.svc { display: grid; gap: clamp(28px, 4vw, 60px); align-items: center; }
.svc + .svc { margin-top: clamp(56px, 8vw, 100px); }
.svc__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 5/4; background: var(--lilac-2); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; }
.svc__copy h3 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 700; }
.svc__copy .eyebrow { margin-bottom: 12px; }
.svc__copy > p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.svc__list { margin-top: 22px; display: grid; gap: 13px; }
.svc__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.svc__list svg { width: 21px; height: 21px; color: var(--primary); flex: none; margin-top: 2px; }
.svc__list b { font-family: var(--font-head); font-weight: 600; }
.svc__cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.svc__note { margin-top: 16px; font-size: .85rem; color: var(--muted); font-style: italic; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}
.gitem {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  cursor: pointer; background: var(--lilac-2); aspect-ratio: 1;
}
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gitem:hover img { transform: scale(1.07); }
.gitem::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(110,46,135,.45), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.gitem:hover::after { opacity: 1; }
.gitem .zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s;
}
.gitem:hover .zoom { opacity: 1; transform: scale(1); }
.gitem .zoom svg { width: 18px; height: 18px; color: var(--primary); }
.gitem--tall { grid-row: span 2; aspect-ratio: auto; }
.gitem--wide { grid-column: span 2; aspect-ratio: 2/1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(28,20,34,.92);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 84vh; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.14);
  color: #fff; display: grid; place-items: center; transition: background .2s;
}
.lightbox__btn:hover { background: rgba(255,255,255,.28); }
.lightbox__btn svg { width: 26px; height: 26px; }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
.lightbox__close { position: absolute; top: 18px; right: 18px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; }
.lightbox__close:hover { background: rgba(255,255,255,.28); }
.lightbox__close svg { width: 24px; height: 24px; }
.lightbox__count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-family: var(--font-head); font-size: .9rem; letter-spacing: .05em; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { display: grid; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about__media { position: relative; }
.about__media-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 4/3; background: var(--lilac-2); }
.about__media-main img { width: 100%; height: 100%; object-fit: cover; }
.about__stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 18px 22px; box-shadow: var(--sh-md); display: inline-flex; gap: 14px; align-items: center;
}
.about__stat-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.about__stat .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--lilac-1); display: grid; place-items: center; flex: none; }
.about__stat .ico svg { width: 23px; height: 23px; color: var(--primary); }
.about__stat b { font-family: var(--font-head); display: block; font-size: 1rem; }
.about__stat span { font-size: .85rem; color: var(--muted); }
.about__copy h2 { margin-bottom: 4px; }
.about__copy p { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
.about__values { margin-top: 24px; display: grid; gap: 14px; }
.about__values li { display: flex; gap: 13px; align-items: flex-start; }
.about__values .vic { width: 40px; height: 40px; border-radius: 12px; background: var(--peach-1); display: grid; place-items: center; flex: none; }
.about__values .vic svg { width: 21px; height: 21px; color: var(--accent-d); }
.about__values b { font-family: var(--font-head); font-weight: 600; display: block; }
.about__values span { color: var(--muted); font-size: .95rem; }

/* ============================================================
   LOCATION + CONTACT
   ============================================================ */
.contact__grid { display: grid; gap: clamp(28px, 4vw, 48px); align-items: start; }
.contact__info { display: grid; gap: 16px; }
.info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 22px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--sh-sm);
  transition: transform .2s, box-shadow .2s;
}
a.info-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.info-card .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--lilac-1); display: grid; place-items: center; flex: none; }
.info-card .ico svg { width: 24px; height: 24px; color: var(--primary); }
.info-card h4 { font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.info-card p { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; margin-top: 3px; color: var(--text); }
.info-card span { font-size: .9rem; color: var(--muted); }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 320px; border: 0; }

/* Enquiry form */
.form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--sh-md);
}
.form-card h3 { font-size: 1.5rem; }
.form-card > p { color: var(--muted); margin-top: 8px; font-size: .98rem; }
.field { margin-top: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(137,61,166,.13);
}
.field--row { display: grid; gap: 18px; grid-template-columns: 1fr; }
.form-card .btn { margin-top: 22px; }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--muted); }
.form-ok {
  margin-top: 18px; padding: 14px 16px; border-radius: var(--r-sm);
  background: var(--lilac-1); border: 1px solid var(--lilac-2); color: var(--primary-d);
  font-size: .94rem; display: none;
}
.form-ok.show { display: block; }
.field-err { color: #C0392B; font-size: .82rem; margin-top: 5px; display: none; }
.field input:invalid.touched, .field textarea:invalid.touched { border-color: #C0392B; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--text); color: #D8CFE0; padding-block: clamp(48px, 7vw, 80px) 30px; }
.footer__top { display: grid; gap: 38px; grid-template-columns: 1fr; }
.footer__brand img { height: 60px; width: auto; background: #fff; padding: 12px 16px; border-radius: var(--r-md); }
.footer__brand p { margin-top: 16px; font-size: .96rem; color: #B6A9C4; max-width: 34ch; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer__socials a:hover { background: var(--primary); transform: translateY(-2px); }
.footer__socials svg { width: 20px; height: 20px; color: #fff; }
.footer__col h5 { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: #B6A9C4; font-size: .95rem; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__cols { display: grid; gap: 34px; grid-template-columns: 1fr 1fr; }
.footer__bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: .85rem; color: #9C8DAC;
}

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border); box-shadow: 0 -6px 24px rgba(99,53,122,.12);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
}
.action-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px; border-radius: var(--r-sm); font-family: var(--font-head);
  font-weight: 600; font-size: .76rem; min-height: 52px; justify-content: center;
}
.action-bar a svg { width: 22px; height: 22px; }
.action-bar .ab-call { color: var(--primary); }
.action-bar .ab-wa { color: #1ca452; }
.action-bar .ab-book { color: #fff; background: var(--primary); margin: 0 2px; }
.action-bar .ab-book:hover { background: var(--primary-d); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .field--row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 920px) {
  body { padding-bottom: 0; }
  .nav { display: block; }
  .header__cta { display: flex; }
  .nav-toggle { display: none; }
  .action-bar { display: none; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .svc { grid-template-columns: 1fr 1fr; }
  .svc--rev .svc__media { order: 2; }
  .about { grid-template-columns: .95fr 1.05fr; }
  .about--rev .about__media { order: 2; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; align-items: start; }
  .footer__cols { display: contents; }
}

@media (min-width: 920px) and (max-width: 1100px) {
  .nav a { padding: 10px 11px; font-size: .92rem; }
}

/* Provide space so sticky bar doesn't cover content on mobile */
@media (max-width: 919px) {
  body { padding-bottom: 74px; }
}
