/* Visit Sisal satellites — shared minimal stylesheet (mobile-first, no JS) */
:root {
  --sea: #0077B6; --sand: #F4A261; --palm: #06A77D; --cream: #FFF8F0;
  --ink: #0E1116; --muted: #5b6470; --line: rgba(14,17,22,.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink); background: var(--cream); text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea); text-decoration: underline; text-decoration-color: var(--sand); text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--ink); }
strong { font-weight: 700; }

.site-header {
  background: var(--sea); color: var(--cream);
  padding: 12px 0; position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 8px rgba(0,119,182,.18);
}
.site-header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.brand { font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; font-weight: 700; color: var(--cream); text-decoration: none; letter-spacing: -0.02em; }
.brand:hover { color: var(--sand); }
.brand span { color: var(--sand); }
.nav { display: flex; gap: 18px; font-size: .92rem; flex-wrap: wrap; }
.nav a { color: var(--cream); text-decoration: none; }
.nav a:hover { color: var(--sand); }

.container { max-width: 760px; margin: 0 auto; padding: 0 20px; }
main { padding: 32px 0 60px; }

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5.5vw, 3rem); line-height: 1.1; margin-bottom: .5em;
  color: var(--ink); letter-spacing: -0.02em;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3.5vw, 1.85rem); margin: 1.7em 0 .5em;
  color: var(--sea); letter-spacing: -0.01em;
}
h3 { font-size: 1.2rem; margin: 1.4em 0 .4em; color: var(--ink); }

p { margin-bottom: 1em; }
ul, ol { margin: 0 0 1em 1.4em; }
li { margin-bottom: .35em; }

blockquote {
  border-left: 4px solid var(--sand); padding: .8em 1.2em;
  margin: 1.4em 0; background: rgba(244,162,97,.08); font-style: italic;
}

.eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sea); font-weight: 600;
  margin-bottom: 12px;
}

.cta-primary {
  display: inline-block; background: var(--sea); color: var(--cream);
  padding: 14px 28px; border-radius: 8px; text-decoration: none;
  font-weight: 600; margin: 12px 8px 12px 0;
  transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 14px rgba(0,119,182,.25);
}
.cta-primary:hover { transform: translateY(-2px); color: var(--cream); box-shadow: 0 6px 20px rgba(0,119,182,.35); }
.cta-secondary {
  display: inline-block; border: 2px solid var(--sea); color: var(--sea);
  padding: 12px 26px; border-radius: 8px; text-decoration: none; font-weight: 600;
  margin: 12px 8px 12px 0;
}
.cta-secondary:hover { background: var(--sea); color: var(--cream); }

.callout {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 24px; margin: 24px 0; box-shadow: 0 2px 14px rgba(0,0,0,.04);
}
.callout-sand { background: #FFF4E0; border-color: var(--sand); }
.callout-sea { background: #E6F4F9; border-color: var(--sea); }

.related {
  background: rgba(0,119,182,.05); padding: 24px;
  border-radius: 12px; margin-top: 40px;
}
.related h3 { margin-top: 0; color: var(--sea); }
.related ul { list-style: none; margin-left: 0; }
.related li::before { content: "→ "; color: var(--sand); font-weight: 700; }

.site-footer {
  background: var(--ink); color: rgba(255,248,240,.85);
  padding: 30px 0; margin-top: 60px; font-size: .9rem;
}
.site-footer a { color: var(--sand); }
.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

@media (max-width: 600px) {
  .nav { width: 100%; justify-content: flex-start; }
}
