:root {
    --forest: #0F4D3A; --red: #B71C1C; --gold: #D4AF37; --cream: #F8F4EE;
  }
  body { font-family: 'Montserrat', sans-serif; color: #2a2a2a; background: var(--cream); }
  h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 64px 0; }
  .hero { background: linear-gradient(135deg, var(--forest) 0%, #1a6b52 100%); color: #fff; text-align: center; padding: 80px 0 64px; }
  .hero h1 { font-size: 2.6rem; margin-bottom: 16px; font-weight: 700; }
  .hero p { font-size: 1.15rem; opacity: 0.9; max-width: 760px; margin: 0 auto 24px; }
  .text-gold { color: var(--gold); }
  .industry-section { margin-bottom: 56px; }
  .industry-title { font-size: 1.5rem; color: var(--forest); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
  .logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
  .logo-card { background: #fff; border: 1px solid #e8e3db; border-radius: 12px; padding: 16px; height: 140px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: transform .2s, box-shadow .2s; cursor: pointer; }
  .logo-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .logo-card img { max-height: 95px; max-width: 100%; width: auto; height: auto; object-fit: contain; }
  .click-hint { text-align: center; color: #666; font-size: 0.95rem; margin-top: 18px; font-style: italic; }
  .cta-section { background: var(--forest); color: #fff; text-align: center; }
  .cta-section h2 { font-size: 2rem; margin-bottom: 18px; }
  .btn-gold { display: inline-block; background: var(--gold); color: #1c1c1c; padding: 14px 32px; border-radius: 30px; font-weight: 700; text-decoration: none; }
  .btn-gold:hover { background: #e0b840; }
  .header { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
  .header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
  .nav { display: flex; gap: 20px; align-items: center; }
  .nav a { text-decoration: none; color: #2a2a2a; font-weight: 600; font-size: 0.9rem; }
  .nav a.active { color: var(--red); }
  .design-link { color: var(--gold) !important; }
  .header-actions { display: flex; align-items: center; gap: 14px; }
  .lang-switch a { font-size: 0.75rem; font-weight: 700; color: #666; text-decoration: none; padding: 4px 6px; }
  .lang-switch a.active { color: var(--red); }
  .mobile-menu-btn { display: none; background: none; border: none; font-size: 1.3rem; }
  .footer { background: #111; color: #fff; padding: 56px 0 24px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
  .footer-col h4 { color: var(--gold); margin-bottom: 16px; font-size: 1rem; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; }
  .footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid #333; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
  @media (max-width: 1024px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 80px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
    .nav.open { display: flex; }
    .mobile-menu-btn { display: block; }
    .logo-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .photo-grid { grid-template-columns: 1fr; }
  }
  .photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
  .photo-cell { background: #f8f4ee; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); position: relative; aspect-ratio: 4/3; display: flex; flex-direction: column; }
  .photo-cell img { flex: 1 1 auto; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; margin: auto; padding: 12px; box-sizing: border-box; }
  .photo-placeholder { position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center; color: #aaa; background: #f5f5f5; text-align: center; padding: 16px; }
  .photo-placeholder i { font-size: 2rem; margin-bottom: 8px; }
  .photo-caption { padding: 10px 12px; font-size: 0.8rem; color: #666; background: #fafafa; border-top: 1px solid #eee; text-align: center; }
  @media (min-width: 1200px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }