/* ==========================================================================
   Harbor - coastal island wellness shop
   Every class in this sheet is namespaced hp-.
   Type: Lora (headings) + Mulish (everything else).
   ========================================================================== */

:root {
  --hp-sea: #123B4E;
  --hp-sea-deep: #0C2836;
  --hp-sky: #7FB3C8;
  --hp-sky-mist: #DEEBF2;
  --hp-sky-wash: #EDF4F8;
  --hp-sand: #F2E9DC;
  --hp-sand-deep: #E5D6C0;
  --hp-coral: #E4784B;
  --hp-coral-deep: #C55E33;
  --hp-paper: #FCFAF6;
  --hp-ink: #1E323C;
  --hp-ink-soft: #567480;
  --hp-rule: rgba(18, 59, 78, .13);
  --hp-soft: 0 16px 40px rgba(18, 59, 78, .09);
  --hp-lift: 0 26px 58px rgba(18, 59, 78, .16);
  --hp-round-xl: 24px;
  --hp-round-lg: 20px;
  --hp-round-md: 16px;
  --hp-pill: 999px;
  --hp-serif: "Lora", Georgia, "Times New Roman", serif;
  --hp-sans: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--hp-paper);
  color: var(--hp-ink);
  font-family: var(--hp-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--hp-sea); }

h1, h2, h3, h4 {
  font-family: var(--hp-serif);
  font-weight: 600;
  color: var(--hp-sea);
  line-height: 1.22;
  margin: 0 0 .5em;
  letter-spacing: -.005em;
}

h1 { font-size: clamp(2.15rem, 5.2vw, 3.35rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.24rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.hp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--hp-sea);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--hp-round-md) 0;
  z-index: 60;
}
.hp-skip:focus { left: 0; }

/* --- shell ---------------------------------------------------------------- */

.hp-cove {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.hp-cove--slim { max-width: 820px; }

.hp-band { padding: 88px 0; position: relative; }
.hp-band--tight { padding: 62px 0; }
.hp-band--sand { background: var(--hp-sand); }
.hp-band--mist { background: var(--hp-sky-wash); }
.hp-band--sea { background: var(--hp-sea); color: rgba(252, 250, 246, .88); }
.hp-band--sea h2, .hp-band--sea h3 { color: var(--hp-paper); }

.hp-lede {
  max-width: 690px;
  margin: 0 auto 46px;
  text-align: center;
}
.hp-lede p { color: var(--hp-ink-soft); font-size: 1.06rem; }
.hp-band--sea .hp-lede p { color: rgba(252, 250, 246, .8); }

.hp-eyebrow {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--hp-coral);
  margin-bottom: 14px;
}

.hp-tag {
  display: inline-block;
  border-radius: var(--hp-pill);
  background: var(--hp-sky-mist);
  color: var(--hp-sea);
  padding: 5px 15px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  line-height: 1.7;
}
.hp-tag--sand { background: var(--hp-sand-deep); }
.hp-tag--coral { background: rgba(228, 120, 75, .16); color: var(--hp-coral-deep); }
.hp-tag--dark { background: rgba(252, 250, 246, .14); color: var(--hp-sand); }

/* --- waves ---------------------------------------------------------------- */

.hp-wave { line-height: 0; }
.hp-wave svg { width: 100%; height: 74px; display: block; }
.hp-wave--sand { color: var(--hp-sand); }
.hp-wave--mist { color: var(--hp-sky-wash); }
.hp-wave--paper { color: var(--hp-paper); }
.hp-wave--sea { color: var(--hp-sea); }
.hp-wave--anchor { color: var(--hp-sea); background: var(--hp-paper); }
.hp-wave--flip svg { transform: rotate(180deg); }
/* the "from" colour paints the strip the wave crests out of */
.hp-wave--from-paper { background: var(--hp-paper); }
.hp-wave--from-sand { background: var(--hp-sand); }
.hp-wave--from-mist { background: var(--hp-sky-wash); }
.hp-wave--from-sea { background: var(--hp-sea); }

/* --- buttons -------------------------------------------------------------- */

.hp-btn {
  display: inline-block;
  border: 0;
  border-radius: var(--hp-pill);
  background: var(--hp-coral);
  color: #fff;
  font-family: var(--hp-sans);
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .012em;
  padding: 15px 34px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(228, 120, 75, .3);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.hp-btn:hover { background: var(--hp-coral-deep); transform: translateY(-2px); box-shadow: 0 18px 34px rgba(228, 120, 75, .34); }
.hp-btn:disabled { opacity: .6; cursor: default; transform: none; }

.hp-btn--shell {
  background: transparent;
  color: var(--hp-sea);
  border: 2px solid rgba(18, 59, 78, .22);
  box-shadow: none;
  padding: 13px 30px;
}
.hp-btn--shell:hover { background: rgba(18, 59, 78, .06); border-color: var(--hp-sea); }

.hp-btn--wide { width: 100%; text-align: center; }

.hp-btnrow { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* --- cards ---------------------------------------------------------------- */

.hp-card {
  background: #fff;
  border-radius: var(--hp-round-xl);
  box-shadow: var(--hp-soft);
  padding: 32px 30px;
  text-align: left;
}
.hp-card h3 { margin-bottom: .35em; }
.hp-card p { color: var(--hp-ink-soft); }
.hp-card p:last-child { margin-bottom: 0; }
.hp-card--sand { background: var(--hp-sand); box-shadow: none; }
.hp-card--outline { background: transparent; box-shadow: none; border: 1px solid var(--hp-rule); }

.hp-deck { display: grid; gap: 22px; }
.hp-deck--2 { grid-template-columns: repeat(2, 1fr); }
.hp-deck--3 { grid-template-columns: repeat(3, 1fr); }
.hp-deck--4 { grid-template-columns: repeat(4, 1fr); }

.hp-cardnum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--hp-pill);
  background: var(--hp-sky-mist);
  color: var(--hp-sea);
  font-family: var(--hp-serif);
  font-weight: 700;
  margin-bottom: 16px;
}

/* --- image frames + photography ------------------------------------------- */

/* photographs sit in a deep-sea porthole rather than a white card: a padded
   gradient mat that ties a bright outdoor shot back to the rest of the page */
.hp-frame {
  border-radius: 28px;
  padding: 14px;
  background: linear-gradient(158deg, #1A5064 0%, var(--hp-sea) 58%, var(--hp-sea-deep) 100%);
  box-shadow: var(--hp-lift);
}
.hp-frame img { border-radius: var(--hp-round-lg); margin: 0 auto; }
.hp-frame--sm { padding: 9px; border-radius: 20px; }
.hp-frame--sm img { border-radius: 13px; }
.hp-frame--sand {
  background: linear-gradient(158deg, var(--hp-sand) 0%, var(--hp-sand-deep) 100%);
  box-shadow: var(--hp-soft);
}

/* every photograph declares its own crop, so mixed source ratios can share a
   grid without the layout shifting while they load */
.hp-shot {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--hp-sky-mist);
}
.hp-shot--wide { aspect-ratio: 16 / 9; }
.hp-shot--square { aspect-ratio: 1 / 1; }
.hp-shot--card { aspect-ratio: 4 / 3; }
.hp-shot--band { aspect-ratio: 21 / 9; object-position: center 58%; }

.hp-caption {
  margin: 14px 2px 0;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--hp-ink-soft);
}

/* --- picture + prose split ------------------------------------------------ */

.hp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.hp-split--roomy { grid-template-columns: 1.08fr .92fr; }
.hp-split--flip .hp-split-media { order: 2; }
.hp-split-media { min-width: 0; }
.hp-split-words { text-align: left; min-width: 0; }
.hp-split-words h2 { margin-bottom: .4em; }
.hp-split-words p { color: var(--hp-ink-soft); }

/* --- full-width photo band ------------------------------------------------ */

.hp-strip { background: var(--hp-sea); padding: 62px 0; }
.hp-strip-frame {
  position: relative;
  isolation: isolate;
  border-radius: var(--hp-round-xl);
  overflow: hidden;
  box-shadow: var(--hp-lift);
}
.hp-strip-frame img { border-radius: 0; }
.hp-strip-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 40, 54, .9) 0%, rgba(12, 40, 54, .66) 44%, rgba(12, 40, 54, .12) 100%);
}
.hp-strip-words {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
  padding: 0 clamp(24px, 5.5vw, 62px);
  text-align: left;
}
.hp-strip-words h2 { color: var(--hp-paper); margin-bottom: .34em; }
.hp-strip-words p { color: rgba(252, 250, 246, .86); margin: 0; }
.hp-strip-words .hp-eyebrow { color: var(--hp-sand-deep); }

/* --- questions ------------------------------------------------------------ */

.hp-faq { display: grid; gap: 16px; }
.hp-faq--2 { grid-template-columns: 1fr 1fr; }
.hp-faq-item {
  background: #fff;
  border-radius: var(--hp-round-lg);
  box-shadow: var(--hp-soft);
  padding: 24px 26px;
  text-align: left;
}
.hp-band--sand .hp-faq-item { box-shadow: none; border: 1px solid var(--hp-rule); }
.hp-faq-item h3 { font-size: 1.08rem; margin-bottom: .34em; }
.hp-faq-item p { color: var(--hp-ink-soft); margin-bottom: 0; }
.hp-faq-item p + p { margin-top: .8em; }

/* --- hero ----------------------------------------------------------------- */

.hp-hero {
  background: linear-gradient(180deg, var(--hp-sky-wash) 0%, var(--hp-paper) 100%);
  padding: 76px 0 30px;
  text-align: center;
}
.hp-hero-in { max-width: 760px; margin: 0 auto; }
.hp-hero h1 { margin-bottom: .3em; }
.hp-hero-sub { font-size: 1.14rem; color: var(--hp-ink-soft); margin-bottom: 30px; }
.hp-hero-frame { max-width: 420px; margin: 46px auto 0; }
.hp-hero-frame--wide { max-width: 780px; }
.hp-hero-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

/* --- dock timeline -------------------------------------------------------- */

.hp-dockline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.hp-dockline::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--hp-sky) 0%, var(--hp-coral) 100%);
  opacity: .5;
}
.hp-dockstop { position: relative; text-align: center; padding: 0 6px; }
.hp-dockdot {
  position: relative;
  z-index: 1;
  display: block;
  width: 26px; height: 26px;
  margin: 0 auto 18px;
  border-radius: var(--hp-pill);
  background: var(--hp-paper);
  border: 4px solid var(--hp-coral);
  box-shadow: 0 0 0 6px rgba(228, 120, 75, .12);
}
.hp-band--sand .hp-dockdot { background: var(--hp-sand); }
.hp-dockstop h3 { font-size: 1.08rem; margin-bottom: .3em; }
.hp-dockstop p { font-size: .95rem; color: var(--hp-ink-soft); margin: 0; }

/* --- list of plain points ------------------------------------------------- */

.hp-ticks { list-style: none; margin: 0; padding: 0; text-align: left; }
.hp-ticks li {
  position: relative;
  padding: 0 0 0 30px;
  margin-bottom: 12px;
  color: var(--hp-ink-soft);
}
.hp-ticks li::before {
  content: "";
  position: absolute;
  left: 4px; top: .68em;
  width: 9px; height: 9px;
  border-radius: var(--hp-pill);
  background: var(--hp-coral);
}
.hp-ticks--sea li { color: rgba(252, 250, 246, .82); }
.hp-ticks--sea li::before { background: var(--hp-sky); }

/* --- purchase plans ------------------------------------------------------- */

.hp-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-top: 12px; }

.hp-plan {
  position: relative;
  background: #fff;
  border-radius: var(--hp-round-xl);
  box-shadow: var(--hp-soft);
  padding: 34px 28px 30px;
  text-align: center;
  border: 2px solid transparent;
}
.hp-plan--pick { border-color: var(--hp-coral); box-shadow: var(--hp-lift); }
.hp-plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.hp-plan-tier { font-size: 1.3rem; margin-bottom: .15em; }
.hp-plan-sub { font-size: .93rem; color: var(--hp-ink-soft); margin-bottom: 20px; }
.hp-plan-count {
  display: inline-block;
  border-radius: var(--hp-round-md);
  background: var(--hp-sky-wash);
  color: var(--hp-sea);
  font-family: var(--hp-serif);
  font-size: 1.02rem;
  font-weight: 600;
  padding: 9px 18px;
  margin-bottom: 20px;
}
.hp-plan--pick .hp-plan-count { background: rgba(228, 120, 75, .14); color: var(--hp-coral-deep); }
.hp-plan-total {
  font-family: var(--hp-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--hp-sea);
  line-height: 1.1;
}
.hp-plan-unit { font-size: .9rem; color: var(--hp-ink-soft); margin-bottom: 20px; }
.hp-plan-perks { list-style: none; margin: 0 0 26px; padding: 0; text-align: left; }
.hp-plan-perks li {
  position: relative;
  padding-left: 26px;
  font-size: .95rem;
  color: var(--hp-ink-soft);
  margin-bottom: 9px;
}
.hp-plan-perks li::before {
  content: "";
  position: absolute;
  left: 2px; top: .55em;
  width: 12px; height: 7px;
  border-left: 2.4px solid var(--hp-sky);
  border-bottom: 2.4px solid var(--hp-sky);
  transform: rotate(-45deg);
}

/* --- forms ---------------------------------------------------------------- */

.hp-form {
  background: #fff;
  border-radius: var(--hp-round-xl);
  box-shadow: var(--hp-soft);
  padding: 34px 32px;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}
.hp-form h3 { text-align: center; }
.hp-form-note { text-align: center; color: var(--hp-ink-soft); font-size: .95rem; margin-bottom: 24px; }

.hp-field { margin-bottom: 16px; }
.hp-field label {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--hp-sea);
  margin-bottom: 7px;
}
.hp-field input, .hp-field select, .hp-field textarea {
  width: 100%;
  font-family: var(--hp-sans);
  font-size: 1rem;
  color: var(--hp-ink);
  background: var(--hp-paper);
  border: 1.5px solid var(--hp-rule);
  border-radius: var(--hp-round-md);
  padding: 13px 16px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.hp-field input:focus, .hp-field select:focus, .hp-field textarea:focus {
  outline: 0;
  border-color: var(--hp-sky);
  box-shadow: 0 0 0 4px rgba(127, 179, 200, .22);
}
.hp-field textarea { min-height: 110px; resize: vertical; }

.hp-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp-trio { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }

.hp-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--hp-sky-wash);
  border-radius: var(--hp-round-lg);
  padding: 16px 18px;
  margin: 20px 0 18px;
}
.hp-check input { margin: 4px 0 0; width: 19px; height: 19px; flex: 0 0 auto; accent-color: var(--hp-coral); }
.hp-check span { font-size: .87rem; line-height: 1.6; color: var(--hp-ink-soft); }

.hp-smallprint { font-size: .82rem; color: var(--hp-ink-soft); margin-top: 16px; line-height: 1.65; }
.hp-smallprint a { color: var(--hp-sea); }

.hp-status { min-height: 22px; font-size: .9rem; margin-top: 12px; color: var(--hp-sea); }
.hp-status.is-bad { color: var(--hp-coral-deep); font-weight: 700; }

.hp-done { text-align: center; padding: 12px 0; }
.hp-done-seal {
  width: 62px; height: 62px;
  border-radius: var(--hp-pill);
  background: var(--hp-sky-mist);
  color: var(--hp-sea);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 18px;
}
.hp-done p { color: var(--hp-ink-soft); }

/* --- program details panel ------------------------------------------------ */

.hp-program {
  background: #fff;
  border-radius: var(--hp-round-xl);
  box-shadow: var(--hp-soft);
  padding: 32px 30px;
  text-align: left;
}
.hp-program dl { margin: 0; }
.hp-program dt {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--hp-coral);
  margin-top: 18px;
}
.hp-program dt:first-child { margin-top: 0; }
.hp-program dd { margin: 4px 0 0; color: var(--hp-ink-soft); font-size: .96rem; }

.hp-sample {
  background: var(--hp-sand);
  border-radius: var(--hp-round-lg);
  padding: 16px 18px;
  font-size: .92rem;
  color: var(--hp-ink);
  margin-bottom: 12px;
}
.hp-sample b { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--hp-ink-soft); margin-bottom: 5px; }

/* --- record block (about) ------------------------------------------------- */

.hp-record {
  background: #fff;
  border-radius: var(--hp-round-xl);
  box-shadow: var(--hp-soft);
  padding: 30px;
  text-align: left;
}
.hp-record-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 10px 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hp-rule);
}
.hp-record-row:last-child { border-bottom: 0; }
.hp-record-row dt {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hp-ink-soft);
  padding-top: 3px;
}
.hp-record-row dd { margin: 0; color: var(--hp-ink); }

/* --- checkout ------------------------------------------------------------- */

.hp-order { display: grid; grid-template-columns: 1.25fr .85fr; gap: 28px; align-items: start; text-align: left; }
.hp-order[hidden] { display: none; }

.hp-orderbox {
  background: #fff;
  border-radius: var(--hp-round-xl);
  box-shadow: var(--hp-soft);
  padding: 30px 28px;
}
.hp-orderbox + .hp-orderbox { margin-top: 22px; }
.hp-orderbox h2 { font-size: 1.35rem; }

.hp-summary {
  background: var(--hp-sand);
  border-radius: var(--hp-round-xl);
  padding: 28px 26px;
  position: sticky;
  top: 22px;
}
.hp-summary h2 { font-size: 1.3rem; }
.hp-sum-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  font-size: .96rem;
  color: var(--hp-ink-soft);
  border-bottom: 1px dashed rgba(18, 59, 78, .16);
}
.hp-sum-line:last-of-type { border-bottom: 0; }
.hp-sum-line span:last-child { color: var(--hp-ink); font-weight: 700; white-space: nowrap; }
.hp-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 2px solid rgba(18, 59, 78, .18);
  font-family: var(--hp-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hp-sea);
}

.hp-swap { display: grid; gap: 10px; margin: 18px 0 4px; }
.hp-swap-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(252, 250, 246, .7);
  border: 1.5px solid transparent;
  border-radius: var(--hp-round-md);
  padding: 12px 14px;
  cursor: pointer;
  font-size: .92rem;
}
.hp-swap-opt.is-on { border-color: var(--hp-coral); background: #fff; }
.hp-swap-opt input { accent-color: var(--hp-coral); width: 17px; height: 17px; }
.hp-swap-opt b { font-weight: 700; }
.hp-swap-opt em { font-style: normal; margin-left: auto; color: var(--hp-ink-soft); }

.hp-working { text-align: center; padding: 46px 10px; }
.hp-spin {
  width: 46px; height: 46px;
  margin: 0 auto 20px;
  border-radius: var(--hp-pill);
  border: 4px solid var(--hp-sky-mist);
  border-top-color: var(--hp-coral);
  animation: hp-turn .85s linear infinite;
}
@keyframes hp-turn { to { transform: rotate(360deg); } }

.hp-receipt { text-align: center; padding: 20px 6px; }
.hp-receipt-no {
  display: inline-block;
  background: var(--hp-sky-mist);
  border-radius: var(--hp-pill);
  padding: 8px 22px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--hp-sea);
  margin-bottom: 20px;
}

/* --- legal documents ------------------------------------------------------ */

.hp-doc { padding: 66px 0 84px; }
.hp-doc h1 { text-align: center; }
.hp-doc-stamp {
  text-align: center;
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--hp-ink-soft);
  margin-bottom: 34px;
}
.hp-doc-intro {
  background: var(--hp-sand);
  border-radius: var(--hp-round-xl);
  padding: 26px 28px;
  margin-bottom: 40px;
  color: var(--hp-ink);
}
.hp-doc h2 {
  font-size: 1.32rem;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--hp-rule);
}
.hp-doc h2:first-of-type { border-top: 0; padding-top: 0; }
.hp-doc ul { padding-left: 22px; color: var(--hp-ink-soft); }
.hp-doc li { margin-bottom: 8px; }
.hp-doc p { color: var(--hp-ink-soft); }

/* --- masthead ------------------------------------------------------------- */

.hp-mast {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 250, 246, .93);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--hp-rule);
}
.hp-mast-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.hp-mark { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.hp-mark-badge { display: block; line-height: 0; }
.hp-mark-badge svg { border-radius: 14px; }
.hp-mark-words { display: flex; flex-direction: column; line-height: 1.15; }
.hp-mark-name { font-family: var(--hp-serif); font-size: 1.42rem; font-weight: 700; color: var(--hp-sea); }
.hp-mark-place { font-size: .7rem; letter-spacing: .17em; text-transform: uppercase; color: var(--hp-ink-soft); }

.hp-sail { display: flex; align-items: center; gap: 30px; }
.hp-sail a {
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  color: var(--hp-ink);
}
.hp-sail a:hover { color: var(--hp-coral-deep); }
.hp-sail-cta {
  border-radius: var(--hp-pill);
  background: var(--hp-sea);
  color: var(--hp-paper) !important;
  padding: 10px 22px;
}
.hp-sail-cta:hover { background: var(--hp-sea-deep); }

.hp-hatch {
  display: none;
  width: 46px; height: 46px;
  border: 0;
  border-radius: var(--hp-round-md);
  background: var(--hp-sky-mist);
  cursor: pointer;
  padding: 12px 11px;
}
.hp-hatch span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--hp-sea);
  margin: 4px 0;
}

.hp-panel {
  margin: 0 16px 14px;
  padding: 14px;
  background: #fff;
  border-radius: var(--hp-round-xl);
  box-shadow: var(--hp-lift);
  flex-direction: column;
  transform: translateY(-14px);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.hp-panel.is-open { transform: translateY(0); opacity: 1; }
.hp-panel a {
  display: block;
  padding: 13px 16px;
  border-radius: var(--hp-round-md);
  text-decoration: none;
  font-weight: 700;
  color: var(--hp-sea);
}
.hp-panel a:hover { background: var(--hp-sky-wash); }
.hp-panel[hidden] { display: none; }

/* --- anchor (footer) ------------------------------------------------------ */

.hp-anchor { background: var(--hp-sea); color: rgba(252, 250, 246, .74); font-size: .93rem; }
.hp-anchor .hp-cove { padding-bottom: 40px; }
.hp-anchor a { color: rgba(252, 250, 246, .82); text-decoration: none; }
.hp-anchor a:hover { color: var(--hp-coral); }

.hp-anchor-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 8px 0 38px;
}
.hp-anchor-word { font-family: var(--hp-serif); font-size: 1.5rem; color: var(--hp-paper); margin-bottom: .3em; }
.hp-anchor-blurb { max-width: 340px; }
.hp-anchor-hours { margin-top: 14px; }
.hp-anchor-col h2 {
  font-family: var(--hp-sans);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--hp-sky);
  margin-bottom: 14px;
}
.hp-anchor-col a, .hp-anchor-plain { display: block; margin-bottom: 9px; }

.hp-anchor-record {
  background: rgba(252, 250, 246, .07);
  border-radius: var(--hp-round-xl);
  padding: 24px 26px;
}
.hp-anchor-record-t {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--hp-sky);
  margin-bottom: 10px;
}
.hp-anchor-record address { font-style: normal; line-height: 1.85; color: rgba(252, 250, 246, .84); }
.hp-anchor-record strong { color: var(--hp-paper); }
.hp-anchor-record-note { margin-top: 14px; font-size: .86rem; color: rgba(252, 250, 246, .62); }

.hp-anchor-notes { padding: 26px 2px 20px; font-size: .84rem; line-height: 1.72; color: rgba(252, 250, 246, .62); }
.hp-anchor-notes strong { color: rgba(252, 250, 246, .88); }
.hp-anchor-notes a { text-decoration: underline; }

.hp-anchor-base {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  border-top: 1px solid rgba(252, 250, 246, .16);
  padding-top: 20px;
  font-size: .82rem;
  color: rgba(252, 250, 246, .55);
}

/* --- responsive ----------------------------------------------------------- */

@media (max-width: 980px) {
  .hp-sail { display: none; }
  .hp-hatch { display: block; }
  .hp-panel { display: flex; }
  .hp-order { grid-template-columns: 1fr; }
  .hp-summary { position: static; }
  .hp-anchor-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hp-deck--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  body { font-size: 16.5px; }
  .hp-band { padding: 64px 0; }
  .hp-deck--3, .hp-plans, .hp-faq--2 { grid-template-columns: 1fr; }
  .hp-split { grid-template-columns: 1fr; gap: 30px; }
  .hp-split--roomy { grid-template-columns: 1fr; }
  .hp-split--flip .hp-split-media { order: 0; }
  /* the band stacks: photo on top at a friendlier crop, words underneath */
  .hp-strip { padding: 46px 0; }
  .hp-strip-frame { border-radius: var(--hp-round-lg); }
  .hp-shot--band { aspect-ratio: 16 / 9; }
  .hp-strip-veil { display: none; }
  .hp-strip-words {
    position: static;
    max-width: none;
    padding: 26px 24px 28px;
    background: var(--hp-sea-deep);
  }
  .hp-plan--pick { order: -1; }
  .hp-dockline { grid-template-columns: 1fr; gap: 26px; text-align: left; }
  .hp-dockline::before {
    top: 8px; bottom: 8px;
    left: 12px; right: auto;
    width: 3px; height: auto;
    background: linear-gradient(180deg, var(--hp-sky) 0%, var(--hp-coral) 100%);
  }
  .hp-dockstop { display: grid; grid-template-columns: 26px 1fr; gap: 16px; text-align: left; padding: 0; }
  .hp-dockdot { margin: 0; }
  .hp-record-row { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 560px) {
  .hp-cove { padding: 0 18px; }
  .hp-hero { padding-top: 54px; }
  .hp-deck--2, .hp-pair, .hp-trio { grid-template-columns: 1fr; }
  .hp-form, .hp-card, .hp-orderbox, .hp-program, .hp-record { padding: 24px 20px; }
  .hp-anchor-grid { grid-template-columns: 1fr; }
  .hp-btn, .hp-btn--shell { width: 100%; text-align: center; }
  .hp-wave svg { height: 46px; }
}
