/* ============================================================
   Kona Poké — Location pages (Melbourne / Sanford / Apopka)
   Reuses reset, fonts, header, footer, buttons from styles.css.
   ============================================================ */

.locp-page { background: var(--cream); color: var(--ink); }
.locp-wrap { max-width: 1080px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.locp-narrow { max-width: 780px; }
.locp-eyebrow {
  display: inline-block; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}

/* ---- hero (clears the fixed header) ---- */
.locp-hero {
  padding: clamp(100px, 11vw, 140px) 0 clamp(34px, 5vw, 56px);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.locp-back {
  display: inline-block; margin-bottom: 16px; font-family: 'Jost', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.04em; color: var(--accent); text-decoration: none;
}
.locp-back:hover { text-decoration: underline; }
.locp-hero h1 {
  font-family: 'Jost', sans-serif; font-weight: 300; line-height: 1.02; color: var(--ink);
  font-size: clamp(40px, 6.5vw, 72px); letter-spacing: -0.01em;
}
.locp-hero h1 .em { font-weight: 600; color: var(--accent); }
.locp-lead { max-width: 640px; margin: 18px 0 0; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.6; color: #45605c; }
.locp-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---- map + hours/NAP ---- */
.locp-info { padding: clamp(40px, 6vw, 72px) 0; }
.locp-info-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 48px); align-items: stretch; }
.locp-map { border-radius: 20px; overflow: hidden; box-shadow: 0 28px 64px -34px rgba(0,20,20,0.5); min-height: 320px; background: #dfe7e5; }
.locp-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.locp-details { display: flex; flex-direction: column; }
.locp-details h2 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: clamp(24px, 3vw, 32px); color: var(--ink); margin-bottom: 18px; }
.locp-row { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; font-size: 16px; color: #3a524f; text-decoration: none; border-bottom: 1px solid rgba(0,131,144,0.12); }
a.locp-row:hover { color: var(--accent); }
.locp-row svg { width: 21px; height: 21px; flex: none; color: var(--accent); margin-top: 1px; }
.locp-row.locp-hours { color: #1f7a44; font-weight: 600; }
.locp-tag { margin-top: 14px; font-size: 14.5px; color: #62786f; font-style: italic; }

/* ---- narrative + catering ---- */
.locp-body, .locp-cater, .locp-faq, .locp-other { padding: clamp(40px, 6vw, 72px) 0; }
.locp-body h2, .locp-cater h2, .locp-faq h2, .locp-other h2 {
  font-family: 'Jost', sans-serif; font-weight: 400; line-height: 1.1; color: var(--ink);
  font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px;
}
.locp-body h2 .em, .locp-cater h2 .em, .locp-other h2 .em { font-weight: 600; color: var(--accent); }
.locp-body p, .locp-cater p { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; color: #3a524f; }
.locp-body p + p, .locp-cater p + p { margin-top: 18px; }
.locp-cater .btn { margin-top: 22px; }

/* ---- FAQ ---- */
.locp-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; }
.locp-faq-item { background: #fff; border: 1px solid rgba(0,131,144,0.14); border-radius: 16px; overflow: hidden; }
.locp-faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 20px; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink);
}
.locp-faq-item summary::-webkit-details-marker { display: none; }
.locp-faq-item summary::after { content: '⌄'; font-size: 20px; line-height: 1; color: var(--accent); transition: transform .25s ease; }
.locp-faq-item[open] summary::after { transform: rotate(180deg); }
.locp-faq-item summary:hover { background: rgba(0,131,144,0.04); }
.locp-faq-item .locp-faq-a { padding: 0 20px 18px; font-size: 15.5px; line-height: 1.65; color: #4a625f; }

/* ---- other locations ---- */
.locp-other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.locp-other-card {
  display: flex; flex-direction: column; gap: 4px; background: #fff; border: 1px solid rgba(0,131,144,0.14);
  border-radius: 16px; padding: 20px 22px; text-decoration: none; transition: transform .12s ease, box-shadow .15s ease;
}
.locp-other-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -22px rgba(0,72,71,0.5); }
.locp-other-card .city { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 19px; color: var(--accent); }
.locp-other-card .addr { font-size: 14px; color: #62786f; }

@media (max-width: 760px) {
  .locp-info-grid { grid-template-columns: 1fr; }
  .locp-other-grid { grid-template-columns: 1fr; }
}

/* ---- areas we serve ---- */
.locp-areas { padding: clamp(40px, 6vw, 72px) 0; }
.locp-areas h2 { font-family: 'Jost', sans-serif; font-weight: 400; font-size: clamp(24px, 3.4vw, 34px); color: var(--ink); }
.locp-areas h2 .em { font-weight: 600; color: var(--accent); }
.locp-areas p { margin-top: 12px; font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; color: #3a524f; }
