/*
============================================================
 ALQUÍMIA — Hoja de estilos principal
============================================================
 Diseño renovado:
 - elegante
 - profesional
 - terapéutico
 - luminoso
 - limpio y contemporáneo

 La idea visual busca transmitir confianza, calma, calidez
 y profundidad emocional sin perder sofisticación.
============================================================
*/

:root {
  --bg: #f8f4ee;
  --bg-2: #fcfaf7;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-soft: #f1e9df;
  --primary: #133b66;
  --primary-deep: #0f2f51;
  --gold: #b88a52;
  --gold-soft: #ead8c0;
  --text: #1f2730;
  --muted: #6f737b;
  --line: rgba(19, 59, 102, 0.12);
  --success: #2e7d57;
  --danger: #b44d57;
  --white: #ffffff;

  --shadow-sm: 0 8px 24px rgba(18, 38, 62, 0.06);
  --shadow-md: 0 18px 48px rgba(18, 38, 62, 0.10);
  --shadow-lg: 0 28px 78px rgba(18, 38, 62, 0.16);

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;

  --container: 1200px;
  --transition: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 214, 187, 0.30), transparent 28%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  line-height: 1.72;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  color: var(--primary);
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

li {
  margin-bottom: 0.55rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: .8rem 1rem;
  border-radius: 10px;
  z-index: 9999;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.centered {
  text-align: center;
}

.centered-text {
  text-align: center;
}

.center {
  text-align: center;
}

.between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(184, 138, 82, 0.12);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

/* ==========================================================
   TOPBAR
========================================================== */

/* ==========================================================
   TOPBAR REDES SOCIALES
========================================================== */
/* ==========================================================
   TOPBAR REDES SOCIALES
========================================================== */
/* ==========================================================
   FIX DEFINITIVO TOPBAR ICONOS
   PEGAR AL FINAL DE TODO EL ARCHIVO
========================================================== */

.topbar,
.topbar * {
  box-sizing: border-box;
}

.topbar .topbar-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
}

.topbar .topbar-social {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  flex-wrap: nowrap !important;
  width: auto !important;
}

.topbar .social-link {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: auto !important;
  max-width: none !important;
  padding: 7px 12px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.topbar .social-link img,
.topbar .topbar-social img,
.topbar a img {
  width: 10px !important;
  height: 10px !important;
  min-width: 14px !important;
  max-width: 14px !important;
  min-height: 14px !important;
  max-height: 14px !important;
  flex: 0 0 14px !important;
  object-fit: contain !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.topbar .social-link span {
  display: inline !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

@media (max-width: 768px) {
  .topbar .topbar-inner {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .topbar .topbar-social {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .topbar .social-link span {
    display: none !important;
  }
}
/* ==========================================================
   HEADER
========================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand img {
  width: 74px;
  height: 74px;
  min-width: 74px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  border: 1px solid rgba(184, 138, 82, .18);
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
}

.brand-tagline {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  margin-top: .35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.nav-link {
  position: relative;
  padding: .85rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  margin: 4px auto;
}

/* ==========================================================
   BOTONES
========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #295784);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: rgba(255,255,255,.88);
  color: var(--primary);
  border-color: var(--line);
}

.btn-ghost {
  background: rgba(255,255,255,.36);
  color: var(--primary);
  border-color: rgba(184, 138, 82, .24);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-ghost-white {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
}

.btn-block {
  width: 100%;
}

/* ==========================================================
   HERO Y SECCIONES
========================================================== */

.hero-section {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5rem); 
  margin-bottom: 1.1rem;
}

.lead {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 62ch;
}

.lead.center {
  margin-inline: auto;
}

.subtitle {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 1.8rem 0 1.5rem;
}

.hero-quote {
  margin: 1.4rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
  font-size: 1.08rem;
  color: var(--primary);
  max-width: 60ch;
}

.hero-visual-card,
.about-photo-card,
.retreat-visual,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
}

.hero-visual-card {
  min-height: auto;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.82);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
      max-width: 420px;
    overflow: visible;
}

.hero-visual-card img {
          width: auto;  height: auto;
        max-height: 300px;  max-width: 350px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: #fff;
  padding: 24px;


}

.retreat-visual img {
  max-width: 420px;  m
  ax-height: 380px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(184, 138, 82, .08), rgba(255,255,255,0));
}

.section-accent {
  background: linear-gradient(180deg, rgba(19,59,102,.06), rgba(255,255,255,0));
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.centered {
  max-width: 800px;
  margin-inline: auto;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading h2,
.split-section h2,
.about-copy h2,
.contact-copy h2,
.retreat-copy h2,
.footer-cta-text h2,
.page-hero h1,
.article-header h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

/* ==========================================================
   SERVICIOS
========================================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: var(--shadow-md);
}

.service-card-featured {
  background: linear-gradient(160deg, var(--primary), #244f79);
  color: #fff;
}

.service-card-featured h3,
.service-card-featured p,
.service-card-featured li {
  color: #fff;
}

.service-card h3 {
  font-size: 2rem;
}

.service-icon-wrap {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(184, 138, 82, .12);
  margin-bottom: 1rem;
}

.service-card-featured .service-icon-wrap {
  background: rgba(255,255,255,.12);
}

.service-icon-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* ==========================================================
   ABOUT / RETIROS / PROCESO
========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.about-photo-card {
  padding: .8rem;
  max-width: 430px;
  margin-inline: auto;
  background: rgba(255,255,255,.84);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.about-photo-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.about-copy {
  max-width: 680px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1.2rem;
}

.process-grid article {
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.process-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(184, 138, 82, .15);
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.retreat-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.64);
  box-shadow: var(--shadow-lg);
}

.retreat-copy {
  padding: 1rem;
}

/* ==========================================================
   BLOG
========================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.45rem;
}

.post-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.56);
}

.post-thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.post-body {
  padding: 1.4rem;
}

.post-meta {
  display: inline-block;
  color: var(--gold);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .8rem;
}

.post-body h2,
.post-body h3 {
  font-size: 2rem;
  line-height: 1.04;
  margin-bottom: .8rem;
}

.post-body a:hover {
  color: var(--gold);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-weight: 800;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: .7rem;
  margin-top: 2rem;
}

.page-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  color: var(--primary);
}

.page-link.active {
  background: var(--primary);
  color: #fff;
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-md);
}

/* ==========================================================
   CONTACTO
========================================================== */

.section-contact {
  background: linear-gradient(180deg, rgba(19,59,102,.05), rgba(255,255,255,0));
}

.contact-list {
  display: grid;
  gap: .8rem;
  margin-top: 1.4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.contact-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-card {
  padding: 2rem;
}

.contact-card h3 {
  font-size: 2rem;
}

.mini-note {
  color: var(--muted);
  font-size: .95rem;
  margin-top: 1rem;
}

/* ==========================================================
   ARTÍCULO
========================================================== */

.page-hero {
  padding: 4.5rem 0 1rem;
}

.article-section {
  padding-top: 2rem;
}

.article-cover {
  margin-bottom: 1.5rem;
}

.article-cover img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.article-content {
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.5);
}

.prose h2,
.prose h3,
.prose h4 {
  line-height: 1.1;
  margin-top: 2rem;
}

.prose p {
  max-width: 70ch;
}

.article-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ==========================================================
   FOOTER
========================================================== */

.footer-cta {
  padding: 4rem 0 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.2rem;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary), #2b5d89);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.footer-cta-text h2,
.footer-cta-text p {
  color: #fff;
}

.footer-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  padding-top: 2.2rem;
  background: #10263f;
  color: #dbe6ef;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .75fr .75fr .95fr;
  gap: 1.5rem;
  padding: 0 0 2rem;
}

.footer-brand p,
.footer-col li a {
  color: #dbe6ef;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: .8rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: .95rem;
}

/* ==========================================================
   WHATSAPP FLOTANTE
========================================================== */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #20c863;
  box-shadow: 0 18px 36px rgba(17, 112, 56, .32);
  z-index: 99;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ==========================================================
   ADMIN
========================================================== */

.admin-body {
  background: #edf2f6;
  color: var(--text);
}

.admin-auth-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.admin-auth-card,
.admin-panel-card,
.admin-form-panel {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: var(--shadow-lg);
  border-radius: 28px;
}

.admin-auth-card {
  width: min(100%, 520px);
  padding: 2rem;
}

.admin-auth-brand {
  text-align: center;
  margin-bottom: 1rem;
}

.admin-auth-brand img {
  width: 84px;
  height: 84px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

.admin-auth-brand h1 {
  font-size: 2.4rem;
}

.admin-auth-brand p {
  color: var(--muted);
}

.admin-form-clean,
.admin-form-panel {
  padding: 1.5rem;
}

.admin-form-clean label,
.admin-form-panel label {
  display: block;
  font-weight: 700;
  margin: .6rem 0 .45rem;
}

.admin-form-clean input,
.admin-form-panel input,
.admin-form-panel textarea,
.admin-form-panel select {
  width: 100%;
  border: 1px solid #dce3eb;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  font: inherit;
}

.admin-form-panel textarea {
  resize: vertical;
}

.field-help {
  color: var(--muted);
  font-size: .92rem;
  margin-top: .45rem;
}

.form-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: linear-gradient(180deg, #10263f, #17365a);
  color: #fff;
  padding: 1.5rem;
}

.admin-logo-box {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.4rem;
}

.admin-logo-box img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

.admin-logo-box strong {
  display: block;
}

.admin-logo-box span {
  color: rgba(255,255,255,.76);
  font-size: .9rem;
}

.admin-nav {
  display: grid;
  gap: .4rem;
}

.admin-nav a {
  padding: .95rem 1rem;
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
  opacity: .92;
  transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255,255,255,.12);
  opacity: 1;
}

.admin-main {
  padding: 2rem;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-topbar h1 {
  font-size: 3rem;
  margin-bottom: 0;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-stat-card {
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-md);
}

.admin-stat-card span {
  display: block;
  color: var(--muted);
  margin-bottom: .4rem;
}

.admin-stat-card strong {
  font-size: 2.2rem;
  color: var(--primary);
}

.admin-panel-card {
  padding: 1.3rem;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid #e2e8ef;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.actions-cell {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.actions-cell a {
  color: var(--primary);
  font-weight: 700;
}

.status-badge {
  display: inline-flex;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-badge.published {
  background: rgba(46,125,87,.12);
  color: var(--success);
}

.status-badge.draft {
  background: rgba(180,77,87,.10);
  color: var(--danger);
}

.alert {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.alert.success {
  background: rgba(46,125,87,.12);
  color: var(--success);
}

.alert.error {
  background: rgba(180,77,87,.10);
  color: var(--danger);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 1100px) {
  .service-grid,
  .blog-grid,
  .process-grid,
  .footer-grid,
  .admin-stats-grid,
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .split-section,
  .retreat-card,
  .footer-cta-inner {
    grid-template-columns: 1fr;
  }

  .between {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 940px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link,
  .nav-cta {
    width: 100%;
  }

  .topbar-inner,
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand img {
    width: 82px;
    height: 82px;
    min-width: 82px;
  }

  .brand-name {
    font-size: 1.55rem;
  }

  .brand-tagline {
    font-size: .9rem;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .hero-visual-card {
    min-height: auto;
  }

  .hero-visual-card img {
    max-width: 360px;
    max-height: 420px;
  }

  .service-grid,
  .blog-grid,
  .process-grid,
  .footer-grid,
  .admin-stats-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .topbar-social {
    gap: .45rem;
  }

  .social-link span {
    display: none;
  }

  .social-link {
    padding: .5rem;
  }

  .contact-card,
  .service-card,
  .post-body,
  .admin-auth-card,
  .admin-panel-card,
  .admin-form-panel {
    padding: 1.2rem;
  }

  .footer-cta-inner {
    padding: 1.4rem;
  }
}