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

  body {
    font-family: 'Work Sans', sans-serif;
    background: #fff;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 57px;
    background: #fff;
  }

  .nav-logo {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-stretch: condensed;
    font-size: 17px;
    letter-spacing: 0.01em;
    color: #111;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }

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

  .nav-links a {
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
  }

  .nav-links a:hover { opacity: 0.6; }

  .nav-cart {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #111;
    display: flex;
    align-items: center;
    position: relative;
  }

  .cart-badge {
    position: absolute;
    top: -5px;
    right: -6px;
    width: 16px;
    height: 16px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
  }

  .cart-badge.visible { opacity: 1; }

  /* PAGES */
  .page { display: none; }
  .page.active { display: block; }

  /* HOME */
  #page-home { padding-top: 57px; }

  .hero {
    width: 100%;
    height: calc(100vh - 57px);
    overflow: hidden;
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  /* INNER PAGES */
  .inner-page { padding-top: 57px; min-height: 100vh; }

  .page-hero {
    height: 220px;
    display: flex;
    align-items: flex-end;
    padding: 0 48px 32px;
    border-bottom: 1px solid #e5e5e5;
  }

  .page-hero-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-stretch: condensed;
    font-size: clamp(56px, 8vw, 96px);
    letter-spacing: 0.02em;
    color: #111;
    line-height: 1;
    text-transform: uppercase;
  }

  .page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 48px 100px;
  }

  /* SHARED */
  .section-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 28px;
  }

  .btn {
    display: inline-block;
    background: #111;
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 22px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .btn:hover { opacity: 0.75; }

  .btn-outline {
    background: none;
    color: #111;
    border: 1px solid #111;
  }

  .btn-outline:hover { background: #111; color: #fff; opacity: 1; }

  /* EVENTS */
  .events-filter {
    display: flex;
    margin-bottom: 48px;
    border-bottom: 1px solid #e5e5e5;
  }

  .filter-btn {
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    background: none;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
  }

  .filter-btn::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 1px;
    background: #111;
    transform: scaleX(0);
    transition: transform 0.2s;
  }

  .filter-btn.active { color: #111; }
  .filter-btn.active::after, .filter-btn:hover::after { transform: scaleX(1); }
  .filter-btn:hover { color: #111; }

  .events-list { display: flex; flex-direction: column; }

  .event-row {
    display: grid;
    grid-template-columns: 100px 1fr 180px 140px;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .event-row:first-child { border-top: 1px solid #e5e5e5; }

  .event-row-date {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
  }

  .event-row-name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-stretch: condensed;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111;
  }

  .event-row-location {
    font-size: 13px;
    color: #999;
  }

  .event-row-cta { text-align: right; }

  /* ABOUT */
  .about-statement {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-stretch: condensed;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #111;
    line-height: 1;
    margin-bottom: 64px;
    max-width: 780px;
  }

  .about-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
  }

  .about-text { font-size: 14px; line-height: 1.8; color: #555; }
  .about-text p + p { margin-top: 18px; }

  .values-section { margin-bottom: 80px; }

  .values-list { display: flex; flex-direction: column; border-top: 1px solid #e5e5e5; }

  .value-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .value-num { font-size: 11px; letter-spacing: 0.1em; color: #bbb; min-width: 28px; padding-top: 2px; }

  .value-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .value-desc { font-size: 13px; color: #999; line-height: 1.6; }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e5e5e5;
    border: 1px solid #e5e5e5;
  }

  .team-card { background: #fff; padding: 28px 24px; }

  .team-initial {
    width: 44px; height: 44px;
    background: #111;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
  }

  .team-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  .team-role { font-size: 12px; color: #999; }

  /* CONTACT */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-stretch: condensed;
    font-size: 36px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .contact-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 36px;
  }

  .contact-details { display: flex; flex-direction: column; gap: 16px; }

  .contact-item { display: flex; gap: 20px; align-items: flex-start; }

  .contact-item-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    min-width: 72px;
    padding-top: 2px;
  }

  .contact-item-value { font-size: 13px; color: #111; line-height: 1.5; }

  .contact-form { display: flex; flex-direction: column; gap: 1px; background: #e5e5e5; border: 1px solid #e5e5e5; }

  .form-group { display: flex; flex-direction: column; background: #fff; }

  .form-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    padding: 14px 16px 0;
  }

  .form-input, .form-textarea {
    background: none;
    border: none;
    padding: 4px 16px 14px;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    color: #111;
    outline: none;
    width: 100%;
    resize: none;
  }

  .form-textarea { min-height: 120px; }

  /* CART */
  .cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
  }

  .cart-items { display: flex; flex-direction: column; }

  .cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .cart-item:first-child { border-top: 1px solid #e5e5e5; }

  .cart-item-name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-stretch: condensed;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 4px;
  }

  .cart-item-meta { font-size: 12px; color: #999; line-height: 1.6; }

  .qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
  }

  .qty-btn {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 16px;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .qty-btn:hover { background: #f5f5f5; }

  .qty-num {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
  }

  .cart-item-price {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    min-width: 48px;
    text-align: right;
  }

  .cart-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    transition: color 0.15s;
  }

  .cart-remove:hover { color: #111; }

  .cart-summary {
    border: 1px solid #e5e5e5;
    padding: 32px;
    position: sticky;
    top: 80px;
  }

  .cart-summary-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 28px;
  }

  .cart-summary-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }

  .cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
  }

  .cart-summary-row.total {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
  }

  .cart-promo {
    display: flex;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
  }

  .cart-promo input {
    flex: 1;
    background: none;
    border: none;
    padding: 11px 14px;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    color: #111;
    outline: none;
  }

  .cart-promo input::placeholder { color: #bbb; }

  .cart-promo button {
    background: none;
    border: none;
    border-left: 1px solid #e5e5e5;
    padding: 11px 16px;
    font-family: 'Work Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    cursor: pointer;
  }

  .cart-promo button:hover { background: #f5f5f5; }

  .cart-note {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    margin-top: 16px;
    line-height: 1.7;
  }

  .cart-empty {
    text-align: center;
    padding: 100px 0;
  }

  .cart-empty-icon { margin-bottom: 24px; }

  .cart-empty-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-stretch: condensed;
    font-size: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 10px;
  }

  .cart-empty-sub { font-size: 13px; color: #999; margin-bottom: 32px; }

  /* FOOTER */
  footer {
    border-top: 1px solid #e5e5e5;
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-stretch: condensed;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #999;
  }

  .footer-copy { font-size: 11px; color: #bbb; letter-spacing: 0.06em; }

  .footer-links { display: flex; gap: 24px; list-style: none; }

  .footer-links a {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }

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