/* Bali Easy Mode — one stylesheet for every page */
:root {
  --navy: #123849;
  --blue: #1180BA;
  --lightblue: #96CFE9;
  --pale: #E9F6FB;
  --bright: #2DB0EA; /* the pure complement of the CTA orange, for fills only (too light for text) */
  --sand: #F4EEE3;
  --paper: #E9E7E2;
  --card: #FFFFFF;
  --soft: #F4F7FA;
  --text: #4F5B63;
  --muted: #6E6A5F;
  --line: #E3E6EA;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(0,0,0,.06), 0 12px 32px rgba(0,0,0,.06);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul { margin: 0; padding-left: 20px; }
li { margin: 4px 0; }
img { max-width: 100%; display: block; }

.page { max-width: 1080px; margin: 0 auto; padding: 16px 16px 96px; display: flex; flex-direction: column; gap: 16px; }
.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px 32px; }
.card.navy { background: var(--navy); color: #F4EEE3; }
.card.navy .body { color: #C9D4DC; }
.card.navy .h2 { color: #fff; }
.card.navy .h2 em { color: var(--lightblue); }
.card.navy .eyebrow { color: var(--lightblue); }

.eyebrow { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; }
.h1 { font-family: 'DM Serif Display', Georgia, serif; font-size: 56px; line-height: 1; letter-spacing: -.01em; text-wrap: balance; margin: 0; font-weight: 400; }
.h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: 40px; line-height: 1.04; text-wrap: balance; margin: 0; font-weight: 400; }
.h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 26px; line-height: 1.15; margin: 0; font-weight: 400; }
.h1.h1-page { font-size: 44px; max-width: 820px; line-height: 1.05; }
.h1 em, .h2 em, .h3 em { font-style: italic; color: var(--blue); }
.body { color: var(--text); text-wrap: pretty; }
.body.lg { font-size: 18px; }
.body.sm { font-size: 14px; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.stack.lg { gap: 28px; }
.row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.between { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.max { max-width: 640px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .28em; white-space: nowrap; font-size: 14px; font-weight: 500; padding: 12px 20px; border-radius: 99px; cursor: pointer; border: 0; transition: transform .08s ease, opacity .15s ease; }
.btn:hover { opacity: .92; }
.btn:active { transform: scale(.98); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-line { border: 1px solid var(--navy); color: var(--navy); background: transparent; }

.grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; align-items: start; }
.soft { background: var(--soft); border-radius: var(--radius); padding: 22px; }
.sandbox { background: var(--sand); border-radius: var(--radius); padding: 22px; }
.outline { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.chip { display: inline-block; font-size: 12px; background: var(--pale); color: var(--navy); padding: 4px 10px; border-radius: 99px; }
.num { width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; background: var(--bright); color: var(--navy); }
.num.light { background: #fff; color: var(--blue); border: 1px solid #CFE8F4; }
.step { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 12px; align-items: start; }
.price { font-family: 'DM Serif Display', Georgia, serif; font-size: 48px; line-height: 1; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 14px; line-height: 1.7; white-space: pre; overflow-x: auto; background: var(--soft); border-radius: 14px; padding: 20px; margin: 0; }
.card.navy .mono { background: rgba(255,255,255,.08); color: #fff; }
.ph { background: #FFF3B0; color: #6B5A00; padding: 0 4px; border-radius: 4px; }
.divider { border-top: 1px solid var(--line); padding-top: 28px; }
.pill-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 99px; white-space: nowrap; }

/* nav + footer (injected by site.js) */
.nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 8px 6px; flex-wrap: wrap; }
.nav-links { display: flex; gap: 18px; align-items: center; font-size: 14px; color: var(--text); flex-wrap: wrap; }
.wordmark { font-weight: 700; letter-spacing: -.04em; color: var(--navy); font-size: 22px; }
.wordmark b { color: var(--blue); font-weight: 700; }
.wordmark i { color: var(--lightblue); font-style: normal; }
.footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 8px 6px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.footer .wordmark { font-size: 18px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }

/* FAQ — native details, no JS */
.faq { width: 100%; max-width: 720px; border-top: 1px solid var(--line); margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 4px; cursor: pointer; font-size: 17px; font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; width: 32px; height: 32px; border-radius: 50%; background: var(--pale); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.faq details[open] summary::after { content: '–'; }
.faq .a { padding: 0 60px 20px 4px; font-size: 15px; color: var(--text); text-wrap: pretty; }

/* sticky mobile CTA (injected by site.js) */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; display: none; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); z-index: 50; }
.sticky-cta .btn { flex: 1; }

/* landing pages */
.prose { max-width: 720px; display: flex; flex-direction: column; gap: 16px; }
.prose h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: 30px; line-height: 1.1; margin: 16px 0 0; font-weight: 400; }
.prose h3 { font-size: 18px; margin: 8px 0 0; }
.prose p, .prose li { color: var(--text); }
.prose strong { color: var(--navy); }
.callout { background: var(--pale); border-radius: 14px; padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.callout .btn { align-self: flex-start; }
.aside { position: sticky; top: 16px; }
.landing { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }

/* profile */
.profile { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 32px; align-items: center; }
.photo { background: var(--pale); border-radius: 16px; aspect-ratio: 1/1; width: 100%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 13px; overflow: hidden; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.review { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 16px; background: var(--soft); border-radius: var(--radius); padding: 14px; }
.review .photo { aspect-ratio: 3/4; border-radius: 12px; }
.review q { font-family: 'DM Serif Display', Georgia, serif; font-size: 18px; line-height: 1.3; quotes: '\201C' '\201D'; }

/* tablet */
@media (max-width: 900px) {
  .landing { grid-template-columns: 1fr; }
  .aside { position: static; }
  .h1 { font-size: 46px; }
  .h1.h1-page { font-size: 38px; }
  .h2 { font-size: 34px; }
}
/* phone */
@media (max-width: 640px) {
  .page { padding-bottom: 110px; }
  .card { padding: 28px 18px; }
  .h1 { font-size: 38px; }
  .h1.h1-page { font-size: 31px; }
  .h2 { font-size: 29px; }
  .price { font-size: 40px; }
  .profile { grid-template-columns: 1fr; }
  .profile .photo { max-width: 220px; }
  .review { grid-template-columns: 90px minmax(0, 1fr); }
  .faq .a { padding-right: 4px; }
  .nav-links a:not(.btn) { display: none; }
  .sticky-cta { display: flex; }
  .between { align-items: flex-start; }
}

/* WhatsApp glyph on every button that opens WhatsApp (data-wa). Inherits the button's text colour. */
.btn[data-wa]::before {
  content: "";
  width: 1.1em; height: 1.1em; flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* CTA colour: #FE6019 (hue 19°). Every blue on the site sits at its complement, hue 199°.
   Applies to every button that opens WhatsApp. Delete this block to return to blue/navy/white CTAs. */
:root { --cta: #FE6019; --cta-hover: #E5540F; }
.btn[data-wa] { background: var(--cta); color: #fff; border-color: var(--cta); }
.btn[data-wa]:hover { background: var(--cta-hover); opacity: 1; }
/* RULE: on a light background the CTA is a filled orange block. On a solid navy background it is white with an orange border and orange text.
   Exception: a secondary button paired next to a filled one (btn-navy: the sticky bar and the final CTA) is outlined too, so two orange blocks never sit side by side. */
.card.navy .btn[data-wa], .btn-navy[data-wa] { background: #fff; color: var(--cta); border: 1px solid var(--cta); }
.card.navy .btn[data-wa]:hover, .btn-navy[data-wa]:hover { background: #FFF6F0; color: var(--cta-hover); border-color: var(--cta-hover); }
