
    :root {
      --gold: #C8933A;
      --gold-light: #E8B96A;
      --gold-pale: #F5E6C8;
      --dark: #0A0A0F;
      --dark-2: #111118;
      --dark-3: #1A1A24;
      --dark-4: #22222E;
      --text: #E8E8EE;
      --text-muted: #8888AA;
      --white: #FFFFFF;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.3;
      pointer-events: none;
      z-index: 0;
    }

    /* ─── HEADER ─── */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.2rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10, 10, 15, 0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(200, 147, 58, 0.15);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .logo-emblem {
      width: 40px; height: 40px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .logo-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700;
      color: var(--white); line-height: 1;
    }

    .logo-text p {
      font-size: 0.6rem; color: var(--gold);
      letter-spacing: 0.15em; text-transform: uppercase;
    }

    nav.desktop-nav {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    nav.desktop-nav a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    nav.desktop-nav a:hover,
    nav.desktop-nav a.active { color: var(--gold); }

    .btn-consult {
      background: transparent;
      color: var(--gold);
      padding: 0;
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      position: relative;
    }

    .btn-consult::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--gold);
      transition: transform 0.3s ease;
      transform-origin: left;
    }

    .btn-consult:hover { color: var(--gold-light); gap: 0.9rem; }
    .btn-consult:hover::after { transform: scaleX(0); transform-origin: right; }

    .hamburger-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }

    .hamburger-btn span {
      display: block; width: 22px; height: 2px;
      background: var(--gold); transition: all 0.3s;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; right: -100%;
      width: 260px; height: 100vh;
      background: var(--dark-2);
      border-left: 1px solid rgba(200,147,58,0.2);
      z-index: 999;
      padding: 5rem 1.5rem 2rem;
      flex-direction: column;
      gap: 1.2rem;
      transition: right 0.4s ease;
    }

    .mobile-nav.open { right: 0; }
    .mobile-nav a {
      color: var(--text); text-decoration: none;
      font-size: 0.95rem; letter-spacing: 0.06em;
      text-transform: uppercase; font-weight: 500;
      border-bottom: 1px solid rgba(200,147,58,0.1);
      padding-bottom: 1rem;
    }

    .close-menu {
      position: absolute; top: 1.5rem; right: 1.5rem;
      background: none; border: none; color: var(--gold);
      font-size: 1.4rem; cursor: pointer;
    }

    .overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.6); z-index: 998;
    }
    .overlay.active { display: block; }

    /* ─── BLOG HERO ─── */
    .blog-hero {
      position: relative;
      padding: 8rem 2rem 5rem;
      text-align: center;
      overflow: hidden;
      z-index: 1;
    }

    .blog-hero::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(200,147,58,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .blog-hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(200,147,58,0.1);
      border: 1px solid rgba(200,147,58,0.3);
      color: var(--gold);
      padding: 0.35rem 1rem;
      border-radius: 100px;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 1.2rem;
    }

    .blog-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .blog-hero h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .blog-hero p {
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto;
      font-size: 0.95rem;
      line-height: 1.8;
    }

    /* ─── CATEGORIES ─── */
    .categories-bar {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      padding: 0 2rem 3rem;
      position: relative;
      z-index: 1;
    }

    .cat-btn {
      background: var(--dark-3);
      border: 1px solid rgba(200,147,58,0.15);
      color: var(--text-muted);
      padding: 0.4rem 1rem;
      border-radius: 100px;
      font-size: 0.78rem;
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'DM Sans', sans-serif;
    }

    .cat-btn:hover, .cat-btn.active {
      background: rgba(200,147,58,0.15);
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ─── ARTICLES GRID ─── */
    .articles-section {
      padding: 0 2rem 6rem;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .article-card {
      background: var(--dark-3);
      border: 1px solid rgba(200,147,58,0.12);
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .article-card:hover {
      border-color: rgba(200,147,58,0.35);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }

    .article-thumb {
      height: 200px;
      background: var(--dark-4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(200,147,58,0.08);
    }

    .article-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      position: absolute; inset: 0;
    }

    .article-thumb .thumb-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,15,0.6), transparent);
    }

    .article-thumb .thumb-emoji {
      position: relative;
      z-index: 1;
    }

    .article-body { padding: 1.5rem; }

    .article-category {
      font-size: 0.68rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .article-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.4;
      margin-bottom: 0.75rem;
    }

    .article-excerpt {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .article-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--text-muted);
      border-top: 1px solid rgba(200,147,58,0.08);
      padding-top: 0.75rem;
    }

    .read-more {
      color: var(--gold);
      font-weight: 600;
      font-size: 0.75rem;
    }

    /* ─── ARTICLE MODAL ─── */
    .modal-backdrop {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 2000;
      backdrop-filter: blur(10px);
      overflow-y: auto;
      padding: 2rem 1rem;
    }

    .modal-backdrop.open { display: flex; align-items: flex-start; justify-content: center; }

    .modal-box {
      background: var(--dark-2);
      border: 1px solid rgba(200,147,58,0.2);
      border-radius: 10px;
      max-width: 800px;
      width: 100%;
      margin: auto;
      overflow: hidden;
      animation: modalIn 0.4s ease;
    }

    @keyframes modalIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .modal-header {
      padding: 2rem 2rem 1.5rem;
      border-bottom: 1px solid rgba(200,147,58,0.1);
      position: relative;
    }

    .modal-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      background: rgba(200,147,58,0.1);
      border: 1px solid rgba(200,147,58,0.3);
      color: var(--gold);
      width: 36px; height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
    }

    .modal-category {
      font-size: 0.7rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.25;
      margin-bottom: 0.75rem;
      padding-right: 3rem;
    }

    .modal-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .modal-img {
      width: 100%; height: 260px;
      object-fit: cover;
      display: block;
    }

    .modal-img-placeholder {
      height: 180px;
      background: var(--dark-3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      border-bottom: 1px solid rgba(200,147,58,0.1);
    }

    .modal-content {
      padding: 2.5rem 2rem;
      color: var(--text);
      line-height: 1.9;
      font-size: 0.95rem;
    }

    .modal-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--white);
      margin: 2rem 0 0.75rem;
      font-weight: 700;
    }

    .modal-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--gold-light);
      margin: 1.5rem 0 0.5rem;
    }

    .modal-content p { margin-bottom: 1rem; color: var(--text-muted); }
    .modal-content strong { color: var(--text); }

    .modal-content ul {
      padding-left: 1.5rem;
      margin-bottom: 1rem;
    }

    .modal-content li {
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .modal-content blockquote {
      background: rgba(200,147,58,0.07);
      border-left: 4px solid var(--gold);
      padding: 1rem 1.5rem;
      margin: 1.5rem 0;
      border-radius: 0 4px 4px 0;
      font-style: italic;
      color: var(--text-muted);
    }

    .modal-content table {
      width: 100%; border-collapse: collapse; margin: 1.5rem 0;
      font-size: 0.85rem;
    }

    .modal-content th {
      background: rgba(200,147,58,0.1);
      border: 1px solid rgba(200,147,58,0.2);
      padding: 0.75rem; text-align: left;
      color: var(--gold);
    }

    .modal-content td {
      border: 1px solid rgba(200,147,58,0.1);
      padding: 0.65rem; color: var(--text-muted);
    }

    .modal-content tr:hover td { background: rgba(200,147,58,0.03); }

    .juri-box {
      background: rgba(74,108,247,0.08);
      border-left: 4px solid #4A6CF7;
      padding: 1rem 1.5rem;
      margin: 1rem 0;
      border-radius: 0 4px 4px 0;
      font-size: 0.875rem;
    }

    .modal-wpp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin: 2rem;
      background: #25D366;
      color: white;
      padding: 1rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.9rem;
      transition: all 0.3s;
    }

    .modal-wpp:hover {
      background: #1ebe5a;
      transform: translateY(-2px);
    }

    /* ─── ADMIN BUTTON ─── */
    .admin-fab {
      position: fixed;
      bottom: 2rem; right: 2rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--dark);
      width: 56px; height: 56px;
      border-radius: 50%;
      border: none;
      font-size: 1.3rem;
      cursor: pointer;
      z-index: 500;
      box-shadow: 0 8px 25px rgba(200,147,58,0.4);
      transition: all 0.3s;
      display: flex; align-items: center; justify-content: center;
    }

    .admin-fab:hover {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 12px 35px rgba(200,147,58,0.6);
    }

    /* ─── LOGIN MODAL ─── */
    .login-modal {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 3000;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(15px);
    }

    .login-modal.open { display: flex; }

    .login-box {
      background: var(--dark-2);
      border: 1px solid rgba(200,147,58,0.25);
      border-radius: 10px;
      padding: 2.5rem;
      width: 100%;
      max-width: 400px;
      animation: modalIn 0.3s ease;
    }

    .login-box h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--white);
      margin-bottom: 0.5rem;
    }

    .login-box p {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .login-field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1rem;
    }

    .login-field label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .login-field input {
      background: var(--dark-3);
      border: 1px solid rgba(200,147,58,0.2);
      border-radius: 4px;
      padding: 0.8rem 1rem;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s;
    }

    .login-field input:focus { border-color: var(--gold); }

    .login-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--gold), #D4A044);
      color: var(--dark);
      border: none;
      padding: 0.9rem;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 0.5rem;
    }

    .login-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(200,147,58,0.4);
    }

    .login-error {
      background: rgba(239,68,68,0.1);
      border: 1px solid rgba(239,68,68,0.3);
      color: #f87171;
      padding: 0.6rem 1rem;
      border-radius: 4px;
      font-size: 0.8rem;
      margin-bottom: 1rem;
      display: none;
    }

    .login-cancel {
      width: 100%;
      background: none;
      border: 1px solid rgba(200,147,58,0.2);
      color: var(--text-muted);
      padding: 0.75rem;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 0.5rem;
    }

    .login-cancel:hover { border-color: rgba(200,147,58,0.4); color: var(--text); }

    /* ─── NEW POST MODAL ─── */
    .newpost-modal {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.85);
      z-index: 3000;
      align-items: flex-start;
      justify-content: center;
      backdrop-filter: blur(15px);
      overflow-y: auto;
      padding: 2rem 1rem;
    }

    .newpost-modal.open { display: flex; }

    .newpost-box {
      background: var(--dark-2);
      border: 1px solid rgba(200,147,58,0.25);
      border-radius: 10px;
      padding: 2.5rem;
      width: 100%;
      max-width: 700px;
      margin: auto;
      animation: modalIn 0.3s ease;
    }

    .newpost-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 2rem;
    }

    .newpost-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: var(--white);
    }

    .np-close {
      background: none;
      border: 1px solid rgba(200,147,58,0.2);
      color: var(--text-muted);
      width: 36px; height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1rem;
    }

    .np-field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.2rem;
    }

    .np-field label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 500;
    }

    .np-field input,
    .np-field select,
    .np-field textarea {
      background: var(--dark-3);
      border: 1px solid rgba(200,147,58,0.2);
      border-radius: 4px;
      padding: 0.8rem 1rem;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s;
    }

    .np-field input:focus,
    .np-field select:focus,
    .np-field textarea:focus { border-color: var(--gold); }

    .np-field textarea { min-height: 200px; resize: vertical; }

    .np-field select option { background: var(--dark-3); }

    .np-field input[type="file"] {
      padding: 0.6rem;
      cursor: pointer;
    }

    .np-preview {
      width: 100%; height: 150px;
      object-fit: cover;
      border-radius: 4px;
      border: 1px solid rgba(200,147,58,0.2);
      display: none;
      margin-top: 0.5rem;
    }

    .np-actions {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .np-submit {
      flex: 1;
      background: linear-gradient(135deg, var(--gold), #D4A044);
      color: var(--dark);
      border: none;
      padding: 0.9rem;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
    }

    .np-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(200,147,58,0.4);
    }

    .np-cancel {
      background: none;
      border: 1px solid rgba(200,147,58,0.2);
      color: var(--text-muted);
      padding: 0.9rem 1.5rem;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.3s;
    }

    .np-cancel:hover { border-color: rgba(200,147,58,0.4); color: var(--text); }

    /* Toast */
    .toast {
      position: fixed;
      bottom: 5rem; left: 50%;
      transform: translateX(-50%) translateY(100px);
      background: var(--dark-3);
      border: 1px solid rgba(200,147,58,0.3);
      color: var(--gold);
      padding: 0.8rem 1.5rem;
      border-radius: 4px;
      font-size: 0.85rem;
      font-weight: 500;
      z-index: 9999;
      transition: all 0.4s ease;
      opacity: 0;
    }

    .toast.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    /* Admin panel actions on cards */
    .admin-actions {
      display: none;
      gap: 0.5rem;
      margin-top: 0.75rem;
    }

    body.admin-mode .admin-actions { display: flex; }

    .admin-del-btn {
      background: rgba(239,68,68,0.1);
      border: 1px solid rgba(239,68,68,0.3);
      color: #f87171;
      padding: 0.3rem 0.75rem;
      border-radius: 3px;
      font-size: 0.72rem;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.3s;
    }

    .admin-del-btn:hover { background: rgba(239,68,68,0.2); }

    .admin-mode-badge {
      display: none;
      position: fixed;
      top: 80px; right: 2rem;
      background: rgba(200,147,58,0.15);
      border: 1px solid rgba(200,147,58,0.4);
      color: var(--gold);
      padding: 0.4rem 0.75rem;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      z-index: 100;
    }

    body.admin-mode .admin-mode-badge { display: block; }

    .logout-btn {
      background: none;
      border: none;
      color: var(--gold);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      cursor: pointer;
      margin-left: 0.5rem;
      text-decoration: underline;
    }

    /* No posts */
    .no-posts {
      grid-column: 1/-1;
      text-align: center;
      padding: 4rem 2rem;
      color: var(--text-muted);
    }

    .no-posts .icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
    .no-posts h3 { font-family: 'Playfair Display', serif; color: var(--white); margin-bottom: 0.5rem; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark-2);
      border-top: 1px solid rgba(200,147,58,0.15);
      padding: 3rem 2rem 2rem;
      position: relative;
      z-index: 1;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-inner p { font-size: 0.8rem; color: var(--text-muted); }
    .footer-inner a { color: var(--gold); text-decoration: none; font-size: 0.8rem; }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: rgba(200,147,58,0.4); border-radius: 3px; }

    @media (max-width: 900px) {
      nav.desktop-nav, .btn-consult { display: none; }
      .hamburger-btn { display: flex; }
      .mobile-nav { display: flex; }
      .articles-grid { grid-template-columns: 1fr; }
    }

    @media (min-width: 600px) and (max-width: 900px) {
      .articles-grid { grid-template-columns: 1fr 1fr; }
    }
  