/* ============================================================
   Complete Kitchen & Bath - Site Concept
   Design language: Vibrant Energy (#8) - type/spacing/motion ONLY
   Palette: prospect's real brand colors (see PROJECT_RULES.md)
   ============================================================ */

:root {
  /* Prospect palette: royal blue + deep navy from their theme CSS & logo,
     orange accent from their theme (#f59613) */
  --blue:        #0077ff;   /* their theme primary */
  --blue-bright: #3d8bff;   /* lightened within family for text on dark */
  --navy:        #07275d;   /* their deep brand navy */
  --navy-deep:   #051d3e;   /* their darkest navy */
  --ink:         #0b1526;   /* near-black navy for text on light */
  --orange:      #f59613;   /* their theme accent */
  --orange-deep: #c26f06;   /* deepened for small text on light */
  --paper:       #f6f7f9;
  --paper-2:     #eceff4;
  --white:       #ffffff;

  --text-dark:   #0b1526;
  --text-body:   #3d4657;
  --text-muted:  #5c6577;
  --text-light:  rgba(255,255,255,0.92);
  --text-light-muted: rgba(255,255,255,0.66);

  --font: "Space Grotesk", system-ui, sans-serif;

  --wrap: min(92%, 1180px);
  --pad-section: clamp(3rem, 6vw, 5.5rem);
  --nav-h: 76px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: var(--wrap); margin-inline: auto; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.nav__inner {
  width: var(--wrap);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav--scrolled {
  background: rgba(5, 29, 62, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(5, 29, 62, 0.35);
}
.nav__brand { display: flex; align-items: center; }
.nav__logo {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav__link {
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-block: 0.4rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-spring);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--orange);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.6rem 0.55rem 1.15rem;
  border-radius: 999px;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
}
.nav__cta:hover { transform: translateY(-2px); background: #ffa62e; }
.nav__cta-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.nav__cta-dot svg { width: 13px; height: 13px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  z-index: 300;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-spring), opacity 0.25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: clamp(2rem, 8vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
.mmenu.is-open { opacity: 1; visibility: visible; }
.mmenu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.mmenu__link {
  color: var(--text-light);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  padding-block: 0.35rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s var(--ease-spring), opacity 0.4s, color 0.3s;
}
.mmenu.is-open .mmenu__link { transform: translateY(0); opacity: 1; }
.mmenu.is-open .mmenu__link:nth-child(1) { transition-delay: 0.06s; }
.mmenu.is-open .mmenu__link:nth-child(2) { transition-delay: 0.12s; }
.mmenu.is-open .mmenu__link:nth-child(3) { transition-delay: 0.18s; }
.mmenu.is-open .mmenu__link:nth-child(4) { transition-delay: 0.24s; }
.mmenu.is-open .mmenu__link:nth-child(5) { transition-delay: 0.30s; }
.mmenu__link:hover { color: var(--orange); }
.mmenu__link--cta { color: var(--orange); }
.mmenu__foot { display: flex; flex-direction: column; gap: 0.4rem; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.4rem; }
.mmenu__contact { color: var(--text-light-muted); font-size: 1rem; padding-block: 0.3rem; }
.mmenu__contact:hover { color: #fff; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 0.85rem 0.85rem 1.6rem;
  transition: transform 0.35s var(--ease-spring), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn--lg { font-size: 1.05rem; padding: 1rem 1rem 1rem 1.9rem; }
.btn--solid { background: var(--orange); color: var(--navy-deep); }
.btn--solid:hover { transform: translateY(-3px) scale(1.02); background: #ffa62e; }
.btn--ghost {
  border: 1.5px solid rgba(11, 21, 38, 0.3);
  color: var(--text-dark);
  padding-right: 1.6rem;
}
.btn--ghost:hover { border-color: var(--navy); background: rgba(7, 39, 93, 0.06); transform: translateY(-3px); }
.btn--ghost-light { border-color: rgba(255,255,255,0.4); color: var(--text-light); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn__dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.btn__dot svg { width: 16px; height: 16px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 58%, #0a3a85 100%);
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(0, 119, 255, 0.22), transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(245, 150, 19, 0.10), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero__eyebrow-rule { width: 42px; height: 2px; background: var(--orange); flex-shrink: 0; }
.hero__title {
  color: #fff;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__title span { display: block; }
.hero__title em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  color: var(--text-light-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 300;
  max-width: 46ch;
  margin-bottom: 2.1rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }
.hero__ctas .btn--ghost { border-color: rgba(255,255,255,0.35); color: var(--text-light); }
.hero__ctas .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero__stats {
  display: flex;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 1.6rem;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num, .hero__stat-plus {
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline;
}
.hero__stat-plus { color: var(--orange); }
.hero__stat-label {
  color: var(--text-light-muted);
  font-size: 0.8rem;
  max-width: 16ch;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(2, 12, 30, 0.55);
  transform: rotate(1.5deg);
}
.hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  z-index: 2;
  pointer-events: none;
}
.hero__img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.hero__tag {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 3;
  max-width: calc(100% - 28px);
  background: rgba(5, 29, 62, 0.82);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}
.hero__chip {
  position: absolute;
  top: -18px; right: -10px;
  z-index: 4;
  background: var(--orange);
  color: var(--navy-deep);
  border-radius: 16px;
  padding: 0.75rem 1.1rem;
  box-shadow: 0 18px 40px rgba(245, 150, 19, 0.35);
  transform: rotate(-3deg);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero__chip-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; }
.hero__chip-value { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }

/* ============ SHARED SECTION BITS ============ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--orange); }
.eyebrow__rule { width: 36px; height: 2px; background: currentColor; flex-shrink: 0; }
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  max-width: 22ch;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.section-title--light { color: #fff; }

/* ============ INTRO ============ */
.intro { background: var(--paper); padding-block: var(--pad-section); }
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.intro__headline {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.intro__body p { color: var(--text-body); font-size: 1.02rem; font-weight: 300; }
.intro__body p + p { margin-top: 1.1rem; }

/* ============ SERVICES ============ */
.services { background: var(--white); padding-block: var(--pad-section); }
.services__list { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 4rem); }
.svc {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1.4rem, 3.5vw, 3rem);
  align-items: center;
  padding-block: clamp(1.4rem, 2.5vw, 2.2rem);
  border-top: 1px solid var(--paper-2);
}
.svc--flip { grid-template-columns: auto minmax(0, 1.1fr) minmax(0, 1fr); }
.svc--flip .svc__text { order: 3; }
.svc--flip .svc__media { order: 2; }
.svc__num {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(7, 39, 93, 0.28);
  line-height: 1;
}
.svc__name {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}
.svc__desc { color: var(--text-body); font-weight: 300; max-width: 44ch; }
.svc__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(7, 39, 93, 0.14);
}
.svc__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.svc:hover .svc__media img { transform: scale(1.05); }
.services__more {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.3rem 1.6rem;
  background: var(--paper);
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 14px 0;
}
.services__more p { color: var(--text-body); font-size: 0.98rem; }

/* ============ WORK ============ */
.work {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy) 70%, #0a3a85);
  padding-block: var(--pad-section);
}
.work__mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 14px;
}
.work__cell {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.work__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.work__cell:hover img { transform: scale(1.06); }
.work__cell--tall { grid-row: span 2; }
.work__cell--wide { grid-column: span 2; }
.work__note {
  margin-top: 1.4rem;
  color: var(--text-light-muted);
  font-size: 0.88rem;
}

/* ============ CABINET RAIL ============ */
.cabinets { background: var(--paper); padding-block: var(--pad-section); overflow: hidden; }
.cabinets__sub { color: var(--text-body); font-weight: 300; max-width: 56ch; margin-top: -1.2rem; margin-bottom: 2.4rem; }
.crail {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  cursor: grab;
}
.crail::-webkit-scrollbar { display: none; }
.crail.is-dragging { cursor: grabbing; }
.crail__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-inline: max(calc((100vw - 1180px) / 2), 4vw);
}
.crail__card {
  width: 190px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(7, 39, 93, 0.10);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.crail__card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(7, 39, 93, 0.16); }
.crail__card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}
.crail__card figcaption {
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* ============ SERVICE AREA ============ */
.area { background: var(--navy-deep); padding-block: var(--pad-section); }
.area__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.area__list li {
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}
.area__list li:hover {
  background: rgba(0, 119, 255, 0.18);
  border-color: var(--blue-bright);
  transform: translateY(-2px);
}

/* ============ REVIEWS ============ */
.reviews { background: var(--white); padding-block: var(--pad-section); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.rev {
  background: var(--paper);
  border-radius: 18px;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  border-top: 3px solid var(--orange);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.rev:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(7, 39, 93, 0.12); }
.rev__quote {
  color: var(--text-dark);
  font-size: 0.99rem;
  font-weight: 300;
  line-height: 1.65;
}
.rev__name {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: auto;
}

/* ============ CTA ============ */
.cta {
  background:
    radial-gradient(ellipse 55% 70% at 80% 10%, rgba(0, 119, 255, 0.30), transparent 60%),
    linear-gradient(150deg, var(--navy-deep), var(--navy) 75%);
  padding-block: calc(var(--pad-section) * 1.15);
  text-align: center;
}
.cta__headline {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 1.1rem;
}
.cta__sub {
  color: var(--text-light-muted);
  font-weight: 300;
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 2.2rem;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}
.cta__addr { color: var(--text-light-muted); font-size: 0.92rem; }

/* ============ FOOTER ============ */
.footer { background: #030f22; padding-top: clamp(2.5rem, 5vw, 4rem); }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.4rem;
}
.footer__logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer__tag { color: var(--text-light-muted); font-size: 0.92rem; font-weight: 300; max-width: 34ch; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; }
.footer__link {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  padding-block: 0.4rem;
  transition: color 0.25s;
}
.footer__link:hover { color: #fff; }
.footer__link--plain { color: rgba(255,255,255,0.45); }
.footer__base {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-block: 1.3rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ============ REVEAL / MOTION ============ */
.reveal { opacity: 0; transform: translateY(34px); }
.reveal-hero { opacity: 0; transform: translateY(26px); }
html.no-js .reveal, html.no-js .reveal-hero { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-hero { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); }
  .work__mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 180px; }
  .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero {
    min-height: 100svh;
    height: auto;
    padding-top: calc(var(--nav-h) + 1.5rem);
  }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 2.6rem; }
  .hero__media { max-width: 480px; }
  .hero__frame { transform: none; }
  .hero__chip { top: -14px; right: 8px; }
  .hero__stats { flex-wrap: wrap; gap: 1.4rem 2rem; }

  .intro__grid, .area__grid { grid-template-columns: minmax(0, 1fr); }

  .svc, .svc--flip {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
  }
  .svc--flip .svc__text { order: 0; }
  .svc--flip .svc__media { order: 0; }
  .svc__num { font-size: 2rem; }

  .work__mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 160px; }
  .work__cell--wide { grid-column: span 2; }

  .reviews__grid { grid-template-columns: minmax(0, 1fr); }

  .footer__grid { grid-template-columns: minmax(0, 1fr); gap: 1.8rem; }
  .footer__link { padding-block: 0.65rem; }
}

@media (max-width: 480px) {
  .hero { padding-top: calc(var(--nav-h) + 1rem); }
  .hero__ctas .btn { width: 100%; justify-content: space-between; }
  .hero__ctas .btn--ghost { justify-content: center; }
  .work__mosaic { grid-auto-rows: 140px; gap: 10px; }
  .crail__card { width: 160px; }
  .crail__card img { height: 205px; }
  .cta__actions .btn { width: 100%; justify-content: center; }
  .cta__actions .btn--solid { justify-content: space-between; }
}
