:root {
  --ice: #f4fbff;
  --sky: #d7effc;
  --blue: #a9ddf7;
  --blue-deep: #2f69b5;
  --navy: #0d2b5f;
  --black: #111111;
  --ink: #222222;
  --white: #ffffff;
  --line: rgba(13, 43, 95, 0.09);
  --soft-line: rgba(13, 43, 95, 0.05);
  --shadow: 0 30px 80px rgba(14, 26, 49, 0.09);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(169, 221, 247, 0.35), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 42%, var(--ice) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.background-logo {
  position: fixed;
  inset: 0;
  z-index: -2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.06;
}

.background-logo img {
  width: min(72rem, 88vw);
  height: auto;
}

.background-orb {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(24px);
  pointer-events: none;
}

.background-orb-one {
  width: 22rem;
  height: 22rem;
  top: 4rem;
  right: -4rem;
  background: rgba(169, 221, 247, 0.24);
}

.background-orb-two {
  width: 18rem;
  height: 18rem;
  top: 42rem;
  left: -4rem;
  background: rgba(47, 105, 181, 0.09);
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  position: sticky;
  top: 0.75rem;
  z-index: 10;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 40px rgba(13, 43, 95, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text {
  max-width: 12rem;
  line-height: 1.1;
  color: var(--navy);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.site-nav a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(169, 221, 247, 0.24);
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #174887);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 18px 35px rgba(13, 43, 95, 0.22);
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  opacity: 0.96;
  box-shadow: 0 20px 38px rgba(13, 43, 95, 0.28);
}

.button-small {
  padding: 0.75rem 1.1rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding: 4.75rem 0 2.5rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 1.05;
  margin: 0;
  color: var(--black);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.hero-text,
.about-list p,
.contact-panel p,
.service-card p,
.review-grid p,
.section-copy {
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-copy {
  position: relative;
}

.hero-history {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.hero-history span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(13, 43, 95, 0.06);
  border: 1px solid rgba(13, 43, 95, 0.08);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
}

.phone-highlight {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13, 43, 95, 0.96), rgba(23, 72, 135, 0.92));
  color: var(--white);
  box-shadow: 0 22px 42px rgba(13, 43, 95, 0.22);
}

.phone-highlight-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
}

.phone-highlight strong {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.25rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0;
}

.hero-points li,
.stats article,
.service-card,
.about-panel,
.review-grid blockquote,
.contact-panel,
.hero-carousel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow);
}

.hero-points li {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  min-height: 100%;
}

.card-glow {
  position: absolute;
  inset: 12% 5% auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(92, 188, 231, 0.24);
  filter: blur(30px);
}

.hero-carousel {
  position: relative;
  margin: 0;
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  transform: translateY(18px);
}

.hero-carousel-track {
  position: relative;
  min-height: 27rem;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(16px) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 27rem;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 251, 255, 0.92));
  cursor: zoom-in;
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-button {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.carousel-dot {
  width: 0.72rem;
  height: 0.72rem;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 43, 95, 0.2);
  cursor: pointer;
}

.carousel-dot.is-active {
  width: 2rem;
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 4.5rem;
}

.stats article {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
}

.stats strong {
  display: block;
  font-size: 2rem;
  color: var(--navy);
}

.stats span {
  display: block;
  margin-top: 0.55rem;
  line-height: 1.6;
}

.section {
  padding: 2.4rem 0 4.6rem;
}

.section-anchor {
  scroll-margin-top: 7rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-copy {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(34, 34, 34, 0.74);
}

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

.service-card,
.review-grid blockquote {
  padding: 1.65rem;
  border-radius: var(--radius-lg);
  margin: 0;
}

.service-card h3 {
  margin-top: 0;
  color: var(--black);
  font-size: 1.2rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -1.5rem -1.5rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(169, 221, 247, 0.32), transparent 68%);
}

.hours-dropdown {
  margin-top: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hours-dropdown summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-weight: 800;
}

.hours-dropdown summary::-webkit-details-marker {
  display: none;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem 1rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.45rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.96rem;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.9);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.lightbox {
  width: min(94vw, 1100px);
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(8, 12, 18, 0.8);
  backdrop-filter: blur(8px);
}

.lightbox-shell {
  position: relative;
  padding: 5.25rem 5.5rem 2.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.25);
}

.lightbox-figure {
  margin: 0;
}

.lightbox-image {
  display: block;
  width: 100%;
  max-width: calc(100vw - 14rem);
  max-height: 68vh;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  color: rgba(34, 34, 34, 0.76);
  font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 43, 95, 0.9);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.75rem 1rem;
}

.lightbox-nav {
  position: absolute;
  top: 1.25rem;
  transform: none;
  padding: 0.85rem 1rem;
}

.lightbox-nav-prev {
  left: 1.25rem;
}

.lightbox-nav-next {
  right: 7rem;
}

.policy-dropdown {
  margin: 0 0 2rem;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.policy-dropdown summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.policy-dropdown summary::-webkit-details-marker {
  display: none;
}

.policy-copy {
  padding: 0 1.4rem 1.4rem;
}

.policy-copy p {
  margin: 0 0 1rem;
  line-height: 1.75;
}

.policy-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  line-height: 1.75;
}

.about-panel,
.contact-panel {
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 251, 255, 0.88));
}

.about-list ul {
  padding-left: 1.25rem;
  line-height: 1.9;
}

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

.review-grid blockquote {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.review-grid blockquote::before {
  content: "“";
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  font-family: "Fraunces", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(47, 105, 181, 0.12);
}

.review-grid p {
  margin: 0;
}

.review-grid footer {
  font-weight: 800;
  color: var(--blue-deep);
}

.contact-card {
  background:
    linear-gradient(160deg, var(--navy) 0%, #173b75 55%, #24579f 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  justify-content: center;
  box-shadow: 0 28px 70px rgba(13, 43, 95, 0.26);
}

.contact-card a:first-child,
.contact-card a:nth-child(2) {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-card .button {
  margin-top: 0.5rem;
  background: var(--blue);
  color: var(--black);
  box-shadow: none;
}

.site-footer {
  padding: 0 0 2.5rem;
  color: rgba(17, 17, 17, 0.68);
  text-align: center;
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .stats,
  .service-grid,
  .review-grid,
  .about-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .site-nav {
    width: 100%;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.2rem;
    gap: 0.4rem;
  }

  .button-small {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
  }

  .background-orb-one {
    width: 15rem;
    height: 15rem;
  }

  .background-orb-two {
    width: 12rem;
    height: 12rem;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-carousel,
  .about-panel,
  .contact-panel,
  .service-card,
  .review-grid blockquote,
  .stats article {
    padding: 1.25rem;
  }

  .brand {
    flex-wrap: wrap;
  }

  .site-header {
    padding: 0.9rem;
    gap: 0.8rem;
  }

  .site-nav a {
    padding: 0.55rem 0.7rem;
  }

  .brand-text {
    font-size: 0.95rem;
    max-width: none;
  }

  .hero-history,
  .hero-points {
    gap: 0.7rem;
  }

  .hero-history span,
  .hero-points li {
    width: 100%;
  }

  .hero-carousel-track,
  .hero-slide img {
    min-height: 19rem;
    height: 19rem;
  }

  .lightbox {
    width: 100vw;
    max-width: 100vw;
  }

  .lightbox-shell {
    padding: 4rem 1rem 1.25rem;
    border-radius: 0;
    min-height: 100vh;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 62vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .lightbox-nav-prev {
    left: 1rem;
  }

  .lightbox-nav-next {
    right: 1rem;
  }

  .hours-list li {
    flex-direction: column;
    gap: 0.2rem;
  }
}
