﻿:root {
  --navy: #0b2f3d;
  --deep: #08222b;
  --teal: #0f5066;
  --gold: #f4b340;
  --sun: #f6c75f;
  --sand: #f7f1e6;
  --white: #ffffff;
  --slate: #314a57;
  --shadow: rgba(6, 22, 27, 0.22);
}

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

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--deep);
  background: radial-gradient(circle at 20% 20%, rgba(244, 179, 64, 0.18), transparent 40%),
              radial-gradient(circle at 80% 0%, rgba(15, 80, 102, 0.22), transparent 45%),
              var(--sand);
  line-height: 1.6;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 47, 61, 0.12);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--navy);
}

.logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-weight: 600;
  color: var(--slate);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(11, 47, 61, 0.2);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.nav-bar {
  width: 22px;
  height: 2px;
  background: var(--navy);
  display: block;
}

.phone {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(130deg, var(--gold), var(--sun));
  color: var(--navy);
  box-shadow: 0 12px 25px rgba(244, 179, 64, 0.3);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(11, 47, 61, 0.25);
  color: var(--navy);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(11, 47, 61, 0.15);
}

.hero {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(244, 179, 64, 0.35), transparent 55%),
              radial-gradient(circle at 80% 10%, rgba(15, 80, 102, 0.35), transparent 50%),
              linear-gradient(150deg, rgba(11, 47, 61, 0.08), transparent 65%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--teal);
  font-size: 0.75rem;
}

.hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 12px 0 16px;
  color: var(--navy);
}

.lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 30px;
}

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

.hero-highlights .stat {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
}

.hero-highlights .label {
  font-size: 0.9rem;
  color: var(--slate);
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(11, 47, 61, 0.18);
  border: 1px solid rgba(11, 47, 61, 0.1);
  transform: translateY(10px);
}

.hero-card-inner {
  padding: 32px;
}

.hero-card h2 {
  margin-top: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--navy);
}

.hero-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--slate);
}

.hero-contact a {
  display: block;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
}

.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
  color: var(--navy);
}

.services {
  background: var(--white);
}

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

.service-card {
  background: var(--sand);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(11, 47, 61, 0.08);
  border: 1px solid rgba(11, 47, 61, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(11, 47, 61, 0.14);
}

.service-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 600;
  color: var(--teal);
}

.reviews {
  background: var(--sand);
}

.reviews-marquee {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding-bottom: 20px;
}

.reviews-row {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 48s linear infinite;
}

.reviews-row.reverse .reviews-track {
  animation-duration: 56s;
  animation-direction: reverse;
}

.review-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 20px;
  width: 280px;
  box-shadow: 0 14px 30px rgba(11, 47, 61, 0.1);
  border: 1px solid rgba(11, 47, 61, 0.08);
  display: grid;
  gap: 10px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
}

.review-time {
  font-size: 0.85rem;
  color: var(--slate);
  font-weight: 500;
}

.review-meta {
  font-size: 0.85rem;
  color: var(--slate);
}

.stars {
  width: 110px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
  max-width: 110px;
}

.review-card svg {
  max-width: 110px;
  height: 20px;
  width: 110px;
}

.review-card .stars {
  width: 110px !important;
  height: 20px !important;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
  }
}

.about {
  background: linear-gradient(140deg, rgba(15, 80, 102, 0.08), rgba(244, 179, 64, 0.08));
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-copy h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--navy);
}

.pillars {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.pillars h3 {
  margin-bottom: 6px;
  color: var(--teal);
}

.about-panel {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(11, 47, 61, 0.14);
  border: 1px solid rgba(11, 47, 61, 0.08);
}

.panel-inner {
  padding: 30px;
}

.panel-inner h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--navy);
}

.panel-inner ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--slate);
}

.area-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(11, 47, 61, 0.12);
}

.area-map {
  position: relative;
  min-height: 280px;
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
  border: 1px solid rgba(11, 47, 61, 0.1);
  box-shadow: inset 0 0 0 1px rgba(244, 179, 64, 0.15);
}

#service-map {
  height: 100%;
  min-height: 280px;
  width: 100%;
}

.area-details h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--navy);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.area-list span {
  padding: 6px 12px;
  background: rgba(11, 47, 61, 0.08);
  border-radius: 999px;
  font-size: 0.9rem;
}

.cta {
  background: linear-gradient(135deg, rgba(11, 47, 61, 0.9), rgba(15, 80, 102, 0.85));
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.cta h2 {
  font-family: "Fraunces", "Times New Roman", serif;
}

.cta .btn.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.contact {
  background: var(--white);
}

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

.contact-details {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.contact-details span {
  display: block;
  font-weight: 600;
  color: var(--teal);
}

.contact-form {
  background: var(--sand);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(11, 47, 61, 0.12);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--slate);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(11, 47, 61, 0.2);
  font-family: inherit;
}

.other-referral {
  display: none;
}

.other-referral.is-visible {
  display: grid;
}

.contact-form button {
  width: 100%;
}

.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 20px;
}

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

.footer-logo {
  width: 84px;
  margin-bottom: 16px;
}

.site-footer h3 {
  margin-top: 0;
  color: var(--gold);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(244, 179, 64, 0.12);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(244, 179, 64, 0.25);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.legal-page {
  padding: 60px 0 90px;
}

.legal-page .legal-content {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 18px 45px rgba(11, 47, 61, 0.1);
  border: 1px solid rgba(11, 47, 61, 0.08);
}

.legal-page h1,
.legal-page h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--navy);
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page ul {
  padding-left: 20px;
  color: var(--slate);
}

.service-hero {
  padding: 70px 0 40px;
}

.service-hero .hero-grid {
  align-items: start;
}

.service-illustration {
  background: var(--white);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 20px 45px rgba(11, 47, 61, 0.12);
  border: 1px solid rgba(11, 47, 61, 0.08);
  display: grid;
  place-items: center;
  min-height: 280px;
}

.service-illustration svg {
  width: min(420px, 100%);
  height: auto;
}

.float {
  animation: float 3.6s ease-in-out infinite;
}

.sway {
  transform-origin: bottom center;
  animation: sway 2.4s ease-in-out infinite;
}

.spin {
  transform-origin: center;
  animation: spin 2.4s linear infinite;
}

.bob {
  transform-origin: center;
  animation: bob 2.2s ease-in-out infinite;
}

.snowflake {
  animation: fall 2.8s linear infinite;
}

.snowflake.delay {
  animation-delay: 0.6s;
}

.snowflake.delay-2 {
  animation-delay: 1.2s;
}

.bounce {
  transform-origin: bottom center;
  animation: bounce 1.8s ease-in-out infinite;
}

.wobble {
  transform-origin: center;
  animation: wobble 2.4s ease-in-out infinite;
}

.service-hero h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  margin-top: 0;
}

.service-hero .lead {
  max-width: 680px;
}

.service-section {
  padding: 50px 0;
}

.service-section.alt {
  background: rgba(15, 80, 102, 0.06);
}

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

.service-box {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(11, 47, 61, 0.1);
  border: 1px solid rgba(11, 47, 61, 0.08);
}

.service-list {
  padding-left: 20px;
  color: var(--slate);
}

.service-area-list {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-area-list li {
  padding: 8px 12px;
  background: rgba(11, 47, 61, 0.08);
  border-radius: 12px;
  font-size: 0.95rem;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 47, 61, 0.12);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--teal);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes sway {
  0%, 100% {
    transform: rotate(-2deg);
  }
  50% {
    transform: rotate(2deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes fall {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(28px);
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes wobble {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}


@media (max-width: 960px) {
  .header-grid {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "cta cta";
    align-items: center;
    text-align: left;
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    grid-area: toggle;
    display: inline-flex;
  }

  .site-nav {
    grid-area: nav;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 16px 40px rgba(11, 47, 61, 0.15);
    border: 1px solid rgba(11, 47, 61, 0.08);
    display: none;
  }

  .site-nav a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: rgba(11, 47, 61, 0.06);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-cta {
    grid-area: cta;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-cta .phone {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 60px;
  }

  .hero-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .service-illustration {
    order: 3;
  }
}
