:root {
  --cream:      #FAFAF8;
  --cream-card: #F0EFED;
  --cream-alt:  #EDECEB;
  --ink:        #101010;
  --ink-mid:    #4B4B4B;
  --ink-muted:  #8B8B8B;
  --slate:      #384B5F;
  --teal:       #3EC9B9;
  --white:      #ffffff;
  --pad-x:      5%;
  --radius-sm:  6px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', Arial, sans-serif; background: var(--cream); color: var(--ink); line-height: 1.7; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 var(--pad-x); }
h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(40px, 5.5vw, 72px); font-weight: 400; line-height: 1.15; letter-spacing: -0.5px; color: var(--ink); }
h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(36px, 4.5vw, 56px); font-weight: 400; line-height: 1.12; letter-spacing: -0.5px; color: var(--ink); }
h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(22px, 2.2vw, 34px); font-weight: 400; line-height: 1.2; color: var(--ink); }
p { font-size: 17px; line-height: 1.7; color: var(--ink-muted); }
.btn { display: inline-block; padding: 15px 28px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: opacity 0.15s; white-space: nowrap; cursor: pointer; border: none; }
.btn:hover { opacity: 0.8; }
.btn-dark  { background: var(--ink); color: var(--white); }
.btn-slate { background: var(--slate); color: var(--white); }
.btn-slate:hover { background: var(--ink); opacity: 1; }
.btn-light { border: 1.5px solid var(--ink-mid); color: var(--ink); background: transparent; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--ink-muted); display: block; margin-bottom: 20px; }
.eyebrow-teal { font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 20px; }
/* ── LOGO (matches ebbs-static header logo) ── */
.logo-link { flex-shrink: 0; text-decoration: none; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-eb { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 42px; font-weight: 600; line-height: 1; letter-spacing: -2px; color: var(--ink); }
.logo-divider { font-size: 32px; font-weight: 200; color: rgba(0,0,0,0.2); line-height: 1; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.5; }
.logo-line1, .logo-line2 { display: block; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--ink); }

:focus-visible { outline: 2px solid var(--slate); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }
@media (max-width: 640px) { .btn { width: 100%; text-align: center; } }
