 * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #ffffff;
      color: #111111;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { display: block; width: 100%; }
    button { font-family: inherit; }

    :root {
      --red: #d6001c;
      --red-hover: #b80018;
      --text: #111111;
      --text-2: #444444;
      --text-3: #777777;
      --bg: #ffffff;
      --bg-soft: #f7f7f8;
      --line: #ececec;
      --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
      --radius: 18px;
      --container: 1380px;
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .nav-left {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .mobile-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 12px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
    }
    .mobile-menu-btn span {
      display: block;
      width: 18px;
      height: 2px;
      background: #111;
      border-radius: 999px;
    }
    .logo {
      font-size: 30px;
      font-weight: 900;
      letter-spacing: 1px;
      color: #111;
    }
    .logo span { color: var(--red); }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 15px;
      color: #222;
    }
    .nav-menu a:hover { color: var(--red); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      transition: .25s ease;
      cursor: pointer;
      border: none;
    }
    .btn-primary {
      background: var(--red);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--red-hover);
      transform: translateY(-1px);
    }
    .btn-outline {
      border: 1px solid #d8d8d8;
      color: #111;
      background: #fff;
    }
    .btn-outline:hover {
      border-color: var(--red);
      color: var(--red);
    }

    /* Mobile drawer */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.35);
      opacity: 0;
      visibility: hidden;
      transition: .25s ease;
      z-index: 1200;
    }
    .drawer-overlay.show {
      opacity: 1;
      visibility: visible;
    }
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -320px;
      width: 300px;
      max-width: 82vw;
      height: 100vh;
      background: #fff;
      z-index: 1300;
      box-shadow: 10px 0 30px rgba(0,0,0,.12);
      transition: .28s ease;
      display: flex;
      flex-direction: column;
    }
    .mobile-drawer.show { left: 0; }
    .drawer-head {
      height: 78px;
      padding: 0 18px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .drawer-close {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: #fff;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }
    .drawer-nav {
      padding: 12px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .drawer-nav a {
      padding: 14px 12px;
      border-radius: 12px;
      color: #111;
      font-weight: 700;
      transition: .2s ease;
    }
    .drawer-nav a:hover {
      background: #f7f7f8;
      color: var(--red);
    }
    .drawer-actions {
      padding: 0 18px 20px;
      display: grid;
      gap: 12px;
    }

    /* Page hero */
    .page-hero {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.85) 42%, rgba(255,255,255,.35) 100%),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      border-bottom: 1px solid var(--line);
    }
    .page-hero::before {
      content: "";
      position: absolute;
      right: 6%;
      top: 60px;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(214,0,28,.08), rgba(214,0,28,0));
    }
    .page-hero-content {
      position: relative;
      z-index: 2;
      padding: 70px 0;
      max-width: 760px;
    }
    .eyebrow {
      color: var(--red);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .page-hero h1 {
      font-size: 64px;
      line-height: 1.04;
      font-weight: 900;
      margin-bottom: 16px;
      color: #111;
    }
    .page-hero p {
      color: #555;
      font-size: 18px;
      max-width: 650px;
    }

    section { padding: 84px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 34px;
    }
    .section-head h2 {
      font-size: 42px;
      line-height: 1.1;
      font-weight: 900;
      color: #111;
    }
    .section-head p {
      color: #777;
      max-width: 640px;
    }

    /* Updates */
    .updates {
      background: #fff;
    }
    .updates-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
    }
    .updates-feature {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
      transition: .25s ease;
    }
    .updates-feature:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: #f0c2c8;
    }
    .updates-feature-media {
      height: 380px;
      overflow: hidden;
    }
    .updates-feature-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s ease;
    }
    .updates-feature:hover .updates-feature-media img {
      transform: scale(1.04);
    }
    .updates-feature-body {
      padding: 28px;
    }
    .news-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }
    .news-date {
      font-size: 13px;
      color: #888;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .updates-feature-title {
      font-size: 34px;
      font-weight: 900;
      line-height: 1.2;
      color: #111;
      margin-bottom: 14px;
    }
    .updates-feature-desc {
      color: #666;
      margin-bottom: 20px;
      font-size: 15px;
    }

    .updates-side {
      display: grid;
      gap: 18px;
    }
    .update-mini {
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 16px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
      transition: .25s ease;
      min-height: 154px;
    }
    .update-mini:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: #f0c2c8;
    }
    .update-mini-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .update-mini-body {
      padding: 18px 18px 18px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .update-mini-title {
      font-size: 19px;
      font-weight: 900;
      color: #111;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .update-mini p {
      font-size: 14px;
      color: #666;
    }

    /* Latest News */
    .latest-news {
      background: #fafafa;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .news-list {
      display: grid;
      gap: 18px;
    }
    .news-list-item {
      display: grid;
      grid-template-columns: 280px 1fr auto;
      gap: 22px;
      align-items: center;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
      padding-right: 18px;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
      transition: .25s ease;
    }
    .news-list-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: #f0c2c8;
    }
    .news-list-media {
      height: 180px;
      overflow: hidden;
    }
    .news-list-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .news-list-content {
      padding: 22px 0;
    }
    .news-list-title {
      font-size: 28px;
      font-weight: 900;
      line-height: 1.25;
      color: #111;
      margin-bottom: 10px;
    }
    .news-list-desc {
      color: #666;
      font-size: 15px;
      max-width: 880px;
    }

    /* Featured stories */
    .featured-stories {
      background: #fff;
    }
    .stories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .story-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
      transition: .25s ease;
    }
    .story-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: #f0c2c8;
    }
    .story-media {
      height: 240px;
      overflow: hidden;
    }
    .story-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s ease;
    }
    .story-card:hover .story-media img {
      transform: scale(1.05);
    }
    .story-body {
      padding: 22px;
    }
    .story-title {
      font-size: 24px;
      font-weight: 900;
      line-height: 1.25;
      color: #111;
      margin-bottom: 10px;
    }
    .story-desc {
      color: #666;
      font-size: 14px;
      margin-bottom: 16px;
    }

    /* CTA */
    .cta-box {
      background:
        linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.86)),
        url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      box-shadow: 0 6px 20px rgba(0,0,0,.03);
    }
    .cta-box h3 {
      font-size: 38px;
      line-height: 1.1;
      font-weight: 900;
      color: #111;
      margin-bottom: 10px;
    }
    .cta-box p {
      color: #666;
      max-width: 700px;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--line);
      background: #fafafa;
      padding: 28px 0;
    }
    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      color: #777;
      font-size: 14px;
    }

    @media (max-width: 1200px) {
      .updates-grid { grid-template-columns: 1fr; }
      .stories-grid { grid-template-columns: repeat(2, 1fr); }
      .news-list-item { grid-template-columns: 240px 1fr; }
      .news-list-item .btn { display: none; }
    }
    @media (max-width: 992px) {
      .nav-menu, .nav-actions { display: none; }
      .mobile-menu-btn { display: inline-flex; }
      .page-hero h1 { font-size: 48px; }
      .section-head { flex-direction: column; align-items: flex-start; }
      .section-head h2 { font-size: 34px; }
      .cta-box { flex-direction: column; align-items: flex-start; }
      .stories-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .page-hero { min-height: 340px; }
      .page-hero h1 { font-size: 38px; }
      .news-list-item { grid-template-columns: 1fr; padding-right: 0; }
      .news-list-media { height: 220px; }
      .update-mini { grid-template-columns: 1fr; }
      .update-mini-body { padding: 18px; }
      .cta-box { padding: 28px; }
      .cta-box h3 { font-size: 30px; }
      .topbar .nav, .drawer-head { height: 70px; }
      .updates-feature-title { font-size: 28px; }
      .news-list-title { font-size: 22px; }
    }
    .site-footer{
  background:#f3f3f3;
  margin-top:60px;
  border-top:1px solid #e5e5e5;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:80px;
  padding:48px 0 36px;
}

.footer-col{
  flex:1;
  min-width:220px;
}

.footer-brand{
  flex:1.6;
}

.footer-logo a{
  font-size:20px;
  font-weight:700;
  color:#111;
  text-decoration:none;
  line-height:1.4;
}

.footer-desc{
  margin-top:18px;
  max-width:420px;
  font-size:15px;
  line-height:1.9;
  color:#444;
}

.footer-title{
  margin:0 0 18px;
  font-size:16px;
  font-weight:700;
  color:#6b4a1f;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.footer-links{
  margin:0;
  padding:0;
  list-style:none;
}

.footer-links li{
  margin-bottom:14px;
}

.footer-links a{
  color:#111;
  text-decoration:none;
  font-size:15px;
  line-height:1.7;
  transition:all .2s ease;
}

.footer-links a:hover{
  color:#8a5a22;
}

.footer-bottom{
  border-top:1px solid #e2e2e2;
  padding:16px 0;
  background:#efefef;
}

.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:14px;
  color:#555;
}

.footer-bottom-inner a{
  color:#111;
  text-decoration:none;
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:10px;
}

@media (max-width: 768px){
  .footer-inner{
    flex-direction:column;
    gap:30px;
    padding:36px 0 28px;
  }

  .footer-desc{
    max-width:none;
  }

  .footer-bottom-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}