/* Blue Sky Electric — Sky Soft (sky gradients + white) */

:root {
  --sky-50: #f7fbfe;
  --sky-100: #e8f4fc;
  --sky-200: #cfe8f8;
  --sky-400: #4db3e8;
  --sky-500: #2a9fd6;
  --sky-600: #1a86c0;
  --sky-700: #0d6fa3;
  --sky-800: #0c4a6e;
  --sky-900: #0a3550;
  --sky-950: #082539;
  --yellow: #fec848;
  --yellow-soft: #ffe9a8;
  --open: #15803d;
  --open-bg: #dcfce7;
  --text: #0f2740;
  --muted: #5a7390;
  --line: rgba(12, 74, 110, 0.1);
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(12, 74, 110, 0.08);
  --shadow-lg: 0 20px 50px rgba(12, 74, 110, 0.12);
  --radius: 1.5rem;
  --radius-sm: 1.1rem;
  --radius-pill: 999px;
  --display: "Red Hat Display", system-ui, sans-serif;
  --body: "Red Hat Text", system-ui, sans-serif;
  --dock-space: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  --rail: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 12% -8%, rgba(77, 179, 232, 0.28), transparent 55%),
    radial-gradient(800px 380px at 100% 8%, rgba(254, 200, 72, 0.16), transparent 50%),
    linear-gradient(180deg, var(--sky-100) 0%, var(--sky-50) 28%, var(--white) 70%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

body.has-bottom-nav {
  padding-bottom: var(--dock-space);
}

@media (min-width: 1024px) {
  body.has-bottom-nav {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--yellow);
  color: var(--sky-950);
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-220%);
}

.skip:focus {
  transform: none;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--sky-900);
  outline-offset: 3px;
}

.btn-call:focus-visible,
.header-call:focus-visible,
.dock__call:focus-visible {
  outline-color: var(--yellow);
  outline-offset: 3px;
}

.rail {
  width: min(100% - 2rem, var(--rail));
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .rail {
    width: min(100% - 3rem, var(--rail));
  }
}

/* —— Header —— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(247, 251, 254, 0.92);
  border-bottom: 1px solid rgba(12, 74, 110, 0.06);
}

.utility {
  background: var(--yellow);
  border-bottom: 1px solid rgba(8, 37, 57, 0.08);
}

.utility__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.85rem;
  padding: 0.28rem 0;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky-950);
}

.utility__inner .open-now--bar {
  justify-self: start;
  flex-shrink: 0;
  white-space: nowrap;
}

.utility__place {
  grid-column: 2;
  justify-self: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-weight: 600;
  opacity: 0.92;
  font-size: 0.68rem;
}

@media (min-width: 400px) {
  .utility__place {
    font-size: 0.75rem;
  }
}

.utility__phone {
  grid-column: 3;
  justify-self: end;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--sky-950);
  border-radius: 50%;
  background: rgba(8, 37, 57, 0.08);
  flex-shrink: 0;
}

.utility__phone svg {
  width: 0.95rem;
  height: 0.95rem;
}

.utility__phone:hover {
  background: rgba(8, 37, 57, 0.14);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

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

.brand__logo {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: min(14rem, 58vw);
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 1024px) {
  .brand__logo {
    height: 2.65rem;
    max-width: 17rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.nav-desktop a {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--sky-800);
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-desktop a:hover {
  background: rgba(42, 159, 214, 0.1);
  color: var(--sky-950);
}

.header-call {
  display: none;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(105deg, var(--sky-700), var(--sky-500));
  box-shadow: 0 10px 24px rgba(13, 111, 163, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.header-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(13, 111, 163, 0.34);
}

.header-call svg {
  width: 1.05rem;
  height: 1.05rem;
}

.icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 1rem;
  background: var(--white);
  color: var(--sky-800);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn svg {
  width: 1.35rem;
  height: 1.35rem;
}

.drawer {
  display: none;
  position: absolute;
  right: 1rem;
  top: calc(100% + 0.4rem);
  width: min(18rem, calc(100vw - 2rem));
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  flex-direction: column;
  gap: 0.2rem;
  z-index: 50;
}

.drawer.is-open {
  display: flex;
}

.drawer a {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  color: var(--sky-900);
}

.drawer a:hover {
  background: var(--sky-100);
}

.topbar__menu {
  position: relative;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .header-call {
    display: inline-flex;
  }

  .icon-btn,
  .drawer {
    display: none !important;
  }
}

/* —— Hero —— */
.hero {
  padding: 1rem 0 0;
}

.hero__card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.25rem);
  background: linear-gradient(105deg, #cfe8f8 0%, #e8f4fc 48%, #fff6e0 100%);
  box-shadow: var(--shadow-lg);
  min-height: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  align-items: stretch;
}

.hero__media {
  position: relative;
  order: 2;
  min-height: 11.25rem;
  align-self: stretch;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 20%;
}

.hero__copy {
  position: relative;
  z-index: 1;
  order: 1;
  padding: 1.05rem 0.4rem 1.1rem 1.15rem;
  color: var(--sky-950);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--sky-600);
}

.hero__copy h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.12rem, 4.4vw, 1.4rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  max-width: 13ch;
  color: var(--sky-950);
}

.hero__lede {
  display: none;
}

.open-now {
  display: none;
  width: max-content;
  max-width: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--open-bg);
  color: var(--open);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
}

.open-now.is-visible {
  display: inline-flex;
}

.open-now i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--open);
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.18);
}

.open-now--bar {
  margin: 0;
}

.hero__ratings {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--white);
  color: var(--sky-900);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: background 0.15s ease, transform 0.15s ease;
}

.rating-pill:hover {
  background: var(--sky-50);
  transform: translateY(-1px);
}

.rating-pill__stars {
  color: #f5b820;
  letter-spacing: -0.05em;
  font-size: 0.85rem;
}

.rating-pill strong {
  font-weight: 700;
}

.rating-pill__logo {
  display: block;
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
}

.rating-pill__logo--yelp {
  width: 1.35rem;
  height: 1.35rem;
  padding: 0.12rem;
  border-radius: 0.3rem;
  background: #fff;
  box-sizing: border-box;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  align-self: start;
  margin-top: 0.85rem;
  padding: 0.72rem 1.05rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  background: linear-gradient(105deg, var(--sky-700) 0%, var(--sky-500) 55%, var(--sky-400) 100%);
  box-shadow:
    0 10px 22px rgba(13, 111, 163, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-call:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 28px rgba(13, 111, 163, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-call svg {
  width: 1.05rem;
  height: 1.05rem;
}

.btn-call--yellow {
  color: var(--sky-950);
  background: linear-gradient(105deg, #f5b820 0%, var(--yellow) 50%, #ffe08a 100%);
  box-shadow:
    0 12px 28px rgba(254, 200, 72, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .hero__card {
    grid-template-columns: 1.25fr 0.9fr;
  }

  .hero__media {
    min-height: 13.5rem;
  }

  .hero__copy {
    padding: 1.35rem 0.75rem 1.35rem 1.5rem;
  }

  .hero__copy h1 {
    font-size: 1.65rem;
    max-width: 14ch;
  }

  .btn-call {
    margin-top: 1rem;
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 1.5rem;
  }

  .hero__card {
    min-height: 28rem;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    background: linear-gradient(120deg, #d4ecfa 0%, #eef7fd 40%, #fff6e0 100%);
  }

  .hero__media {
    min-height: 0;
    border-radius: 0 calc(var(--radius) + 0.25rem) calc(var(--radius) + 0.25rem) 0;
    overflow: hidden;
  }

  .hero__media img {
    object-position: left center;
  }

  .hero__copy {
    padding: 2.75rem 2.5rem;
  }

  .hero__eyebrow {
    font-size: 0.85rem;
    margin-bottom: 0.45rem;
  }

  .hero__copy h1 {
    font-size: 3.35rem;
    max-width: 14ch;
  }

  .hero__lede {
    display: block;
    margin: 0.75rem 0 0;
    max-width: 40ch;
    font-size: 1.08rem;
    line-height: 1.5;
    color: var(--muted);
  }

  .hero__ratings {
    display: flex;
  }

  .btn-call {
    margin-top: 1.15rem;
    padding: 0.95rem 1.35rem;
    font-size: 1rem;
  }

  .btn-call svg {
    width: 1.15rem;
    height: 1.15rem;
  }
}

/* —— Sheet / identity —— */
.sheet {
  margin-top: 1rem;
  position: relative;
  z-index: 2;
  padding: 0 0 2rem;
}

.sheet__panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 1.25rem;
}

.proof-head {
  display: block;
  margin-bottom: 1rem;
}

.proof-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sky-950);
}

.proof-head .hours {
  margin: 0.35rem 0 0;
  text-align: left;
}

@media (min-width: 1024px) {
  .proof-head h2 {
    font-size: 1.45rem;
  }
}

.call-orb {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--sky-950);
  background: linear-gradient(145deg, var(--yellow), #ffe08a);
  box-shadow: 0 10px 24px rgba(254, 200, 72, 0.45);
  flex-shrink: 0;
}

.call-orb svg {
  width: 1.25rem;
  height: 1.25rem;
}

.call-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.35rem 0.35rem 0.35rem 1.15rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--sky-950);
  background: linear-gradient(105deg, #f5b820 0%, var(--yellow) 50%, #ffe08a 100%);
  box-shadow:
    0 12px 28px rgba(254, 200, 72, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
}

.call-bar strong {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--sky-700), var(--sky-500));
  color: var(--white);
}

.call-bar svg {
  width: 1.15rem;
  height: 1.15rem;
}

.hours {
  margin: 0.75rem 0 0;
  text-align: left;
  font-size: 0.88rem;
  color: var(--muted);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.trust span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--sky-100);
  color: var(--sky-800);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .sheet {
    margin-top: 1.5rem;
    padding-bottom: 1rem;
  }

  .sheet__panel {
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius);
  }

  .call-bar {
    width: fit-content;
    max-width: 100%;
    gap: 1.25rem;
    font-size: 1.05rem;
  }
}

/* —— Sections —— */
.section {
  padding: 1.75rem 0 0.5rem;
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sky-950);
}

.section__head a {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sky-600);
}

@media (min-width: 1024px) {
  .section {
    padding-top: 2.25rem;
  }

  .section__head h2 {
    font-size: 1.75rem;
  }
}

/* Featured cards */
.featured {
  display: grid;
  gap: 0.9rem;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16.5rem, 85%);
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.featured::-webkit-scrollbar {
  height: 0;
}

.feat {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  min-height: 12.5rem;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}

.feat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.feat__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 37, 57, 0.78) 100%);
}

.feat__body {
  position: relative;
  z-index: 1;
  padding: 1.1rem;
  min-height: 12.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.25rem;
}

.feat__body strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feat__body span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.feat__go {
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  z-index: 1;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sky-800);
  box-shadow: var(--shadow);
}

.feat__go svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 1024px) {
  .featured {
    grid-auto-flow: unset;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
    grid-auto-columns: unset;
  }

  .feat,
  .feat__body {
    min-height: 13.5rem;
  }

  .feat__body strong {
    font-size: 0.95rem;
  }
}

/* Service tiles */
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.svc {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 0.9rem 1.05rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 74, 110, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 100%;
}

.svc:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.svc__icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--yellow), var(--yellow-soft));
  color: var(--sky-950);
  box-shadow: 0 8px 18px rgba(254, 200, 72, 0.35);
}

.svc__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.svc strong {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--sky-950);
  line-height: 1.25;
}

.svc span {
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
}

@media (min-width: 1024px) {
  .services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .svc {
    padding: 1.2rem 1.1rem 1.25rem;
  }

  .svc strong {
    font-size: 1.02rem;
  }
}

/* Quotes */
.quotes {
  display: grid;
  gap: 0.85rem;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16rem, 88%);
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
}

.quotes::-webkit-scrollbar {
  height: 0;
}

.quote {
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.quote p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--sky-900);
  font-weight: 500;
}

.quote footer {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sky-700);
}

.quote footer span {
  font-weight: 500;
  color: var(--muted);
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sky-900);
}

.stars > span:first-child {
  color: #f5b820;
  letter-spacing: -0.04em;
  font-size: 0.95rem;
  font-weight: 700;
}

.quote .stars {
  margin-bottom: 0.65rem;
}

.review-card .stars {
  margin-bottom: 0.65rem;
}

@media (min-width: 1024px) {
  .quotes {
    grid-auto-flow: unset;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    grid-auto-columns: unset;
  }
}

/* Reviews page */
.page-hero {
  padding: 1.25rem 0 0.5rem;
}

.page-hero__card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #d4ecfa 0%, #eef7fd 45%, #fff6e0 100%);
  box-shadow: var(--shadow);
}

.page-hero__card h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sky-950);
  line-height: 1.15;
  max-width: 18ch;
}

.page-hero__card p {
  margin: 0.65rem 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.page-hero__card .btn-call {
  margin-top: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.hero-actions .btn-call {
  margin-top: 0;
  align-self: stretch;
}

.btn-call--schedule {
  color: var(--sky-950);
  background: linear-gradient(105deg, #f5b820 0%, var(--yellow) 50%, #ffe08a 100%);
  box-shadow:
    0 12px 28px rgba(254, 200, 72, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-call--outline {
  color: var(--sky-800);
  background: var(--white);
  border: 1.5px solid rgba(12, 74, 110, 0.18);
  box-shadow: 0 6px 16px rgba(12, 74, 110, 0.08);
}

.btn-call--outline:hover {
  border-color: var(--sky-500);
  color: var(--sky-900);
}

.cta-band .hero-actions {
  justify-content: center;
  margin-top: 1.15rem;
}

.cta-band .hero-actions .btn-call {
  margin-top: 0;
}

/* Consultation form */
.consult {
  display: grid;
  gap: 1.5rem;
}

.consult__intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sky-950);
}

.consult__intro > p {
  margin: 0.75rem 0 0;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.55;
}

.consult__perks {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.consult__perks li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sky-900);
  line-height: 1.4;
}

.consult__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
}

.consult-form {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 74, 110, 0.06);
}

.consult-form__honey {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
}

.consult-form__grid {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field[hidden] {
  display: none !important;
}

.field span {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sky-900);
  letter-spacing: -0.01em;
}

.field .req {
  font-style: normal;
  font-weight: 700;
  color: #c2410c;
  margin-left: 0.15em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  border: 1.5px solid rgba(12, 74, 110, 0.14);
  background: var(--sky-50);
  color: var(--sky-950);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8aa0b5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42, 159, 214, 0.2);
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%230c4a6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
}

.consult-form > .btn-call {
  width: 100%;
  margin-top: 1.15rem;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.consult-form__note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.consult-form__status {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
}

.consult-form__status--error {
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fdba74;
}

.consult-form__status--info {
  color: var(--sky-900);
  background: var(--sky-50);
  border: 1px solid var(--sky-200);
}

.consult-form > .btn-call:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
  box-shadow:
    0 8px 18px rgba(254, 200, 72, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.thank-you-eyebrow {
  margin: 0 0 0.35rem !important;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-600);
}

.thank-you-card h1 {
  max-width: 16ch;
}

@media (min-width: 720px) {
  .consult {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 2rem;
  }

  .consult-form {
    padding: 1.75rem;
  }

  .consult-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .field--full {
    grid-column: 1 / -1;
  }

  .consult__intro h2 {
    font-size: 1.75rem;
  }
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.page-hero__meta .rating-pill {
  background: var(--white);
  color: var(--sky-900);
  border-color: var(--line);
}

.page-hero__meta .stars > span:last-of-type:not(:first-child) {
  color: var(--muted);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  gap: 0.85rem;
}

.review-card {
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 74, 110, 0.05);
}

.review-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--sky-900);
  font-weight: 500;
}

.review-card footer {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sky-700);
}

.review-card footer span {
  font-weight: 500;
  color: var(--muted);
}

.reviews-platforms {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.platform-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 74, 110, 0.05);
}

.platform-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sky-950);
}

.platform-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.platform-card a {
  display: inline-flex;
  margin-top: 0.85rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--sky-600);
  text-decoration: none;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-platforms {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding-top: 1.5rem;
  }

  .page-hero__card {
    padding: 2.25rem 2.5rem;
  }

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

/* Proof */
.proof {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.proof__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.proof__media img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.proof__card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--sky-100), var(--white) 55%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 74, 110, 0.05);
}

.proof__card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sky-950);
}

.proof__card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.chips span {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sky-800);
}

@media (min-width: 1024px) {
  .proof {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 1.25rem;
  }

  .proof__media img {
    height: 100%;
    min-height: 18rem;
  }

  .proof__card {
    padding: 2rem;
  }

  .proof__card h2 {
    font-size: 1.75rem;
  }
}

/* CTA band */
.cta-band {
  margin: 2rem 0 0;
  padding: 1.75rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(125deg, var(--yellow) 0%, #ffe08a 55%, #fff3c4 100%);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sky-950);
}

.cta-band p {
  margin: 0.6rem auto 0;
  max-width: 36ch;
  color: var(--sky-900);
  line-height: 1.45;
}

.cta-band .btn-call {
  margin-top: 1.15rem;
}

@media (min-width: 1024px) {
  .cta-band {
    margin-top: 2.5rem;
    padding: 2.25rem;
  }

  .cta-band h2 {
    font-size: 2rem;
  }
}

/* Footer */
.foot {
  margin: 2rem 0 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.foot__grid {
  display: grid;
  gap: 1.75rem;
}

.foot h3 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sky-950);
}

.foot iframe {
  width: 100%;
  height: 14rem;
  border: 0;
  border-radius: var(--radius-sm);
}

.foot__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.foot__list a {
  color: var(--sky-700);
  font-weight: 600;
  text-decoration: none;
}

.foot__list a:hover {
  text-decoration: underline;
}

.foot__owner {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.foot__owner img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1.25rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.foot__owner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.foot__copy {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 1024px) {
  .foot {
    margin: 2.5rem 0 2.5rem;
    padding: 2rem;
  }

  .foot__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
  }

  .foot__owner {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .foot__copy {
    text-align: left;
  }
}

/* Floating dock — mobile only */
.dock {
  position: fixed;
  left: 50%;
  bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 60;
  width: min(24.5rem, calc(100vw - 1.5rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(12, 74, 110, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-decoration: none;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.2rem;
}

.dock .orb {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sky-100);
  color: var(--sky-700);
}

.dock .orb svg {
  width: 1.1rem;
  height: 1.1rem;
}

.dock a[aria-current="page"] {
  color: var(--sky-800);
}

.dock a[aria-current="page"] .orb {
  background: linear-gradient(145deg, var(--sky-600), var(--sky-400));
  color: var(--white);
  box-shadow: 0 8px 18px rgba(26, 134, 192, 0.35);
}

.dock__call {
  color: var(--sky-950) !important;
}

.dock__call .orb {
  background: linear-gradient(145deg, #f5b820, var(--yellow)) !important;
  color: var(--sky-950) !important;
  box-shadow: 0 8px 18px rgba(254, 200, 72, 0.45);
}

@media (min-width: 1024px) {
  .dock {
    display: none;
  }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--sky-900);
  text-decoration: none;
  font-weight: 600;
}

.crumbs a:hover {
  text-decoration: underline;
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(12, 74, 110, 0.35);
  font-weight: 500;
}

.prose {
  display: grid;
  gap: 1.35rem;
}

.prose h2 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sky-950);
  line-height: 1.25;
}

.prose p {
  margin: 0;
  color: var(--sky-900);
  font-size: 1.02rem;
  line-height: 1.65;
}

.prose__block {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 74, 110, 0.04);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-grid li {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(12, 74, 110, 0.04);
  background: var(--white);
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 14 / 13;
  object-fit: cover;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.foot__services {
  margin-top: 1.25rem;
}

.foot__services h4 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sky-950);
}

.foot__services ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot__services a {
  color: var(--sky-900);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.foot__services a:hover {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .foot__services ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-call:hover,
  .header-call:hover,
  .svc:hover {
    transform: none;
  }
}
