:root {
  --antenore-header-bg: #ffffff;
  --antenore-header-text: #2c2926;
  --antenore-header-accent: #a66f3f;
  --antenore-header-max: 1320px;
  --antenore-header-pad: 18px;
  --antenore-logo-width: 180px;
  --antenore-menu-gap: 30px;
  --antenore-header-shadow: 0 10px 35px rgba(20, 18, 16, .08);
  --antenore-menu-transform: uppercase;
  --antenore-whatsapp-bg: #25d366;
  --antenore-whatsapp-text: #ffffff;
  --antenore-footer-bg: #20201f;
  --antenore-footer-text: #f6f2eb;
  --antenore-footer-muted: #bcb6ad;
  --antenore-footer-accent: #c39362;
  --antenore-footer-max: 1280px;
  --antenore-footer-pad: 72px;
  --antenore-footer-logo-width: 240px;
  --antenore-footer-align: center;
  --antenore-serif: Georgia, 'Times New Roman', serif;
  --antenore-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #2c2926;
  background: #fff;
  font-family: var(--antenore-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.antenore-skip-link:focus {
  position: fixed !important;
  z-index: 99999;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  clip: auto;
  background: #fff;
  color: #111;
}

.antenore-site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: var(--antenore-header-bg);
  color: var(--antenore-header-text);
  box-shadow: var(--antenore-header-shadow);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.antenore-header-is-sticky .antenore-site-header {
  position: sticky;
  top: 0;
}
.admin-bar.antenore-header-is-sticky .antenore-site-header { top: 32px; }
.antenore-header-is-transparent .antenore-site-header {
  position: absolute;
  inset: 0 0 auto;
  background: transparent;
  color: #fff;
  box-shadow: none;
}
.antenore-header-is-transparent .antenore-site-header.is-scrolled {
  position: fixed;
  background: color-mix(in srgb, var(--antenore-header-bg) 94%, transparent);
  color: var(--antenore-header-text);
  box-shadow: var(--antenore-header-shadow);
  backdrop-filter: blur(12px);
}
.admin-bar.antenore-header-is-transparent .antenore-site-header.is-scrolled { top: 32px; }
.antenore-header-inner {
  width: min(calc(100% - 40px), var(--antenore-header-max));
  min-height: 70px;
  margin: 0 auto;
  padding: var(--antenore-header-pad) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.antenore-branding { display: flex; align-items: center; min-width: 0; }
.antenore-branding .custom-logo-link,
.antenore-footer-branding .custom-logo-link { display: inline-flex; }
.antenore-branding .custom-logo { width: var(--antenore-logo-width); max-height: 84px; object-fit: contain; }
.antenore-site-title,
.antenore-footer-title {
  font-family: var(--antenore-serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 500;
  text-decoration: none;
}
.antenore-primary-navigation { margin-left: auto; }
.antenore-menu,
.antenore-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.antenore-menu {
  display: flex;
  align-items: center;
  gap: var(--antenore-menu-gap);
}
.antenore-menu li { position: relative; }
.antenore-menu a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: var(--antenore-menu-transform);
}
.antenore-menu > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--antenore-header-accent);
  transition: right .2s ease;
}
.antenore-menu > li:hover > a::after,
.antenore-menu > li.current-menu-item > a::after { right: 0; }
.antenore-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 220px;
  padding: 14px 18px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  background: var(--antenore-header-bg);
  color: var(--antenore-header-text);
  box-shadow: 0 18px 50px rgba(20, 18, 16, .12);
  transition: .2s ease;
}
.antenore-menu li:hover > .sub-menu,
.antenore-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.antenore-menu .sub-menu a { padding: 10px 0; }
.antenore-header-whatsapp {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid color-mix(in srgb, var(--antenore-whatsapp-text) 18%, transparent);
  border-radius: 999px;
  background: var(--antenore-whatsapp-bg);
  color: var(--antenore-whatsapp-text);
  box-shadow: 0 9px 24px color-mix(in srgb, var(--antenore-whatsapp-bg) 28%, transparent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.antenore-header-whatsapp:hover,
.antenore-header-whatsapp:focus-visible {
  color: var(--antenore-whatsapp-text);
  filter: brightness(.94);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--antenore-whatsapp-bg) 36%, transparent);
}
.antenore-header-whatsapp:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.antenore-header-whatsapp__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.antenore-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.antenore-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.antenore-menu-toggle[aria-expanded='true'] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.antenore-menu-toggle[aria-expanded='true'] span:nth-of-type(3) { opacity: 0; }
.antenore-menu-toggle[aria-expanded='true'] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.antenore-site-content { min-height: 50vh; }
.antenore-content-shell {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 110px) 0;
}
.antenore-content-shell--narrow { max-width: 860px; }
.antenore-entry-title,
.antenore-post-card h2,
.antenore-empty-state h1 {
  margin: 0 0 24px;
  font-family: var(--antenore-serif);
  font-weight: 400;
  line-height: 1.1;
}
.antenore-entry-title { font-size: clamp(2.5rem, 6vw, 5.2rem); }
.antenore-entry-content > *:first-child { margin-top: 0; }
.antenore-entry-content > *:last-child { margin-bottom: 0; }
.antenore-post-card {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #ece8e2;
}
.antenore-post-card__body h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.antenore-post-card__body h2 a { text-decoration: none; }
.antenore-post-thumbnail img,
.antenore-single-image img { display: block; width: 100%; }
.antenore-post-meta,
.antenore-kicker {
  margin: 0 0 12px;
  color: #a66f3f;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.antenore-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  background: #a66f3f;
  color: #fff;
  text-decoration: none;
}
.antenore-empty-state { text-align: center; }

.antenore-site-footer {
  background: var(--antenore-footer-bg);
  color: var(--antenore-footer-text);
}
.antenore-footer-inner {
  width: min(calc(100% - 40px), var(--antenore-footer-max));
  margin: 0 auto;
  padding: var(--antenore-footer-pad) 0 28px;
  text-align: var(--antenore-footer-align);
}
.antenore-footer-branding .custom-logo { width: var(--antenore-footer-logo-width); max-height: 120px; object-fit: contain; }
.antenore-footer-tagline {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--antenore-footer-muted);
}
.antenore-footer-navigation { margin-top: 34px; }
.antenore-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.antenore-footer-menu a {
  color: inherit;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.antenore-footer-menu a:hover,
.antenore-footer-contacts a:hover { color: var(--antenore-footer-accent); }
.antenore-footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 30px;
  color: var(--antenore-footer-muted);
}
.antenore-footer-contacts a { color: inherit; text-decoration: none; }
.antenore-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: var(--antenore-footer-muted);
  font-size: .85rem;
  text-align: left;
}
.antenore-footer-bottom p { margin: 0; }
.antenore-back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .admin-bar.antenore-header-is-sticky .antenore-site-header,
  .admin-bar.antenore-header-is-transparent .antenore-site-header.is-scrolled { top: 46px; }
  .antenore-menu-toggle { display: block; }
  .antenore-header-whatsapp { margin-left: auto; }
  .antenore-primary-navigation {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: -1;
    width: min(88vw, 420px);
    padding: 110px 34px 40px;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    background: var(--antenore-header-bg);
    color: var(--antenore-header-text);
    box-shadow: -20px 0 70px rgba(20, 18, 16, .15);
    transition: .25s ease;
  }
  .antenore-primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .antenore-menu { display: block; }
  .antenore-menu a { padding: 14px 0; font-size: .92rem; }
  .antenore-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }
  body.antenore-menu-open { overflow: hidden; }
  .antenore-post-card { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .antenore-header-inner {
    width: min(calc(100% - 26px), var(--antenore-header-max));
    gap: 10px;
  }
  .antenore-header-whatsapp {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
  }
  .antenore-header-whatsapp__label { display: none; }
  .antenore-footer-bottom { flex-direction: column; text-align: center; }
  .antenore-footer-menu,
  .antenore-footer-contacts { flex-direction: column; }
}
