:root {
  --navy: #0d1b33;
  --navy-2: #16324f;
  --gold: #c9a34e;
  --gold-light: #e0b356;
  --cream: #f7f3ea;
  --cream-2: #efe8d8;
  --ink: #1c2733;
  --muted: #5b6472;
  --max: 1100px;
  --radius: 16px;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; color: var(--muted); }

a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: var(--navy);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold-light);
  color: var(--navy);
}
.btn-primary:hover { box-shadow: 0 8px 20px rgba(201,163,78,0.35); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247,243,234,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(13,27,51,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand em { font-style: normal; color: var(--gold); }
.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: 1.1rem;
}
nav { display: flex; gap: 28px; }
nav a { text-decoration: none; font-weight: 500; color: var(--navy); }
nav a:hover { color: var(--gold); }

/* Hero */
.hero { padding: 72px 0 88px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}
.hero p { font-size: 1.08rem; max-width: 46ch; }
.hero-art { display: flex; justify-content: center; }
.hero-art img {
  width: 100%;
  max-width: 380px;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(13,27,51,0.18);
}

/* Harbor / cards */
.harbor { padding: 20px 0 90px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(13,27,51,0.07);
  border: 1px solid rgba(13,27,51,0.06);
}
.card-icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; }

/* Book */
.book { background: var(--navy); padding: 90px 0; color: var(--cream); }
.book-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: center;
}
.book-cover {
  background: linear-gradient(160deg, #16324f, #0a1626);
  border-radius: 6px 10px 10px 6px;
  aspect-ratio: 3/4;
  max-width: 260px;
  box-shadow:
    inset 8px 0 0 rgba(224,179,86,0.15),
    0 25px 50px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-cover-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.book-title-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  text-align: center;
}
.book-spade { font-size: 2.2rem; color: var(--gold-light); }
.book-copy .eyebrow { background: var(--gold-light); color: var(--navy); }
.book h2 { color: var(--cream); }
.book p { color: #cfd6e2; }
.book .fine-print { font-size: 0.85rem; color: var(--gold-light); }
.book .btn-outline { border-color: var(--gold-light); color: var(--cream); }
.book .btn-outline:hover { background: var(--gold-light); color: var(--navy); }

/* Services */
.services { padding: 90px 0; }
.services-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.services h2 { font-size: 1.9rem; }
.services-art {
  font-size: 6rem;
  text-align: center;
  filter: grayscale(0.1);
}

/* Footer */
.site-footer {
  background: var(--cream-2);
  padding: 28px 0;
  border-top: 1px solid rgba(13,27,51,0.08);
}
.footer-inner p { margin: 0; font-size: 0.85rem; text-align: center; }

/* Responsive */
@media (max-width: 820px) {
  nav { display: none; }
  .hero-inner, .book-inner, .services-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }
  .card-grid { grid-template-columns: 1fr; }
  .services-art { order: -1; }
}
