/* Caribbean Escapes — shared base for inner pages.
   Mirrors the homepage palette and typography so every page feels of-a-piece. */

:root {
  --ocean: #0a3a5e;
  --ocean-deep: #062a45;
  --gold: #c89a4a;
  --gold-soft: #e0c089;
  --sea: #2d8a9c;
  --sand: #f4ecd8;
  --cream: #faf6ee;
  --ink: #1a1f2c;
  --ink-soft: #4a5568;
  --line: #e6dfd0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink); background: var(--cream);
  line-height: 1.6; font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Header — same as homepage but always solid on inner pages */
header.site {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
header.site .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 22px;
  color: var(--ocean);
  display: flex; align-items: center; gap: 8px;
}
header.site .brand .mark {
  display: inline-block; width: 28px; height: 28px;
  background: var(--gold); border-radius: 50%; position: relative;
}
header.site .brand .mark::after {
  content: 'C'; color: var(--ocean-deep);
  font-weight: 700; font-size: 16px;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
}
header.site nav { display: flex; gap: 28px; align-items: center; }
header.site nav a {
  color: var(--ocean); font-size: 13px; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  transition: color .2s;
}
header.site nav a:hover { color: var(--gold); }
header.site nav a.cta {
  background: var(--gold); color: var(--ocean-deep);
  padding: 9px 20px; border-radius: 2px;
}

/* Hero band — short, page-defining hero used on every inner page */
.page-hero {
  padding: 110px 40px 80px;
  background: var(--ocean);
  color: #fff; text-align: center;
}
.page-hero .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 18px;
  color: var(--gold-soft); margin-bottom: 14px;
  letter-spacing: .06em;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1; margin-bottom: 20px;
}
.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.5;
  color: rgba(255,255,255,.85);
  max-width: 640px; margin: 0 auto;
}

/* Body container */
section.body {
  padding: 80px 40px; max-width: 980px; margin: 0 auto;
}
section.body h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 32px; line-height: 1.2;
  color: var(--ocean); margin-bottom: 20px; margin-top: 40px;
}
section.body h2:first-child { margin-top: 0; }
section.body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 22px;
  color: var(--ocean); margin-bottom: 14px; margin-top: 32px;
}
section.body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: var(--ink-soft);
  line-height: 1.65; margin-bottom: 22px;
}
section.body ul { margin: 0 0 22px 24px; }
section.body li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 8px;
}
section.body a { color: var(--ocean); border-bottom: 1px solid var(--gold); }

/* Coming-soon card */
.coming-soon {
  background: var(--sand);
  padding: 60px 50px;
  margin: 40px 0;
  text-align: center;
  border-left: 3px solid var(--gold);
}
.coming-soon h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--ocean);
  margin-bottom: 12px; margin-top: 0;
}
.coming-soon p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--ink-soft);
  margin-bottom: 24px;
}
.btn {
  display: inline-block; padding: 14px 32px;
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer; border: none;
}
.btn.primary { background: var(--gold); color: var(--ocean-deep); }
.btn.primary:hover { background: var(--gold-soft); }
.btn.outline { background: transparent; color: var(--ocean); border: 1.5px solid var(--ocean); }
.btn.outline:hover { background: var(--ocean); color: #fff; }

/* Footer — compact version */
footer {
  background: #050d18; color: rgba(255,255,255,.6);
  padding: 50px 40px 30px;
  text-align: center;
}
footer .logo {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 22px; color: #fff; margin-bottom: 12px;
}
footer .links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; font-size: 14px; }
footer .links a { color: rgba(255,255,255,.7); transition: color .2s ease; }
footer .links a:hover { color: var(--gold-soft); }
footer .belc-link { color: var(--gold-soft); }
footer .meta { font-size: 12px; color: rgba(255,255,255,.4); }

@media (max-width: 980px) {
  header.site nav a:not(.cta) { display: none; }
  header.site, .page-hero, section.body { padding-left: 20px; padding-right: 20px; }
  .coming-soon { padding: 40px 24px; }
}
