:root {
  --navy: #0a2342;
  --navy-2: #12355a;
  --teal: #1595ad;
  --teal-2: #8ed3e6;
  --orange: #ff7a00;
  --gold: #ffc43d;
  --ink: #13233a;
  --muted: #607088;
  --line: #d9e6ed;
  --soft: #f4f9fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(10, 35, 66, .14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 20;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  transform: translateX(-220%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(217, 230, 237, .9);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: var(--max);
  min-height: 164px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 230px;
}

.brand img {
  width: 230px;
  height: auto;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand span {
  display: block;
  color: var(--teal);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.brand > span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--teal);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: 800 13px/1 Montserrat, Arial, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

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

.button-primary,
button {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(255, 122, 0, .26);
}

.button-primary:hover,
button:hover {
  background: #ef6f00;
}

.button-secondary {
  background: var(--navy);
  color: var(--white);
}

.button-outline {
  color: var(--navy);
  border-color: rgba(10, 35, 66, .24);
  background: rgba(255, 255, 255, .88);
}

.button-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero {
  min-height: clamp(500px, calc(100vh - 190px), 680px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(10, 35, 66, .04) 0%, rgba(10, 35, 66, .08) 38%, rgba(10, 35, 66, .58) 68%, rgba(10, 35, 66, .84) 100%),
    linear-gradient(180deg, rgba(10, 35, 66, .02) 0%, rgba(10, 35, 66, .04) 54%, rgba(10, 35, 66, .18) 100%),
    url("assets/hero-pool-honolulu.jpg");
  background-size: cover;
  background-position: center bottom;
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 48px 0 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hero h1 {
  width: 100%;
  max-width: 660px;
  margin: 0;
  font-size: clamp(43px, 5.6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

.hero p {
  width: 100%;
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, .91);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.proof-pill {
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .93);
  background: rgba(255, 255, 255, .1);
}

.section {
  padding: 92px 22px;
}

.hero + .section {
  padding-top: 44px;
}

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

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-navy .section-head h2,
.section-navy .section-head p {
  color: var(--white);
}

.section-head p,
.page-hero p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(10, 35, 66, .06);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

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

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--teal);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.about-photo img {
  object-position: center 35%;
}

.trust-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 700;
}

.check {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(21, 149, 173, .12);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.statement {
  padding: 86px 22px;
  background: linear-gradient(135deg, var(--navy), #073d55);
  color: var(--white);
  text-align: center;
}

.statement h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
}

.statement p {
  max-width: 670px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.page-hero {
  padding: 90px 22px 64px;
  background: linear-gradient(180deg, #edf8fb 0%, #ffffff 100%);
}

.page-hero .wrap {
  max-width: 900px;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-item h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 22px;
}

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

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 22px;
}

.contact-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.contact-band strong {
  color: var(--navy);
  font-size: 22px;
}

.contact-band p {
  margin: 4px 0 0;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbdbe4;
  border-radius: 6px;
  padding: 14px 13px;
  font: 500 16px/1.4 Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.status-note {
  color: var(--muted);
  font-size: 14px;
}

.status-note {
  min-height: 22px;
  font-weight: 700;
}

.contact-methods {
  display: grid;
  gap: 16px;
}

.contact-method {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-method h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}

.contact-method p {
  margin: 0;
  color: var(--muted);
}

.contact-method a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.footer {
  background: #06192f;
  color: rgba(255, 255, 255, .84);
  padding: 42px 22px;
}

.footer .wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}

.footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.fine-print {
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links,
  .nav-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .nav-links {
    justify-content: center;
  }

  .grid-3,
  .grid-2,
  .split,
  .footer .wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(10, 35, 66, .04) 0%, rgba(10, 35, 66, .24) 28%, rgba(10, 35, 66, .76) 100%),
      linear-gradient(180deg, rgba(10, 35, 66, .08) 0%, rgba(10, 35, 66, .12) 58%, rgba(10, 35, 66, .22) 100%),
      url("assets/hero-pool-honolulu.jpg");
    background-position: 46% bottom;
  }

  .contact-band .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: min(280px, 100%);
    height: auto;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    justify-items: center;
    column-gap: 16px;
    font-size: 11px;
    row-gap: 6px;
  }

  .hero-content {
    width: calc(100% - 36px);
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 33px;
    line-height: 1.06;
  }

  .hero p {
    max-width: 330px;
    font-size: 15.5px;
  }

  .hero-actions {
    justify-content: center;
  }

  .button,
  button {
    width: 100%;
  }

  .hero-actions,
  .nav-actions {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

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

@media (max-width: 380px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 17px;
  }
}
