:root {
  --ink: oklch(20% 0.01 95);
  --cream: oklch(98% 0.005 95);
  --cream-96: oklch(98% 0.005 95 / 0.96);
  --wood: oklch(96% 0.012 60);
  --ocean: oklch(48% 0.1 231);
  --ocean-tint: oklch(94% 0.025 231);
  --line: oklch(88% 0.005 95);
  --muted: oklch(38% 0.01 95);
  --footer-bg: oklch(20% 0.015 95);
  --footer-fg: oklch(78% 0.01 95);
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: 'Work Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
a:hover { color: var(--ocean); }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: 'Newsreader', serif; font-weight: 400; margin: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px,4vw,56px);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid var(--line);
  background: var(--cream-96);
  color: var(--ink);
}
.site-header[data-style="overlay"] { background: transparent; border-color: transparent; color: var(--cream); }
.site-header[data-style="overlay"].scrolled { background: var(--cream-96); border-color: var(--line); color: var(--ink); }
.site-header a:hover { color: inherit; opacity: 0.7; }

.logo-word { font-family: 'Newsreader', serif; font-style: italic; font-size: 22px; color: inherit; letter-spacing: 0.01em; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 0.18em; color: inherit; }
.logo-dots { display: flex; gap: 3px; }
.logo-dots span { width: 4px; height: 4px; border-radius: 50%; background: oklch(70% 0.1 231); }

.nav-desktop { display: flex; align-items: center; gap: clamp(18px,2.4vw,34px); }
.nav-desktop a { font-size: 14px; font-weight: 400; opacity: 0.9; }
.nav-desktop a.current { font-weight: 500; opacity: 1; }
.btn-check { margin-left: 8px; padding: 10px 20px; border-radius: 3px; background: var(--ocean); color: var(--cream); font-size: 13.5px; font-weight: 500; white-space: nowrap; }
.btn-check:hover { color: var(--cream); opacity: 0.9; }

.nav-toggle { display: none; background: none; border: none; padding: 8px; flex-direction: column; gap: 5px; cursor: pointer; color: inherit; }
.nav-toggle span { width: 24px; height: 2px; background: currentColor; }
.nav-toggle span:last-child { width: 16px; }

.mobile-nav { position: sticky; top: 0; z-index: 49; background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px clamp(20px,4vw,56px) 24px; display: none; flex-direction: column; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 17px; padding: 12px 0; border-bottom: 1px solid oklch(93% 0.005 95); color: var(--ink); font-weight: 400; }
.mobile-nav a.current { font-weight: 500; }
.mobile-nav .btn-check { margin-top: 16px; padding: 14px; text-align: center; }

@media (max-width: 899px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (min-width: 900px) {
  .mobile-nav { display: none !important; }
}

/* Footer */
.site-footer { padding: clamp(48px,6vw,72px) clamp(20px,4vw,56px) 32px; background: var(--footer-bg); color: var(--footer-fg); }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid oklch(32% 0.01 95); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(55% 0.01 95); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: oklch(80% 0.01 95); }
.footer-blurb { margin: 14px 0 0; font-size: 13.5px; line-height: 1.6; max-width: 240px; color: oklch(65% 0.01 95); }
.footer-logo { font-family: 'Newsreader', serif; font-style: italic; font-size: 20px; color: oklch(96% 0.005 95); }
.footer-wordmark { display: flex; align-items: center; gap: 8px; font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.18em; color: oklch(96% 0.005 95); }
.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social { width: 30px; height: 30px; border-radius: 50%; border: 1px solid oklch(40% 0.01 95); display: flex; align-items: center; justify-content: center; font-size: 10px; color: oklch(65% 0.01 95); }
.footer-bottom { margin: 24px 0 0; font-size: 12.5px; color: oklch(50% 0.01 95); }

/* Buttons & CTA */
.btn { display: inline-block; padding: 15px 30px; border-radius: 3px; font-size: 15px; font-weight: 500; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--cream); color: oklch(24% 0.02 231); }
.btn-outline { border: 1px solid oklch(90% 0.02 231 / 0.55); color: var(--cream); background: transparent; }
.btn-ocean { background: var(--ocean); color: var(--cream); }
.cta-band { padding: clamp(56px,8vw,96px) clamp(20px,4vw,56px); background: var(--ocean); text-align: center; }
.cta-band h2 { margin: 0 0 14px; font-size: clamp(28px,2.6vw + 12px,40px); color: var(--cream); }
.cta-band p { margin: 0 0 30px; font-size: 16px; color: oklch(92% 0.01 231 / 0.9); }
.eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ocean); }

/* Photo credit overlay */
.credit-frame { position: relative; --credit-op: 0; }
.credit-frame:hover { --credit-op: 1; }
.credit-frame img { width: 100%; height: 100%; object-fit: cover; }
.credit-loc, .credit-photog { position: absolute; pointer-events: none; opacity: var(--credit-op); transition: opacity 0.2s ease; }
.credit-loc { left: 10px; top: 10px; padding: 5px 10px; border-radius: 3px; background: oklch(20% 0.02 231 / 0.45); color: oklch(98% 0.005 95); font-size: 12px; font-weight: 500; }
.credit-photog { left: 8px; bottom: 8px; padding: 3px 7px; border-radius: 3px; background: oklch(20% 0.02 231 / 0.5); color: oklch(97% 0.005 95); font-size: 10px; letter-spacing: 0.02em; }
