  /* ============ HEADER — GLASS CREAM ============ */
  body {
    padding-top: 0;
    background: var(--white);
  }
  body::before { display: none; }
  .site-header {
    position: relative; width: 100%;
    background: transparent;
    z-index: 1000;
  }
  .brand-name {
    font-family: var(--font-heading);
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--warm-brown);
    white-space: nowrap;
  }
  .brand-logo { height: 22px; width: auto; display: block; }
  .header-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253, 249, 242, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(236, 217, 184, 0.5);
    transition: box-shadow 0.3s ease;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 40px;
    gap: 24px;
  }
  .header-nav.scrolled { box-shadow: 0 4px 20px rgba(139, 111, 63, 0.1); }
  .header-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .header-right { display: flex; align-items: center; gap: 32px; }
  .header-menu { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
  .header-menu a {
    font-family: var(--font-body);
    font-size: 14px; font-weight: 700;
    color: var(--text-soft); text-decoration: none;
    letter-spacing: 0.04em;
    padding: 4px 0; position: relative;
    transition: color 0.3s ease;
  }
  .header-menu a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px; background: var(--mesh-gold);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  }
  .header-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header-menu a.active { color: var(--antique-gold); }
  .header-menu a.active::after { transform: scaleX(1); }
  .header-utils { display: flex; align-items: center; gap: 8px; }
  .header-icon-btn {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: 1px solid transparent;
    border-radius: 50%; color: var(--warm-brown);
    cursor: pointer; text-decoration: none;
    transition: all 0.3s ease;
  }
  .header-icon-btn:hover {
    background: var(--mesh-gold-subtle);
    border-color: var(--border); color: var(--antique-gold);
  }
  .header-icon-btn svg { width: 16px; height: 16px; }

  main { padding-top: 0; }

  /* ============ NEWS PAGE ============ */
  .news-section {
    padding: 140px 40px 120px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .news-section-head {
    text-align: center;
    margin-bottom: 64px;
  }
  .news-section-head .section-num {
    display: inline-block; margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--antique-gold);
  }
  .news-section-head h1 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--heading);
    font-weight: 500;
    margin: 0;
  }
  .news-section-head h1 em {
    font-style: italic; font-weight: 400;
    color: var(--heading);
  }

  .news-list {
    display: flex; flex-direction: column;
    gap: 0;
  }
  .news-item {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    padding: 36px 0;
    border-top: 1px solid var(--border-soft);
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease;
  }
  .news-item:last-child {
    border-bottom: 1px solid var(--border-soft);
  }
  .news-item:hover {
    background: rgba(244, 228, 193, 0.18);
  }
  .news-item-img {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background-size: cover;
    background-position: center top;
    background-color: var(--porcelain);
    transition: transform 0.4s ease;
  }
  .news-item:hover .news-item-img {
    transform: scale(1.02);
  }
  .news-item-body { min-width: 0; }
  .news-item-meta {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--antique-gold);
    margin-bottom: 14px;
  }
  .news-item-meta .news-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--antique-gold);
    opacity: 0.5;
  }
  .news-item h3 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--heading);
    font-weight: 500;
    margin: 0 0 18px;
  }
  .news-item-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
  }
  .news-item-date {
    font-family: var(--font-body);
    font-size: 12px; letter-spacing: 0.18em;
    color: var(--text-soft);
  }
  .news-item-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--warm-brown);
    transition: color 0.3s ease;
  }
  .news-item:hover .news-item-link { color: var(--antique-gold); }
  .news-item-link svg { width: 14px; height: 14px; }

  .footer-wrap { width: 100%; padding: 0; }
  .footer-wrap .site-footer { border-radius: 0; }
  .footer-top.footer-top-3col { grid-template-columns: 1.4fr 1fr 1fr; gap: 64px; }

  @media (max-width: 900px) {
    .header-nav { padding: 10px 20px; gap: 12px; flex-wrap: wrap; }
    .header-right { gap: 16px; }
    .header-menu { gap: 16px; flex-wrap: wrap; }
    .header-menu a { font-size: 13px; font-weight: 700; }
    .news-section { padding: 110px 24px 80px; }
    .news-section-head { margin-bottom: 40px; }
    .news-item {
      grid-template-columns: 120px 1fr;
      gap: 16px;
      padding: 22px 0;
    }
    .news-item-img { aspect-ratio: 1 / 1; max-width: none; margin: 0; }
    .news-item h3 { font-size: 16px !important; line-height: 1.3 !important; margin-bottom: 10px; }
    .news-item-meta { font-size: 9px; letter-spacing: 0.2em; margin-bottom: 8px; }
    .news-item-date { font-size: 11px; letter-spacing: 0.12em; }
    .news-item-link { font-size: 10px; letter-spacing: 0.18em; gap: 6px; }
    .news-item-link svg { width: 12px; height: 12px; }
    .footer-top.footer-top-3col { grid-template-columns: 1fr; gap: 32px; }
  }
