*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2744;
  --navy-mid: #2d3f6b;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #f5f0e8;
  --cream-dark: #ede7d9;
  --text: #2c2c2c;
  --text-mid: #555;
  --text-light: #888;
  --white: #ffffff;
  --border: #d8d0c0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--navy-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

#page-loader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-inner {
  width: 40px; height: 40px;
  border: 3px solid rgba(201,168,76,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-header { position: sticky; top: 0; z-index: 100; }

.header-top {
  background: var(--navy);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: rgba(255,255,255,0.6); }

.header-main {
  background: var(--navy-mid);
  border-bottom: 3px solid var(--gold);
  padding: 0;
}
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-sub {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
}

.site-nav ul { display: flex; list-style: none; gap: 4px; }
.site-nav > ul > li { position: relative; }
.site-nav a {
  display: block;
  padding: 20px 14px;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--gold); }

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: flex; }
.dropdown li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.dropdown a { padding: 12px 18px; font-size: 13px; text-transform: none; letter-spacing: 0; }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.92) 0%, rgba(26,39,68,0.5) 50%, rgba(26,39,68,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 0 40px;
  width: 100%;
}
.page-hero-content .container {}
.hero-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  line-height: 1.6;
}

.breadcrumb {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 13px;
  color: var(--text-mid);
}
.breadcrumb a { color: var(--navy-mid); }
.breadcrumb span { margin: 0 6px; color: var(--text-light); }

.main-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 48px 0;
}

.content-area h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.article-card:hover {
  box-shadow: 0 8px 32px rgba(26,39,68,0.12);
  transform: translateY(-3px);
}
.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.article-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
}
.card-body { padding: 22px; }
.card-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-family: 'Fira Sans Condensed', sans-serif;
  letter-spacing: 0.3px;
}
.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-body p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.card-link {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.card-link:hover { color: var(--gold); }

.sidebar {}
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 28px;
}
.sidebar-widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-links { list-style: none; }
.sidebar-links li { padding: 8px 0; border-bottom: 1px solid var(--cream-dark); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  font-size: 14px;
  color: var(--text);
  display: block;
}
.sidebar-links a:hover { color: var(--gold); }
.sidebar-note { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.ext-link-list { list-style: none; }
.ext-link-list li { padding: 8px 0; border-bottom: 1px solid var(--cream-dark); font-size: 13px; }
.ext-link-list li:last-child { border-bottom: none; }
.ext-link-list a { color: var(--navy-mid); }
.ext-link-list a:hover { color: var(--gold); }

.article-wrap { max-width: 780px; }
.article-header { margin-bottom: 36px; }
.article-header .article-category {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  font-family: 'Fira Sans Condensed', sans-serif;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.article-meta strong { color: var(--text-mid); }
.article-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 32px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.article-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  margin-bottom: 36px;
  display: block;
}
.img-caption {
  font-size: 12px;
  color: var(--text-light);
  margin-top: -28px;
  margin-bottom: 32px;
  font-style: italic;
  padding-left: 4px;
}

.article-body { font-family: 'Libre Baskerville', serif; font-size: 16px; line-height: 1.85; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin: 40px 0 14px;
  font-weight: 700;
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy-mid);
  margin: 28px 0 10px;
  font-weight: 600;
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
}
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 15px;
}
.article-body .callout {
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0;
}
.article-body .callout strong { color: var(--gold-light); }

.article-updated {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: 'Fira Sans Condensed', sans-serif;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.article-nav a {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 14px;
  color: var(--navy-mid);
  transition: background 0.2s, color 0.2s;
}
.article-nav a:hover { background: var(--navy); color: var(--gold); }
.article-nav a small { display: block; font-size: 11px; color: var(--text-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.article-nav a:hover small { color: rgba(255,255,255,0.6); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.info-box {
  background: var(--cream-dark);
  border-top: 3px solid var(--gold);
  padding: 20px;
}
.info-box h4 {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 8px;
}
.info-box p { font-size: 14px; color: var(--text-mid); margin: 0; }

.page-section { padding: 56px 0; }
.page-section-alt { background: var(--cream-dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img { width: 100%; display: block; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px;
  margin-top: 32px;
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy-mid); }
.form-group textarea { height: 130px; resize: vertical; }
.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }
.form-success {
  display: none;
  background: #e8f4e8;
  border: 1px solid #a8d8a8;
  padding: 16px 20px;
  font-size: 14px;
  color: #2a6a2a;
  margin-bottom: 20px;
}

.policy-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 12px;
}
.policy-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy-mid);
  margin: 24px 0 8px;
}
.policy-body p { margin-bottom: 16px; font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.policy-body ul { margin: 0 0 16px 22px; }
.policy-body li { margin-bottom: 6px; font-size: 15px; color: var(--text-mid); }

.page-title-section {
  background: var(--navy);
  padding: 48px 0 40px;
  border-bottom: 3px solid var(--gold);
}
.page-title-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
}
.page-title-section p {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-size: 16px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }
.footer-about p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.site-footer h4 {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { font-size: 13px; color: rgba(255,255,255,0.65); }
.site-footer ul a:hover { color: var(--gold); }
.footer-contact address { font-style: normal; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-disclaimer { margin-top: 6px; max-width: 700px; margin-left: auto; margin-right: auto; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  z-index: 9000;
  padding: 18px 0;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 13px; color: rgba(255,255,255,0.8); flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 12px; }
.btn-cookie {
  padding: 9px 22px;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-accept { background: var(--gold); color: var(--navy); }
.btn-accept:hover { background: var(--gold-light); }
.btn-reject { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
.btn-reject:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 960px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .burger-btn { display: flex; }
  .site-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 300;
  }
  .header-main { position: relative; }
  .site-nav.open ul { flex-direction: column; gap: 0; }
  .site-nav.open a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .has-dropdown .dropdown { position: static; box-shadow: none; border-top: none; display: block; background: rgba(0,0,0,0.2); }
  .articles-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-nav { flex-direction: column; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 300px; }
}
