
  :root{
    --white:#FFFFFF;
    --ink:#1C1B18;
    --muted:#8a8578;
    --line:#e8e5dc;
    --paper:#f7f6f1;
    --orange:#E8963C;
    --teal:#2F8F82;
    --blue:#4C6FA6;
    --mustard:#D9A441;
    --plum:#C46B94;
  }
  *{ margin:0; padding:0; box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    background:var(--white);
    color:var(--ink);
    font-family:'Zen Kaku Gothic New', sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; }
  }
  a{ color:inherit; text-decoration:none; }
  img{ display:block; max-width:100%; }
  button{ font-family:inherit; border:none; background:none; cursor:pointer; color:inherit; }
  ul{ list-style:none; }
  .eyebrow{
    font-size:0.74rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase;
    color:var(--orange);
  }

  /* ================= HEADER ================= */
  header{
    position:fixed; top:0; left:0; right:0; z-index:200;
    display:flex; align-items:center; justify-content:space-between;
    padding:16px clamp(20px,4vw,56px);
    background:rgba(255,255,255,0.94);
    backdrop-filter:blur(6px);
    border-bottom:1px solid var(--line);
  }
  .brand{ display:flex; align-items:center; gap:8px; font-weight:900; font-size:1.1rem; }
  .brand .dot{ width:9px; height:9px; border-radius:50%; background:var(--orange); display:inline-block; }
  nav.main-nav{ display:flex; gap:26px; align-items:center; }
  nav.main-nav a{ font-size:0.82rem; font-weight:700; opacity:0.7; position:relative; padding:4px 0; }
  nav.main-nav a.active{ opacity:1; color:var(--orange); }
  nav.main-nav a:hover{ opacity:1; }
  .header-cta{
    background:var(--ink); color:#fff; font-size:0.78rem; font-weight:700;
    padding:10px 20px; border-radius:999px;
  }
  .header-cta:hover{ background:var(--orange); }
  .burger{ display:none; flex-direction:column; gap:4px; width:22px; }
  .burger span{ height:1.5px; background:var(--ink); display:block; }
  @media (max-width:900px){
    nav.main-nav{ display:none; }
    .burger{ display:flex; }
  }

  /* ================= HERO ================= */
  .hero{
    position:relative;
    min-height:100svh;
    padding:150px clamp(20px,6vw,64px) 90px;
    display:flex; align-items:center;
    background:var(--white);
    overflow:hidden;
  }
  .hero-grid{
    position:relative; z-index:2;
    display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center;
    width:100%; max-width:1280px; margin:0 auto;
  }
  @media (max-width:960px){ .hero-grid{ grid-template-columns:1fr; } }

  .hero-copy h1{
    font-weight:900; font-size:clamp(2.2rem, 5.4vw, 3.8rem); line-height:1.25; margin-top:18px;
  }
  .hero-copy h1 .accent{ color:var(--orange); }
  .hero-copy .subtitle{
    margin-top:14px; font-size:clamp(0.95rem,1.6vw,1.1rem); font-weight:700; color:var(--teal);
  }
  .hero-copy .body-copy{
    margin-top:24px; font-size:0.92rem; line-height:2.0; max-width:46ch; color:#3a352c;
  }
  .hero-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
  .btn-primary{
    background:var(--orange); color:#fff; font-weight:700; font-size:0.88rem;
    padding:15px 30px; border-radius:999px; box-shadow:0 10px 22px -8px rgba(232,150,60,0.5);
    transition:transform .25s;
  }
  .btn-primary:hover{ transform:translateY(-3px); }
  .btn-secondary{
    border:2px solid var(--ink); font-weight:700; font-size:0.88rem;
    padding:13px 28px; border-radius:999px; transition:background .25s, color .25s;
  }
  .btn-secondary:hover{ background:var(--ink); color:#fff; }

  /* ---- Floating image visual ---- */
  .hero-visual{ position:relative; height:480px; }
  .float-item{
    position:absolute;
    filter:drop-shadow(0 16px 18px rgba(28,27,24,0.14));
    animation:bob 6s ease-in-out infinite;
  }
  .float-item img{ width:100%; height:auto; }
  .float-a{ width:76%; left:10%; top:6%; z-index:3; animation-duration:7.5s; }
  .float-b{ width:19%; top:0%; right:2%; z-index:2; animation-duration:5.5s; animation-delay:.6s; --rot:-6deg; }
  .float-c{ width:22%; bottom:12%; left:0%; z-index:4; animation-duration:6.5s; animation-delay:1.1s; --rot:8deg; }
  .float-d{ width:24%; bottom:0%; right:8%; z-index:4; animation-duration:6s; animation-delay:.3s; --rot:-4deg; }
  @keyframes bob{
    0%,100%{ transform:translateY(0) rotate(var(--rot,0deg)); }
    50%{ transform:translateY(-20px) rotate(calc(var(--rot,0deg) + 2deg)); }
  }
  @media (max-width:960px){ .hero-visual{ height:340px; margin-top:10px; } }

  .scroll-cue{
    position:absolute; left:50%; bottom:18px; transform:translateX(-50%); z-index:2;
    font-size:0.7rem; letter-spacing:0.1em; color:var(--muted); font-weight:700;
    display:flex; flex-direction:column; align-items:center; gap:6px;
  }
  .scroll-cue .arrow{ animation:downnudge 1.6s ease-in-out infinite; }
  @keyframes downnudge{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(6px);} }

  /* ================= TICKER ================= */
  .ticker-wrap{
    background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    overflow:hidden; white-space:nowrap; padding:14px 0;
  }
  .ticker{ display:inline-block; font-size:0.85rem; font-weight:700; letter-spacing:0.06em; animation:tick 28s linear infinite; }
  .ticker span{ margin:0 1.6em; }
  @keyframes tick{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

  /* ================= SECTIONS ================= */
  section{ padding:96px clamp(20px,6vw,64px); }
  .section-head{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:16px; margin-bottom:48px; }
  .section-head h2{ font-weight:900; font-size:clamp(1.5rem,2.8vw,2.1rem); margin-top:8px; }
  .section-note{ font-size:0.83rem; color:var(--muted); max-width:34ch; text-align:right; line-height:1.7; }
  @media (max-width:700px){ .section-note{ text-align:left; } }

  /* ---- Latest events carousel ---- */
  .carousel-wrap{ position:relative; }
  .carousel{
    display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:8px;
    scrollbar-width:none;
  }
  .carousel::-webkit-scrollbar{ display:none; }
  .car-card{
    scroll-snap-align:start; flex:0 0 280px;
    border:1px solid var(--line); padding:18px; border-radius:14px;
    transition:box-shadow .3s, transform .3s;
  }
  .car-card:hover{ box-shadow:0 16px 30px -18px rgba(0,0,0,0.2); transform:translateY(-4px); }
  .car-card .cat{ font-size:0.72rem; font-weight:700; color:#fff; padding:3px 10px; border-radius:999px; display:inline-block; }
  .car-card .date{ font-size:0.72rem; color:var(--muted); margin-top:10px; }
  .car-card h3{ font-weight:900; font-size:1rem; line-height:1.6; margin-top:8px; }
  .car-nav{ display:flex; justify-content:flex-end; gap:14px; margin-top:20px; align-items:center; font-size:0.78rem; color:var(--muted); font-weight:700; }
  .car-nav button{ width:34px; height:34px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; }
  .car-nav button:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }
  .car-nav svg{ width:14px; height:14px; }

  /* ---- Filters + grid ---- */
  .filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:44px; }
  .filter-chip{
    font-size:0.82rem; font-weight:700; padding:9px 18px; border:1px solid var(--line); border-radius:999px;
    transition:all .25s;
  }
  .filter-chip:hover{ border-color:var(--ink); }
  .filter-chip.active{ background:var(--ink); color:#fff; border-color:var(--ink); }

  .event-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
  @media (max-width:980px){ .event-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:640px){ .event-grid{ grid-template-columns:1fr; } }

  .event-card{
    border:1px solid var(--line); border-radius:14px; overflow:hidden; display:flex; flex-direction:column;
    transition:transform .35s, box-shadow .35s;
  }
  .event-card:hover{ transform:translateY(-6px); box-shadow:0 20px 34px -20px rgba(0,0,0,0.2); }
  .event-visual{ position:relative; height:120px; display:flex; align-items:center; justify-content:center; font-size:1.6rem; }
  .event-body{ padding:18px 18px 22px; display:flex; flex-direction:column; gap:9px; flex:1; }
  .event-tag{ align-self:flex-start; font-size:0.66rem; font-weight:700; padding:4px 10px; border-radius:999px; color:#fff; }
  .event-body h3{ font-weight:900; font-size:1rem; line-height:1.55; }
  .event-meta{ font-size:0.76rem; color:var(--muted); }
  .event-desc{ font-size:0.82rem; line-height:1.85; color:#3a352c; }
  .event-link{ margin-top:auto; padding-top:11px; border-top:1px solid var(--line); font-size:0.76rem; font-weight:700; display:inline-flex; align-items:center; gap:6px; }
  .event-link svg{ width:11px; height:11px; transition:transform .25s; }
  .event-card:hover .event-link svg{ transform:translateX(4px); }
  .no-results{ display:none; text-align:center; padding:60px 0; color:var(--muted); font-size:0.9rem; }

  /* ---- Category thumbnail row ---- */
  .thumb-row{ display:flex; gap:18px; overflow-x:auto; padding-bottom:6px; scrollbar-width:none; }
  .thumb-row::-webkit-scrollbar{ display:none; }
  .thumb{ flex:0 0 130px; text-align:center; }
  .thumb .badge{
    width:130px; height:130px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-weight:900; font-size:0.9rem; color:#fff; line-height:1.4; text-align:center;
    padding:10px; transition:transform .3s;
  }
  .thumb:hover .badge{ transform:scale(1.05); }
  .thumb .label{ margin-top:12px; font-size:0.78rem; font-weight:700; }

  /* ---- Partners section ---- */
  .partners-section{ background:var(--paper); }
  .partner-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
  @media (max-width:820px){ .partner-grid{ grid-template-columns:repeat(3,1fr); } }
  @media (max-width:560px){ .partner-grid{ grid-template-columns:repeat(2,1fr); } }
  .partner-card{
    background:#fff; border:1px solid var(--line); border-radius:12px;
    height:110px; display:flex; align-items:center; justify-content:center; padding:18px;
    transition:transform .25s, box-shadow .25s, border-color .25s;
  }
  .partner-card:hover{ transform:translateY(-4px); box-shadow:0 16px 26px -18px rgba(0,0,0,0.25); border-color:var(--ink); }
  .partner-card img{ max-width:100%; max-height:56px; width:auto; object-fit:contain; filter:grayscale(1); opacity:0.7; transition:filter .25s, opacity .25s; }
  .partner-card:hover img{ filter:grayscale(0); opacity:1; }
  .partner-fallback{
    font-weight:900; font-size:0.85rem; text-align:center; color:var(--muted); line-height:1.5;
  }
  .partner-card:hover .partner-fallback{ color:var(--ink); }

  /* ---- Join banner ---- */
  .join-banner{
    background:var(--ink); color:#fff; padding:60px clamp(20px,6vw,64px);
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px;
  }
  .join-banner h3{ font-weight:900; font-size:1.2rem; }
  .join-banner p{ font-size:0.8rem; opacity:0.75; margin-top:8px; max-width:46ch; line-height:1.8; }
  .join-btn{ border:1px solid rgba(255,255,255,0.4); padding:12px 26px; font-size:0.78rem; font-weight:700; border-radius:999px; white-space:nowrap; }
  .join-btn:hover{ background:#fff; color:var(--ink); }

  /* ---- Follow us ---- */
  .follow-row{ display:flex; gap:16px; align-items:center; }
  .follow-row a{
    width:44px; height:44px; border:1px solid var(--line); border-radius:50%;
    display:flex; align-items:center; justify-content:center; font-weight:900; transition:background .25s, color .25s;
  }
  .follow-row a:hover{ background:var(--ink); color:#fff; }

  /* ---- About strip ---- */
  .about-strip{ background:var(--paper); text-align:center; }
  .about-strip p{ font-size:clamp(1rem,1.8vw,1.25rem); line-height:2.1; max-width:38ch; margin:0 auto; font-weight:700; }
  .about-strip .eyebrow{ display:block; margin-bottom:20px; }

  /* ================= FOOTER ================= */
  footer{ border-top:1px solid var(--line); padding:56px clamp(20px,6vw,64px) 28px; }
  .footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; padding-bottom:34px; }
  .footer-nav{ display:flex; flex-wrap:wrap; gap:20px; font-size:0.8rem; font-weight:700; }
  .footer-logo{ font-weight:900; font-size:1.2rem; }
  .footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:0.74rem; color:var(--muted); border-top:1px solid var(--line); padding-top:20px; }
