:root {
  --navy: #073b4c;
  --navy-deep: #052b38;
  --teal: #118a8a;
  --teal-soft: #ddf5f2;
  --yellow: #ffca3a;
  --yellow-dark: #e2a900;
  --ink: #12252d;
  --muted: #60717a;
  --line: #d9e3e6;
  --paper: #ffffff;
  --soft: #f4f8f8;
  --shadow: 0 22px 58px rgba(5, 43, 56, 0.14);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

address {
  font-style: normal;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #000;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 227, 230, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--navy-deep);
  font-size: 1.08rem;
  line-height: 1.15;
}

.brand small,
.footer-brand span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.83rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: #3e535c;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.header-call {
  text-align: right;
  text-decoration: none;
}

.header-call span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.header-call strong {
  display: block;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 72% 15%, rgba(17, 138, 138, 0.14), transparent 29%),
    linear-gradient(135deg, #f7fbfb 0%, #ebf6f5 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(7, 59, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 59, 76, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.light-eyebrow {
  color: #9ce7de;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--navy-deep);
  font-size: clamp(2.65rem, 6vw, 5.15rem);
  line-height: 0.99;
  letter-spacing: -0.052em;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-deep);
  font-size: 1.22rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 29px;
  color: #4c6068;
  font-size: 1.14rem;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-deep);
  background: var(--yellow);
  box-shadow: 0 11px 24px rgba(255, 202, 58, 0.25);
}

.button-primary:hover {
  background: #f3b914;
}

.button-ghost,
.button-outline {
  color: var(--navy);
  border-color: #a9c2c6;
  background: rgba(255, 255, 255, 0.72);
}

.button-light {
  color: var(--navy-deep);
  background: #fff;
}

.large-button {
  min-width: 220px;
  font-size: 1.12rem;
}

.hero-details {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-details span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-details b {
  color: var(--navy-deep);
}

.hero-media {
  position: relative;
}

.photo-shell {
  position: relative;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 43, 56, 0.22), transparent 45%);
}

.photo-shell img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(5, 43, 56, 0.18);
}

.photo-badge small,
.photo-badge strong {
  display: block;
}

.photo-badge small {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.photo-badge strong {
  color: var(--navy-deep);
  font-size: 0.92rem;
}

.drop {
  width: 30px;
  height: 38px;
  display: block;
  border-radius: 54% 46% 62% 38% / 68% 43% 57% 32%;
  background: var(--teal);
  transform: rotate(45deg);
}

.photo-caption {
  margin: 10px 8px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.quick-contact {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr auto;
  align-items: stretch;
}

.quick-grid > div,
.quick-map {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.quick-grid > div:first-child {
  padding-left: 0;
}

.quick-grid a {
  text-decoration: none;
}

.quick-grid > div a {
  color: var(--navy);
  font-size: 1.24rem;
  font-weight: 900;
}

.quick-grid > div strong {
  color: var(--navy-deep);
  font-size: 1rem;
}

.quick-label {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quick-map {
  min-width: 210px;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-right: 0;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 40px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 31px rgba(5, 43, 56, 0.055);
}

.featured-service {
  background: #effaf8;
  border-color: #bde2dc;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-wrap {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--teal-soft);
}

.icon-wrap svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgba(17, 138, 138, 0.25), transparent 26%),
    var(--navy);
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 76px;
  align-items: center;
}

.value-section h2,
.value-section h3 {
  color: #fff;
}

.value-intro {
  max-width: 620px;
  margin-bottom: 26px;
  color: #c7dadd;
}

.value-list {
  display: grid;
  gap: 13px;
}

.value-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  padding: 21px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.065);
}

.value-list article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-deep);
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
}

.value-list h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.value-list p {
  margin-bottom: 0;
  color: #c7dadd;
  font-size: 0.92rem;
}

.reviews-section {
  background: var(--soft);
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.reviews-heading > div {
  max-width: 700px;
}

.review-link {
  flex: 0 0 auto;
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.review-card {
  margin: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(5, 43, 56, 0.055);
}

.stars {
  margin-bottom: 18px;
  color: #f4ad00;
  letter-spacing: 0.12em;
}

.review-card blockquote {
  min-height: 88px;
  margin: 0 0 22px;
  color: #374d56;
  font-size: 1.02rem;
  font-weight: 700;
}

.review-card figcaption strong,
.review-card figcaption span {
  display: block;
}

.review-card figcaption strong {
  color: var(--navy-deep);
}

.review-card figcaption span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.review-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: 72px;
  align-items: start;
}

.faq-grid > div:first-child > p:last-child {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

summary {
  position: relative;
  padding: 21px 34px 21px 0;
  color: var(--navy-deep);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 17px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
}

details[open] summary::after {
  content: "–";
}

details p {
  margin-bottom: 20px;
  color: var(--muted);
}

details a {
  color: var(--teal);
  font-weight: 900;
}

.location-section {
  padding: 0;
  background: #eef7f6;
}

.location-grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  align-items: stretch;
}

.location-copy {
  padding: 78px max(40px, calc((100vw - var(--container)) / 2));
  padding-right: 65px;
}

.location-copy address {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

.location-copy address strong {
  color: var(--navy-deep);
}

.location-phone {
  display: inline-block;
  margin-bottom: 23px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 900;
  text-decoration: none;
}

.map-frame {
  min-height: 480px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border: 0;
  filter: saturate(0.88) contrast(1.02);
}

.final-cta {
  padding: 64px 0;
  color: #fff;
  background: var(--teal);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta h2 {
  margin-bottom: 8px;
}

.final-cta p:last-child {
  margin-bottom: 0;
  opacity: 0.88;
}

.site-footer {
  padding: 42px 0 92px;
  color: #bfd2d7;
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand span {
  color: #b6cbd0;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-info a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.footer-info span {
  color: #b6cbd0;
  font-size: 0.86rem;
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #91aeb5;
  font-size: 0.78rem;
}

.mobile-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 45;
  display: none;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 17px;
  border-radius: 15px;
  color: var(--navy-deep);
  background: var(--yellow);
  box-shadow: 0 15px 38px rgba(0,0,0,0.28);
  text-decoration: none;
}

.mobile-call span,
.mobile-call strong {
  display: block;
}

.mobile-call span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-call strong {
  font-size: 1.08rem;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .value-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .photo-shell img {
    min-height: 420px;
  }

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

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

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

  .quick-map {
    grid-column: 1 / -1;
  }

  .quick-grid > div:nth-child(2) {
    border-right: 0;
  }

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

  .location-copy {
    padding: 70px max(28px, calc((100vw - var(--container)) / 2));
  }
}

@media (max-width: 690px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-copy small,
  .header-call span {
    display: none;
  }

  .brand strong {
    max-width: 145px;
    font-size: 0.95rem;
  }

  .header-call strong {
    font-size: 0.88rem;
  }

  .hero {
    padding: 60px 0 54px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-actions,
  .location-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-details {
    display: grid;
  }

  .photo-shell {
    border-width: 6px;
    border-radius: 22px;
  }

  .photo-shell img {
    min-height: 320px;
  }

  .photo-badge {
    right: 10px;
    bottom: 10px;
  }

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

  .quick-grid > div,
  .quick-grid > div:first-child,
  .quick-map {
    min-height: 80px;
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-map {
    padding: 17px;
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

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

  .reviews-heading,
  .final-cta-inner {
    display: grid;
    align-items: start;
  }

  .review-card blockquote {
    min-height: auto;
  }

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

  .location-copy {
    padding: 62px 20px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
  }

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

  .footer-info {
    align-items: flex-start;
    text-align: left;
  }

  .mobile-call {
    display: flex;
  }

  .site-footer {
    padding-bottom: 104px;
  }
}

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

  .button {
    transition: none;
  }
}
