/* BHS Brand Base Stylesheet — shared across all documents */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --teal: #9DC8CB;
  --charcoal: #22211E;
  --cream: #F9F8F3;
  --light-teal: #D8E8E6;
  --pale-blue: #E6F4F7;
  --white: #ffffff;
  --muted: #7a8a90;
  --border: #d8edf3;
  --green: #2ecc71;
  --amber: #f39c12;
  --red: #e74c3c;
}

@page {
  size: letter;
  margin: 0.75in 0.85in;
  @bottom-center {
    content: "© Blue Haven Studio  ·  bluehavenstudio.com";
    font-family: Inter, sans-serif;
    font-size: 8px;
    color: var(--muted);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Inter, sans-serif;
  font-size: 10.5pt;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
}

/* --- Typography --- */
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 32pt;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 8px;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20pt;
  line-height: 1.25;
  color: var(--charcoal);
  margin-top: 22px;
  margin-bottom: 6px;
}
h3 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 12pt;
  color: var(--charcoal);
  margin-top: 14px;
  margin-bottom: 4px;
}
p {
  margin-bottom: 8px;
  color: var(--charcoal);
}
.muted { color: var(--muted); }

/* --- Eyebrow Label --- */
.eyebrow {
  font-family: Inter, sans-serif;
  font-size: 8pt;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

/* --- Logo --- */
.logo { height: 48px; margin-bottom: 16px; }
.logo-small { height: 32px; }

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid var(--light-teal);
  margin: 18px 0;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--light-teal);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 14px;
}
.card-tinted {
  background: var(--pale-blue);
  border: 1px solid var(--light-teal);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 14px;
}

/* --- Investment / Price Box --- */
.price-box {
  background: var(--pale-blue);
  border: 1px solid var(--light-teal);
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0;
}
.price-box .amount {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 26pt;
  color: var(--charcoal);
  white-space: nowrap;
}
.price-box .details {
  font-size: 10pt;
  color: var(--muted);
  line-height: 1.5;
}
.price-box .details .highlight {
  color: var(--teal);
  font-weight: 600;
}

/* --- Bullets --- */
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}
ul li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--teal);
  font-weight: 700;
  font-size: 14pt;
  line-height: 1.3;
}

/* --- Tables --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 10pt;
}
th {
  background: var(--light-teal);
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  color: var(--charcoal);
  border: none;
}
td {
  padding: 10px 14px;
  border: none;
  color: var(--charcoal);
}
tr:nth-child(even) td { background: var(--pale-blue); }
tr:nth-child(odd) td { background: var(--white); }

/* --- CTA Button --- */
.btn {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 9pt;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
}

/* --- Footer --- */
.footer {
  margin-top: 30px;
  padding-top: 12px;
  border-top: 1px solid var(--light-teal);
  font-size: 8pt;
  color: var(--muted);
  text-align: center;
}

/* --- Two Column --- */
.two-col {
  display: flex;
  gap: 20px;
}
.two-col > * { flex: 1; }

/* --- Page Break --- */
.page-break { page-break-before: always; }

/* --- Highlight strip --- */
.strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 24px 32px;
  border-radius: 10px;
  margin: 16px 0;
}
.strip h2 { color: var(--white); margin-top: 0; }
.strip .eyebrow { color: var(--teal); }
.strip p { color: #ccc; }
