*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg-primary: #0B0B0B;
      --bg-secondary: #111111;
      --bg-card: #161616;
      --bg-elevated: #1C1C1C;
      --border: #252525;
      --text-primary: #F4EDE4;
      --text-secondary: #9A928A;
      --text-muted: #6B6560;
      --accent: #C9A96E;
      --accent-hover: #D9BC85;
      --accent-dim: rgba(201, 169, 110, 0.08);
      --font-display: 'Bodoni Moda', 'Georgia', serif;
      --font-body: 'Barlow', 'Helvetica Neue', sans-serif;
      --nav-height: 72px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 17px;
      line-height: 1.7;
      color: var(--text-primary);
      background: var(--bg-primary);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    .skip-link {
      position: absolute; top: -100%; left: 0; z-index: 200;
      padding: 8px 16px; background: var(--bg-primary); color: var(--text-primary);
      font-family: var(--font-body); font-size: 14px;
    }
    .skip-link:focus { top: 0; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

    /* ── NAV ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(11, 11, 11, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow 0.3s;
    }
    .nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
    .nav-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      height: var(--nav-height);
    }
    .nav-logo {
      font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
      letter-spacing: 0.02em; color: var(--text-primary);
    }
    .nav-logo span { color: var(--accent); }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--text-secondary);
      transition: color 0.3s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--accent); transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--accent); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--accent); }
    .nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
    .nav-toggle {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 8px;
    }
    .nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); transition: all 0.3s; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

    .mobile-menu {
      position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
      background: rgba(11, 11, 11, 0.97);
      backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
      z-index: 1001; display: flex; flex-direction: column;
      justify-content: center; align-items: center; gap: 32px;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .mobile-menu.open { right: 0; }
    .mobile-menu a {
      font-family: var(--font-display); font-size: 2rem;
      color: var(--text-secondary); transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--accent); }
    .mobile-menu a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
    }

    /* ── BREADCRUMB ── */
    .breadcrumb { display: flex; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; }
    .breadcrumb a { color: var(--accent); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }

    /* ── ARTICLE HEADER ── */
    .article-header {
      padding: 140px 0 48px;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }
    .article-header-label {
      font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
      margin-bottom: 12px;
    }
    .article-header-date {
      font-family: var(--font-body); font-size: 0.8rem; font-weight: 400;
      color: var(--text-muted); margin-bottom: 20px;
    }
    .article-header h1 {
      font-size: clamp(28px, 4.5vw, 52px);
      max-width: 800px; margin: 0 auto 16px;
      line-height: 1.15;
    }
    .article-header .subtitle {
      color: var(--text-secondary); font-size: 18px; max-width: 600px; margin: 0 auto;
      line-height: 1.6;
    }

    /* ── ARTICLE BODY ── */
    .article-body {
      max-width: 720px;
      margin: 0 auto;
      padding: 56px 24px 80px;
    }
    .article-body p {
      margin-bottom: 24px;
      color: var(--text-primary);
      font-size: 17px;
      line-height: 1.8;
    }
    .article-body h2 {
      font-size: clamp(22px, 3vw, 30px);
      margin: 48px 0 20px;
      color: var(--text-primary);
    }
    .article-body h3 {
      font-size: clamp(18px, 2.5vw, 22px);
      margin: 36px 0 16px;
      color: var(--text-primary);
    }
    .article-body ul, .article-body ol {
      margin: 0 0 24px 24px;
      color: var(--text-primary);
    }
    .article-body li {
      margin-bottom: 8px;
      line-height: 1.7;
    }
    .article-body strong {
      color: var(--accent);
      font-weight: 600;
    }
    .article-body blockquote {
      border-left: 3px solid var(--accent);
      margin: 32px 0;
      padding: 20px 24px;
      background: var(--accent-dim);
      font-style: italic;
      color: var(--text-secondary);
      font-size: 18px;
      line-height: 1.7;
    }
    .article-body blockquote p { margin-bottom: 0; color: var(--text-secondary); }
    .article-body a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.3s;
    }
    .article-body a:hover { color: var(--accent-hover); }

    /* Back link */
    .back-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-body); font-weight: 600;
      font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent); transition: color 0.3s;
      margin-bottom: 48px;
      text-decoration: none;
    }
    .back-link:hover { color: var(--accent-hover); }

    /* ── CTA BANNER ── */
    .blog-cta {
      padding: 80px 0;
      text-align: center;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .blog-cta h2 {
      font-size: clamp(24px, 3vw, 36px);
      margin-bottom: 16px;
    }
    .blog-cta p {
      color: var(--text-secondary); font-size: 17px;
      max-width: 480px; margin: 0 auto 32px;
    }
    .blog-cta-btn {
      display: inline-block; padding: 14px 40px;
      background: var(--accent); color: var(--bg-primary);
      font-family: var(--font-body); font-weight: 600;
      font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
      transition: all 0.3s; text-decoration: none;
    }
    .blog-cta-btn:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
    }
    .blog-cta-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    /* ── FOOTER ── */
    .footer {
      padding: 48px 0;
      border-top: 1px solid var(--border);
      background: var(--bg-primary);
    }
    .footer-inner {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 24px;
    }
    .footer-logo {
      font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
      color: var(--text-primary);
    }
    .footer-logo span { color: var(--accent); }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a {
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--text-muted); transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--accent); }
    .footer-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
    .footer-copy { font-size: 13px; color: var(--text-muted); }

    /* ── BLOG HEADER ── */
    .blog-header {
      padding: 140px 0 48px;
      border-bottom: 1px solid var(--border);
    }
    .blog-header-label {
      font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
      margin-bottom: 12px;
    }
    .blog-header h1 {
      font-size: clamp(32px, 5vw, 56px);
      margin-bottom: 16px;
    }
    .blog-header p {
      color: var(--text-secondary); font-size: 17px; max-width: 540px;
    }

    /* ── BLOG GRID ── */
    .blog-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      padding: 40px 0;
    }
    .blog-card {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      padding: 40px 0;
      border-bottom: 1px solid var(--border);
    }
    .blog-card:last-child { border-bottom: none; }
    .blog-card-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 10px;
      color: var(--accent);
    }
    .blog-card-icon svg {
      width: 24px;
      height: 24px;
    }
    .blog-card-meta {
      font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 8px;
    }
    .blog-card-meta span { color: var(--accent); }
    .blog-card-body h2 {
      font-size: clamp(20px, 2.5vw, 26px);
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .blog-card-body p {
      color: var(--text-secondary); font-size: 15px; line-height: 1.7;
      margin-bottom: 12px;
    }
    .blog-card-link {
      font-family: var(--font-body); font-weight: 600;
      font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent); transition: color 0.3s;
    }
    .blog-card-link:hover { color: var(--accent-hover); }

    @media (max-width: 768px) {
      .blog-card { flex-direction: column; gap: 16px; }
      .blog-card-icon { width: 40px; height: 40px; padding: 8px; }
      .blog-card-icon svg { width: 20px; height: 20px; }
    }

    /* ── ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    @media (max-width: 768px) {
      .article-body { padding: 40px 20px 60px; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }
