:root {
  --ink: #102542;
  --navy: #1a3654;
  --navy-deep: #0b1a2e;
  --paper: #faf7f2;
  --cream: #f3ede3;
  --brass: #c79c5a;
  --brass-deep: #9a7438;
  --champagne: #d8c3a5;
  --muted: #5c6770;
  --line: #d9d0c3;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .mw-display, .elementor-heading-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 600;
  color: var(--ink);
}

a { color: var(--brass-deep); }
a:hover { color: var(--ink); }

.mw-wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

.mw-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 247, 242, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.mw-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.mw-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--ink); }
.mw-brand img { width: 40px; height: 40px; border-radius: 999px; object-fit: cover; box-shadow: 0 0 0 2px var(--brass); }
.mw-brand small { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.mw-nav ul { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.mw-nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.mw-nav a:hover, .mw-nav .current-menu-item > a { color: var(--ink); }

.mw-btn,
.elementor-button,
.wp-block-button__link {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 1.25rem; border-radius: 8px;
  background: var(--ink) !important; color: var(--paper) !important;
  text-decoration: none; font-weight: 500; font-family: Outfit, system-ui, sans-serif;
}
.mw-btn-brass,
.elementor-button.mw-brass {
  background: var(--brass) !important; color: var(--ink) !important;
}

.mw-hero { background: var(--navy-deep); color: var(--paper); padding: 4.5rem 0; }
.mw-hero h1 { color: var(--paper); max-width: 18ch; }
.mw-hero p { color: var(--champagne); max-width: 36rem; }
.mw-kicker { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-deep); font-weight: 500; }
.mw-band { padding: 4rem 0; }
.mw-band-cream { background: var(--cream); }
.mw-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) {
  .mw-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .mw-grid-2 { grid-template-columns: 1fr 1fr; }
}
.mw-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; }

.mw-footer { background: var(--navy-deep); color: var(--paper); padding: 3.5rem 0 1.5rem; }
.mw-footer a { color: var(--brass); }
.mw-footer .mw-display { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.6rem; margin: 0; }
.mw-copy { margin-top: 2rem; opacity: .6; font-size: .8rem; }

.mw-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.mw-btn-ghost {
  background: transparent !important;
  color: var(--paper) !important;
  border: 1px solid rgba(216,195,165,.4);
}
.mw-prose { max-width: 42rem; }
.mw-prose h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.mw-feature img { width: 100%; height: 22rem; object-fit: cover; display: block; }
.mw-form { display: grid; gap: .75rem; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; }
.mw-fine { font-size: .8rem; color: var(--muted); }
.mw-nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
}
.mw-nav-toggle span { display: block; height: 2px; background: var(--ink); }

input, select, textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 48px;
  padding: 0 12px;
  font-family: Outfit, system-ui, sans-serif;
  width: 100%;
  background: #fff;
}
textarea { min-height: 120px; padding: 12px; }

.site-main { background: var(--paper); }
::selection { background: var(--champagne); color: var(--ink); }

@media (max-width: 900px) {
  .mw-nav-toggle { display: flex; }
  .mw-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 72px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.5rem;
  }
  .mw-nav.is-open { display: block; }
  .mw-nav ul { flex-direction: column; }
  .mw-header { position: sticky; }
  .mw-header-cta { margin-top: .75rem; }
}
