*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --ink: #0A0A0A; --ink-2: #1C1C1C; --mist: #F5F4F0;
    --gold: #B8953A; --gold-light: #D4B065; --gold-dim: rgba(184,149,58,0.15);
    --white: #FFFFFF; --mid: #6B6B6B; --border: rgba(0,0,0,0.1);
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

  /* ─── NAV ─── */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.1rem 3rem; display: flex; justify-content: space-between; align-items: center; background: rgba(10,10,10,0.94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(184,149,58,0.18); }
  .nav-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold); }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold-light); }

  /* ─── HERO ─── */
  .hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; background-image: url('images/hero-roadshow.jpg'); background-size: cover; background-position: center 30%; }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.35) 100%); }
  .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,149,58,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(184,149,58,0.03) 1px, transparent 1px); background-size: 60px 60px; }
  .hero-content { position: relative; z-index: 2; padding: 8rem 3rem 4rem; max-width: 860px; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
  .hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
  .hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 900; color: var(--white); line-height: 1.06; margin-bottom: 1.5rem; }
  .hero-title em { color: var(--gold); font-style: normal; }
  .hero-sub { font-size: 1rem; color: rgba(255,255,255,0.57); font-weight: 300; line-height: 1.8; max-width: 560px; margin-bottom: 2.5rem; }
  .hero-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
  .hero-pill { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.9rem; border: 1px solid rgba(184,149,58,0.35); color: rgba(184,149,58,0.85); }
  .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { background: var(--gold); color: var(--ink); padding: 0.85rem 2rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: background 0.2s; }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-ghost { border: 1px solid rgba(255,255,255,0.28); color: rgba(255,255,255,0.78); padding: 0.85rem 2rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  /* ─── STATS ─── */
  .stats { background: var(--ink); padding: 3.2rem 3rem; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(184,149,58,0.22); }
  .stat { text-align: center; padding: 1rem; border-right: 1px solid rgba(255,255,255,0.06); }
  .stat:last-child { border-right: none; }
  .stat-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); }
  .stat-label { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 0.35rem; }

  /* ─── SHARED ─── */
  section { padding: 6rem 3rem; }
  .section-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3.5vw, 2.7rem); font-weight: 700; color: var(--ink); line-height: 1.15; }
  .section-title-white { color: var(--white); }
  .section-intro { font-size: 0.95rem; color: var(--mid); line-height: 1.8; max-width: 680px; margin-top: 1rem; }

  /* ─── ABOUT ─── */
  .about { background: var(--mist); display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start; }
  .about-img-wrap { position: sticky; top: 5.5rem; }
  .about-img { overflow: hidden; }
  .about-img img { width: 100%; display: block; object-fit: cover; object-position: center top; max-height: 500px; }
  .skills-tags-block { margin-top: 1.4rem; }
  .skills-tags-block h5 { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
  .skills-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .skill-tag { font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.35rem 0.8rem; border: 1px solid rgba(184,149,58,0.3); color: var(--gold); transition: background 0.2s; cursor: default; }
  .skill-tag:hover { background: rgba(184,149,58,0.08); }
  .skill-tag.soft { border-color: rgba(0,0,0,0.13); color: var(--mid); }
  .skill-tag.soft:hover { background: rgba(0,0,0,0.04); color: var(--ink); }
  .about-text p { color: var(--mid); line-height: 1.85; margin-bottom: 1.1rem; font-size: 0.93rem; }
  .about-text h2 { margin-bottom: 1.4rem; }
  .highlights-row { display: flex; flex-direction: column; gap: 0.45rem; margin: 1.1rem 0; }
  .highlight-stat { display: flex; align-items: baseline; gap: 0.6rem; background: rgba(184,149,58,0.07); border-left: 2px solid var(--gold); padding: 0.6rem 1rem; }
  .highlight-stat strong { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
  .highlight-stat span { font-size: 0.8rem; color: var(--mid); line-height: 1.4; }

  /* ─── TIMELINE ─── */
  .timeline-section { background: var(--ink); padding: 6rem 3rem; }
  .timeline { margin-top: 3rem; position: relative; }
  .timeline::before { content: ''; position: absolute; left: 160px; top: 0; bottom: 0; width: 1px; background: rgba(184,149,58,0.18); }
  .timeline-item { display: grid; grid-template-columns: 160px 1fr; gap: 3rem; padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); position: relative; }
  .timeline-year { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--gold); text-align: right; padding-right: 2rem; padding-top: 0.2rem; line-height: 1.4; }
  .timeline-dot { position: absolute; left: 153px; top: 2.3rem; width: 13px; height: 13px; border: 2px solid var(--gold); background: var(--ink); border-radius: 50%; }
  .timeline-body h4 { color: var(--white); font-size: 0.98rem; font-weight: 600; margin-bottom: 0.3rem; }
  .timeline-body ul { color: rgba(255,255,255,0.4); font-size: 0.83rem; line-height: 1.7; list-style: none; margin-top: 0.5rem; }
  .timeline-body ul li { padding-left: 1rem; position: relative; margin-bottom: 0.3rem; }
  .timeline-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.4; }
  .timeline-org { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem; }

  /* ─── CAMPAIGN GRID ─── */
  .portfolio { background: var(--white); }
  .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .campaign-card { background: var(--mist); overflow: hidden; cursor: pointer; }
  .campaign-card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
  .campaign-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; display: block; }
  .campaign-card:hover .campaign-card-img img { transform: scale(1.06); }
  .cam-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem; background: linear-gradient(transparent, rgba(0,0,0,0.82)); }
  .cam-cat { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
  .cam-body { padding: 1.1rem 1.3rem 1.3rem; }
  .cam-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
  .cam-meta { font-size: 0.75rem; color: var(--mid); line-height: 1.5; }
  .cam-result { font-size: 0.75rem; color: var(--gold); margin-top: 0.4rem; font-weight: 500; }

  /* Marathon card */
  .marathon-card { position: relative; overflow: hidden; cursor: pointer; }
  .marathon-img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; transition: transform 0.5s; filter: saturate(0.8) contrast(1.05); }
  .marathon-card:hover .marathon-img { transform: scale(1.04); }
  .marathon-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(8,5,0,0.5) 0%, rgba(0,0,0,0.78) 65%, rgba(0,0,0,0.92) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem; }
  .marathon-eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .marathon-headline { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 0.45rem; }
  .marathon-headline em { color: var(--gold); font-style: normal; display: block; }
  .marathon-sub { font-size: 0.76rem; color: rgba(255,255,255,0.52); line-height: 1.55; margin-bottom: 0.9rem; }
  .marathon-badge { display: inline-flex; align-items: center; gap: 0.4rem; border: 1px solid rgba(184,149,58,0.45); padding: 0.3rem 0.75rem; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); width: fit-content; }

  /* APAS card */
  .apas-card { position: relative; overflow: hidden; cursor: pointer; }
  .apas-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.45s; }
  .apas-card:hover .apas-img { transform: scale(1.04); }
  .apas-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.78) 100%); }
  .apas-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem; }
  .apas-cat { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
  .apas-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; line-height: 1.2; }
  .apas-meta { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
  .apas-result { font-size: 0.72rem; color: var(--gold); margin-top: 0.35rem; font-weight: 500; }

  /* Metric card */
  .metric-card-img { background: #F5F4F0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.3rem; min-height: 200px; }
  .metric-big { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--gold); font-weight: 700; }
  .metric-divider { width: 28px; height: 1px; background: rgba(184,149,58,0.35); }
  .metric-sub { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }

  /* ─── BRAND SECTION ─── */
  .brand-section { background: var(--ink); padding: 6rem 3rem; }
  .brand-section .section-title { color: var(--white); }
  .brand-intro { font-size: 0.95rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 700px; margin-top: 0.75rem; margin-bottom: 3rem; }
  .brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .brand-card { background: #141414; overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.25s; }
  .brand-card:hover { border-color: rgba(184,149,58,0.3); }
  .brand-card-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
  .brand-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s; }
  .brand-card:hover .brand-card-img img { transform: scale(1.05); }
  .brand-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%); }
  .brand-card-body { padding: 1.2rem 1.4rem 1.5rem; }
  .brand-card-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .brand-card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
  .brand-card-desc { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.65; }
  .brand-card-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.9rem; }
  .brand-tag { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.65rem; border: 1px solid rgba(184,149,58,0.22); color: rgba(184,149,58,0.65); }

  /* Film card — special dark cinematic */
  .film-card { background: linear-gradient(135deg, #0e0c08 0%, #1a1408 100%); border: 1px solid rgba(184,149,58,0.12); padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 280px; transition: border-color 0.25s; }
  .film-card:hover { border-color: rgba(184,149,58,0.35); }
  .film-icon { width: 48px; height: 48px; border: 1px solid rgba(184,149,58,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
  .film-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .film-card-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .film-card-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 0.7rem; }
  .film-card-desc { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.65; }
  .film-card-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1rem; }
  .film-award { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(184,149,58,0.08); border: 1px solid rgba(184,149,58,0.2); padding: 0.3rem 0.75rem; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 0.9rem; width: fit-content; }

  /* ─── CULTURAL SECTION ─── */
  .cultural-section { background: var(--mist); padding: 6rem 3rem; }
  .cultural-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
  .cultural-img { overflow: hidden; }
  .cultural-img img { width: 100%; height: 480px; object-fit: cover; object-position: center 20%; display: block; }
  .cultural-content h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; line-height: 1.2; }
  .cultural-content h3 em { color: var(--gold); font-style: normal; }
  .cultural-content p { color: var(--mid); font-size: 0.91rem; line-height: 1.85; margin-bottom: 0.9rem; }
  .cultural-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }
  .cultural-pill { font-size: 0.67rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.85rem; border: 1px solid rgba(184,149,58,0.3); color: var(--gold); }
  .cultural-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
  .c-stat { background: var(--white); padding: 1.1rem; border-left: 2px solid var(--gold); }
  .c-stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; }
  .c-stat-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-top: 0.2rem; }

  /* ─── SKILLS ─── */
  .skills { background: var(--white); }
  .skills-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 3rem; background: rgba(0,0,0,0.07); }
  .skill-item { padding: 1.8rem 1.1rem; background: var(--white); text-align: center; transition: background 0.2s; }
  .skill-item:hover { background: var(--mist); }
  .skill-icon { width: 38px; height: 38px; border: 1px solid rgba(184,149,58,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.7rem; }
  .skill-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .skill-name { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); line-height: 1.4; }

  /* ─── ACHIEVEMENTS ─── */
  .achievements { background: var(--ink-2); padding: 6rem 3rem; }
  .achievements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .achievement-card { border: 1px solid rgba(184,149,58,0.13); padding: 1.8rem; transition: border-color 0.2s; }
  .achievement-card:hover { border-color: rgba(184,149,58,0.38); }
  .achievement-icon { font-size: 1.3rem; margin-bottom: 0.9rem; color: var(--gold); }
  .achievement-card h4 { color: var(--white); font-size: 0.92rem; font-weight: 600; margin-bottom: 0.55rem; }
  .achievement-card p { color: rgba(255,255,255,0.38); font-size: 0.8rem; line-height: 1.65; }

  /* ─── CONTACT ─── */
  .contact { background: var(--white); text-align: center; }
  .contact-links { display: flex; justify-content: center; gap: 1.2rem; margin-top: 2.5rem; flex-wrap: wrap; }
  .contact-link { display: flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(0,0,0,0.13); color: var(--mid); padding: 0.85rem 1.6rem; text-decoration: none; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; transition: border-color 0.2s, color 0.2s; }
  .contact-link:hover { border-color: var(--gold); color: var(--gold); }
  .contact-divider { width: 36px; height: 1px; background: rgba(184,149,58,0.38); margin: 1.8rem auto; }
  .contact-email { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--ink); }

  footer { background: var(--ink); padding: 1.4rem 3rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); }
  footer p { font-size: 0.7rem; color: rgba(255,255,255,0.2); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1000px) {
    .about { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img-wrap { position: static; }
    .cultural-inner { grid-template-columns: 1fr; }
  }
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .timeline-section, .brand-section, .cultural-section, .achievements { padding: 4rem 1.5rem; }
    .stats { grid-template-columns: repeat(3, 1fr); }
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .portfolio-grid, .brand-grid { grid-template-columns: 1fr 1fr; }
    .skills-grid { grid-template-columns: repeat(3, 1fr); }
    .achievements-grid { grid-template-columns: 1fr 1fr; }
    .timeline::before { left: 80px; }
    .timeline-item { grid-template-columns: 80px 1fr; gap: 1.5rem; }
    .timeline-dot { left: 73px; }
  }
  @media (max-width: 600px) {
    .portfolio-grid, .brand-grid, .achievements-grid { grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-content { padding: 7rem 1.5rem 3rem; }
    .stats { grid-template-columns: repeat(2, 1fr); }
  }

  /* ─── CASE STUDY DEEP DIVES (added) ─── */
  .cs-deep { background: var(--white); padding: 6rem 3rem; }
  .cs-deep .section-title { color: var(--ink); }
  .cs-deep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .cs-thumb { background: var(--mist); overflow: hidden; cursor: pointer; border: 1px solid rgba(0,0,0,0.06); transition: border-color 0.25s, transform 0.25s; }
  .cs-thumb:hover { border-color: rgba(184,149,58,0.4); transform: translateY(-3px); }
  .cs-thumb-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }
  .cs-thumb-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s; }
  .cs-thumb:hover .cs-thumb-img img { transform: scale(1.05); }
  .cs-thumb-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.65) 100%); }
  .cs-thumb-body { padding: 1.2rem 1.4rem 1.5rem; background: var(--white); }
  .cs-thumb-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .cs-thumb-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; line-height: 1.2; }
  .cs-thumb-excerpt { font-size: 0.8rem; color: var(--mid); line-height: 1.65; margin-bottom: 0.75rem; }
  .cs-thumb-read { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 600; }
  .cs-thumb-read::after { content: '→'; transition: transform 0.2s; }
  .cs-thumb:hover .cs-thumb-read::after { transform: translateX(3px); }
  /* Modal */
  .cs-modal-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 200; overflow-y: auto; backdrop-filter: blur(6px); }
  .cs-modal-bg.open { display: block; }
  .cs-modal { max-width: 820px; margin: 5rem auto; background: var(--white); position: relative; }
  .cs-modal-close { position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: 1px solid rgba(0,0,0,0.15); width: 36px; height: 36px; cursor: pointer; font-size: 1.1rem; color: var(--mid); display: flex; align-items: center; justify-content: center; z-index: 10; }
  .cs-modal-close:hover { border-color: var(--gold); color: var(--gold); }
  .cs-modal-hero { width: 100%; height: 320px; object-fit: cover; display: block; }
  .cs-modal-body { padding: 2.5rem; }
  .cs-modal-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
  .cs-modal-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 1.5rem; }
  .cs-modal-section { margin-bottom: 1.4rem; }
  .cs-modal-section-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; border-left: 2px solid var(--gold); padding-left: 0.6rem; }
  .cs-modal-body p { color: var(--mid); font-size: 0.9rem; line-height: 1.85; margin-bottom: 0.8rem; }
  .cs-modal-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.07); }
  .cs-modal-tag { font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.32rem 0.75rem; border: 1px solid rgba(184,149,58,0.3); color: var(--gold); }
  @media (max-width: 900px) { .cs-deep-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .cs-deep-grid { grid-template-columns: 1fr; } }