:root {
  --accent: #9b1d3a;
  --accent-hover: #7d1730;
  --gold: #c4a35a;
  --ink: #111111;
  --muted: #6d6d6d;
  --cream: #f5efe0;
  --sand: #dcd7ca;
  --white: #ffffff;
  --header: #0f0f0f;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 8px;
}
.skip-link:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 10000; }

.topbar {
  background: #0a0a0a;
  color: #fff;
  font-size: 0.92rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  gap: 16px;
}
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--gold); }
.topbar-meta { color: #cfcfcf; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}
.logo img { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  color: var(--ink);
  font-weight: 600;
  padding: 10px 12px;
  position: relative;
}
.nav a:hover,
.nav a.active { color: var(--accent); }
.nav .has-sub { position: relative; }
.nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 240px;
  background: #111;
  padding: 10px 0;
  box-shadow: var(--shadow);
}
.nav .has-sub:hover .submenu,
.nav .has-sub:focus-within .submenu { display: block; }
.nav .submenu a { color: #fff; display: block; padding: 10px 16px; }
.nav .submenu a:hover { color: var(--gold); }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  position: relative;
  transition: .2s;
}
.menu-toggle span:before,
.menu-toggle span:after {
  content: "";
  position: absolute;
}
.menu-toggle span:before { top: -7px; }
.menu-toggle span:after { top: 7px; }

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(10,10,10,.82), rgba(155,29,58,.45)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  text-transform: lowercase;
}
.hero p { font-size: 1.15rem; max-width: 540px; color: #f3f3f3; }
.hero-points { display: grid; gap: 16px; }
.hero-point {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: 16px 18px;
  border-radius: var(--radius);
}
.hero-point strong { font-size: 1.15rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff !important;
  border: 0;
  border-radius: 4px;
  padding: 13px 22px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-ghost { background: transparent; border: 1px solid currentColor; color: inherit !important; }
.mt-24 { margin-top: 24px; }

.section { padding: 84px 0; }
.section-dark {
  background: linear-gradient(180deg, #141414 0%, #2a0c16 100%);
  color: #fff;
  position: relative;
}
.section-cream { background: var(--cream); }
.section-white { background: #fff; }
.kicker {
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
  font-weight: 700;
}
.section h2, .page-hero h1, .article-page h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin: 8px 0 16px;
}
.lede { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.section-dark .lede { color: #ddd; }

.about-grid, .split, .contact-grid, .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.badge-card {
  min-height: 320px;
  border-radius: 12px;
  background:
    linear-gradient(160deg, rgba(155,29,58,.75), rgba(10,10,10,.7)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1000&q=80") center/cover;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding: 32px;
  box-shadow: var(--shadow);
}
.monogram {
  width: 110px;
  height: 110px;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.areas-grid, .cards-3, .posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  min-height: 100%;
}
.section-dark .card {
  background: linear-gradient(180deg, #2b1520, #1a0f14);
  color: #fff;
}
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.icon-circle svg { width: 28px; height: 28px; fill: currentColor; }
.card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cta-band {
  text-align: center;
  padding: 72px 0;
  background:
    linear-gradient(120deg, rgba(155,29,58,.88), rgba(17,17,17,.82)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
}
.partner-photo {
  border-radius: 12px;
  min-height: 380px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.25)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80") center/cover;
}
.partners { display: grid; gap: 28px; }
.partner h3 { margin-bottom: 4px; }
.partner .role { color: var(--accent); font-weight: 700; margin-bottom: 10px; }

.post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.post-card .thumb {
  height: 190px;
  background: #ddd center/cover;
}
.post-card .body { padding: 20px; }
.post-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.post-card h3 a { color: inherit; }
.post-card p { color: var(--muted); }
.read-more { display: inline-block; margin-top: 12px; font-weight: 700; }

.page-hero {
  background: linear-gradient(120deg, #111, #3a1422);
  color: #fff;
  padding: 72px 0 56px;
}
.form {
  display: grid;
  gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  padding: 13px 14px;
  font: inherit;
  border-radius: 4px;
}
.form input:focus, .form textarea:focus {
  outline: 2px solid rgba(155,29,58,.25);
  border-color: var(--accent);
}
.alert {
  padding: 14px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.alert-ok { background: #e8f6ec; color: #146c2e; }
.alert-err { background: #fdecec; color: #8a1f1f; }

.site-footer { background: #111; color: #eee; padding: 64px 0 0; }
.site-footer h3 { font-family: "Playfair Display", Georgia, serif; margin-bottom: 12px; }
.site-footer a { color: #eee; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { grid-template-columns: 1.1fr .9fr 1fr; align-items: start; }
.contact-list { list-style: none; display: grid; gap: 12px; }
.map-embed {
  border: 0;
  width: 100%;
  min-height: 220px;
  border-radius: 8px;
}
.copyright {
  margin-top: 40px;
  border-top: 1px solid #2a2a2a;
  padding: 18px 0;
  color: #aaa;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  z-index: 80;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.06); color: #fff !important; }

.article-page { background: #fff; padding: 48px 0 80px; }
.article-page .wrap { max-width: 800px; margin: 0 auto; }
.article-cover { height: 340px; border-radius: 12px; background: #ccc center/cover; margin-bottom: 28px; }
.article-page p { margin-bottom: 16px; }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .split, .contact-grid, .footer-grid,
  .areas-grid, .cards-3, .posts-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav .submenu { position: static; background: #f7f3ea; }
  .nav .submenu a { color: #111; }
  .copyright { flex-direction: column; }
}
