/* ═══════════════════════════════════════════
   COMPANY POLICY — page-specific styles
   Prefix: cp-  (avoids collisions)
   ═══════════════════════════════════════════ */

:root {
  --cp-navy: #1A4B89;
  --cp-dk: #0C1E38;
  --cp-amber: #FBA504;
  --cp-amber-light: #FCD34D;
  --cp-warm: #F7F4EF;
  --cp-warm-2: #EEE9E0;
  --cp-text: #1C1C1C;
  --cp-muted: #6A6A6A;
  --cp-serif: 'Cormorant Garamond', Georgia, serif;
  --cp-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── HERO ── */
.cp-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}
.cp-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
}
.cp-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(12,30,56,0.93) 0%, rgba(12,30,56,0.82) 50%, rgba(12,30,56,0.65) 100%);
}
.cp-hero-topo {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(255,255,255,0.025) 38px, rgba(255,255,255,0.025) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(255,255,255,0.018) 38px, rgba(255,255,255,0.018) 39px);
}
.cp-hero-mtn {
  position: absolute; inset: 0; pointer-events: none;
}
.cp-hero-mtn svg { width: 100%; height: 100%; }

.cp-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 64px 36px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
  width: 100%;
}

/* Hero left */
.cp-hero-crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: rgba(255,255,255,0.35); margin-bottom: 22px;
}
.cp-hero-crumbs a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
.cp-hero-crumbs a:hover { color: rgba(255,255,255,0.8); }
.cp-hero-crumbs .cp-sep { color: rgba(255,255,255,0.22); }
.cp-hero-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cp-amber); margin-bottom: 12px;
}
.cp-hero-title {
  font-family: var(--cp-serif); font-size: 56px; font-weight: 600;
  color: #fff; line-height: 1.08; margin-bottom: 16px;
}
.cp-hero-title em { font-style: italic; color: var(--cp-amber); }
.cp-hero-sub {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.52);
  max-width: 440px; line-height: 1.7;
}
.cp-hero-pills {
  display: flex; gap: 10px; margin-top: 32px; flex-wrap: wrap;
}
.cp-hero-pill {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 6px 16px; font-size: 12px; color: rgba(255,255,255,0.55);
}
.cp-hero-pill a { color: rgba(201,147,63,0.9); font-weight: 500; text-decoration: none; }

/* Hero card */
.cp-hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px; backdrop-filter: blur(8px);
}
.cp-hc-title {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--cp-amber);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.cp-hc-title::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

.cp-hl {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cp-hl:last-child { border-bottom: none; padding-bottom: 0; }
.cp-hl-ico {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(201,147,63,0.15); border: 1px solid rgba(201,147,63,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cp-hl-ico svg {
  width: 15px; height: 15px; color: var(--cp-amber);
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.cp-hl-label { font-size: 11px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.cp-hl-desc { font-size: 11.5px; color: rgba(255,255,255,0.45); line-height: 1.5; font-weight: 300; }

.cp-hc-cta {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
}
.cp-hc-cta span { font-size: 11.5px; color: rgba(255,255,255,0.38); }
.cp-hc-cta a {
  background: var(--cp-amber); color: #fff; border-radius: 6px;
  padding: 8px 16px; font-size: 12px; font-weight: 600;
  transition: background 0.18s; text-decoration: none;
}
.cp-hc-cta a:hover { background: #e09400; }

/* Fix: ancestor overflow breaks position:sticky on this page */
body:has(.cp-page) { overflow: visible !important; }
.bravo_wrap:has(.cp-page) { overflow: visible !important; }

/* ── PAGE LAYOUT ── */
.cp-page {
  max-width: 1200px; margin: 0 auto; padding: 56px 36px 80px;
  display: grid; grid-template-columns: 240px 1fr; gap: 56px;
}

/* ── SIDEBAR TOC ── */
.cp-toc {
  position: sticky; top: 84px;
  max-height: calc(100vh - 100px); overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.1) transparent;
}
.cp-toc::-webkit-scrollbar { width: 3px; }
.cp-toc::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 3px; }
.cp-toc-label {
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: #bbb; margin-bottom: 16px; display: block;
}
.cp-toc-list { list-style: none; display: flex; flex-direction: column; gap: 1px; }
.cp-toc-item a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 6px;
  font-size: 12.5px; color: var(--cp-muted);
  transition: all 0.18s; line-height: 1.3; text-decoration: none;
}
.cp-toc-item a:hover { background: var(--cp-warm); color: var(--cp-navy); }
.cp-toc-item.active a { background: rgba(26,75,137,0.08); color: var(--cp-navy); font-weight: 600; }
.cp-toc-num {
  font-size: 10px; font-weight: 700; color: var(--cp-amber);
  min-width: 20px; flex-shrink: 0; font-family: 'Courier New', monospace;
}
.cp-toc-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 12px 0; }
.cp-toc-contact {
  background: var(--cp-warm); border-radius: 10px; padding: 16px; margin-top: 16px;
}
.cp-toc-contact p {
  font-size: 11.5px; color: var(--cp-muted); line-height: 1.6; margin-bottom: 10px;
}
.cp-toc-contact a {
  display: inline-block; background: var(--cp-navy); color: #fff;
  border-radius: 5px; padding: 8px 14px; font-size: 12px; font-weight: 600;
  text-decoration: none;
}

/* ── CONTENT ── */
.cp-content { display: flex; flex-direction: column; }

.cp-section { padding: 40px 0; border-bottom: 1px solid rgba(0,0,0,0.07); }
.cp-section:last-child { border-bottom: none; }
.cp-section:first-child { padding-top: 0; }

.cp-sec-hd { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.cp-sec-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cp-warm); border: 1.5px solid var(--cp-warm-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--cp-amber);
  font-family: 'Courier New', monospace; flex-shrink: 0; margin-top: 2px;
}
.cp-sec-title {
  font-family: var(--cp-serif); font-size: 26px; font-weight: 600;
  color: var(--cp-text); line-height: 1.2;
}

.cp-body { padding-left: 52px; }
.cp-body p {
  font-size: 15px; line-height: 1.78; color: #444; font-weight: 300; margin-bottom: 14px;
}
.cp-body p:last-child { margin-bottom: 0; }
.cp-body strong { font-weight: 600; color: var(--cp-text); }
.cp-body ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-top: 12px; padding: 0;
}
.cp-body ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; line-height: 1.65; color: #444; font-weight: 300;
}
.cp-body ul li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cp-amber); flex-shrink: 0; margin-top: 8px;
}

/* Callout boxes */
.cp-callout {
  background: var(--cp-warm); border-radius: 10px;
  padding: 18px 20px; margin: 18px 0;
  border: 1.5px solid var(--cp-warm-2);
  font-size: 14px; line-height: 1.7; color: #555;
  position: relative;
}
.cp-callout::before {
  content: ''; position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 3px; border-radius: 2px; background: var(--cp-amber);
}
.cp-callout strong { color: var(--cp-text); font-weight: 600; }
.cp-callout.cp-navy { background: rgba(26,75,137,0.06); border-color: rgba(26,75,137,0.12); }
.cp-callout.cp-navy::before { background: var(--cp-navy); }
.cp-callout.cp-red { background: rgba(200,60,60,0.05); border-color: rgba(200,60,60,0.1); }
.cp-callout.cp-red::before { background: #C83C3C; }
.cp-callout-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cp-amber); margin-bottom: 6px; display: block;
}
.cp-callout.cp-navy .cp-callout-label { color: var(--cp-navy); }
.cp-callout.cp-red .cp-callout-label { color: #C83C3C; }

/* Bank card */
.cp-bank {
  border: 1.5px solid var(--cp-warm-2); border-radius: 10px;
  overflow: hidden; margin: 18px 0;
}
.cp-bank-hd {
  background: var(--cp-navy); color: #fff;
  padding: 12px 20px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.cp-bank-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.cp-bank-row { display: flex; gap: 16px; }
.cp-bank-key {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #bbb; min-width: 160px; flex-shrink: 0; padding-top: 1px;
}
.cp-bank-val { font-size: 14px; color: var(--cp-text); font-weight: 400; }

/* Payment methods */
.cp-pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.cp-pay-method { border: 1.5px solid var(--cp-warm-2); border-radius: 10px; padding: 18px 20px; }
.cp-pay-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cp-amber); margin-bottom: 8px; display: block;
}
.cp-pay-method h4 { font-size: 14.5px; font-weight: 600; color: var(--cp-text); margin-bottom: 6px; }
.cp-pay-method p { font-size: 13px; color: var(--cp-muted); line-height: 1.6; font-weight: 300; }
.cp-pay-method a { color: var(--cp-navy); font-weight: 500; }

/* Sub-section */
.cp-sub-title {
  font-size: 13px; font-weight: 600; color: var(--cp-text);
  margin-bottom: 10px; letter-spacing: 0.03em;
}
.cp-sub-title::before { content: '\2192'; margin-right: 8px; color: var(--cp-amber); font-weight: 400; }

/* Cancellation table */
.cp-table {
  width: 100%; border-radius: 8px; overflow: hidden; margin: 16px 0;
  border: 1.5px solid var(--cp-warm-2); border-collapse: separate; border-spacing: 0;
}
.cp-table th {
  background: var(--cp-dk); color: rgba(255,255,255,0.8);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 12px 16px; text-align: left;
}
.cp-table td {
  padding: 13px 16px; font-size: 14px; color: #444;
  border-bottom: 1px solid var(--cp-warm-2); font-weight: 300;
}
.cp-table tr:last-child td { border-bottom: none; }
.cp-table tr:nth-child(even) td { background: var(--cp-warm); }
.cp-badge {
  display: inline-block; background: rgba(200,60,60,0.1); color: #C83C3C;
  border-radius: 4px; padding: 2px 8px; font-size: 11.5px; font-weight: 600;
}
.cp-badge.cp-credit { background: rgba(26,75,137,0.08); color: var(--cp-navy); }

/* Mission card */
.cp-mission {
  background: var(--cp-dk); border-radius: 12px;
  padding: 36px 40px; color: rgba(255,255,255,0.8);
  position: relative; overflow: hidden;
}
.cp-mission::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: linear-gradient(135deg, transparent, rgba(201,147,63,0.08));
  pointer-events: none;
}
.cp-mission .cp-sec-num { background: rgba(201,147,63,0.15); border-color: rgba(201,147,63,0.2); }
.cp-mission .cp-sec-title { color: #fff; }
.cp-mission .cp-body p { color: rgba(255,255,255,0.58); }
.cp-mission .cp-body strong { color: #fff; }
.cp-mission-pct {
  font-family: var(--cp-serif); font-size: 72px; font-weight: 600;
  color: var(--cp-amber); line-height: 1; display: block; margin-bottom: 8px; opacity: 0.9;
}
.cp-mission-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}

/* ── CTA BAND ── */
.cp-cta {
  background: var(--cp-navy); padding: 56px 0;
}
.cp-cta-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cp-cta h3 {
  font-family: var(--cp-serif); font-size: 30px; font-weight: 600;
  color: #fff; margin-bottom: 4px;
}
.cp-cta h3 em { font-style: italic; color: var(--cp-amber); }
.cp-cta p { font-size: 14px; color: rgba(255,255,255,0.42); font-weight: 300; }
.cp-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cp-btn-w {
  background: #fff; color: var(--cp-navy); border-radius: 7px;
  padding: 13px 26px; font-size: 14px; font-weight: 700;
  transition: opacity 0.18s; text-decoration: none; white-space: nowrap;
}
.cp-btn-w:hover { opacity: 0.9; color: var(--cp-navy); }
.cp-btn-g {
  border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8);
  border-radius: 7px; padding: 12px 22px; font-size: 14px; font-weight: 500;
  transition: all 0.18s; text-decoration: none; white-space: nowrap;
}
.cp-btn-g:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ── MOBILE TOC TOGGLE ── */
.cp-toc-toggle {
  display: none; /* hidden on desktop */
  align-items: center; justify-content: space-between;
  background: var(--cp-warm); border: 1.5px solid var(--cp-warm-2);
  border-radius: 10px; padding: 14px 18px; margin-bottom: 24px;
  cursor: pointer; width: 100%;
  -webkit-appearance: none; appearance: none;
  font-family: inherit;
}
.cp-toc-toggle-label {
  font-size: 13px; font-weight: 600; color: var(--cp-text);
}
.cp-toc-toggle-sub {
  font-size: 11px; color: var(--cp-muted); font-weight: 400; margin-left: 8px;
}
.cp-toc-toggle-icon {
  width: 20px; height: 20px; transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  color: var(--cp-amber); flex-shrink: 0;
}
.cp-toc-toggle[aria-expanded="true"] .cp-toc-toggle-icon {
  transform: rotate(180deg);
}

/* ── RESPONSIVE: TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  .cp-hero-inner { grid-template-columns: 1fr 340px; gap: 40px; }
  .cp-page { grid-template-columns: 200px 1fr; gap: 36px; }
  .cp-toc-item a { font-size: 11.5px; padding: 7px 10px; }
  .cp-toc-contact { padding: 14px; }
  .cp-toc-contact p { font-size: 11px; }
}

/* ── RESPONSIVE: SMALL TABLET (≤860px) ── */
@media (max-width: 860px) {
  .cp-hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 48px 28px; }
  .cp-hero-card { max-width: 480px; }
  .cp-hero-title { font-size: 46px; }

  .cp-page { grid-template-columns: 1fr; gap: 0; padding: 32px 28px 56px; }

  /* TOC becomes collapsible on tablet/mobile */
  .cp-toc {
    position: static; max-height: none; overflow: visible;
    margin-bottom: 8px;
  }
  .cp-toc-toggle { display: flex; }
  .cp-toc-label { display: none; }
  .cp-toc-list {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease;
    opacity: 0;
  }
  .cp-toc.cp-toc-open .cp-toc-list {
    max-height: 600px; opacity: 1;
    margin-top: 12px; margin-bottom: 8px;
  }
  .cp-toc-item a { padding: 9px 14px; font-size: 13px; }
  .cp-toc-divider { display: none; }
  .cp-toc-contact { display: none; }

  .cp-body { padding-left: 0; }
  .cp-section { padding: 32px 0; }
  .cp-pay-methods { grid-template-columns: 1fr; }
  .cp-bank-row { flex-direction: column; gap: 3px; }
  .cp-bank-key { min-width: auto; }
  .cp-cta h3 { font-size: 26px; }
}

/* ── RESPONSIVE: MOBILE (≤600px) ── */
@media (max-width: 600px) {
  .cp-hero { min-height: 360px; }
  .cp-hero-inner { padding: 36px 20px; gap: 24px; }
  .cp-hero-title { font-size: 36px; }
  .cp-hero-sub { font-size: 14px; max-width: none; }
  .cp-hero-eyebrow { font-size: 9px; margin-bottom: 10px; }
  .cp-hero-pills { gap: 8px; }
  .cp-hero-pill { font-size: 11px; padding: 5px 12px; }

  /* Hero card stacks vertically and simplifies */
  .cp-hero-card { padding: 20px; }
  .cp-hl { gap: 10px; padding: 10px 0; }
  .cp-hl-ico { width: 30px; height: 30px; border-radius: 6px; }
  .cp-hl-ico svg { width: 13px; height: 13px; }
  .cp-hl-label { font-size: 10.5px; }
  .cp-hl-desc { font-size: 10.5px; }
  .cp-hc-cta { flex-direction: column; gap: 10px; align-items: flex-start; }

  .cp-page { padding: 24px 16px 48px; }
  .cp-section { padding: 28px 0; }
  .cp-sec-hd { gap: 12px; margin-bottom: 16px; }
  .cp-sec-num { width: 32px; height: 32px; font-size: 10px; }
  .cp-sec-title { font-size: 21px; }

  .cp-body p { font-size: 14px; line-height: 1.72; }
  .cp-callout { padding: 14px 16px; font-size: 13px; margin: 14px 0; }
  .cp-callout-label { font-size: 8.5px; }

  /* Table: horizontal scroll */
  .cp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px -16px; padding: 0 16px; }
  .cp-table { min-width: 480px; }
  .cp-table th { font-size: 10px; padding: 10px 12px; }
  .cp-table td { font-size: 13px; padding: 10px 12px; }

  .cp-bank-hd { font-size: 10px; padding: 10px 16px; }
  .cp-bank-body { padding: 16px; gap: 8px; }
  .cp-bank-val { font-size: 13px; }

  .cp-pay-method { padding: 14px 16px; }
  .cp-pay-method h4 { font-size: 13.5px; }
  .cp-pay-method p { font-size: 12px; }

  /* Mission card */
  .cp-mission { padding: 24px 20px; border-radius: 10px; }
  .cp-mission-pct { font-size: 48px; }
  .cp-mission .cp-body > div[style] { flex-direction: column !important; gap: 16px !important; }

  /* CTA */
  .cp-cta { padding: 40px 0; }
  .cp-cta-inner { flex-direction: column; text-align: center; padding: 0 20px; gap: 24px; }
  .cp-cta h3 { font-size: 24px; }
  .cp-cta p { font-size: 13px; }
  .cp-cta-btns { justify-content: center; width: 100%; }
  .cp-btn-w, .cp-btn-g { font-size: 13px; padding: 11px 20px; }
}

/* ── RESPONSIVE: SMALL MOBILE (≤400px) ── */
@media (max-width: 400px) {
  .cp-hero-title { font-size: 30px; }
  .cp-hero-sub { font-size: 13px; }
  .cp-hero-card { padding: 16px; }
  .cp-sec-title { font-size: 19px; }
  .cp-body p { font-size: 13.5px; }
  .cp-mission-pct { font-size: 40px; }
  .cp-cta h3 { font-size: 22px; }
  .cp-cta-btns { flex-direction: column; }
  .cp-btn-w, .cp-btn-g { text-align: center; width: 100%; }
}
