﻿:root {
  --ink: #333645;
  --ink-soft: #5f616f;
  --gold: #ffaa06;
  --gold-dark: #d88900;
  --paper: #ffffff;
  --mist: #f5f5f7;
  --line: #dedfe5;
  --charcoal: #23252f;
  --shadow: 0 18px 45px rgba(51, 54, 69, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  border-bottom: 1px solid rgba(222, 223, 229, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 246px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #000;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a:not(.nav-phone):hover,
.text-link:hover {
  color: var(--gold-dark);
}

.nav-phone,
.nav-book,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(255, 170, 6, 0.28);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.nav-phone {
  color: var(--ink);
}

.nav-book {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(51, 54, 69, 0.2);
}

.nav-phone:hover,
.nav-book:hover,
.btn:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
  box-shadow: 0 14px 30px rgba(255, 170, 6, 0.34);
}

.nav-book:hover {
  color: #fff;
  background: var(--charcoal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  color: var(--ink);
}

.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn--ghost:hover {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background: url("../images/hero.jpg") center / cover no-repeat;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(35, 37, 47, 0.96), rgba(35, 37, 47, 0.74) 52%, rgba(35, 37, 47, 0.2)),
    linear-gradient(0deg, rgba(35, 37, 47, 0.42), rgba(35, 37, 47, 0));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 104px 0 84px;
  color: #fff;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.24;
}

.hero__lead {
  max-width: 650px;
  color: #ececf2;
  font-size: 1.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__trust span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-booking-card {
  position: relative;
  width: min(100%, 760px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 42px rgba(35, 37, 47, 0.28);
}

.appointment-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(35, 37, 47, 0.72);
}

.appointment-popup.is-visible {
  display: grid;
}

.appointment-popup-card {
  width: min(100%, 760px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.booking-card__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.booking-card__heading span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card__heading strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.booking-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-card__grid label,
.form-row {
  display: grid;
  gap: 8px;
}

.booking-card__full,
.form-row--full {
  grid-column: 1 / -1;
}

.booking-card__button {
  width: 100%;
  margin-top: 14px;
}

.booking-card__note {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section--muted {
  background: var(--mist);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

#services .section-heading .eyebrow,
.why .section-heading .eyebrow,
.contact .eyebrow,
.service-area .eyebrow,
.about .eyebrow,
.reviews .eyebrow {
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1.02;
  text-transform: none;
}

#services .section-heading h2,
.why .section-heading h2,
.contact h2,
.service-area h2,
.about h2,
.reviews h2 {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 400;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.why-grid article,
.review-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(51, 54, 69, 0.07);
}

.service-card {
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 170, 6, 0.5);
  box-shadow: 0 18px 34px rgba(51, 54, 69, 0.14);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-card p,
.about p,
.why p,
.reviews p,
.contact p,
.service-area p,
.emergency-band p {
  color: var(--ink-soft);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card__link::after {
  content: ">";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.service-card:hover .service-card__link::after {
  transform: translateX(4px);
}

.about__grid,
.contact__grid,
.service-area__grid,
.emergency-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: -1;
  border-radius: var(--radius);
  background: var(--gold);
}

.about__image img {
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  color: var(--gold-dark);
  font-weight: 900;
}

.emergency-band {
  padding: 76px 0;
  color: #fff;
  background: linear-gradient(135deg, #23252f, #333645);
}

.emergency-band p {
  color: #e7e7ee;
}

.badges {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.badges img {
  width: 150px;
  height: 150px;
  padding: 14px;
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
}

.phone-card {
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--gold);
}

.phone-card span {
  font-weight: 900;
  text-transform: uppercase;
}

.phone-card a {
  font-size: 1.55rem;
  font-weight: 900;
}

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

.why-grid article,
.review-grid article {
  padding: 24px;
}

.why-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: var(--gold);
}

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

.review-grid p {
  margin: 0;
  font-size: 1.04rem;
}


.service-area {
  background: #fff;
}

.service-area__copy {
  max-width: 560px;
}

.oahu-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #f5f5f7;
  box-shadow: var(--shadow);
}

.oahu-map img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.contact {
  border-top: 1px solid rgba(51, 54, 69, 0.12);
  background:
    linear-gradient(180deg, #f1f2f5 0%, #ffffff 42%, #f5f5f7 100%);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-list a {
  color: var(--gold-dark);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfbfd;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(255, 170, 6, 0.22);
  border-color: var(--gold);
}

.scheduled-field.is-hidden {
  display: none;
}

.hidden-field {
  display: none;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.site-footer {
  color: #dadae2;
  background: var(--ink);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 36px;
  padding: 64px 0;
}

.footer-logo {
  width: 250px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 9px;
  color: #dadae2;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0;
  color: #b7b8c2;
  font-size: 0.9rem;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 1080px) {
  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .navbar__inner {
    min-height: 68px;
  }

  .brand img {
    width: 212px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-links button {
    margin: 4px 0;
  }

  .nav-links a:not(.nav-phone) {
    padding: 12px;
  }

  .hero {
    min-height: 660px;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(35, 37, 47, 0.96), rgba(35, 37, 47, 0.76));
  }

  .about__grid,
  .contact__grid,
  .service-area__grid,
  .emergency-band__inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .about__image img {
    min-height: 300px;
  }

  .about__image::before {
    inset: 18px 0 -18px 18px;
  }

  .badges {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

@media (max-width: 620px) {
  .brand img {
    width: 178px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 84px 0 56px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .booking-card__grid,
  .service-grid,
  .why-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-column: 1 / -1;
  }

  .phone-card {
    width: 100%;
  }

  .footer-bottom__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}







