/* Reset. The framework build gets this from Tailwind preflight; the static
 * build brings its own, or the default body margin shows the white page
 * behind the layout on every edge. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  overscroll-behavior-x: none;
  background: #0b2b2e;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  /* clip, never hidden: hidden makes this a scroll container, which breaks the
   * position:sticky film stage. clip contains overflow without doing that. */
  overflow-x: clip;
  overscroll-behavior-x: none;
  background: #0b2b2e;
}

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

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

h1, h2, h3, h4, p, figure, dl, dd, ul, ol {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}


/* Ohana Heritage brand layer. All page colour lives here so route files stay
 * free of raw literals. Corner language is all-sharp: no radius anywhere. */

.oh {
  --oh-ground: #0b2b2e;
  --oh-surface: #103a3d;
  --oh-sunk: #082224;
  --oh-ink: #f2ede4;
  --oh-muted: #9db5b1;
  --oh-line: color-mix(in srgb, #f2ede4 14%, transparent);
  --oh-line-strong: color-mix(in srgb, #f2ede4 30%, transparent);
  --oh-accent: #d4675a;
  --oh-shift: 0px;
  --oh-pull-x: 0px;
  --oh-pull-y: 0px;

  color: var(--oh-ink);
  background: var(--oh-ground);
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.oh *,
.oh *::before,
.oh *::after {
  border-radius: 0;
  box-sizing: border-box;
}

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

.oh-wrap {
  width: min(100%, 78rem);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
}

.oh-section {
  position: relative;
  padding-block: clamp(3rem, 5.5vw, 5.25rem);
}

.oh-eyebrow {
  margin: 0 0 1.25rem;
  color: var(--oh-accent);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.oh-h2 {
  margin: 0;
  max-width: 18ch;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.oh-h3 {
  margin: 0 0 0.75rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.oh-lede {
  margin: 1.05rem 0 0;
  max-width: 52ch;
  color: var(--oh-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.oh-body {
  margin: 0 0 1rem;
  max-width: 65ch;
  color: var(--oh-muted);
}

.oh-note {
  color: var(--oh-muted);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

@keyframes oh-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes oh-wipe {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes oh-word {
  from {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0) rotate(1.5deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes oh-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

.oh-rise {
  animation: oh-rise 0.9s cubic-bezier(0.16, 0.84, 0.3, 1) both;
  animation-delay: var(--oh-d, 0ms);
}

.oh-wipe {
  animation: oh-wipe 1.1s cubic-bezier(0.16, 0.84, 0.3, 1) both;
  animation-delay: var(--oh-d, 0ms);
}

.oh-build {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 0.28em;
}

.oh-build > span {
  display: inline-block;
  animation: oh-word 0.85s cubic-bezier(0.16, 0.84, 0.3, 1) both;
  animation-delay: calc(var(--oh-i, 0) * 65ms + var(--oh-d, 0ms));
}

.oh-parallax {
  transform: translate3d(0, var(--oh-shift), 0);
  will-change: transform;
}

.oh-nav {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, #0b2b2e 88%, transparent),
    transparent
  );
  backdrop-filter: blur(2px);
}

.oh-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--oh-ink);
  text-decoration: none;
}

.oh-nav__mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.oh-nav__name {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.oh-nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.oh-nav__phone {
  color: var(--oh-muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.oh-nav__phone:hover {
  color: var(--oh-ink);
}

@media (max-width: 640px) {
  .oh-nav__phone,
  .oh-nav__name {
    display: none;
  }
}

.oh-cta-bracket {
  position: relative;
  display: inline-block;
  padding: 0.7rem 1.15rem;
  color: var(--oh-ink);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.oh-cta-bracket::before,
.oh-cta-bracket::after {
  position: absolute;
  width: 12px;
  height: 12px;
  content: "";
  transition:
    width 0.3s ease,
    height 0.3s ease,
    border-color 0.3s ease;
  border-color: var(--oh-line-strong);
  border-style: solid;
}

.oh-cta-bracket::before {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.oh-cta-bracket::after {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
}

.oh-cta-bracket:hover::before,
.oh-cta-bracket:hover::after,
.oh-cta-bracket:focus-visible::before,
.oh-cta-bracket:focus-visible::after {
  width: 100%;
  height: 100%;
  border-color: var(--oh-accent);
}

.oh-cta-bracket:focus-visible {
  outline: 2px solid var(--oh-accent);
  outline-offset: 4px;
}

.oh-cta-solid {
  position: relative;
  display: inline-block;
  padding: 1rem 1.9rem 1.1rem;
  overflow: hidden;
  color: var(--oh-ink);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  background: var(--oh-accent);
  border: 0;
  cursor: pointer;
  transform: translate3d(var(--oh-pull-x), var(--oh-pull-y), 0);
  transition: transform 0.35s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-cta-solid span {
  position: relative;
  z-index: 1;
}

.oh-cta-solid::after {
  position: absolute;
  right: 1.9rem;
  bottom: 0.75rem;
  left: 1.9rem;
  height: 2px;
  content: "";
  background: #c9a227;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-cta-solid:hover::after,
.oh-cta-solid:focus-visible::after {
  transform: scaleX(1);
}

.oh-cta-solid:active {
  transform: translate3d(var(--oh-pull-x), var(--oh-pull-y), 0) scale(0.98);
}

.oh-cta-solid:focus-visible {
  outline: 2px solid var(--oh-ink);
  outline-offset: 3px;
}

.oh-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem 1.1rem;
  color: var(--oh-ink);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--oh-line-strong);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.oh-cta-ghost i {
  display: inline-block;
  font-style: normal;
  transition: transform 0.3s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-cta-ghost:hover,
.oh-cta-ghost:focus-visible {
  color: var(--oh-ground);
  background: var(--oh-ink);
  border-color: var(--oh-ink);
}

.oh-cta-ghost:hover i,
.oh-cta-ghost:focus-visible i {
  transform: translateX(6px);
}

.oh-cta-ghost:active {
  transform: translateY(1px);
}

.oh-cta-submit {
  padding: 1rem 2.2rem 1.1rem;
  color: var(--oh-ground);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--oh-ink);
  border: 0;
  cursor: pointer;
  transition:
    letter-spacing 0.35s ease,
    background 0.3s ease;
}

.oh-cta-submit:hover:not(:disabled),
.oh-cta-submit:focus-visible:not(:disabled) {
  letter-spacing: 0.04em;
  background: #ffffff;
}

.oh-cta-submit:active:not(:disabled) {
  transform: translateY(1px);
}

.oh-cta-submit:disabled {
  cursor: progress;
  opacity: 0.6;
}

.oh-cta-submit:focus-visible {
  outline: 2px solid var(--oh-accent);
  outline-offset: 4px;
}

.oh-price {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--oh-line);
}

.oh-price__row {
  position: relative;
  display: grid;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--oh-line);
  gap: 0.35rem 1.5rem;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  transition: padding-left 0.35s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-price__row::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--oh-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-price__row:hover {
  padding-left: 0.75rem;
}

.oh-price__row:hover::before {
  transform: scaleX(1);
}

.oh-price__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 0.4s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-price__row:hover .oh-price__icon {
  transform: scale(1.12);
}

.oh-price__name {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.oh-price__desc {
  margin: 0.3rem 0 0;
  color: var(--oh-muted);
  font-size: 0.92rem;
  grid-column: 2;
}

.oh-price__figure {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.oh-price__was {
  display: block;
  color: var(--oh-muted);
  font-family: "Inter Tight", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: right;
}

@media (max-width: 720px) {
  .oh-price__row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .oh-price__figure {
    grid-column: 2;
    margin-top: 0.4rem;
  }

  .oh-price__was {
    text-align: left;
  }
}

.oh-price__foot {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 1.25rem;
  color: var(--oh-muted);
  font-size: 0.95rem;
}

.oh-price__foot b {
  color: var(--oh-accent);
  font-weight: 500;
}

.oh-split {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1.15fr 0.85fr;
}

.oh-split__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.oh-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06) translate3d(0, var(--oh-shift), 0);
  will-change: transform;
}

.oh-checks {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.oh-checks li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.9rem;
  border-top: 1px solid var(--oh-line);
  color: var(--oh-ink);
  font-size: 0.98rem;
}

.oh-checks li::before {
  position: absolute;
  top: 0.6rem;
  left: 0;
  color: var(--oh-accent);
  content: "+";
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 500;
}

@media (max-width: 860px) {
  .oh-split {
    grid-template-columns: 1fr;
  }
}

.oh-band {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(19rem, 44vh, 27rem);
  overflow: hidden;
  background: var(--oh-sunk);
}

.oh-band__img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  transform: translate3d(0, var(--oh-shift), 0);
  will-change: transform;
}

.oh-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, #0b2b2e 94%, transparent) 0%,
    color-mix(in srgb, #0b2b2e 62%, transparent) 45%,
    color-mix(in srgb, #0b2b2e 22%, transparent) 100%
  );
}

.oh-band__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(1.75rem, 4vw, 3rem);
}

.oh-band__grid {
  display: grid;
  align-items: end;
  gap: 2rem clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.1fr 0.9fr;
}

.oh-places {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oh-places li {
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--oh-line-strong);
  color: var(--oh-ink);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.oh-places li:hover {
  color: var(--oh-ground);
  background: var(--oh-ink);
}

@media (max-width: 860px) {
  .oh-band__grid {
    grid-template-columns: 1fr;
  }
}

.oh-steps {
  display: grid;
  gap: 1px;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--oh-line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.oh-step {
  position: relative;
  padding: 1.5rem 1.25rem 1.75rem;
  overflow: hidden;
  background: var(--oh-ground);
  transition: background 0.4s ease;
}

.oh-step:hover {
  background: var(--oh-surface);
}

.oh-step__n {
  display: block;
  color: var(--oh-accent);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.oh-step__icon {
  width: 34px;
  height: 34px;
  margin: 0.9rem 0 1rem;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-step:hover .oh-step__icon {
  transform: translateY(-6px);
}

.oh-step p {
  margin: 0;
  color: var(--oh-muted);
  font-size: 0.92rem;
}

.oh-step h3 {
  margin: 0 0 0.5rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .oh-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .oh-steps {
    grid-template-columns: 1fr;
  }
}

.oh-kapa {
  height: 58px;
  background-image: var(--oh-kapa-src);
  background-repeat: repeat;
  background-position-x: var(--oh-shift);
  background-size: 220px 220px;
  opacity: 0.5;
  border-block: 1px solid var(--oh-line);
}

.oh-duo {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 3rem);
}

.oh-duo__item {
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: 0.9fr 1.1fr;
}

.oh-duo__item:nth-child(2) .oh-duo__media {
  order: 2;
}

.oh-duo__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.oh-duo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-duo__item:hover .oh-duo__media img {
  transform: scale(1.05);
}

@media (max-width: 860px) {
  .oh-duo__item,
  .oh-duo__item:nth-child(2) .oh-duo__media {
    order: 0;
    grid-template-columns: 1fr;
  }
}

.oh-remind {
  position: relative;
  overflow: hidden;
  background: var(--oh-surface);
}

.oh-remind__plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  transform: translate3d(0, var(--oh-shift), 0);
}

.oh-remind__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.oh-remind__mark {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  object-fit: contain;
  animation: oh-breathe 6s ease-in-out infinite;
}

.oh-section--plated {
  position: relative;
  overflow: hidden;
}

.oh-plate {
  position: absolute;
  inset: -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  opacity: 0.24;
  pointer-events: none;
  transform: translate3d(0, var(--oh-shift), 0);
}

.oh-section--plated > .oh-wrap {
  position: relative;
  z-index: 1;
}

.oh-quote {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1.15fr 0.85fr;
}

.oh-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oh-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.oh-field--wide {
  grid-column: 1 / -1;
}

.oh-field label {
  color: var(--oh-ink);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oh-field input,
.oh-field select,
.oh-field textarea {
  padding: 0.9rem 1rem;
  color: var(--oh-ink);
  font-family: inherit;
  font-size: 1rem;
  background: var(--oh-sunk);
  border: 1px solid var(--oh-line);
  transition: border-color 0.25s ease;
}

.oh-field textarea {
  min-height: 7rem;
  resize: vertical;
}

.oh-field input::placeholder,
.oh-field textarea::placeholder {
  color: color-mix(in srgb, #9db5b1 78%, transparent);
}

.oh-field input:focus,
.oh-field select:focus,
.oh-field textarea:focus {
  border-color: var(--oh-accent);
  outline: 2px solid color-mix(in srgb, #d4675a 45%, transparent);
  outline-offset: 1px;
}

.oh-field__error {
  color: var(--oh-accent);
  font-size: 0.82rem;
}

.oh-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  grid-column: 1 / -1;
}

.oh-form__status {
  color: var(--oh-muted);
  font-size: 0.9rem;
}

.oh-form__done {
  padding: 2rem;
  background: var(--oh-surface);
  border-left: 3px solid var(--oh-accent);
}

.oh-aside {
  padding-top: 0.5rem;
}

.oh-aside dl {
  margin: 1.5rem 0 0;
}

.oh-aside dt {
  padding-top: 0.8rem;
  border-top: 1px solid var(--oh-line);
  color: var(--oh-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oh-aside dd {
  margin: 0.3rem 0 0.9rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.1rem;
}

.oh-aside a {
  color: var(--oh-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--oh-accent);
}

@media (max-width: 900px) {
  .oh-quote,
  .oh-form {
    grid-template-columns: 1fr;
  }
}

.oh-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--oh-line);
}

.oh-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.oh-footer img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .oh *,
  .oh *::before,
  .oh *::after {
    animation: none !important;
    transition: none !important;
  }

  .oh-rise,
  .oh-wipe,
  .oh-build > span {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .oh-parallax,
  .oh-split__media img,
  .oh-band__img,
  .oh-remind__plate,
  .oh-plate {
    transform: none;
  }

  .oh-kapa {
    background-position-x: 0;
  }
}

.oh-causes {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .oh-causes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .oh-causes {
    grid-template-columns: minmax(0, 1fr);
  }
}

.oh-cause {
  min-width: 0;
  padding: 1.35rem 1.4rem 1.6rem;
  background: var(--oh-surface);
  border-top: 2px solid var(--oh-accent);
  transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-cause:hover {
  transform: translateY(-8px);
}

.oh-cause__n {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--oh-muted);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.oh-cause h3 {
  margin: 0 0 0.6rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.oh-cause p {
  margin: 0;
  color: var(--oh-muted);
  font-size: 0.93rem;
}

.oh-compare {
  display: grid;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.oh-compare__cta {
  margin-top: 1.75rem;
}

.oh-checks--off li::before {
  top: 1.05rem;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid var(--oh-accent);
}

@media (max-width: 960px) {
  .oh-compare {
    grid-template-columns: 1fr;
  }
}

.oh-ba {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--oh-sunk);
}

.oh-ba img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh-ba__after {
  clip-path: inset(0 0 0 var(--oh-reveal, 50%));
}

.oh-ba__range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
  appearance: none;
}

.oh-ba__range:focus-visible {
  outline: 2px solid var(--oh-accent);
  outline-offset: -4px;
  opacity: 1;
}

.oh-ba__handle {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--oh-reveal, 50%);
  width: 2px;
  background: var(--oh-ink);
  pointer-events: none;
}

.oh-ba__handle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  content: "";
  border: 1px solid var(--oh-ink);
  background: color-mix(in srgb, #0b2b2e 45%, transparent);
}

.oh-ba__tag {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  padding: 0.42rem 0.7rem;
  color: var(--oh-ink);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: color-mix(in srgb, #0b2b2e 74%, transparent);
  pointer-events: none;
}

.oh-ba__tag--a {
  left: 1rem;
}

.oh-ba__tag--b {
  right: 1rem;
}

.oh-faq {
  display: grid;
  align-items: start;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--oh-line);
  column-gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .oh-faq {
    grid-template-columns: 1fr;
  }
}

.oh-faq details {
  border-bottom: 1px solid var(--oh-line);
}

.oh-faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

.oh-faq summary::-webkit-details-marker {
  display: none;
}

.oh-faq summary::after {
  color: var(--oh-accent);
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-faq details[open] summary::after {
  transform: rotate(45deg);
}

.oh-faq summary:focus-visible {
  outline: 2px solid var(--oh-accent);
  outline-offset: 3px;
}

.oh-faq p {
  margin: 0 0 1.1rem;
  max-width: 70ch;
  color: var(--oh-muted);
  font-size: 0.98rem;
}

.oh-remind__form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 62rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oh-remind__form .oh-form__foot {
  grid-column: 1 / -1;
}

@media (max-width: 860px) {
  .oh-remind__form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oh-cause:hover {
    transform: none;
  }
}

/* ---------- mobile and tablet -------------------------------------------- */

@media (max-width: 860px) {
  .oh-wrap {
    padding-inline: 1.15rem;
  }

  /* nothing under 14px, which is where small type stops being readable at
   * arm's length on a phone */
  .oh-note,
  .oh-form__status {
    font-size: 0.95rem;
  }

  .oh-price__was {
    font-size: 0.9rem;
  }

  .oh-eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.26em;
  }

  .oh-cause__n,
  .oh-step__n {
    font-size: 0.88rem;
  }

  .oh-ba__tag {
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
  }

  .oh-cause p,
  .oh-step p,
  .oh-price__desc,
  .oh-body {
    font-size: 1.02rem;
  }

  .oh-checks li {
    padding-block: 0.75rem;
    font-size: 1.02rem;
  }

  .oh-lede {
    font-size: 1.05rem;
  }

  .oh-field label {
    font-size: 0.88rem;
  }

  /* tap targets */
  .oh-nav__brand {
    min-height: 44px;
  }

  .oh-aside a,
  .oh-footer a,
  .oh-nav__phone {
    display: inline-block;
    min-height: 44px;
    padding-block: 0.7rem;
  }

  .oh-places li {
    padding: 0.7rem 1rem;
  }

  .oh-field input,
  .oh-field select,
  .oh-field textarea {
    padding: 1rem;
  }

}

@media (max-width: 720px) {
  /* a square crop shows far more of the stone than a letterbox does */
  .oh-ba {
    aspect-ratio: 1 / 1;
    max-height: none;
  }

  /* clear the docked bar */
  .oh-footer {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
  }

  .oh-section,
  .oh-remind {
    scroll-margin-bottom: 6rem;
  }
}

/* ---------- docked actions, phone only ----------------------------------- */

.oh-dock {
  display: none;
}

@media (max-width: 720px) {
  .oh-dock {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 1px;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--oh-line-strong);
    border-top: 1px solid var(--oh-line);
    grid-template-columns: 1fr 1fr;
  }

  .oh-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.9rem 0.5rem;
    color: var(--oh-ink);
    font-family: "Outfit", system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    background: var(--oh-ground);
  }

  .oh-dock a + a {
    background: var(--oh-accent);
  }

  .oh-dock a:active {
    filter: brightness(1.18);
  }

  .oh-dock a:focus-visible {
    outline: 2px solid var(--oh-ink);
    outline-offset: -4px;
  }
}

/* the honeypot must not sit off canvas, it widens the document on phones */
.oh-hp {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Chapter to chapter cross fade for the film stage. */
.scroll-scrub__layer {
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Trailing spacer so the sticky stage stays pinned through the final chapter
 * instead of sliding out from behind its own copy. */
.scroll-scrub__tail {
  min-height: 100dvh;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-scrub__layer {
    transition: none;
  }
}

/* ---------- landing pages ------------------------------------------------ */

.oh-page-hero {
  padding-top: clamp(7rem, 12vw, 10rem);
  border-bottom: 1px solid var(--oh-line);
}

.oh-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--oh-muted);
  font-size: 0.85rem;
}

.oh-crumbs a {
  color: var(--oh-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.oh-crumbs a:hover {
  color: var(--oh-ink);
  border-bottom-color: var(--oh-accent);
}

.oh-crumbs i {
  color: color-mix(in srgb, var(--oh-muted) 60%, transparent);
  font-style: normal;
}

.oh-h1 {
  margin: 0;
  max-width: 16ch;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.oh-pricechip {
  display: inline-block;
  margin: 1.5rem 0 0;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--oh-line-strong);
  color: var(--oh-ink);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.oh-page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.oh-prose .oh-body + .oh-body {
  margin-top: 1rem;
}

.oh-cards {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oh-card {
  display: block;
  min-width: 0;
  padding: 1.5rem 1.5rem 1.75rem;
  color: var(--oh-ink);
  text-decoration: none;
  background: var(--oh-surface);
  border-top: 2px solid var(--oh-accent);
  transition: transform 0.5s cubic-bezier(0.16, 0.84, 0.3, 1);
}

.oh-card:hover {
  transform: translateY(-6px);
}

.oh-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.oh-card p {
  margin: 0 0 1rem;
  color: var(--oh-muted);
  font-size: 0.95rem;
}

.oh-card__price {
  color: var(--oh-accent);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.oh-places a {
  color: inherit;
  text-decoration: none;
}

.oh-sitelinks {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--oh-line);
}

.oh-sitelinks__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oh-sitelinks h3 {
  margin: 0 0 1rem;
  color: var(--oh-muted);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oh-sitelinks ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.oh-sitelinks a {
  color: var(--oh-ink);
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.oh-sitelinks a:hover {
  border-bottom-color: var(--oh-accent);
}

@media (max-width: 900px) {
  .oh-cards,
  .oh-sitelinks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .oh-cards,
  .oh-sitelinks__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .oh-card:hover {
    transform: none;
  }
}

.scroll-scrub {
  --ss-progress: 0;
  position: relative;
  isolation: isolate;
  color: var(--ss-ink);
  background: var(--ss-bg);
}

.scroll-scrub__stage {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  background: var(--ss-bg);
}

.scroll-scrub__media,
.scroll-scrub__layer,
.scroll-scrub__picture,
.scroll-scrub__poster,
.scroll-scrub__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scroll-scrub__media {
  z-index: 0;
}

.scroll-scrub__layer {
  margin: 0;
  overflow: hidden;
  opacity: 0;
  will-change: opacity;
}

.scroll-scrub__layer:first-child {
  opacity: 1;
}

.scroll-scrub__poster,
.scroll-scrub__video {
  display: block;
  object-fit: cover;
  object-position: var(--ss-object-position);
  filter: brightness(0.62) saturate(1.06);
}

/* On a landscape screen, cover crops roughly a third of a 16:9 frame away.
 * contain shows the whole shot; the stage ground fills the remainder. */
@media (min-aspect-ratio: 1 / 1) {
  .scroll-scrub__poster,
  .scroll-scrub__video {
    object-fit: contain;
  }
}

.scroll-scrub__poster {
  z-index: 0;
}

.scroll-scrub__video {
  z-index: 1;
}

.scroll-scrub__layer[data-video-painted="true"] .scroll-scrub__poster {
  visibility: hidden;
}

.scroll-scrub__progress {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: color-mix(in srgb, var(--ss-ink) 14%, transparent);
  pointer-events: none;
}

.scroll-scrub__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ss-accent);
  transform: scaleX(var(--ss-progress));
  transform-origin: left center;
}

.scroll-scrub__route {
  position: absolute;
  z-index: 6;
  top: 84px;
  right: clamp(1rem, 4vw, 4rem);
  left: clamp(1rem, 4vw, 4rem);
  display: flex;
  justify-content: flex-end;
  gap: 0.25rem;
  pointer-events: auto;
}

.scroll-scrub__route-button {
  min-height: 2.4rem;
  padding: 0.5rem 0.8rem;
  border: 0;
  color: var(--ss-muted);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.scroll-scrub__route-button:hover,
.scroll-scrub__route-button[aria-current="step"] {
  color: var(--ss-ink);
}

.scroll-scrub__route-button[aria-current="step"] {
  text-decoration: underline;
  text-decoration-color: var(--ss-accent);
  text-decoration-thickness: 0.15em;
  text-underline-offset: 0.3em;
}

.scroll-scrub__route-button:focus-visible {
  outline: 2px solid var(--ss-accent);
  outline-offset: 3px;
}

.scroll-scrub__story {
  position: relative;
  z-index: 3;
  margin-top: -100dvh;
  pointer-events: none;
}

.scroll-scrub__chapter,
.scroll-scrub__connector-band {
  position: relative;
}

.scroll-scrub__chapter-pin {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100dvh;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 6vw, 6rem);
  pointer-events: none;
}

.scroll-scrub__chapter[data-align="right"] .scroll-scrub__chapter-pin {
  justify-content: flex-end;
}

.scroll-scrub__copy {
  position: relative;
  width: min(38rem, 45vw);
  pointer-events: auto;
}

.scroll-scrub__copy::before {
  position: absolute;
  z-index: -1;
  inset: -3rem -5rem;
  content: "";
  background: none;
  pointer-events: none;
}

.scroll-scrub__kicker {
  max-width: 30ch;
  margin: 0 0 1rem;
  color: var(--ss-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-scrub__title {
  max-width: 12ch;
  margin: 0;
  color: var(--ss-ink);
  font: inherit;
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.scroll-scrub__body {
  max-width: 42ch;
  margin: 1.5rem 0 0;
  color: color-mix(in srgb, var(--ss-ink) 94%, transparent);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 500;
  line-height: 1.5;
}

.scroll-scrub__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.scroll-scrub__tags li {
  padding: 0.45rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--ss-ink) 45%, transparent);
  color: var(--ss-ink);
  font-size: 0.82rem;
}

.scroll-scrub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (max-width: 860px) {
  .scroll-scrub__poster,
  .scroll-scrub__video {
    object-position: var(--ss-mobile-position);
  }

  .scroll-scrub__route {
    top: 80px;
    right: max(0.75rem, env(safe-area-inset-right));
    left: max(0.75rem, env(safe-area-inset-left));
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
  }

  .scroll-scrub__route-button {
    flex: 0 0 auto;
  }

  .scroll-scrub__chapter-pin,
  .scroll-scrub__chapter[data-align="right"] .scroll-scrub__chapter-pin {
    align-items: flex-end;
    justify-content: flex-start;
    padding: 6.5rem max(1.25rem, env(safe-area-inset-right))
      calc(7rem + env(safe-area-inset-bottom))
      max(1.25rem, env(safe-area-inset-left));
  }

  .scroll-scrub__copy {
    width: min(100%, 36rem);
  }

  /* No panel behind the copy on phones either. The film carries a deeper,
   * even grade instead, so nothing reads as a box following the text. */
  .scroll-scrub__copy::before {
    background: none;
  }

  .scroll-scrub__poster,
  .scroll-scrub__video {
    filter: brightness(0.5) saturate(1.06);
  }

  .scroll-scrub__title {
    max-width: 14ch;
    font-size: clamp(2.3rem, 11vw, 4.5rem);
  }

  .scroll-scrub__body {
    font-size: 1.06rem;
  }

  .scroll-scrub__kicker {
    font-size: 0.9rem;
  }

  .scroll-scrub__route-button {
    min-height: 44px;
  }

  .scroll-scrub__tags li {
    padding: 0.55rem 0.8rem;
    font-size: 0.88rem;
  }

  .scroll-scrub__actions {
    width: 100%;
    gap: 0.6rem;
  }

  .scroll-scrub__actions > a {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-scrub__chapter {
    min-height: 100dvh !important;
  }

  .scroll-scrub__connector-band {
    display: none;
  }

  .scroll-scrub__progress span {
    transition: none;
  }
}
