/* ============================================================
   Own a Kona Poké — ownership opportunity landing page
   Standalone & conversion-first. Reuses brand tokens + base reset
   from styles.css (:root vars, fonts, [hidden] rule).
   ============================================================ */

.own-page { background: var(--cream); color: var(--ink); }

/* ---- Brand bar (logo only — no navigation) ---- */
.own-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(20px, 5vw, 56px);
  background: #fff; border-bottom: 1px solid rgba(0,131,144,0.12);
}
.own-logo { height: 46px; width: auto; display: block; }
.own-topbar-tag {
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}

/* ---- HERO (copy + form, above the fold) ---- */
.own-hero {
  background: linear-gradient(155deg, #06403F 0%, #074a47 55%, #052e2d 100%);
  padding: clamp(98px, 10vw, 120px) clamp(20px, 5vw, 56px) clamp(46px, 6vw, 76px);
}
.own-hero-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; gap: clamp(26px, 4vw, 54px);
  grid-template-columns: 1.04fr 0.96fr;
  grid-template-areas: "head form" "benefits form";
  align-items: start;
}
.own-head { grid-area: head; }
.own-benefits { grid-area: benefits; align-self: start; margin-top: 2px; }
.own-right { grid-area: form; display: flex; flex-direction: column; gap: 22px; }
.own-hero-photo { width: 100%; height: auto; display: block; border-radius: 18px; box-shadow: 0 30px 70px -32px rgba(0,20,20,0.55); }

.own-eyebrow {
  display: inline-block; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-soft); margin-bottom: 14px;
}
.own-h1 {
  font-family: 'Jost', sans-serif; font-weight: 300; line-height: 1.03; color: #fff;
  font-size: clamp(38px, 5.2vw, 62px); letter-spacing: -0.01em;
}
.own-h1 .em { font-weight: 600; color: var(--teal-soft); display: block; }
.own-sub {
  margin-top: 18px; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55;
  color: rgba(255,255,255,0.86); max-width: 540px;
}

/* ---- checklists ---- */
.own-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.own-checks li { position: relative; padding-left: 36px; font-size: 16px; line-height: 1.4; }
.own-checks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; background: var(--accent);
}
.own-benefits li { color: #fff; font-weight: 500; }
.own-benefits li::before { background: var(--coral); }

/* ---- FORM CARD ---- */
.own-form-card {
  background: #fff; border-radius: 22px; padding: clamp(22px, 2.4vw, 32px);
  box-shadow: 0 40px 90px -34px rgba(0,20,20,0.6); border: 1px solid rgba(0,131,144,0.1);
}
.own-form-title { font-family: 'Jost', sans-serif; font-weight: 600; font-size: clamp(22px, 2.2vw, 27px); color: var(--ink); line-height: 1.1; }
.own-form-sub { margin-top: 8px; font-size: 14.5px; line-height: 1.5; color: #62786f; }
.own-form { margin-top: 18px; display: flex; flex-direction: column; gap: 13px; }
.own-row { display: grid; gap: 13px; }
.own-row--2 { grid-template-columns: 1fr 1fr; }
.own-row--3 { grid-template-columns: 1fr 0.66fr 0.84fr; }
.own-field { display: flex; flex-direction: column; gap: 6px; }
.own-field > span {
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.06em; text-transform: uppercase; color: #62786f;
}
.own-field > span i { color: var(--coral); font-style: normal; }
.own-field input, .own-field select, .own-field textarea {
  width: 100%; font-family: 'Mulish', sans-serif; font-size: 15px; color: var(--ink);
  background: #fff; border: 1.5px solid rgba(0,131,144,0.2); border-radius: 11px;
  padding: 12px 13px; outline: none; transition: border-color .15s ease;
}
.own-field textarea { resize: vertical; }
.own-field input:focus, .own-field select:focus, .own-field textarea:focus { border-color: var(--accent); }
.own-field.invalid input, .own-field.invalid select { border-color: var(--coral); background: #fff7f6; }

.own-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 2px; cursor: pointer; }
.own-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex: none; }
.own-check span { font-size: 13.5px; line-height: 1.4; color: #4a625f; }
.own-check span i { color: var(--coral); font-style: normal; }
.own-check.invalid span { color: var(--coral); }

.own-submit {
  margin-top: 6px; width: 100%; font-family: 'Jost', sans-serif; font-weight: 700;
  font-size: 17px; letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
  border: none; border-radius: 14px; padding: 18px; cursor: pointer;
  background: var(--coral); box-shadow: 0 16px 34px -12px rgba(255,107,91,0.7);
  transition: transform .15s ease, box-shadow .15s ease;
}
.own-submit:hover { transform: translateY(-2px); box-shadow: 0 22px 42px -14px rgba(255,107,91,0.8); }
.own-reveal-btn { margin-top: 16px; }
.own-form-hint { font-size: 13px; color: var(--coral); font-weight: 600; }
.own-form-hint:empty { display: none; }
.own-form-fine { font-size: 12px; color: #8aa09b; line-height: 1.4; }

/* ---- CONTENT BANDS ---- */
.own-band { padding: clamp(44px, 6vw, 78px) clamp(20px, 5vw, 56px); background: var(--cream); }
.own-why { background: #fff; }
.own-story { background: #fff; }
/* storefront showcase */
.own-photo { background: var(--cream); padding: clamp(34px, 5vw, 60px) clamp(20px, 5vw, 56px); }
.own-photo-img { width: 100%; height: auto; display: block; border-radius: 22px; box-shadow: 0 34px 80px -36px rgba(0,20,20,0.55); }
.own-wrap { max-width: 1080px; margin: 0 auto; }
.own-narrow { max-width: 760px; text-align: center; }
.own-h2 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: clamp(28px, 3.4vw, 40px); color: var(--ink); text-align: center; }
.own-why .own-eyebrow { color: var(--accent); }
.own-lead { margin-top: 16px; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; color: #465c59; }
.own-pull {
  margin-top: 22px; font-family: 'Jost', sans-serif; font-weight: 500; font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px); line-height: 1.35; color: var(--accent);
}

/* what-you-receive + trust grids — dark checks on light */
.own-grid-2, .own-grid-3 { margin-top: 30px; display: grid; gap: 16px 28px; }
.own-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; }
.own-grid-3 { grid-template-columns: repeat(3, 1fr); }
.own-band .own-checks li { color: var(--ink); font-weight: 500; }
.own-band .own-checks li::before { background: var(--accent); }

/* story */
.own-quote { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(22px, 2.8vw, 32px); line-height: 1.4; color: var(--ink); }
.own-quote-by { display: block; margin-top: 18px; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }

/* trust CTA */
.own-trust { text-align: center; }
.own-cta-bottom {
  display: inline-flex; margin-top: 34px; text-decoration: none;
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: 0.04em;
  text-transform: uppercase; color: #fff; background: var(--accent); padding: 16px 30px; border-radius: 999px;
  box-shadow: 0 16px 34px -14px rgba(0,131,144,0.7); transition: transform .15s ease;
}
.own-cta-bottom:hover { transform: translateY(-2px); }

/* ---- THANK-YOU ---- */
.own-thanks { min-height: 72vh; display: flex; align-items: center; justify-content: center; padding: clamp(48px, 8vw, 110px) clamp(20px, 5vw, 56px); background: var(--cream); }
.own-thanks-inner { max-width: 600px; text-align: center; animation: konaFade .6s ease both; }
.own-check-circle { width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 40px; display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 40px -16px rgba(0,131,144,0.7); }
.own-thanks-title { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(40px, 6vw, 64px); color: var(--ink); }
.own-thanks-lead { margin-top: 16px; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.6; color: #465c59; }

/* ---- FOOTER ---- */
.own-footer { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 26px 20px; background: #06403F; color: rgba(255,255,255,0.7); font-size: 13px; text-align: center; flex-wrap: wrap; }
.own-footer-logo { height: 26px; width: auto; }

/* ---- responsive: stack + pull the form above the fold on mobile ---- */
@media (max-width: 860px) {
  .own-hero-grid { grid-template-columns: 1fr; grid-template-areas: "head" "form" "benefits"; gap: 26px; }
  .own-row--2, .own-row--3 { grid-template-columns: 1fr; }
  .own-grid-2, .own-grid-3 { grid-template-columns: 1fr; max-width: 420px; }
  .own-h1 .em { display: inline; }
}
