:root {
  --navy: #123249;
  --blue: #20a8e0;
  --blue-dark: #0b84bb;
  --mint: #8edfc5;
  --yellow: #f9c642;
  --ink: #1d2a32;
  --muted: #667783;
  --line: #e6eef2;
  --soft: #f6fbfd;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito Sans", Arial, sans-serif;
  background: var(--white);
  line-height: 1.5;
}

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

button {
  cursor: pointer;
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 900;
}

a {
  text-underline-offset: 3px;
}

img {
  display: block;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.page-stage {
  overflow-x: clip;
}

.page-shell {
  will-change: transform, opacity;
}

.page-rise-enter-active,
.page-rise-leave-active {
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
}

.page-rise-enter-from {
  opacity: 0;
  transform: translateY(56px);
}

.page-rise-enter-to,
.page-rise-leave-from {
  opacity: 1;
  transform: translateY(0);
}

.page-rise-leave-to {
  opacity: 0;
  transform: translateY(-18px);
}

@media (prefers-reduced-motion: reduce) {
  .page-rise-enter-active,
  .page-rise-leave-active {
    transition: opacity 140ms ease;
  }

  .page-rise-enter-from,
  .page-rise-leave-to {
    opacity: 0;
    transform: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(18, 50, 73, 0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: 23px;
  font-weight: 800;
  white-space: nowrap;
}

.brand.home-brand {
  font-size: 32px;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

nav button,
.footer button {
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
}

nav > button,
.dropdown > button {
  padding: 29px 10px;
  border-radius: 4px;
}

nav > button:hover,
.dropdown > button:hover,
.footer button:hover {
  color: var(--blue-dark);
  background: var(--soft);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 12px;
  display: none;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(18, 50, 73, 0.16);
  border-top: 4px solid var(--blue);
  border-radius: 0 0 8px 8px;
}

.dropdown:hover .dropdown-menu {
  display: grid;
}

.grid-menu {
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 2px;
  left: -130px;
}

.grid-menu.areas {
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  max-height: 470px;
  overflow: auto;
}

.dropdown-menu button {
  text-align: left;
  padding: 10px 12px;
}

.dropdown-menu button:hover {
  background: var(--soft);
}

.book,
.primary,
.secondary-cta {
  border: 0;
  border-radius: 4px;
  padding: 13px 22px;
  font-weight: 900;
}

.book,
.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(32, 168, 224, 0.26);
}

.secondary-cta {
  min-height: 48px;
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid rgba(32, 168, 224, 0.42);
}

.primary {
  min-height: 48px;
}

.book {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 58px 0;
  background-color: var(--white);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 56px;
  align-items: center;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  justify-self: center;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.hero-logo img {
  width: min(44vw, 520px);
  height: auto;
  display: block;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-self: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
}

.hero-copy {
  color: var(--ink);
  width: 100%;
  max-width: 500px;
  text-align: center;
  justify-self: center;
}

.eyebrow {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--blue-dark);
}

h1,
h2,
h3,
h4 {
  font-family: Montserrat, sans-serif;
  color: var(--navy);
  letter-spacing: 0;
}

.hero h1 {
  color: var(--navy);
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.14;
  margin: 16px 0 4px;
}

.hero p {
  font-size: 16px;
  line-height: 1.62;
  max-width: 620px;
}

.hero-subtitle {
  margin: 0;
  color: #d71920;
  font-family: Montserrat, sans-serif;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 800;
  line-height: 1.2;
}

.hero-summary {
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0;
}

.hero-actions,
.page-hero-actions {
  flex-direction: column;
  align-items: flex-start;
}

.hero-actions {
  align-items: center;
}

.hero-actions a,
.phone-link {
  color: inherit;
  font-size: 19px;
  font-weight: 900;
  text-decoration: none;
}

.inline-phone,
.footer a,
.cta-row a {
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.quote-card {
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(18, 50, 73, 0.2);
}

.hero .quote-card {
  width: 100%;
  max-width: 500px;
  min-width: 0;
  padding: 24px;
  justify-self: center;
}

.quote-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.18;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  min-height: 44px;
  margin-bottom: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fbfdfe;
}

.quote-card textarea {
  min-height: 82px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--blue-dark);
  font-weight: 800;
}

.reviews-band {
  padding: 46px 0;
  background: var(--soft);
}

.reviews-header,
.split,
.areas-grid,
.contact-layout,
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.stars {
  color: var(--yellow);
  font-size: 26px;
  letter-spacing: 0;
}

.reviews-scroll-section {
  padding: 8px 0 86px;
  overflow: hidden;
}

.reviews-scroll {
  overflow: hidden;
  padding: 4px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-left 42s linear infinite;
}

.reviews-scroll:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  flex: 0 0 calc((min(1180px, 100vw - 48px) - 72px) / 4);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 50, 73, 0.07);
}

.review-card .stars {
  margin: 0 0 16px;
  color: var(--yellow);
}

.review-card p:not(.stars) {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.68;
}

.review-card h3 {
  margin: auto 0 4px;
  font-size: 19px;
}

.review-card small {
  color: var(--blue-dark);
  font-weight: 900;
}

@keyframes reviews-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

.split {
  padding: 88px 0;
}

.split img,
.text-rich img,
.area-map {
  width: 100%;
  aspect-ratio: 1.05;
  border-radius: 8px;
}

.split img,
.text-rich img {
  object-fit: cover;
}

.area-map {
  min-height: 360px;
  border: 0;
  box-shadow: 0 12px 30px rgba(18, 50, 73, 0.08);
}

.split h2,
.text-stack h2,
.areas-band h2,
.project-strip h2,
.text-rich h2,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.split h2,
.text-stack h2,
.areas-band h2,
.project-strip h2,
.text-rich h2 {
  margin: 8px 0 18px;
}

.split p,
.text-stack p,
.text-rich p,
.areas-band p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 8px 0 86px;
}

.service-cards article,
.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 50, 73, 0.07);
}

.service-cards article {
  display: flex;
  flex-direction: column;
}

.service-cards img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.service-cards h3,
.service-cards p,
.service-cards small {
  padding: 0 20px;
}

.service-cards h3 {
  margin: 20px 0 8px;
}

.service-cards p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.service-cards button {
  margin: auto 20px 22px;
  border: 0;
  color: var(--blue-dark);
  background: transparent;
  font-weight: 900;
  text-align: left;
  padding: 0;
}

.text-stack {
  padding: 82px 0;
  border-top: 1px solid var(--line);
}

.text-stack article {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 38px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.text-stack article h3,
.text-stack article p {
  margin-top: 0;
}

.areas-band,
.cta-row {
  padding: 78px 0;
  background: var(--navy);
  color: var(--white);
}

.areas-band h2,
.areas-band p,
.cta-row h3,
.cta-row p {
  color: var(--white);
}

.areas-grid ul {
  columns: 3;
  margin: 0;
  padding-left: 22px;
  line-height: 2;
  font-weight: 800;
}

.areas-grid li {
  break-inside: avoid;
}

.areas-grid li button {
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  font-weight: 800;
  text-align: left;
}

.areas-grid li button:hover {
  color: var(--yellow);
}

.project-strip {
  padding: 82px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.cta-grid > div {
  padding: 8px 18px;
}

.owner-section {
  padding: 86px 0;
  background: var(--white);
}

.owner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.owner-grid img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(18, 50, 73, 0.12);
}

.owner-grid h2 {
  margin: 8px 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.owner-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.owner-grid .eyebrow {
  color: var(--blue);
  font-size: 16px;
  line-height: 1.4;
}

.page-hero {
  padding: 92px 0;
  background:
    linear-gradient(90deg, rgba(246, 251, 253, 0.94), rgba(246, 251, 253, 0.82)),
    url("/static/assets/go.gif") center / 450px auto no-repeat;
}

.page-hero h1 {
  margin: 0 0 20px;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

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

.compact {
  box-shadow: 0 18px 42px rgba(18, 50, 73, 0.12);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 4px var(--white), 0 0 0 2px rgba(32, 168, 224, 0.28);
}

.hero-note {
  margin: 18px 0 0;
  color: var(--blue-dark);
  font-weight: 900;
}

.text-rich,
.contact-layout,
.booking-layout {
  padding: 86px 0;
}

.booking-layout {
  align-items: start;
  padding-top: 72px;
}

.booking-layout h2 {
  margin: 8px 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.booking-layout p,
.booking-notes li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.booking-notes {
  margin: 22px 0 0;
  padding-left: 22px;
}

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form label span {
  color: var(--navy);
  font-weight: 900;
}

.booking-form select {
  width: 100%;
  min-height: 44px;
  margin-bottom: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fbfdfe;
}

.about-team-photo {
  display: block;
  max-width: 620px;
  max-height: 360px;
  margin: 0 auto 34px;
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: center;
}

.text-rich h3 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

.text-rich ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 52px;
  align-items: start;
  padding: 86px 0;
}

.faq-intro {
  position: sticky;
  top: 118px;
}

.faq-intro h2 {
  margin: 8px 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.faq-intro p,
.faq-answer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(18, 50, 73, 0.06);
  overflow: hidden;
}

.faq-item.open {
  border-color: rgba(32, 168, 224, 0.42);
  box-shadow: 0 16px 36px rgba(18, 50, 73, 0.1);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 18px 22px;
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue-dark);
  font-size: 24px;
  line-height: 1;
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  margin: 0;
}

.mini {
  grid-template-columns: 0.8fr 1.2fr;
  padding: 22px 0 0;
}

.text-rich li {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 18px;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.area-cloud button {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  color: var(--navy);
  padding: 11px 14px;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 86px;
}

.feature-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 278px;
  padding: 28px 24px 30px;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 168, 224, 0.32);
  box-shadow: 0 18px 42px rgba(18, 50, 73, 0.12);
}

.feature-graphic {
  width: 116px;
  height: 88px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.feature-grid article h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.25;
}

.feature-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.plain {
  box-shadow: none;
  border: 1px solid var(--line);
}

.footer {
  padding: 64px 0;
  color: #dbe8ef;
  background: #0b2638;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 42px;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer button {
  display: block;
  color: #dbe8ef;
  padding: 5px 0;
  text-align: left;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 9px 12px;
  }

  nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    padding: 14px 24px 26px;
    background: var(--white);
    box-shadow: 0 18px 32px rgba(18, 50, 73, 0.12);
  }

  nav.open {
    display: grid;
  }

  nav > button,
  .dropdown > button {
    padding: 12px 0;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    box-shadow: none;
    border-top: 1px solid var(--line);
    padding: 4px 0 8px;
  }

  .grid-menu,
  .grid-menu.areas,
  .service-cards,
  .feature-grid,
  .gallery,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .hero-panel,
  .page-hero-grid,
  .reviews-header,
  .split,
  .owner-grid,
  .areas-grid,
  .contact-layout,
  .booking-layout,
  .faq-layout,
  .text-stack article,
  .mini {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo {
    margin-left: 0;
    justify-content: flex-start;
  }

  .hero-logo img {
    width: min(62vw, 340px);
  }

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

  .areas-grid ul {
    columns: 2;
  }

  .book {
    display: none;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
  }

  .brand {
    font-size: 19px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 44px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-logo img {
    width: min(72vw, 270px);
  }

  .hero p,
  .split p,
  .text-stack p,
  .text-rich p,
  .areas-band p,
  .page-hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .quote-card {
    padding: 22px;
  }

  .split,
  .owner-section,
  .text-stack,
  .text-rich,
  .contact-layout,
  .booking-layout,
  .faq-layout,
  .project-strip {
    padding: 58px 0;
  }

  .reviews-band,
  .areas-band,
  .cta-row {
    padding: 48px 0;
  }

  .page-hero {
    padding: 58px 0;
  }

  .page-hero .phone-link {
    display: block;
    margin: 16px 0 0;
  }

  .text-stack article {
    gap: 8px;
    padding: 24px 0;
  }

  .faq-question {
    min-height: 64px;
    padding: 16px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 16px 18px;
  }

  .service-cards,
  .feature-grid,
  .gallery,
  .footer-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid ul {
    columns: 1;
  }
}
