@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..600;1,9..144,400..500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #16294f;
  --navy-deep: #0c1830;
  --navy-mid: #284f8c;
  --ink: #14203a;
  --slate: #5b6478;
  --bg: #ffffff;
  --bg-tint: #f5f7fb;
  --gold: #c9a24b;
  --gold-lt: #e2c988;
  --line: #e6e9f0;
  --shadow: 0 22px 60px -30px rgba(12,24,48,0.5);
  --shadow-sm: 0 10px 30px -18px rgba(12,24,48,0.28);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 26px; }
.wide { max-width: 1080px; }

/* header */
header.site { padding: 26px 0; border-bottom: 1px solid var(--line); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 44px; }
.brand span { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1em; letter-spacing: 2.5px; color: var(--navy); }
nav.main { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
nav.main a { font-size: 0.9em; font-weight: 500; color: var(--navy); text-decoration: none; padding: 8px 14px; border-radius: 8px; transition: all .16s; }
nav.main a:hover { background: var(--bg-tint); }
nav.main a.cta { background: var(--navy); color: #fff; padding: 9px 18px; }
nav.main a.cta:hover { background: var(--navy-mid); }

/* hero */
.hero {
  background: linear-gradient(160deg, #0c1830 0%, #16294f 60%, #1d3564 100%);
  color: #eef2f9; text-align: center; padding: 92px 26px 96px; position: relative; overflow: hidden;
}
.hero::after { content:""; position:absolute; inset:0; background: radial-gradient(50% 46% at 50% 8%, rgba(201,162,75,0.13), transparent 70%); pointer-events:none; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 0.74em; font-weight: 600; color: var(--gold-lt); margin-bottom: 18px; }
.hero h1 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 3em; line-height: 1.1; letter-spacing: -0.8px; margin-bottom: 22px; max-width: 760px; margin-left:auto; margin-right:auto; }
.hero p.lead { font-size: 1.16em; max-width: 600px; margin: 0 auto 34px; color: #d5deee; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; font-weight: 600; font-size: 1em; padding: 15px 32px; border-radius: 10px; text-decoration: none; transition: transform .16s, box-shadow .16s, background .16s; }
.btn.gold { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: var(--navy-deep); box-shadow: 0 14px 34px -14px rgba(201,162,75,0.65); }
.btn.gold:hover { transform: translateY(-2px); }
.btn.ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn.ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* sections */
section.band { padding: 66px 0; }
section.band.tint { background: var(--bg-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.sec-head .eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 0.74em; font-weight: 600; color: var(--gold); margin-bottom: 12px; }
.sec-head h2 { font-family: 'Fraunces', serif; font-weight: 500; color: var(--navy); font-size: 2.1em; letter-spacing: -0.4px; line-height: 1.15; }
.sec-head p { color: var(--slate); font-size: 1.08em; margin-top: 14px; }

main p { margin: 16px 0; font-size: 1.09em; color: #2c3549; }
main a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
main a:hover { color: var(--gold); }

/* article/feature cards */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid.two { grid-template-columns: 1fr 1fr; }
.fcard {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px;
  text-decoration: none; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s; display: flex; flex-direction: column; gap: 8px;
}
a.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fcard .kick { text-transform: uppercase; letter-spacing: 2px; font-size: 0.68em; font-weight: 700; color: var(--gold); }
.fcard h3 { font-family: 'Fraunces', serif; font-weight: 500; color: var(--navy); font-size: 1.28em; line-height: 1.25; }
.fcard p { font-size: 0.96em; color: #4a5468; margin: 0; }
.fcard .meta { margin-top: auto; font-size: 0.82em; color: var(--slate); display: flex; gap: 12px; align-items: center; }

/* pillar mini */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 8px; }
.pillar { text-align: center; padding: 8px; }
.pillar h4 { font-family: 'Fraunces', serif; color: var(--navy); font-size: 1.18em; margin-bottom: 6px; }
.pillar p { font-size: 0.95em; color: var(--slate); }

/* social row */
.socials { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.soc {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 20px; color: var(--navy); font-weight: 600; font-size: 0.92em; transition: all .16s;
}
.soc:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.soc svg { width: 18px; height: 18px; fill: var(--navy); }

/* share bar */
.sharebar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 30px 0; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sharebar span { font-size: 0.85em; font-weight: 600; color: var(--slate); letter-spacing: 0.5px; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: var(--bg-tint); transition: all .16s; }
.share-btn:hover { background: var(--navy); }
.share-btn svg { width: 18px; height: 18px; fill: var(--navy); transition: fill .16s; }
.share-btn:hover svg { fill: #fff; }

/* article body */
main.article { padding: 56px 0 20px; }
.kicker { text-transform: uppercase; letter-spacing: 2.5px; font-size: 0.75em; font-weight: 700; color: var(--gold); }
h1.article-title { font-family: 'Fraunces', serif; font-weight: 500; color: var(--navy); font-size: 2.5em; line-height: 1.16; letter-spacing: -0.6px; margin: 10px 0 26px; }
article p { font-size: 1.13em; line-height: 1.85; margin: 20px 0; color: #2c3549; }
article h2 { font-family: 'Fraunces', serif; color: var(--navy); font-weight: 500; font-size: 1.55em; margin: 44px 0 12px; }
article h3 { font-family: 'Fraunces', serif; color: var(--ink); font-size: 1.22em; margin: 30px 0 8px; }
article blockquote { border-left: 3px solid var(--gold); margin: 26px 0; padding: 8px 0 8px 22px; color: #414b60; font-style: italic; font-family: 'Fraunces', serif; font-size: 1.14em; }

/* comments */
.comments { margin-top: 20px; }
.comment-box { background: var(--bg-tint); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.comment-box textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px; font-family: inherit; font-size: 1em; resize: vertical; min-height: 84px; }
.comment-box .row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.comment-box .hint { font-size: 0.82em; color: var(--slate); }
.comment { border-bottom: 1px solid var(--line); padding: 18px 0; }
.comment .who { font-weight: 600; font-size: 0.92em; color: var(--navy); }
.comment .txt { margin: 6px 0; color: #2c3549; }
.uv { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px 13px; font-size: 0.85em; font-weight: 600; color: var(--navy); cursor: pointer; }
.uv:hover { border-color: var(--gold); }

/* footer */
footer.site { background: var(--navy-deep); color: #b8c4dc; padding: 48px 0 56px; font-size: 0.9em; }
footer.site .fwrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
footer.site a { color: var(--gold-lt); }
footer.site .socials .soc { background: transparent; border-color: rgba(255,255,255,0.2); color: #dde5f2; }
footer.site .socials .soc svg { fill: #dde5f2; }
footer.site .fine { margin-top: 24px; font-size: 0.85em; color: #8494b4; }

@media (max-width: 820px) { .grid, .grid.two, .pillars { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .hero h1 { font-size: 2.1em; }
  .brand span { font-size: 0.95em; letter-spacing: 1.5px; }
  nav.main a { padding: 7px 10px; }
}
