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

    :root {
      --bg: #ffffff;
      --bg-secondary: #f5f4f1;
      --bg-tertiary: #eeede9;
      --text: #111110;
      --text-secondary: #5f5e5a;
      --text-tertiary: #888780;
      --border: rgba(17,17,16,0.12);
      --border-md: rgba(17,17,16,0.22);
      --radius-md: 8px;
      --radius-lg: 12px;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.7;
    }

    a { color: inherit; text-decoration: none; }

    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 2.5rem;
      border-bottom: 0.5px solid var(--border);
      position: sticky;
      top: 0;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(12px);
      z-index: 100;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 3px;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      color: var(--text-secondary);
      letter-spacing: 0.3px;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text); }
    .nav-links a.active { color: var(--text); font-weight: 500; }

    .nav-cta {
      font-size: 12px;
      font-weight: 500;
      padding: 8px 18px;
      border: 0.5px solid var(--border-md);
      border-radius: 20px;
      cursor: pointer;
      background: transparent;
      color: var(--text);
      transition: background 0.2s, color 0.2s;
      font-family: 'DM Sans', sans-serif;
    }

    .nav-cta:hover { background: var(--text); color: var(--bg); }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      flex-direction: column;
      padding: 1.5rem 2.5rem;
      border-bottom: 0.5px solid var(--border);
      background: var(--bg);
      gap: 16px;
    }

    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 15px; color: var(--text-secondary); transition: color 0.2s; }
    .mobile-menu a.active, .mobile-menu a:hover { color: var(--text); }

    /* ── BUTTONS ── */
    .btn-primary {
      display: inline-block;
      font-size: 13px;
      font-weight: 500;
      padding: 11px 24px;
      background: var(--text);
      color: var(--bg);
      border: none;
      border-radius: 22px;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: opacity 0.2s;
    }

    .btn-primary:hover { opacity: 0.8; }

    .btn-ghost {
      display: inline-block;
      font-size: 13px;
      font-weight: 400;
      padding: 11px 24px;
      background: transparent;
      color: var(--text-secondary);
      border: 0.5px solid var(--border-md);
      border-radius: 22px;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover { border-color: var(--text); color: var(--text); }

    .eyebrow, .block-label {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-tertiary);
      margin-bottom: 1.2rem;
    }

    /* ── PAGE HEADER ── */
    .page-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 0.5px solid var(--border);
      min-height: 340px;
    }

    .page-header-left {
      padding: 4rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border-right: 0.5px solid var(--border);
    }

    .page-header h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      line-height: 0.92;
      letter-spacing: 1px;
      margin-bottom: 1.5rem;
    }

    .page-header-sub {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-secondary);
      max-width: 400px;
    }

    .page-header-right { background: var(--bg-secondary); overflow: hidden; }
    .page-header-right img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* ── INTRO NUMBERS ── */
    .intro-nums {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-bottom: 0.5px solid var(--border);
    }

    .intro-num { padding: 1.5rem 2.5rem; border-right: 0.5px solid var(--border); }
    .intro-num:last-child { border-right: none; }

    .intro-num-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      letter-spacing: 1px;
      line-height: 1;
      margin-bottom: 4px;
    }

    .intro-num-label { font-size: 11px; color: var(--text-tertiary); letter-spacing: 1.5px; text-transform: uppercase; }

    /* ── STORY ── */
    .story {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 0.5px solid var(--border);
    }

    .story-left { padding: 3.5rem 2.5rem; border-right: 0.5px solid var(--border); }
    .story-right { padding: 3.5rem 2.5rem; }

    .story h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 40px;
      letter-spacing: 1px;
      line-height: 1;
      margin-bottom: 1.25rem;
    }

    .story p { font-size: 14px; line-height: 1.85; color: var(--text-secondary); margin-bottom: 1.25rem; }
    .story p:last-child { margin-bottom: 0; }

    /* ── TIMELINE ── */
    .timeline { padding: 3.5rem 2.5rem; border-bottom: 0.5px solid var(--border); }

    .timeline-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 1px;
      margin-bottom: 2.5rem;
    }

    .timeline-items { display: grid; grid-template-columns: repeat(4, 1fr); }

    .timeline-item {
      border-right: 0.5px solid var(--border);
      padding: 0 2rem;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .timeline-item.visible { opacity: 1; transform: translateY(0); }
    .timeline-item:first-child { padding-left: 0; }
    .timeline-item:last-child { border-right: none; padding-right: 0; }

    .timeline-year {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }

    .timeline-event { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
    .timeline-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; }

    /* ── VALUES ── */
    .values-section { border-bottom: 0.5px solid var(--border); }

    .values-header { padding: 2.5rem 2.5rem 2rem; border-bottom: 0.5px solid var(--border); }

    .values-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 1px;
    }

    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

    .value-card {
      padding: 2rem 2.5rem;
      border-right: 0.5px solid var(--border);
      transition: background 0.2s;
      cursor: default;
    }

    .value-card:last-child { border-right: none; }
    .value-card:hover { background: var(--bg-secondary); }

    .value-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: var(--bg-tertiary);
      line-height: 1;
      margin-bottom: 0.75rem;
      transition: color 0.2s;
    }

    .value-card:hover .value-num { color: var(--border-md); }
    .value-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 0.5rem; }
    .value-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

    /* ── PARTNER ── */
    .partner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 0.5px solid var(--border);
    }

    .partner-left { padding: 3rem 2.5rem; border-right: 0.5px solid var(--border); background: var(--bg-secondary); }
    .partner-right { padding: 3rem 2.5rem; }

    .partner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      letter-spacing: 1px;
      margin-bottom: 1rem;
      line-height: 1;
    }

    .partner p { font-size: 14px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.75rem; }

    .partner-links { display: flex; flex-direction: column; gap: 10px; }

    .partner-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border: 0.5px solid var(--border);
      border-radius: var(--radius-md);
      font-size: 13px;
      font-weight: 500;
      background: var(--bg);
      transition: border-color 0.2s, background 0.2s;
    }

    .partner-link:hover { border-color: var(--border-md); background: var(--bg-secondary); }
    .partner-link span { color: var(--text-tertiary); font-weight: 400; font-size: 12px; }

    /* ── FOOTER ── */
    footer {
      padding: 1.5rem 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 0.5px solid var(--border);
    }

    footer p { font-size: 12px; color: var(--text-tertiary); }

    /* ── FADE-IN ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible { opacity: 1; transform: translateY(0); }

    .delay-10 { transition-delay: 0.1s; }
    .delay-15 { transition-delay: 0.15s; }
    .delay-20 { transition-delay: 0.2s; }
    .delay-30 { transition-delay: 0.3s; }

    .footer-logo-small { font-size: 16px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.25rem; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }

      .page-header { grid-template-columns: 1fr; }
      .page-header-right { min-height: 220px; }
      .page-header-left { padding: 2.5rem 1.25rem; border-right: none; border-bottom: 0.5px solid var(--border); }
      .page-header h1 { font-size: 52px; }

      .intro-nums { grid-template-columns: 1fr 1fr; }
      .intro-num { border-bottom: 0.5px solid var(--border); }
      .intro-num:nth-child(2) { border-right: none; }
      .intro-num:nth-child(3), .intro-num:nth-child(4) { border-bottom: none; }
      .intro-num:nth-child(4) { border-right: none; }

      .story { grid-template-columns: 1fr; }
      .story-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 2rem 1.25rem; }
      .story-right { padding: 2rem 1.25rem; }

      .timeline { padding: 2rem 1.25rem; }
      .timeline-items { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .timeline-item { border-right: none; padding: 0 !important; }

      .values-grid { grid-template-columns: 1fr 1fr; }
      .value-card { border-bottom: 0.5px solid var(--border); }
      .value-card:nth-child(2) { border-right: none; }
      .value-card:nth-child(3), .value-card:nth-child(4) { border-bottom: none; }
      .value-card:nth-child(4) { border-right: none; }

      .partner { grid-template-columns: 1fr; }
      .partner-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 2rem 1.25rem; }
      .partner-right { padding: 2rem 1.25rem; }

      footer { padding: 1.25rem; flex-direction: column; gap: 8px; text-align: center; }
    }
