/* ============ Base / Tokens ============ */
:root{
  --bg: #fffefc;
  --ink: #0e0e0e;
  --muted: #4d4d4d;
  --surface: #fff;
  --surface-2: #f8f5ee;
  --accent: #113355;
  --accent-2: #1c466f;
  --brand: #f5c518; /* golden CTA */
  --brand-ink: #0b0b0b;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
  text-rendering:optimizeLegibility;
}

.display{
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
  font-weight:700;
  line-height:1.1;
  font-size: clamp(2rem, 3.2vw + 1rem, 3.6rem);
  letter-spacing:-0.01em;
}

h1,h2,h3{ color:var(--accent); margin:0 0 .5rem; }
p{ margin:.5rem 0 1rem; color:var(--muted); }
a{ color:var(--accent-2); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
  padding: 24px 0;
}
.narrow{ width:min(920px, 92vw); }

.section{ padding:56px 0; }
.section.light{ background: var(--surface-2); }

.section-title{
  font-family:"Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 1.2vw + 1rem, 2.2rem);
  line-height:1.2;
  margin-bottom:.5rem;
}
.section-subtitle{ font-size:1.05rem; }

/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom:1px solid #eee;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.brand{ display:flex; align-items:center; gap:12px; font-weight:700; color:var(--accent); }
.brand-mark{
  display:inline-grid; place-items:center;
  width:36px; height:36px; border-radius:50%;
  background:var(--accent); color:white; font-weight:800;
}
.brand-text{ font-weight:700; }
.site-nav{ display:flex; gap:20px; align-items:center; }
.site-nav a{ font-weight:600; color:var(--accent); text-decoration:none; }
.site-nav a:hover{ color:var(--accent-2); }

/* Buttons */
.btn{
  display:inline-block;
  border-radius: 12px;
  padding:14px 18px;
  font-weight:700;
  border:2px solid transparent;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  text-align:center;
}
.btn.small{ padding:8px 12px; font-weight:600; border-radius:10px; }
.btn--primary{ background: var(--brand); color: var(--brand-ink); box-shadow: var(--shadow); }
.btn--primary:hover{ transform: translateY(-1px); }
.btn--secondary{ background: var(--accent); color: #fff; }
.btn--secondary:hover{ background: var(--accent-2); }
.btn--ghost{ background:transparent; color:var(--accent); border-color:var(--accent); }
.btn--ghost:hover{ background:#edf2f7; }

/* Hero */
.hero{ padding: 48px 0 24px; background: linear-gradient(180deg, #fffefc 0%, #fffaf0 100%); }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}
.hero-copy .accent{ color:var(--accent); }
.lede{ font-size:1.125rem; }
.hero-media{ display:flex; justify-content:center; }
.photo-card{
  margin:0;
  background:var(--surface);
  border-radius: 20px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.photo-card img{ width:100%; height:auto; display:block; }

/* Lists */
.checklist{
  list-style:none; padding:0; margin: 24px 0;
  display:grid; gap:12px;
}
.checklist li{ display:flex; align-items:flex-start; gap:10px; }
.check{
  width:22px; height:22px; border-radius:50%;
  display:inline-grid; place-items:center;
  background:#e8f6ed; border:2px solid #2f855a;
  margin-top:2px;
}
.check::before{
  content:"";
  display:block; width:8px; height:12px; border-right:3px solid #2f855a; border-bottom:3px solid #2f855a;
  transform: rotate(45deg) translate(-1px, -2px);
}
.bullets{ list-style: disc; padding-left:1.25rem; }

.cta-row{ margin-top:20px; }

/* Card & Form */
.card{
  margin-top:24px;
  background:var(--surface);
  border:1px solid #eee;
  border-radius:16px;
  box-shadow: var(--shadow);
  padding:24px;
}
.inline-form{
  display:flex; gap:12px; flex-wrap:wrap; margin-top:8px;
}
.inline-form input{
  flex:1 1 260px;
  padding:12px 14px;
  border:1px solid #dcdcdc;
  border-radius:10px;
  font-size:1rem;
}
.inline-form input:focus{ outline:none; border-color:#9bb9d9; box-shadow:0 0 0 3px rgba(60,120,200,.2); }
.fine-print{ font-size:.875rem; color:#666; }

/* Footer */
.site-footer{ border-top:1px solid #eee; padding:32px 0; text-align:center; background:#fff; }

/* A11y */
.skip-link{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{ left:12px; top:12px; width:auto; height:auto; padding:10px 12px; background:#000; color:#fff; border-radius:8px; }

/* Responsive */
@media (max-width: 960px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ order:-1; }
  .site-nav{ display:none; }
}
