:root {
  --navy: #0f172a;
  --charcoal: #1f2937;
  --slate: #e2e8f0;
  --stone: #f8fafc;
  --accent: #f97316;
  --white: #ffffff;
  --text: #0b1220;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--stone);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  background: rgba(15, 23, 42, 0.9);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.logo {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav__toggle {
  display: none;
  background: var(--white);
  color: var(--navy);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__links a {
  color: var(--white);
  font-weight: 600;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--accent);
}

.header-cta {
  background: var(--accent);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 75vh;
  display: grid;
  align-items: flex-start;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  margin-top: 0;
  padding-top: 0;
}

@media (max-width: 640px) {
  .hero {
    margin-top: -70px;
    padding-top: 0;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=70");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
}

.hero__content {
  position: relative;
  max-width: 800px;
  padding: 4vh 5vw 6vh;
  display: grid;
  gap: 18px;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
}

.subhead {
  font-size: 18px;
  max-width: 60ch;
  margin: 0;
  color: #e5e7eb;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button--primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.25);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.35);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.metric {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric strong {
  display: block;
  font-size: 20px;
}

.section {
  padding: 80px 5vw;
}

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

.section--metrics {
  background: var(--navy);
  color: var(--white);
}

.section__header {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin-bottom: 36px;
}

.section__lead {
  margin: 0;
  color: #4b5563;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.service-card {
  padding: 18px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.metric-block {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.gallery--slider {
  display: grid;
  grid-template-columns: 1fr;
}

.gallery__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 100%);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.gallery--slider .gallery__item {
  margin: 0;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
}

.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  aspect-ratio: 4 / 3;
  background: #0f172a;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.45));
  pointer-events: none;
}

.gallery__item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.gallery__item:hover img,
.gallery__item:focus-within img {
  transform: scale(1.02);
}

.slider {
  position: relative;
  display: grid;
  align-items: center;
  gap: 12px;
}

.slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 14px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  min-height: 180px;
  display: grid;
  gap: 8px;
}

.rating {
  margin: 0;
  color: #fbbf24;
  letter-spacing: 1px;
  font-weight: 700;
}

.author {
  font-weight: 700;
  color: #1f2937;
}

.slider__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.slider__control--prev {
  left: -10px;
}

.slider__control--next {
  right: -10px;
}

.reviews {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 16px;
  align-items: start;
}

.reviews__summary {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.reviews__score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews__rating {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.reviews__stars {
  margin: 0;
  color: #fbbf24;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.2;
}

.reviews__count {
  margin: 0;
  color: #4b5563;
  font-weight: 600;
}

.reviews__bars {
  display: grid;
  gap: 6px;
}

.reviews__bar-row {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  color: #4b5563;
}

.reviews__bar {
  height: 8px;
  background: var(--slate);
  border-radius: 999px;
  overflow: hidden;
}

.reviews__bar span {
  display: block;
  height: 100%;
  background: var(--accent);
}

.reviews__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--stone);
  border: 1px solid #e5e7eb;
  font-weight: 700;
  color: #1f2937;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.reviews__list.is-collapsed .review-card.is-extra {
  display: none;
}

.reviews__actions {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.reviews__toggle {
  min-width: 200px;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.25);
}

.review-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.review-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.review-card__name {
  margin: 0;
  font-weight: 800;
  color: #0f172a;
}

.review-card__meta {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.review-card__text {
  margin: 0;
  color: #111827;
}

.review-card__response {
  margin: 0;
  padding: 10px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  color: #0f172a;
}

.section--cta {
  background: #0b1220;
  color: var(--white);
  padding: 72px 5vw;
}

.contact-shell {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--white);
  color: var(--text);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
  border: 1px solid #e5e7eb;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: start;
}

.contact-lead .section__header {
  margin-bottom: 8px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 8px 0 12px;
  list-style: none;
}

.contact-points li {
  background: var(--stone);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 7px 10px;
  font-weight: 600;
}

.contact-alt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  padding-top: 6px;
  color: #1f2937;
}

.contact-alt strong {
  display: block;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row.split {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.form-row label {
  font-weight: 700;
  color: #111827;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font: inherit;
  background: #fff;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-row textarea {
  resize: vertical;
  min-height: 96px;
}

.form-actions {
  display: grid;
  gap: 6px;
  align-items: center;
  grid-template-columns: auto 1fr;
}

.form-note {
  margin: 0;
  color: #4b5563;
  font-weight: 600;
}

.form-actions .button--primary {
  padding-inline: 18px;
}

.contact-section {
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.12), transparent 36%),
    radial-gradient(circle at 80% 8%, rgba(88, 110, 161, 0.18), transparent 40%),
    #0f172a;
  padding: 80px 0;
}

.contact-page {
  background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.06), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(15, 23, 42, 0.08), transparent 34%),
    #f7f8fb;
  min-height: 100vh;
}

.contact-layout {
  padding: 100px 5vw 90px;
  max-width: 1200px;
  margin: 0 auto;
}


.contact-hero {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 820px;
}

.contact-hero h1,
.contact-hero h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: #ffffff;
}

.contact-hero .subhead {
  max-width: 760px;
  margin: 10px auto 0;
  color: #e5e7eb;
}

.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 20px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  border: 1px solid #e7ecf2;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent), #fb923c);
}

.contact-card > * {
  position: relative;
  margin-left: 6px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #f97316, #fb923c);
  color: #fff;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card__label {
  margin: 0;
  font-weight: 800;
  color: #0f172a;
}

.contact-card__value {
  margin: 4px 0 0;
  color: #4b5563;
  line-height: 1.5;
}

.contact-card__hours {
  font-size: 14px;
  line-height: 1.45;
}

.contact-hours {
  display: grid;
  gap: 6px;
}

.contact-card__hours {
  position: relative;
}

.contact-card__hours.is-collapsed {
  max-height: 44px;
  overflow: hidden;
}

.contact-card__hours.is-collapsed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.9) 95%);
  pointer-events: none;
}

.contact-hours__toggle {
  justify-self: start;
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.contact-panel {
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.14);
  border: 1px solid #e9edf3;
  position: relative;
}

.contact-panel h2,
.contact-panel h3 {
  margin: 0 0 10px;
}

.contact-panel__lead {
  margin: 0 0 18px;
  color: #4b5563;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9edf3;
}

.contact-panel__form input,
.contact-panel__form select,
.contact-panel__form textarea {
  background: #f9fafb;
  border: 1px solid #e4e9f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  min-height: 52px;
  padding: 14px 14px;
}

.contact-panel__form input:focus,
.contact-panel__form select:focus,
.contact-panel__form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.contact-panel__form {
  display: grid;
  gap: 14px;
}

.contact-panel .form-row textarea {
  min-height: 120px;
}

.contact-panel .button--primary {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  letter-spacing: 0.01em;
}

.contact-panel label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #0f172a;
}

.contact-panel label::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  border-radius: 4px;
  background: var(--accent);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 14px 14px;
  mask-size: 14px 14px;
}

.contact-panel label[for="name"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Z'/><path d='M4 20a8 8 0 0 1 16 0'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Z'/><path d='M4 20a8 8 0 0 1 16 0'/></svg>");
}

.contact-panel label[for="phone"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M6.6 2.8a1 1 0 0 1 1.1.18l2.7 2.4a1 1 0 0 1 .17 1.3l-1.4 2a1 1 0 0 0 .11 1.26l3.3 3.3a1 1 0 0 0 1.26.12l2-1.38a1 1 0 0 1 1.3.14l2.37 2.7a1 1 0 0 1 .2 1.03l-.6 1.8a2 2 0 0 1-1.8 1.38c-7.02.5-12.85-5.33-12.35-12.35a2 2 0 0 1 1.38-1.8Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'><path d='M6.6 2.8a1 1 0 0 1 1.1.18l2.7 2.4a1 1 0 0 1 .17 1.3l-1.4 2a1 1 0 0 0 .11 1.26l3.3 3.3a1 1 0 0 0 1.26.12l2-1.38a1 1 0 0 1 1.3.14l2.37 2.7a1 1 0 0 1 .2 1.03l-.6 1.8a2 2 0 0 1-1.8 1.38c-7.02.5-12.85-5.33-12.35-12.35a2 2 0 0 1 1.38-1.8Z'/></svg>");
}

.contact-panel label[for="email"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/><path d='m22 6-10 7L2 6'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z'/><path d='m22 6-10 7L2 6'/></svg>");
}

.contact-panel label[for="service"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m7 10 1.1 1.1a2 2 0 0 0 2.83 0L12 10'/><path d='m7 14 1.1 1.1a2 2 0 0 0 2.83 0L12 14'/><path d='M20 7h-5.5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2H20a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2Z'/><path d='M10 7H4a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h6'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m7 10 1.1 1.1a2 2 0 0 0 2.83 0L12 10'/><path d='m7 14 1.1 1.1a2 2 0 0 0 2.83 0L12 14'/><path d='M20 7h-5.5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2H20a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2Z'/><path d='M10 7H4a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h6'/></svg>");
}

.contact-panel label[for="message"]::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9H13a8.48 8.48 0 0 1 8 8Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9H13a8.48 8.48 0 0 1 8 8Z'/></svg>");
}

@media (max-width: 640px) {
  .contact-section {
    padding: 56px 0;
  }

  .contact-layout {
    padding: 48px 5vw 56px;
  }

  .contact-grid {
    gap: 14px;
  }

  .contact-info {
    gap: 10px;
  }

  .contact-card {
    padding: 14px;
    grid-template-columns: auto 1fr;
    gap: 10px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .contact-card__label {
    font-size: 15px;
  }

  .contact-card__value {
    font-size: 14px;
  }

  .contact-panel {
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  }

  .contact-panel__lead {
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .contact-panel__form {
    gap: 12px;
  }

  .contact-panel__form input,
  .contact-panel__form select,
  .contact-panel__form textarea {
    min-height: 48px;
    padding: 12px;
  }

  .contact-panel .form-row.split {
    grid-template-columns: 1fr;
  }

  .contact-panel .button--primary {
    min-height: 48px;
  }
}

.footer {
  padding: 32px 5vw 40px;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 18px;
}

.footer__brand {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__logo {
  font-size: 18px;
}

.footer__tagline,
.footer__legal {
  margin: 0;
  color: #cbd5e1;
}

.footer__rating {
  margin: 6px 0 0;
  font-weight: 700;
}

.footer__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__cta-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.footer__col {
  display: grid;
  gap: 8px;
}

.footer__heading {
  margin: 0;
  font-weight: 800;
  color: var(--white);
}

.footer__text {
  margin: 0;
  color: #cbd5e1;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: #cbd5e1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: 58px;
    right: 5vw;
    background: var(--navy);
    padding: 12px;
    border-radius: 12px;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }

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

  .hero__media {
    background-attachment: scroll;
  }

  .hero__content {
    padding: 16vh 6vw 12vh;
  }

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

  .services,
  .metrics,
  .gallery {
    grid-template-columns: 1fr;
  }

  .slider__track {
    grid-auto-columns: 100%;
  }

  .slider__control {
    position: static;
    transform: none;
    order: -1;
    margin: 0 auto;
  }

  .slider {
    gap: 6px;
  }

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

  .cta-actions {
    justify-content: center;
  }

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

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

  .cta-actions {
    flex-direction: column;
  }

  .footer__brand {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

