@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0b1d28;
  --navy-deep: #07151e;
  --navy-soft: #15313e;
  --ink: #17252d;
  --muted: #637078;
  --paper: #f6f4ef;
  --paper-deep: #ebe7df;
  --white: #fff;
  --gold: #c8954d;
  --gold-bright: #e0ad62;
  --sea: #4e8182;
  --line: rgba(23, 37, 45, .14);
  --line-light: rgba(255, 255, 255, .16);
  --body: "Manrope", Arial, sans-serif;
  --display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  padding: 0 clamp(20px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.15);
  background: rgba(7, 21, 30, .72);
  backdrop-filter: blur(14px);
  color: var(--white);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: var(--gold-bright);
  font: italic 600 21px/1 var(--display);
}
.brand > span:last-child { display: flex; flex-direction: column; gap: 4px; }
.brand strong { color: var(--white); font: 600 17px/1 var(--display); letter-spacing: .025em; }
.brand small { color: rgba(255,255,255,.62); font-size: 7px; line-height: 1; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(22px, 2.8vw, 44px); }
.nav-links a { color: rgba(255,255,255,.82); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transition: color .2s ease; }
.nav-links a:hover { color: var(--gold-bright); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.header-phone { color: rgba(255,255,255,.82); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); background: transparent; padding: 11px; }
.menu-button span { display: block; border-top: 1px solid var(--white); margin: 6px 0; }

.button {
  min-height: 50px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: var(--gold);
  color: #10212a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--gold-bright); }
.button-small { min-height: 40px; padding: 0 18px; font-size: 8px; }
.button-ghost { border-color: rgba(255,255,255,.58); background: rgba(7,21,30,.16); color: var(--white); }
.button-ghost:hover { background: var(--white); color: var(--navy); }
.button-light { border-color: var(--white); background: var(--white); color: var(--navy); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-visual, .hero-clean { position: absolute; inset: 0; overflow: hidden; }
.hero-visual { touch-action: none; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center 47%; user-select: none; pointer-events: none; transform: scale(1.08); }
.hero-image-before { filter: saturate(.38) sepia(.34) brightness(.52) contrast(1.18); }
.hero-clean { transition: clip-path 1.7s cubic-bezier(.22,.75,.18,1); }
.hero-dirt {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 76% 44%, rgba(67,52,31,.38) 0 1.5%, transparent 5%),
    radial-gradient(ellipse at 88% 69%, rgba(49,41,31,.42) 0 1%, transparent 4%),
    repeating-linear-gradient(12deg, transparent 0 16px, rgba(55,45,33,.11) 17px 18px);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: clip-path 1.7s cubic-bezier(.22,.75,.18,1);
}
.is-dragging .hero-clean, .is-dragging .hero-dirt, .is-dragging .hero-divider { transition: none; }
.hero-divider {
  position: absolute;
  z-index: 4;
  top: 82px;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.75);
  transition: left 1.7s cubic-bezier(.22,.75,.18,1);
}
.hero-divider button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 50%;
  background: rgba(7,21,30,.78);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: ew-resize;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
}
.hero-divider button span { font: 24px/1 Arial, sans-serif; }
.finish-label {
  position: absolute;
  z-index: 3;
  top: 112px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 30px;
  background: rgba(7,21,30,.46);
  color: rgba(255,255,255,.9);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}
.clean-label { left: 28px; }
.before-label { right: 28px; }
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(circle at 0 100%, rgba(7,21,30,.96) 0 8%, transparent 27%), linear-gradient(180deg, rgba(7,21,30,.28), rgba(7,21,30,.12) 35%, rgba(7,21,30,.76)), radial-gradient(circle at 50% 52%, transparent 0 20%, rgba(7,21,30,.24) 70%);
}
.hero-content {
  position: relative;
  z-index: 8;
  width: min(900px, 90vw);
  padding: 112px 20px 50px;
  color: var(--white);
  text-align: center;
}
.eyebrow, .kicker { margin: 0 0 18px; color: var(--gold); font-size: 9px; font-weight: 800; line-height: 1.4; letter-spacing: .19em; text-transform: uppercase; }
.hero h1 { margin: 0; color: var(--white); font: 500 clamp(64px, 8.8vw, 132px)/.82 var(--display); letter-spacing: -.055em; text-shadow: 0 12px 35px rgba(0,0,0,.26); }
.hero h1 em { color: #f3eadb; font-weight: 400; }
.hero-lead { max-width: 700px; margin: 28px auto 0; color: rgba(255,255,255,.9); font-size: clamp(15px, 1.35vw, 19px); line-height: 1.65; text-wrap: balance; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.hero-note { margin: 22px 0 0; color: rgba(255,255,255,.6); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-strip > div { min-height: 112px; display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-right: 1px solid var(--line); }
.trust-strip > div:first-child { border-left: 1px solid var(--line); }
.trust-strip .check { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: rgba(78,129,130,.1); color: var(--sea); font-size: 12px; }
.trust-strip p { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.trust-strip strong { color: var(--ink); font-size: 10px; line-height: 1.3; letter-spacing: .04em; text-transform: uppercase; }
.trust-strip small { color: var(--muted); font-size: 10px; }

.section { padding: clamp(92px, 10vw, 150px) clamp(22px, 7vw, 108px); }
.center-heading { max-width: 790px; margin: 0 auto 68px; text-align: center; }
.center-heading h2, .section-heading h2, .about-copy h2, .faq-heading h2, .quote-intro h2, .islands-band h2 {
  margin: 0;
  color: var(--navy);
  font: 500 clamp(42px, 5vw, 72px)/1.03 var(--display);
  letter-spacing: -.045em;
  text-wrap: balance;
}
.center-heading > p:last-child, .section-heading > p, .faq-heading > p:last-child, .quote-intro > p:nth-of-type(2) { color: var(--muted); font-size: 15px; line-height: 1.75; }
.center-heading > p:last-child { max-width: 650px; margin: 22px auto 0; }

.difference { background: var(--paper); }
.difference-grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.difference-grid article { min-height: 245px; padding: 35px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.difference-grid article > span { width: 42px; height: 42px; margin: 0 auto 25px; display: grid; place-items: center; border: 1px solid rgba(200,149,77,.5); border-radius: 50%; color: var(--gold); font: 600 10px/1 var(--body); }
.difference-grid h3 { margin: 0; color: var(--navy); font: 600 24px/1.15 var(--display); }
.difference-grid p { margin: 13px auto 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.services { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(40px, 8vw, 120px); align-items: end; max-width: 1180px; margin: 0 auto 65px; }
.section-heading > p { margin: 0 0 5px; }
.service-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { min-height: 360px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--paper); transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: 0 24px 55px rgba(11,29,40,.09); }
.service-card > span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.service-card h3 { max-width: 260px; margin: auto 0 14px; color: var(--navy); font: 600 29px/1.08 var(--display); }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.service-card a { margin-top: 25px; padding-top: 19px; border-top: 1px solid var(--line); color: var(--navy); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-card a b { float: right; color: var(--gold); font-size: 15px; }

.process { background: var(--navy); color: var(--white); }
.light-heading h2 { color: var(--white); }
.light-heading > p:last-child { color: rgba(255,255,255,.64); }
.process-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.process-grid article { min-height: 270px; padding: 34px 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.process-grid article > span { color: var(--gold-bright); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.process-grid h3 { margin: 70px 0 13px; color: var(--white); font: 500 25px/1.12 var(--display); }
.process-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.7; }
.boundary-note { max-width: 1180px; margin: 28px auto 0; padding: 24px 28px; display: grid; grid-template-columns: .45fr 1.55fr; gap: 30px; border: 1px solid var(--line-light); background: rgba(255,255,255,.035); }
.boundary-note strong { color: var(--gold-bright); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.boundary-note p { margin: 0; color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.65; }

.about { display: grid; grid-template-columns: 1fr 1fr; padding: 0; background: var(--paper); }
.about-photo { min-height: 760px; padding: 45px; display: flex; align-items: flex-end; background: linear-gradient(180deg, transparent 45%, rgba(7,21,30,.7)), url('assets/white-jet-hawaii.jpeg') center / cover; }
.about-photo > span { padding: 10px 13px; border: 1px solid rgba(255,255,255,.4); background: rgba(7,21,30,.52); color: var(--white); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; backdrop-filter: blur(6px); }
.about-copy { padding: clamp(80px, 9vw, 140px) clamp(35px, 7vw, 108px); }
.about-copy > p:nth-of-type(2) { margin: 26px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.founder-card { margin: 34px 0; padding: 22px 0; display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-card > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold-bright); font: italic 600 18px/1 var(--display); }
.founder-card p { display: flex; flex-direction: column; gap: 5px; margin: 0; }
.founder-card strong { color: var(--navy); font: 600 19px/1.1 var(--display); }
.founder-card small { color: var(--muted); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.about-copy ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 22px; list-style: none; }
.about-copy li { position: relative; padding-left: 22px; color: var(--ink); font-size: 11px; font-weight: 700; line-height: 1.5; }
.about-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--sea); }

.islands-band { margin: clamp(70px, 8vw, 120px) clamp(22px, 7vw, 108px); padding: clamp(44px, 6vw, 80px); display: grid; grid-template-columns: 1fr 1.1fr auto; gap: 50px; align-items: center; border-radius: 8px; background: var(--sea); color: var(--white); box-shadow: 0 28px 70px rgba(17,61,68,.16); }
.islands-band .kicker { color: rgba(255,255,255,.72); }
.islands-band h2 { color: var(--white); font-size: clamp(35px, 4vw, 57px); }
.islands-band > p { margin: 0; color: rgba(255,255,255,.92); font-size: 12px; font-weight: 700; line-height: 2.2; letter-spacing: .07em; text-transform: uppercase; }
.islands-band > p span { color: rgba(255,255,255,.45); margin: 0 6px; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 140px); background: var(--paper); }
.faq-heading { max-width: 470px; }
.faq-heading h2 { font-size: clamp(40px, 4.5vw, 64px); }
.faq-heading > p:last-child { margin-top: 24px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 83px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; cursor: pointer; color: var(--navy); font: 600 19px/1.3 var(--display); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--gold); font: 800 8px/1 var(--body); letter-spacing: .14em; }
.faq-list summary b { font: 400 22px/1 var(--body); transition: transform .2s ease; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details > p { margin: -2px 44px 27px 54px; color: var(--muted); font-size: 13px; line-height: 1.75; }

.quote-section { padding: clamp(90px, 10vw, 145px) clamp(22px, 7vw, 108px); display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px, 8vw, 125px); background: var(--navy-deep); color: var(--white); }
.quote-intro { max-width: 490px; }
.quote-intro h2 { color: var(--white); }
.quote-intro > p:nth-of-type(2) { margin: 25px 0 0; color: rgba(255,255,255,.64); }
.quote-contact { margin: 38px 0 34px; padding: 12px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.quote-contact a { padding: 13px 0; display: flex; justify-content: space-between; gap: 20px; }
.quote-contact span { color: rgba(255,255,255,.5); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.quote-contact strong { color: var(--white); font-size: 11px; }
.response-note { display: flex; align-items: center; gap: 14px; margin: 16px 0; }
.response-note > span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; color: var(--gold-bright); font-size: 8px; }
.response-note p { display: flex; flex-direction: column; gap: 4px; margin: 0; }
.response-note strong { color: var(--white); font-size: 10px; letter-spacing: .04em; text-transform: uppercase; }
.response-note small { color: rgba(255,255,255,.48); font-size: 10px; }

.quote-form { min-height: 640px; padding: clamp(28px, 4.5vw, 58px); border-radius: 7px; background: var(--white); color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.form-progress { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; margin-bottom: 38px; }
.form-progress span { color: #a4a9ac; font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.form-progress span.active { color: var(--sea); }
.form-progress i { border-top: 1px solid var(--line); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-heading { margin-bottom: 30px; }
.form-heading > span { color: var(--gold); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.form-heading h3 { margin: 8px 0 7px; color: var(--navy); font: 600 34px/1.08 var(--display); }
.form-heading p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.quote-form label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; color: var(--navy); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quote-form label small { color: #a0a5a7; font-size: 7px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid #d9dcda; border-radius: 2px; outline: none; background: #faf9f6; color: var(--ink); font-size: 13px; font-weight: 500; letter-spacing: 0; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form input, .quote-form select { height: 50px; padding: 0 14px; }
.quote-form textarea { padding: 14px; resize: vertical; line-height: 1.55; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(78,129,130,.1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-button { width: 100%; gap: 30px; margin-top: 6px; }
.form-buttons { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.back-button { min-height: 50px; border: 0; background: transparent; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.form-note { margin: 18px 0 0; color: #8f9699; font-size: 9px; line-height: 1.55; text-align: center; }

footer { min-height: 175px; padding: 45px clamp(22px, 7vw, 108px); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); background: var(--navy-deep); color: rgba(255,255,255,.6); }
.footer-brand .brand-mark { width: 34px; height: 34px; }
footer > p { margin: 0; font-size: 10px; line-height: 1.6; text-align: center; }
footer > div { display: flex; justify-content: flex-end; gap: 20px; font-size: 8px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
footer a:hover { color: var(--white); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { position: fixed; top: 82px; left: 0; right: 0; padding: 26px; display: none; flex-direction: column; align-items: stretch; background: rgba(7,21,30,.98); border-bottom: 1px solid var(--line-light); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 11px 0; }
  .header-phone { display: none; }
  .menu-button { display: block; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-photo { min-height: 600px; }
  .islands-band { grid-template-columns: 1fr 1fr; }
  .islands-band .button { grid-column: 1 / -1; width: fit-content; }
  .quote-section { grid-template-columns: 1fr; }
  .quote-intro { max-width: 750px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .brand { margin: 0 auto; }
  footer > div { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  .site-header { height: 70px; padding: 0 16px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand strong { font-size: 15px; }
  .button-small { display: none; }
  .nav-links { top: 70px; }
  .hero { min-height: 860px; align-items: end; }
  .hero-image { object-position: 63% center; transform: scale(1.15); }
  .hero-divider { top: 70px; }
  .hero-divider button { width: 44px; height: 44px; }
  .finish-label { top: 88px; }
  .clean-label { left: 14px; }
  .before-label { right: 14px; }
  .hero-shade { background: linear-gradient(180deg, rgba(7,21,30,.08) 0%, rgba(7,21,30,.18) 38%, rgba(7,21,30,.93) 72%); }
  .hero-content { width: 100%; padding: 120px 20px 55px; }
  .hero h1 { font-size: clamp(57px, 18vw, 83px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-strip { padding: 0; }
  .trust-strip > div { min-height: 100px; padding: 17px 14px; border-left: 0 !important; }
  .trust-strip > div:nth-child(2n) { border-right: 0; }
  .trust-strip small { font-size: 9px; }
  .section { padding: 85px 20px; }
  .center-heading { margin-bottom: 44px; }
  .center-heading h2, .section-heading h2, .about-copy h2, .faq-heading h2, .quote-intro h2 { font-size: 42px; }
  .difference-grid { grid-template-columns: 1fr; }
  .difference-grid article { min-height: 220px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 43px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 235px; }
  .process-grid h3 { margin-top: 48px; }
  .boundary-note { grid-template-columns: 1fr; }
  .about-photo { min-height: 440px; padding: 22px; background-position: 63% center; }
  .about-copy { padding: 80px 20px; }
  .about-copy ul { grid-template-columns: 1fr; }
  .islands-band { margin: 55px 16px; padding: 48px 25px; grid-template-columns: 1fr; gap: 24px; }
  .islands-band .button { grid-column: auto; width: 100%; }
  .faq { grid-template-columns: 1fr; gap: 45px; }
  .faq-list summary { min-height: 80px; grid-template-columns: 30px 1fr auto; font-size: 17px; }
  .faq-list details > p { margin: 0 30px 25px 42px; }
  .quote-section { padding: 85px 16px; gap: 48px; }
  .quote-contact a { flex-direction: column; gap: 6px; }
  .quote-form { min-height: 0; padding: 28px 20px; }
  .form-grid, .form-buttons { grid-template-columns: 1fr; }
  .back-button { order: 2; }
  footer { padding: 50px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

.error-body { min-height: 100svh; background: var(--navy-deep); color: var(--white); }
.error-header { grid-template-columns: 1fr 1fr; }
.error-page {
  min-height: 100svh;
  padding: 150px clamp(22px, 8vw, 120px) 80px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,21,30,.96), rgba(7,21,30,.56)),
    url("assets/white-jet-hawaii.jpeg") 62% center / cover;
}
.error-page > div { max-width: 760px; }
.error-page h1 { margin: 0 0 24px; font: 500 clamp(58px, 8vw, 110px)/.9 var(--display); letter-spacing: -.05em; }
.error-page > div > p:not(.eyebrow) { max-width: 600px; margin: 0 0 34px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75; }

@media (max-width: 720px) {
  .error-header { grid-template-columns: 1fr auto; }
  .error-page { padding: 130px 20px 60px; }
  .error-page h1 { font-size: 64px; }
}
