:root {
  --bdc-navy: #0d1b2a;
  --bdc-gold: #c9a84c;
  --bdc-gold-light: #e8c96e;
  --bdc-white: #ffffff;
  --bdc-off-white: #f8f6f1;
  --bdc-gray: #6b7280;
  --bdc-light-gray: #e5e7eb;
  --bdc-text: #1a1a2e;
  --bdc-max-width: 100%;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--bdc-text);
  background: var(--bdc-white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

/* 100% width baseline for Elementor */
.site-content,
.theme-page,
.theme-entry-content,
.elementor-page .site-content,
.elementor-page .theme-page,
.elementor-page .theme-entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.elementor-section.elementor-section-boxed > .elementor-container,
.e-con.e-con-boxed > .e-con-inner {
  max-width: 1180px;
}

.elementor-section.elementor-section-stretched,
.e-con.e-con-full {
  width: 100%;
}

/* Remove default page chrome on Elementor pages */
.elementor-page .theme-entry-title { display: none; }
.elementor-page .theme-page-shell { padding: 0; max-width: none; }

.site-header {
  width: 100%;
  background: var(--bdc-white);
  border-bottom: 1px solid var(--bdc-light-gray);
  position: relative;
  z-index: 100;
}
.site-header__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: var(--bdc-navy);
}
.site-description {
  margin: 0;
  font-size: 12px;
  color: var(--bdc-gray);
}
.custom-logo { max-height: 74px; width: auto; }
.primary-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.primary-menu a,
.footer-menu a {
  text-decoration: none;
  color: var(--bdc-navy);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.primary-menu a:hover,
.footer-menu a:hover { color: var(--bdc-gold); }

.theme-page-shell {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px;
}
.theme-page-shell--narrow { max-width: 840px; }
.theme-entry-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--bdc-navy);
  line-height: 1.2;
}
.theme-entry-title a { text-decoration: none; }
.theme-button,
.wp-block-button__link {
  display: inline-block;
  border-radius: 4px;
  background: var(--bdc-gold);
  color: var(--bdc-navy);
  padding: 12px 24px;
  font-weight: 700;
  text-decoration: none;
}
.theme-button:hover,
.wp-block-button__link:hover { background: var(--bdc-gold-light); }

.site-footer {
  width: 100%;
  background: var(--bdc-navy);
  color: rgba(255,255,255,.72);
}
.site-footer__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer__brand strong { display: block; color: var(--bdc-white); }
.site-footer__brand span,
.site-footer__credit { font-size: 12px; color: rgba(255,255,255,.48); }
.footer-menu a { color: rgba(255,255,255,.72); }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--bdc-white);
  clip: auto !important;
  clip-path: none;
  color: var(--bdc-navy);
  display: block;
  height: auto;
  left: 8px;
  padding: 12px;
  top: 8px;
  width: auto;
  z-index: 100000;
}

@media (max-width: 768px) {
  .site-header__inner { flex-direction: column; align-items: flex-start; }
  .primary-menu, .footer-menu { gap: 14px; }
  .site-footer__inner { align-items: flex-start; flex-direction: column; }
}
