:root{
  --bg:#eef0f3;
  --panel:rgba(255,255,255,.78);
  --panel2:rgba(255,255,255,.64);
  --text:#12161d;
  --muted:#4d5a6b;
  --line:#cfd6df;
  --accent:#6b5b3e;   /* warm stone */
  --accent2:#2d5c9b;  /* NYC-blue */
  --shadow: 0 12px 34px rgba(17,24,39,.12);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  /* Marble-ish background (no images) */
  background:
    radial-gradient(900px 500px at 12% 10%, rgba(45,92,155,.10), transparent 60%),
    radial-gradient(900px 500px at 85% 18%, rgba(107,91,62,.10), transparent 60%),
    radial-gradient(650px 420px at 35% 85%, rgba(18,22,29,.06), transparent 62%),
    linear-gradient(120deg, rgba(255,255,255,.55), rgba(255,255,255,0) 35%),
    linear-gradient(160deg, rgba(0,0,0,.03), rgba(0,0,0,0) 40%),
    /* subtle "veins" */
    repeating-linear-gradient(115deg,
      rgba(18,22,29,.028) 0px,
      rgba(18,22,29,.028) 1px,
      rgba(255,255,255,0) 12px,
      rgba(255,255,255,0) 44px),
    var(--bg);
  line-height:1.55;
}

.wrap{
  width:min(980px, calc(100% - 36px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  backdrop-filter: blur(10px);
  background: rgba(238,240,243,.74);
  border-bottom: 1px solid rgba(207,214,223,.7);
  z-index:10;
}

.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  color:var(--text);
  text-decoration:none;
  font-weight:750;
  letter-spacing:.2px;
}

.nav a{
  color:var(--muted);
  text-decoration:none;
  margin-left:14px;
  padding:8px 10px;
  border-radius: 12px;
}
.nav a[aria-current="page"]{ color:var(--text); background: rgba(207,214,223,.35); }
.nav a:hover{ color:var(--text); background: rgba(207,214,223,.25); }

.hero{ padding:54px 0 22px; }

.kicker{
  display:inline-block;
  padding:6px 10px;
  border:1px solid rgba(107,91,62,.32);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(107,91,62,.10);
  margin:0 0 14px;
  font-size: 13px;
  letter-spacing: .3px;
}

h1{
  font-size: clamp(28px, 3.8vw, 44px);
  line-height:1.08;
  margin:0 0 14px;
}
.lede{
  font-size: 17px;
  color: var(--muted);
  max-width: 75ch;
  margin:0 0 22px;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 18px 0 0;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(107,91,62,.38);
  background: rgba(107,91,62,.14);
  color: var(--text);
  text-decoration:none;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.button:hover{ transform: translateY(-1px); }
.button.ghost{
  border-color: rgba(45,92,155,.35);
  background: rgba(45,92,155,.10);
}

.card-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin: 18px 0 26px;
}
@media (max-width: 820px){
  .card-grid{ grid-template-columns: 1fr; }
}

.card{
  background: var(--panel2);
  border: 1px solid rgba(207,214,223,.9);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow);
}
.card h2{ font-size: 16px; margin: 0 0 8px; }
.card p{ margin:0; color: var(--muted); font-size: 14.5px; }

.content{
  background: var(--panel);
  border: 1px solid rgba(207,214,223,.92);
  border-radius: var(--radius);
  padding: 18px 18px 10px;
  box-shadow: var(--shadow);
  margin: 18px 0;
}
.content h2{ margin-top: 14px; }
.content p, .content li{ color: var(--muted); }
.content strong{ color: var(--text); }

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 12px 0 0;
}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(207,214,223,.95);
  background: rgba(255,255,255,.55);
  color: var(--muted);
  text-decoration:none;
  font-size: 13.5px;
}
.pill:hover{ color: var(--text); border-color: rgba(45,92,155,.35); }

.notify{
  background: var(--panel);
  border: 1px solid rgba(207,214,223,.92);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  margin: 18px 0 26px;
}
.form{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}
input[type="email"]{
  flex: 1 1 260px;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(207,214,223,.98);
  background: rgba(255,255,255,.8);
  color: var(--text);
  outline: none;
}
input[type="email"]::placeholder{ color: rgba(77,90,107,.75); }

.callout{
  border-left: 3px solid rgba(107,91,62,.55);
  padding: 10px 12px;
  background: rgba(107,91,62,.08);
  border-radius: 12px;
}

.small{ font-size: 14.5px; }
.tiny{ font-size: 12.5px; }
.muted{ color: var(--muted); }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace; }

.footer{ padding: 10px 0 40px; text-align:center; }
.back{ margin-top: 18px; }
.back a{ color: var(--accent2); text-decoration:none; }
.back a:hover{ text-decoration: underline; }

hr.line{
  border:0;
  border-top:1px solid rgba(207,214,223,.95);
  margin: 18px 0;
}

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}


/* Faithful restoration helpers (Wayback-era Squarespace classes) */
.thumbnail-image-float-left,
.thumbnail-image-float-right,
.full-image-float-left,
.full-image-float-right{
  display:block;
  max-width: 160px;
  margin: 6px 14px 10px 0;
}
.thumbnail-image-float-right,
.full-image-float-right{
  float:right;
  margin: 6px 0 10px 14px;
}
.thumbnail-image-float-left,
.full-image-float-left{
  float:left;
}

.thumbnail-image-float-left img,
.thumbnail-image-float-right img{
  width: 120px;
  height: auto;
  display:block;
  border-radius: 10px;
  border: 1px solid rgba(207,214,223,.92);
  box-shadow: var(--shadow);
}

.full-image-float-left img,
.full-image-float-right img{
  width: min(320px, 45vw);
  height: auto;
  display:block;
  border-radius: 14px;
  border: 1px solid rgba(207,214,223,.92);
  box-shadow: var(--shadow);
}

.thumbnail-caption{
  display:block;
  margin-top: 6px;
  width: 120px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

/* Clear floats when needed */
.clearer{ clear: both; }
