@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('./assets/fonts/inter-800.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('./assets/fonts/fraunces-600.ttf') format('truetype');
  font-weight: 600 699;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('./assets/fonts/fraunces-700.ttf') format('truetype');
  font-weight: 700 799;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('./assets/fonts/fraunces-800.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

::selection {
  background: #f2a900;
  color: #17292f;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: #17292f;
  color: white;
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 150ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.nav-link {
  color: rgba(23, 41, 47, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #17292f;
}

.site-brand-logo {
  display: block;
  height: auto;
  width: clamp(11rem, 18vw, 16rem);
}

.eyebrow {
  color: rgba(23, 41, 47, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button-primary,
.button-secondary {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.45rem;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-primary {
  background: #17292f;
  color: white;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.14);
  color: #17292f;
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.stat-card {
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.09);
  color: rgba(23, 41, 47, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 1rem;
}

.stat-card span {
  color: #17292f;
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.section-title {
  color: #17292f;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.02;
  margin-top: 1rem;
}

.service-card,
.fee-card,
.process-row {
  background: white;
  border-radius: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.1);
}

.service-card {
  color: inherit;
  display: block;
  min-height: 17rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.16), 0 18px 50px rgba(23, 41, 47, 0.08);
  transform: translateY(-2px);
}

.service-card.emphasized {
  background: #17292f;
  color: white;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 850;
  margin-top: 2.3rem;
}

.service-card p {
  color: rgba(23, 41, 47, 0.66);
  line-height: 1.75;
  margin-top: 1rem;
}

.service-card.emphasized p {
  color: rgba(255, 255, 255, 0.72);
}

.service-icon {
  align-items: center;
  background: rgba(242, 169, 0, 0.14);
  border-radius: 999px;
  color: #17292f;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.emphasized .service-icon {
  background: rgba(242, 169, 0, 0.22);
  color: white;
}

.process-row {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: auto 1fr;
  padding: 1.5rem;
}

.process-row span {
  align-items: center;
  background: #17292f;
  border-radius: 999px;
  color: white;
  display: flex;
  font-weight: 900;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.process-row h3 {
  font-size: 1.2rem;
  font-weight: 850;
}

.process-row p {
  color: rgba(23, 41, 47, 0.68);
  line-height: 1.7;
  margin-top: 0.35rem;
}

.fee-card {
  min-height: 15rem;
  padding: 1.4rem;
}

.fee-card.featured {
  background: #f2a900;
}

.fee-card p {
  color: rgba(23, 41, 47, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fee-card h3 {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 3.5rem;
}

.fee-card span {
  color: rgba(23, 41, 47, 0.68);
  display: block;
  line-height: 1.6;
  margin-top: 0.8rem;
}

.faq-item {
  background: white;
  border-radius: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.1);
  padding: 1.25rem 1.4rem;
}

.faq-item summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 850;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 900;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  color: rgba(23, 41, 47, 0.68);
  line-height: 1.75;
  margin-top: 1rem;
}

#reviews {
  scroll-margin-top: 6rem;
}

.reviews-shell {
  background: white;
  border-radius: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.1), 0 20px 70px rgba(23, 41, 47, 0.1);
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  margin-top: 3rem;
  overflow: hidden;
}

.reviews-loading {
  color: rgba(23, 41, 47, 0.68);
  font-weight: 800;
  padding: 2rem;
}

.rating-summary {
  align-content: center;
  border-right: 1px solid rgba(23, 41, 47, 0.1);
  display: grid;
  gap: 0.5rem;
  min-height: 12rem;
  padding: 2rem;
  text-align: center;
}

.rating-summary strong {
  color: #17292f;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.12;
}

.rating-summary span:last-child {
  color: rgba(23, 41, 47, 0.68);
  font-size: 0.9rem;
  line-height: 1.45;
}

.stars {
  color: #f2a900;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.google-review-area {
  min-width: 0;
  padding: 1.4rem 1.6rem 1.6rem;
  position: relative;
}

.google-review-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
}

.google-review-controls button {
  align-items: center;
  background: #fbfbf7;
  border: 1px solid rgba(23, 41, 47, 0.13);
  border-radius: 999px;
  color: #17292f;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.45rem;
  height: 2.25rem;
  justify-content: center;
  line-height: 1;
  width: 2.25rem;
}

.google-review-controls button:hover {
  background: #edf4f3;
}

.google-review-controls button:disabled {
  cursor: default;
  opacity: 0.42;
}

.google-review-viewport {
  overflow: hidden;
}

.google-review-track {
  display: flex;
  gap: 1rem;
  padding-bottom: 0.25rem;
  transition: transform 420ms ease;
  will-change: transform;
}

.google-review-card {
  border-radius: 1.1rem;
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.1);
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  padding: 1.1rem;
}

.review-head {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.review-head strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
}

.review-head small {
  color: rgba(23, 41, 47, 0.56);
  display: block;
  font-size: 0.76rem;
}

.avatar,
.avatar-img {
  border-radius: 50%;
  flex: 0 0 auto;
  height: 2.35rem;
  width: 2.35rem;
}

.avatar {
  align-items: center;
  background: #edf4f3;
  color: #17292f;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
}

.avatar-img {
  object-fit: cover;
}

.review-stars {
  color: #f2a900;
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.google-review-card p {
  color: rgba(23, 41, 47, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: 0.55rem;
}

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

.field span {
  color: rgba(23, 41, 47, 0.62);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(23, 41, 47, 0.16);
  border-radius: 1rem;
  background: #fbfbf7;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  width: 100%;
}

.field textarea {
  resize: vertical;
}

.spam-field {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.form-message {
  border-radius: 1rem;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
}

.form-message.success {
  background: rgba(31, 122, 83, 0.12);
  color: #1f6f4d;
}

.form-message.error {
  background: rgba(190, 54, 54, 0.12);
  color: #9c2929;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #f2a900;
  box-shadow: 0 0 0 4px rgba(242, 169, 0, 0.18);
  outline: 0;
}

.contact-link {
  display: block;
  font-size: 1.15rem;
  font-weight: 750;
}

.content-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding: 5rem 1.25rem;
}

.content-grid {
  display: grid;
  gap: 3rem;
}

.copy-block {
  color: rgba(23, 41, 47, 0.72);
  font-size: 1.05rem;
  line-height: 1.85;
}

.copy-block p + p {
  margin-top: 1.2rem;
}

.copy-block ul {
  list-style: disc;
  margin-top: 1rem;
  padding-left: 1.3rem;
}

.copy-block li + li {
  margin-top: 0.5rem;
}

.page-card {
  background: white;
  border-radius: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.1);
  padding: 1.5rem;
}

.page-card h2,
.page-card h3 {
  color: #17292f;
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.2;
}

.page-card p {
  color: rgba(23, 41, 47, 0.68);
  line-height: 1.75;
  margin-top: 0.8rem;
}

.service-list-card {
  background: white;
  border-radius: 1.35rem;
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.1);
  color: inherit;
  display: block;
  padding: 1.35rem;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-list-card:hover,
.service-list-card:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(23, 41, 47, 0.16), 0 18px 50px rgba(23, 41, 47, 0.08);
  transform: translateY(-2px);
}

.service-list-card h2,
.service-list-card h3 {
  font-size: 1.25rem;
  font-weight: 850;
}

.service-list-card p {
  color: rgba(23, 41, 47, 0.68);
  line-height: 1.7;
  margin-top: 0.7rem;
}

@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

@media (max-width: 900px) {
  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .rating-summary {
    border-bottom: 1px solid rgba(23, 41, 47, 0.1);
    border-right: 0;
    min-height: 0;
  }

  .google-review-area {
    padding: 0 1.25rem 1.25rem;
  }

  .google-review-controls {
    display: none;
  }

  .google-review-viewport {
    overflow: visible;
  }

  .google-review-track {
    display: grid;
    transform: none !important;
  }

  .google-review-card {
    flex: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
    font-size: clamp(2.85rem, 12.5vw, 3.35rem) !important;
    letter-spacing: -0.01em !important;
    line-height: 0.94 !important;
  }

  .service-card {
    min-height: auto;
  }
}
