:root {
    --gold: #c88922;
    --gold-light: #e5a83b;
    --gold-dim: rgba(200,137,34,0.12);
    --dark: #06243c;
    --dark2: #0b324f;
    --dark3: #04182a;
    --parchment: #fbf8f2;
    --parchment2: #f0e7d8;
    --text: #112033;
    --text-muted: #5d6878;
    --text-dim: #87909f;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--parchment);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── LANG SWITCHER ── */
  .lang-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 48px;
    height: 56px;
    background: rgba(4,24,42,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200,137,34,0.22);
  }

  .lang-bar .brand {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #f0ece4;
    text-decoration: none;
  }

  .lang-switcher {
    display: flex;
    gap: 6px;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-link {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(240,236,228,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-link:hover { color: #f0ece4; }

  .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(240,236,228,0.5);
    padding: 4px 8px;
    transition: color 0.2s;
  }

  .lang-btn:hover { color: #f0ece4; }
  .lang-btn.active { color: #f0ece4; }

  .lang-sep {
    color: rgba(240,236,228,0.25);
    font-size: 11px;
    line-height: 28px;
  }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    align-items: center;
    min-height: 720px;
    padding: 118px 48px 86px;
    gap: 60px;
    position: relative;
    background:
      linear-gradient(90deg, rgba(4,24,42,0.96) 0%, rgba(4,24,42,0.86) 45%, rgba(4,24,42,0.36) 100%),
      url("hero-grain-terminal.png") center / cover;
    color: #fff;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.65;
  }

  .hero-content { max-width: 760px; }

  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold-light);
  }

  .hero-name {
    font-family: var(--serif);
    max-width: 760px;
    font-size: clamp(48px, 6.2vw, 84px);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0;
  }

  .hero-title {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--gold-light);
    margin-bottom: 24px;
  }

  .hero-sub {
    font-family: var(--serif);
    max-width: 690px;
    font-size: clamp(20px, 2.2vw, 29px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .hero-location {
    font-size: 12px;
    color: rgba(255,255,255,0.68);
    letter-spacing: 1px;
    margin-bottom: 26px;
  }

  .hero-cta {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: #201607;
    text-decoration: none;
    border: 1px solid rgba(229,168,59,0.7);
    background: linear-gradient(180deg, #efb84a, var(--gold));
    padding: 14px 32px;
    transition: all 0.3s;
  }

  .hero-cta:hover {
    background: linear-gradient(180deg, #f4c561, var(--gold));
    border-color: var(--gold-light);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin: 32px 0 28px;
  }

  .hero-cta.secondary {
    color: #fff;
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.55);
  }

  .hero-cta.secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.85);
  }

  .hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    max-width: 760px;
    list-style: none;
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .hero-proof li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 8px 2px 0;
    border-radius: 50%;
    background: var(--gold-light);
  }

  .hero-photo {
    display: none;
    align-self: end;
    aspect-ratio: 4 / 5;
    background: rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: -8px 18px 34px rgba(0,0,0,0.24);
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-bottom: 1px solid rgba(17,32,51,0.08);
    box-shadow: 0 10px 32px rgba(17,32,51,0.06);
  }

  .trust-strip div {
    min-height: 94px;
    padding: 22px clamp(18px, 3vw, 38px);
    border-right: 1px solid rgba(17,32,51,0.1);
  }

  .trust-strip div:last-child {
    border-right: 0;
  }

  .trust-strip strong {
    display: block;
    color: var(--dark);
    font-family: var(--sans);
    font-size: clamp(15px, 1.45vw, 20px);
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .trust-strip span {
    display: block;
    max-width: 190px;
    margin-top: 9px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 1.2px;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .hero-photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--text-dim);
    font-size: 11px;
    letter-spacing: 1px;
  }

  .hero-photo-placeholder svg {
    opacity: 0.2;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 96px 48px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
  }

  .section-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }

  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(122,31,46,0.2), transparent);
    margin: 0 48px;
  }

  /* ── ABOUT ── */
  .about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    gap: 64px;
    margin-top: 48px;
    align-items: center;
  }

  .about-text {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
  }

  .about-name {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--text);
    margin: 0 0 6px;
    letter-spacing: 0.01em;
  }

  .about-role {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 28px;
  }

  .about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .about-side {
    display: grid;
    gap: 18px;
  }

  .about-portrait {
    overflow: hidden;
    border: 1px solid rgba(17,32,51,0.12);
    background: var(--dark3);
    box-shadow: 0 18px 45px rgba(17,32,51,0.12);
  }

  .about-portrait img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 22%;
  }

  .about-fact {
    border-left: 1px solid rgba(122,31,46,0.25);
    padding-left: 18px;
  }

  .about-fact-num {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .about-fact-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-muted);
  }

  .about-fact-wide {
    grid-column: 1 / -1;
  }

  /* ── SERVICES ── */
  #services { background: #efece5; }

  .services-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 48px;
  }

  .services-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
  }

  .service-item {
    border-left: 1px solid rgba(122,31,46,0.25);
    padding: 16px 0 16px 24px;
    border-bottom: 1px solid rgba(122,31,46,0.12);
    transition: border-left-color 0.2s;
  }

  .service-item:first-child { border-top: 1px solid rgba(122,31,46,0.12); }
  .service-item:hover { border-left-color: var(--gold); }

  .service-title {
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.4;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 40px;
  }

  .service-card {
    min-height: 230px;
    padding: 28px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(17,32,51,0.1);
    box-shadow: 0 18px 45px rgba(17,32,51,0.1);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  }

  .service-card:hover,
  .service-card:focus-visible {
    border-color: rgba(200,137,34,0.45);
    box-shadow: 0 22px 52px rgba(17,32,51,0.16);
    outline: none;
    transform: translateY(-2px);
  }

  .service-num {
    display: block;
    margin-bottom: 22px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
  }

  .service-card p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
  }

  .service-card::after {
    content: 'Discuss this →';
    display: inline-block;
    margin-top: 22px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .advice-band {
    background:
      linear-gradient(120deg, rgba(4,24,42,0.97), rgba(11,50,79,0.94)),
      url("hero-grain-terminal.png") center / cover;
    color: #fff;
  }

  .advice-band .section-label,
  .advice-band .section-title {
    color: #fff;
  }

  .advice-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 56px;
    align-items: start;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
  }

  .advice-copy {
    margin-top: 22px;
    color: rgba(255,255,255,0.82);
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.65;
  }

  .advice-list {
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
  }

  .advice-list h3 {
    margin-bottom: 18px;
    color: #fff;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 300;
  }

  .advice-list ul {
    padding-left: 18px;
  }

  .advice-list li {
    margin: 10px 0;
    color: rgba(255,255,255,0.86);
  }

  .advice-list li::marker {
    color: var(--gold-light);
  }

  /* ── AUTHORITY ── */
  .authority-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    margin-top: 32px;
    align-items: center;
  }

  .authority-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 20px;
  }

  .authority-item::after {
    content: '·';
    color: var(--text-dim);
    font-size: 14px;
  }

  .authority-item:last-child::after { display: none; }

  .authority-tag {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--gold);
    opacity: 0.5;
  }

  .authority-name {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 300;
    color: var(--text);
  }

  /* ── TELEGRAM ── */
  #telegram { background: var(--parchment2); }

  .telegram-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 48px;
  }

  .telegram-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
  }

  .telegram-link {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .telegram-link:hover { opacity: 1; }

  .tg-widget-wrap {
    border: 1px solid rgba(158,123,44,0.2);
    overflow: hidden;
    background: var(--parchment);
  }

  .tg-note {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 16px;
    font-style: italic;
  }

  /* ── CONTACT ── */
  #contact {
    background:
      linear-gradient(135deg, rgba(4,24,42,0.98), rgba(6,36,60,0.94)),
      url("hero-grain-terminal.png") center / cover !important;
    color: #fff;
    position: relative;
  }

  #contact::before {
    content: '';
    position: absolute;
    top: 0; left: 48px; right: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.75;
  }

  .contact-block {
    text-align: center;
    padding: 96px 48px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
  }

  .contact-title {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .contact-sub {
    font-family: var(--serif);
    font-size: 19px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 14px;
    line-height: 1.6;
  }

  .contact-note {
    max-width: 590px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,0.64);
    font-size: 13px;
    line-height: 1.65;
  }

  .contact-form-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  #contact input,
  #contact textarea {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.24) !important;
    padding: 14px 15px !important;
    color: #fff !important;
    font-size: 14px !important;
  }

  #contact input:focus,
  #contact textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(200,137,34,0.14);
  }

  #contact label {
    color: rgba(255,255,255,0.72) !important;
    font-weight: 600 !important;
  }

  #contact button[type="submit"] {
    background: linear-gradient(180deg, #efb84a, var(--gold)) !important;
    border-color: rgba(229,168,59,0.8) !important;
    color: #201607 !important;
    font-weight: 700 !important;
    min-width: 240px;
    box-shadow: 0 14px 30px rgba(104,67,13,0.2);
  }

  #contact button[type="submit"]:hover {
    background: linear-gradient(180deg, #f4c561, var(--gold)) !important;
    border-color: var(--gold-light) !important;
  }

  #contact .section-label,
  #contact .contact-email-note {
    color: var(--gold-light);
  }

  .contact-email {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(122,31,46,0.4);
    padding: 16px 40px;
    transition: all 0.3s;
    opacity: 0.5;
    cursor: default;
    position: relative;
  }

  .contact-email-note {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 16px;
    letter-spacing: 0.5px;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid rgba(229,168,59,0.18);
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark3);
  }

  footer .foot-left {
    font-size: 11px;
    color: rgba(255,255,255,0.46);
    letter-spacing: 0.5px;
  }

  footer .foot-right {
    font-size: 11px;
    color: rgba(255,255,255,0.46);
    letter-spacing: 0.5px;
  }

  footer a {
    color: rgba(255,255,255,0.58);
    text-decoration: none;
  }

  footer a:hover { color: var(--gold-light); }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .lang-bar { padding: 0 20px; }
    .lang-bar .brand { font-size: 10px; letter-spacing: 2.3px; }
    .nav-right { gap: 10px; }
    .nav-links { display: none; }

    .hero {
      grid-template-columns: 1fr;
      padding: 90px 24px 60px;
      gap: 40px;
      min-height: auto;
      background:
        linear-gradient(180deg, rgba(4,24,42,0.96), rgba(4,24,42,0.88)),
        url("hero-grain-terminal.png") center / cover;
    }

    .hero-photo {
      display: none;
    }

    .section { padding: 64px 24px; }
    .section-divider { margin: 0 24px; }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .trust-strip {
      grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip div {
      min-height: auto;
      border-bottom: 1px solid rgba(17,32,51,0.1);
    }

    .trust-strip div:nth-child(2n) {
      border-right: 0;
    }

    .about-portrait img {
      aspect-ratio: 4 / 3.4;
    }

    .services-inner { padding: 64px 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-actions, .hero-cta { width: 100%; text-align: center; justify-content: center; }
    .hero-proof { font-size: 11px; }
    .advice-grid { grid-template-columns: 1fr; gap: 34px; }

    .authority-row { gap: 12px 0; }
    .authority-item { padding-right: 14px; }

    .telegram-inner { padding: 64px 24px; }
    .telegram-header { flex-direction: column; align-items: flex-start; gap: 16px; }

    .contact-block { padding: 64px 24px; }
    footer { padding: 24px; flex-direction: column; gap: 8px; text-align: center; }
  }

  /* ── FADE IN ── */
  .fade-in { opacity: 1; }

  /* ── BLOG ── */
  #blog { background: var(--dark3); }

  .blog-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 48px;
  }

  .blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }

  .blog-header-left {}

  .blog-section-title {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: 10px;
    letter-spacing: 0.3px;
  }

  .notes-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 48px;
    align-items: start;
    margin-top: 28px;
  }

  .notes-heading {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 18px;
  }

  .notes-desc {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 24px;
  }

  .notes-all {
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(122,31,46,.35);
    padding: 13px 22px;
    transition: all 0.2s;
  }

  .notes-all:hover {
    background: rgba(122,31,46,0.06);
    border-color: var(--gold);
  }

  .note-link {
    display: block;
    text-decoration: none;
    border-top: 1px solid rgba(122,31,46,.22);
    padding: 18px 0;
    color: var(--text);
  }

  .note-link:last-child {
    border-bottom: 1px solid rgba(122,31,46,.22);
  }

  .note-tag {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .note-title {
    display: block;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--dark);
  }

  .blog-grid { display: none; }

  #blog-teaser-grid {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
  }

  .blog-list-item {
    display: grid;
    grid-template-columns: 180px 1fr 24px;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(122,31,46,0.1);
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .blog-list-item:first-child { border-top: 1px solid rgba(122,31,46,0.1); }
  .blog-list-item:hover { opacity: 0.7; }

  .blog-list-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-shrink: 0;
  }

  .blog-list-tag {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--gold);
  }

  .blog-list-date {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
  }

  .blog-list-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.3;
  }

  .blog-list-arrow {
    font-size: 14px;
    color: var(--text-dim);
    text-align: right;
  }

  .blog-card {
    background: var(--parchment);
    padding: 36px 32px;
    border: 1px solid rgba(122,31,46,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s, background 0.25s;
    cursor: pointer;
    text-decoration: none;
  }

  .blog-card:hover {
    border-color: rgba(122,31,46,0.35);
    background: #f0ece3;
  }

  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .blog-card-tag {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold);
    opacity: 0.6;
  }

  .blog-card-date {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.5px;
  }

  .blog-card-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.35;
    flex-grow: 1;
  }

  .blog-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .blog-card-read {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.2s;
    margin-top: 4px;
  }

  .blog-card:hover .blog-card-read {
    opacity: 0.7;
  }

  /* Featured first card */
  .blog-card.blog-card--featured {
    grid-column: span 2;
    grid-row: span 1;
    border-color: rgba(122,31,46,0.12);
  }

  .blog-card.blog-card--featured .blog-card-title {
    font-size: 26px;
  }

  .blog-coming {
    grid-column: span 3;
    padding: 48px 32px;
    border: 1px dashed rgba(122,31,46,0.12);
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .blog-coming-line {
    width: 24px;
    height: 1px;
    background: rgba(122,31,46,0.3);
    flex-shrink: 0;
  }

  .blog-coming-text {
    font-family: var(--serif);
    font-size: 15px;
    font-style: italic;
    color: var(--text-dim);
  }

  @media (max-width: 768px) {
    .blog-inner { padding: 64px 24px; }
    .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .blog-list-item { grid-template-columns: 1fr 20px; gap: 8px; }
    .blog-list-meta { display: none; }
    .notes-grid { grid-template-columns: 1fr; gap: 28px; }
    .notes-heading { font-size: 28px; }
    .note-title { font-size: 16px; }
  }
