@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito+Sans:wght@300;400;600;700&family=Nunito+Sans+Condensed:wght@700;800&display=swap');

:root {
  --navy:     #0d1f35;
  --navy-mid: #162d4a;
  --navy-lt:  #1e3d65;
  --gold:     #c49a2a;
  --gold-lt:  #dbb84a;
  --cream:    #f7f3ec;
  --cream-dk: #ede8df;
  --warm-wh:  #faf8f4;
  --ink:      #1a1a1a;
  --ink-mid:  #2c2c2c;
  --gray:     #5c5c5c;
  --gray-lt:  #9a9a9a;
  --border:   #ddd7cb;
  --red-tag:  #b83232;
  --white:    #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--warm-wh);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── COOKIE ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); color: #aab8c8;
  padding: .9rem 0; z-index: 9999;
  border-top: 3px solid var(--gold);
  display: none;
}
.cookie-banner.visible { display: block; }
.ck-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cookie-banner p { font-size: .82rem; }
.cookie-banner a { color: var(--gold-lt); text-decoration: underline; }
.ck-btns { display: flex; gap: .5rem; flex-shrink: 0; }
.ck-ok { background: var(--gold); color: var(--navy); border: none; padding: .38rem 1.1rem; font-size: .8rem; cursor: pointer; font-weight: 700; font-family: 'Nunito Sans', sans-serif; border-radius: 2px; }
.ck-no { background: transparent; color: #6a7a8a; border: 1px solid #2a3a4a; padding: .38rem .9rem; font-size: .8rem; cursor: pointer; font-family: 'Nunito Sans', sans-serif; border-radius: 2px; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); border-bottom: 1px solid var(--navy-lt); padding: .42rem 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
.topbar-date { color: #4a6a8a; }
.topbar-tag { color: var(--gold); font-weight: 700; letter-spacing: .1em; }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.header-top { padding: 1.4rem 0 1rem; border-bottom: 3px solid var(--navy); }
.header-top-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.logo-block { }
.logo-name {
  font-family: 'Crimson Pro', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--navy); letter-spacing: -.02em; line-height: 1;
}
.logo-name span { color: var(--gold); }
.logo-tagline { font-size: .65rem; color: var(--gray-lt); letter-spacing: .14em; text-transform: uppercase; margin-top: .25rem; font-weight: 300; }
.header-nav { background: var(--cream); border-top: 1px solid var(--border); }
.header-nav ul { display: flex; list-style: none; gap: 0; }
.header-nav a {
  font-family: 'Nunito Sans Condensed', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy-mid); padding: .55rem 1.2rem;
  display: block; border-right: 1px solid var(--border);
  transition: background .15s, color .15s;
  border-bottom: 3px solid transparent;
}
.header-nav a:hover, .header-nav a.active { color: var(--navy); background: var(--cream-dk); border-bottom-color: var(--gold); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; border-radius: 1px; }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── PAGE HEADER ── */
.page-hd { background: var(--cream); border-bottom: 3px solid var(--navy); padding: 2.5rem 0 2rem; }
.page-hd .bc { font-size: .73rem; color: var(--gray-lt); margin-bottom: .7rem; letter-spacing: .04em; }
.page-hd .bc a { color: var(--gold); }
.page-hd .bc a:hover { text-decoration: underline; }
.page-hd h1 { font-family: 'Crimson Pro', serif; font-size: 2.1rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.page-hd p { font-size: .88rem; color: var(--gray); margin-top: .4rem; }

/* ── SEC HEADER ── */
.sec-hd {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--navy);
  padding-bottom: .6rem; margin-bottom: 2rem;
}
.sec-title {
  font-family: 'Nunito Sans Condensed', sans-serif;
  font-size: .75rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase; color: var(--navy);
}
.sec-title::before { content: ''; display: inline-block; width: 12px; height: 12px; background: var(--gold); margin-right: .5rem; vertical-align: middle; }
.sec-count { font-size: .7rem; color: var(--gray-lt); letter-spacing: .06em; text-transform: uppercase; }

/* ── GRID ── */
.articles-section { padding: 3rem 0 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
@media(max-width:900px){ .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .grid-3 { grid-template-columns: 1fr; } }

/* ── CARD ── */
.card { background: var(--white); border: 1px solid var(--border); display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: 0 6px 28px rgba(13,31,53,.1); transform: translateY(-3px); }
.card-img { overflow: hidden; aspect-ratio: 16/9; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; border-top: 3px solid var(--navy); }
.card-cat {
  font-family: 'Nunito Sans Condensed', sans-serif;
  font-size: .62rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: .4rem;
}
.card-cat.dest { color: var(--red-tag); }
.card h3 { font-family: 'Crimson Pro', serif; font-size: 1.1rem; font-weight: 700; line-height: 1.3; color: var(--navy); margin-bottom: .5rem; }
.card h3 a:hover { color: var(--gold); }
.card p { font-size: .84rem; color: var(--gray); line-height: 1.55; flex: 1; margin-bottom: .85rem; }
.card-ft { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--cream-dk); padding-top: .65rem; margin-top: auto; }
.card-ft span { font-size: .72rem; color: var(--gray-lt); }
.card-ft a { font-family: 'Nunito Sans Condensed', sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); transition: color .15s; }
.card-ft a:hover { color: var(--gold); }

/* ── EDU BAR ── */
.edu-bar { background: var(--cream); border-top: 1px solid var(--border); padding: 1.1rem 0; }
.edu-bar p { font-size: .77rem; color: var(--gray); text-align: center; max-width: 720px; margin: 0 auto; line-height: 1.6; }
.edu-bar a { color: var(--gold); text-decoration: underline; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: #6a8aaa; padding: 3rem 0 0; margin-top: 4rem; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--navy-lt); }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { font-family: 'Crimson Pro', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: .82rem; color: #4a6a8a; margin-top: .7rem; line-height: 1.6; }
.footer-col h4 { font-family: 'Nunito Sans Condensed', sans-serif; font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #4a6a8a; margin-bottom: .85rem; padding-bottom: .45rem; border-bottom: 1px solid var(--navy-lt); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .4rem; }
.footer-col a { font-size: .82rem; color: #4a6a8a; transition: color .15s; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-ct { font-size: .82rem; color: #4a6a8a; margin-bottom: .35rem; }
.footer-ct a { color: #4a6a8a; }
.footer-ct a:hover { color: var(--gold-lt); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .72rem; color: #2a3a4a; }
.footer-blinks { display: flex; gap: 1.25rem; }
.footer-blinks a { font-size: .72rem; color: #2a3a4a; transition: color .15s; }
.footer-blinks a:hover { color: #6a8aaa; }
.footer-disc { background: rgba(0,0,0,.2); padding: .6rem 0; }
.footer-disc p { font-size: .7rem; color: #1a2a3a; text-align: center; }

/* ── ARTICLE HEADER ── */
.art-header { background: var(--cream); border-bottom: 3px solid var(--navy); padding: 2.5rem 0 2rem; }
.art-bc { font-size: .73rem; color: var(--gray-lt); margin-bottom: .85rem; }
.art-bc a { color: var(--gold); }
.art-bc a:hover { text-decoration: underline; }
.art-badge {
  display: inline-block; background: var(--navy); color: var(--gold);
  font-family: 'Nunito Sans Condensed', sans-serif; font-size: .62rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; padding: .22rem .75rem; margin-bottom: .85rem;
}
.art-header h1 { font-family: 'Crimson Pro', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1.2; max-width: 800px; margin-bottom: .85rem; }
.art-meta { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.art-meta-item { font-size: .74rem; color: var(--gray-lt); background: var(--cream-dk); padding: .25rem .7rem; border: 1px solid var(--border); }
.art-meta-item strong { color: var(--gray); }

/* ── ARTICLE BODY ── */
.art-body { padding: 3rem 0 4rem; }
.art-layout { display: grid; grid-template-columns: 1fr 285px; gap: 3.5rem; align-items: start; }
@media(max-width:900px){ .art-layout { grid-template-columns: 1fr; } .art-sidebar { display: none; } }

.art-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: .4rem; }
.art-caption { font-size: .7rem; color: var(--gray-lt); font-style: italic; margin-bottom: 2rem; }

.art-prose .lead { font-family: 'Crimson Pro', serif; font-size: 1.15rem; font-style: italic; color: var(--navy-mid); line-height: 1.7; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.art-prose h2 { font-family: 'Crimson Pro', serif; font-size: 1.45rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .65rem; padding-left: .85rem; border-left: 4px solid var(--gold); }
.art-prose h3 { font-family: 'Nunito Sans Condensed', sans-serif; font-size: .85rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--navy-mid); margin: 1.5rem 0 .45rem; }
.art-prose p { margin-bottom: 1.1rem; color: var(--ink-mid); line-height: 1.75; }
.art-prose ul { margin: 0 0 1.1rem 1.5rem; }
.art-prose ul li { margin-bottom: .45rem; color: var(--ink-mid); line-height: 1.65; }
.art-prose strong { font-weight: 700; color: var(--navy); }

/* ── DATA STRIP ── */
.data-strip { display: grid; grid-template-columns: repeat(3,1fr); margin: 2rem 0; border: 1px solid var(--border); background: var(--cream); }
@media(max-width:560px){ .data-strip { grid-template-columns: 1fr; } }
.data-cell { padding: 1.25rem 1.5rem; border-right: 1px solid var(--border); }
.data-cell:last-child { border-right: none; }
.data-cell .dn { display: block; font-family: 'Crimson Pro', serif; font-size: 1.9rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: .3rem; }
.data-cell .dn em { color: var(--gold); font-style: normal; }
.data-cell .dl { display: block; font-size: .75rem; color: var(--gray); }

/* ── CALLOUT ── */
.callout { padding: 1.2rem 1.5rem; margin: 1.75rem 0; }
.callout-info { background: #f0f5fa; border-left: 4px solid var(--navy-lt); }
.callout-warm { background: #fdf8ee; border-left: 4px solid var(--gold); }
.callout-note { background: var(--cream); border-left: 4px solid var(--border); border: 1px solid var(--border); }
.callout h4 { font-family: 'Nunito Sans Condensed', sans-serif; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .45rem; }
.callout-info h4 { color: var(--navy-mid); }
.callout-warm h4 { color: #8a6010; }
.callout-note h4 { color: var(--gray); }
.callout p { font-size: .88rem; color: var(--gray); margin-bottom: 0; line-height: 1.65; }
.callout a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* ── TAGS ── */
.art-tags { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: .8rem; }
.art-tags strong { color: var(--gray-lt); margin-right: .4rem; }
.tag { display: inline-block; border: 1px solid var(--border); padding: .18rem .6rem; margin: .15rem; font-size: .72rem; color: var(--gray); background: var(--cream); transition: all .15s; }
.tag:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ── SIDEBAR ── */
.sw { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--navy); padding: 1.2rem; margin-bottom: 1.5rem; }
.sw h3 { font-family: 'Nunito Sans Condensed', sans-serif; font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-lt); margin-bottom: .85rem; }
.rel-list { list-style: none; }
.rel-list li { padding: .55rem 0; border-bottom: 1px solid var(--cream-dk); }
.rel-list li:last-child { border: none; padding-bottom: 0; }
.rel-cat { display: block; font-family: 'Nunito Sans Condensed', sans-serif; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .12rem; }
.rel-list a { font-family: 'Crimson Pro', serif; font-size: .95rem; color: var(--navy); line-height: 1.35; }
.rel-list a:hover { color: var(--gold); }
.author-row { display: flex; align-items: center; gap: .8rem; }
.author-av { width: 40px; height: 40px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Crimson Pro', serif; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .85rem; color: var(--navy); display: block; }
.author-role { font-size: .75rem; color: var(--gray-lt); }
.sw-nums { background: var(--cream); }
.sw-nums h3 { color: var(--gray-lt); }
.sw-kv { font-size: .82rem; color: var(--gray); margin-bottom: .3rem; }
.sw-kv strong { color: var(--navy); font-weight: 700; }

/* ── HERO ── */
.hero { background: var(--navy); border-bottom: 4px solid var(--gold); padding: 3.5rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media(max-width:768px){ .hero-grid { grid-template-columns: 1fr; } }
.hero-text h2 { font-family: 'Crimson Pro', serif; font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.hero-text h2 em { color: var(--gold-lt); font-style: normal; border-bottom: 2px solid var(--gold); }
.hero-text p { font-size: .95rem; color: #5a7a9a; line-height: 1.65; margin-bottom: 1.5rem; }
.hero-cta { display: inline-block; background: var(--gold); color: var(--navy); font-family: 'Nunito Sans Condensed', sans-serif; font-weight: 800; font-size: .82rem; padding: .72rem 1.7rem; letter-spacing: .1em; text-transform: uppercase; transition: background .15s; }
.hero-cta:hover { background: var(--gold-lt); }
.hero-panel { border: 1px solid var(--navy-lt); border-top: 3px solid var(--gold); padding: 1.5rem; background: rgba(255,255,255,.04); }
.hp-label { font-family: 'Nunito Sans Condensed', sans-serif; font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .4rem; }
.hero-panel h3 { font-family: 'Crimson Pro', serif; font-size: 1.15rem; color: var(--white); line-height: 1.3; margin-bottom: .4rem; }
.hero-panel h3 a:hover { color: var(--gold-lt); }
.hero-panel p { font-size: .83rem; color: #4a6a8a; margin-bottom: .65rem; }
.hero-panel .hp-link { font-family: 'Nunito Sans Condensed', sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.hp-div { border-top: 1px solid var(--navy-lt); margin: 1rem 0; }

/* ── RESPONSIVE ── */
@media(max-width:768px){
  .mobile-toggle { display: block; }
  .header-nav { display: none; }
  .header-nav.open { display: block; }
  .header-nav ul { flex-direction: column; }
  .header-nav a { border-right: none; border-bottom: 1px solid var(--border); }
  .site-header { position: relative; }
  .art-header h1 { font-size: 1.6rem; }
  .hero-text h2 { font-size: 2rem; }
}
