:root{
    --red-1:#c81e1e; --red-2:#8f1414; --red-3:#e23b3b;
    --green-1:#1e8f3c; --green-2:#123314; --green-3:#2bbf55;
    --gold-1:#c8981e; --gold-2:#4a3a12; --gold-3:#e2b23b;
    --bg:#0a0a0a; --text:#f2f2f2; --muted:#b8b8b8;
  }
  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  body{
    font-family:'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background:var(--bg); color:var(--text); line-height:1.6;
  }
  a{ text-decoration:none; color:inherit; }
  img{ max-width:100%; display:block; }
  section{ padding:80px 24px; }
  .container{ max-width:1100px; margin:0 auto; }
  h1,h2,h3{ font-weight:700; letter-spacing:0.5px; }
  h2{ font-size:2.2rem; margin-bottom:20px; }
  h3{ font-size:1.3rem; margin-bottom:10px; }
  p{ font-size:1.05rem; color:var(--muted); white-space:pre-line; }

  /* ---------- NAV ---------- */
  nav{
    position:fixed; top:0; left:0; right:0; z-index:100;
    display:flex; justify-content:space-between; align-items:center;
    padding:16px 32px; background:rgba(10,10,10,0.85); backdrop-filter:blur(6px);
  }
  nav .logo{ font-size:1.4rem; font-weight:800; letter-spacing:1px; }
  nav .logo img{ height:38px; width:auto; display:block; }
  nav ul{ list-style:none; display:flex; gap:28px; }
  nav ul li a{ font-size:0.95rem; color:var(--text); opacity:0.85; transition:opacity .2s; }
  nav ul li a:hover{ opacity:1; }
  .nav-toggle{ display:none; background:none; border:none; color:var(--text); font-size:1.6rem; cursor:pointer; }
  @media (max-width:800px){
    nav ul{ position:fixed; top:64px; right:-100%; flex-direction:column; background:#111; width:220px; padding:20px; transition:right .3s; }
    nav ul.open{ right:0; }
    .nav-toggle{ display:block; }
  }

  /* ---------- LANDING ---------- */
  .landing{
    min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; padding:120px 24px 80px;
    background: linear-gradient(180deg, #4a4a4a 0%, #232323 22%, #0a0a0a 55%, #0a0a0a 100%);
  }
  .landing h1{ font-size:3rem; margin-bottom:18px; }
  .landing .sub{ max-width:640px; color:var(--muted); font-size:1.15rem; margin-bottom:48px; }
  .division-buttons{ display:flex; gap:20px; flex-wrap:wrap; justify-content:center; }
  .division-buttons a{
    padding:18px 36px; border-radius:8px; font-weight:700; font-size:1.05rem;
    transition:transform .2s, box-shadow .2s; min-width:220px;
  }
  .division-buttons a:hover{ transform:translateY(-3px); box-shadow:0 10px 24px rgba(0,0,0,0.4); }
  .division-buttons a.red{ background:var(--red-3); color:#0a0a0a; }
  .division-buttons a.green{ background:var(--green-3); color:#0a0a0a; }
  .division-buttons a.gold{ background:var(--gold-3); color:#0a0a0a; }

  /* ---------- DIVISION INTRO SECTIONS ---------- */
  #eventwork{ background: linear-gradient(180deg, #0a0a0a 0%, #1a0605 35%, var(--red-2) 100%); }
  #design{ background: linear-gradient(180deg, #0a0a0a 0%, #12210f 35%, var(--green-2) 100%); }
  #woodworking{ background: linear-gradient(180deg, #0a0a0a 0%, #221a0c 35%, var(--gold-2) 100%); }

  .division-intro{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:24px; }
  .division-intro h2{ font-size:2.4rem; }
  .division-intro p{ max-width:760px; font-size:1.1rem; color:#e8e8e8; }
  .photo-gallery{ display:flex; gap:20px; flex-wrap:wrap; justify-content:center; margin-top:32px; width:100%; }
  .photo-box{
    width:340px; max-width:100%; border-radius:10px; overflow:hidden;
    background:rgba(255,255,255,0.06);
  }
  .photo-box.placeholder{
    aspect-ratio:4/3; border:1px dashed rgba(255,255,255,0.25);
    display:flex; align-items:center; justify-content:center; flex-direction:column; gap:8px;
    color:rgba(255,255,255,0.45); font-size:0.95rem; text-align:center; padding:20px;
  }
  .photo-box.has-photo{ display:block; }
  .photo-box.has-photo img{ width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
  .photo-box .icon{ font-size:2rem; }
  .photo-credit{
    font-size:0.8rem; color:rgba(255,255,255,0.75); text-align:center;
    padding:10px 14px; background:rgba(0,0,0,0.35);
  }

  /* ---------- SERVICES SECTIONS ---------- */
  #eventwork-services{ background: linear-gradient(180deg, var(--red-2) 0%, var(--red-3) 30%, #2a0906 65%, #0a0a0a 100%); }
  #design-services{ background: linear-gradient(180deg, var(--green-2) 0%, var(--green-3) 30%, #123314 65%, #0a0a0a 100%); }
  #woodworking-services{ background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold-3) 30%, #2e2410 65%, #0a0a0a 100%); }

  .services-intro{ max-width:760px; margin:0 auto 40px; text-align:center; color:#f2f2f2; }
  .services-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:24px; }
  .service-card{
    background:rgba(0,0,0,0.35); border:1px solid rgba(255,255,255,0.1); border-radius:12px;
    padding:26px; display:flex; flex-direction:column; gap:10px;
  }
  .service-card h3{ font-size:1.15rem; }
  .service-card p{ font-size:0.98rem; }
  .service-card .meta{ font-weight:700; margin-top:4px; }
  .service-card .actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }
  .btn{
    display:inline-block; padding:10px 20px; border-radius:6px; font-weight:700; font-size:0.9rem;
    cursor:pointer; border:none; transition:opacity .2s; font-family:inherit;
  }
  .btn:hover{ opacity:0.85; }
  .btn-outline{ background:transparent; border:1px solid rgba(255,255,255,0.5); color:#fff; }
  .btn-solid{ background:#fff; color:#111; }

  /* ---------- MODALS ---------- */
  .modal-overlay{
    display:none; position:fixed; inset:0; background:rgba(0,0,0,0.75); z-index:200;
    align-items:center; justify-content:center; padding:24px;
  }
  .modal-overlay.open{ display:flex; }
  .modal-box{
    background:#161616; border-radius:14px; max-width:640px; width:100%; max-height:85vh;
    overflow-y:auto; padding:36px; position:relative; border:1px solid rgba(255,255,255,0.1);
  }
  .modal-close{
    position:absolute; top:18px; right:18px; background:none; border:none; color:#fff;
    font-size:1.6rem; cursor:pointer; line-height:1;
  }
  .modal-box h3{ font-size:1.5rem; margin-bottom:16px; padding-right:30px; }
  .modal-box .modal-date{ color:var(--muted); font-size:0.9rem; margin-bottom:16px; }
  .modal-box p{ color:#e2e2e2; }
  .modal-box .modal-actions{ margin-top:24px; }

  /* ---------- BLOG ---------- */
  #blog{ background:#0a0a0a; }
  .blog-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:24px; margin-top:32px; }
  .blog-card{
    background:#141414; border:1px solid rgba(255,255,255,0.08); border-radius:12px;
    overflow:hidden; cursor:pointer; transition:transform .2s;
    display:flex; flex-direction:column;
  }
  .blog-card:hover{ transform:translateY(-4px); }
  .blog-img-wrap{ position:relative; }
  .blog-card .blog-img{ width:100%; aspect-ratio:16/9; background:rgba(255,255,255,0.06); object-fit:cover; }
  .blog-card .blog-img-placeholder{
    width:100%; aspect-ratio:16/9; background:rgba(255,255,255,0.05);
    display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.3); font-size:0.9rem;
  }
  .blog-tag{
    position:absolute; top:14px; left:14px; padding:6px 14px; border-radius:20px;
    font-size:0.78rem; font-weight:700; color:#0a0a0a; text-decoration:none;
    box-shadow:0 2px 8px rgba(0,0,0,0.35); transition:opacity .2s;
  }
  .blog-tag:hover{ opacity:0.85; }
  #blog-modal-tag{ margin-bottom:12px; }
  #blog-modal-tag .blog-tag{ position:static; display:inline-block; }
  .blog-card .blog-body{ padding:22px; display:flex; flex-direction:column; gap:8px; flex:1; }
  .blog-card .blog-date{ font-size:0.85rem; color:var(--muted); }
  .blog-card .blog-excerpt{ font-size:0.95rem; color:#ccc; flex:1;
    display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .blog-card .blog-card-footer{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:6px; }
  .blog-card .read-more{ font-size:0.9rem; font-weight:700; color:#e23b3b; }
  .hlx-card-share-btn{
    display:inline-flex; align-items:center; gap:5px; background:transparent;
    border:1px solid rgba(255,255,255,0.3); color:#ddd; font-family:inherit;
    font-size:0.8rem; font-weight:700; padding:6px 12px; border-radius:20px;
    cursor:pointer; transition:opacity .2s, border-color .2s;
  }
  .hlx-card-share-btn:hover{ opacity:0.85; border-color:rgba(255,255,255,0.6); }
  .blog-empty{ text-align:center; color:var(--muted); padding:40px 0; }
  .home-blog-cta{ text-align:center; margin-top:40px; }
  .home-blog-cta a{ font-weight:700; color:#e23b3b; font-size:1.05rem; }
  .home-blog-cta a:hover{ text-decoration:underline; }
  .blog-modal-gallery{ display:flex; gap:10px; flex-wrap:wrap; margin-top:20px; }
  .blog-modal-gallery img{
    width:100px; height:100px; object-fit:cover; border-radius:8px;
    border:1px solid rgba(255,255,255,0.1);
  }
  .hlx-blog-share{
    margin-top:24px; padding-top:20px; border-top:1px solid rgba(255,255,255,0.12);
    display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  }
  .hlx-blog-share-label{ font-size:0.85rem; color:var(--muted); margin-right:2px; }
  .hlx-share-btn{
    display:inline-flex; align-items:center; padding:9px 16px; border-radius:6px;
    font-size:0.85rem; font-weight:700; cursor:pointer; border:none; text-decoration:none;
    font-family:inherit; transition:opacity .2s;
  }
  .hlx-share-btn:hover{ opacity:0.85; }
  .hlx-share-fb{ background:#1877f2; color:#fff; }
  .hlx-share-wa{ background:#25d366; color:#0a0a0a; }
  .hlx-share-li{ background:#0a66c2; color:#fff; }
  .hlx-share-mail{ background:#3a3a3a; color:#fff; }
  .hlx-share-copy{ background:transparent; border:1px solid rgba(255,255,255,0.35); color:#fff; }
  .hlx-share-copy.copied{ background:#2bbf55; border-color:#2bbf55; color:#0a0a0a; }

  .hlx-share-popover{
    position:fixed; z-index:300; display:flex; flex-direction:column; gap:6px;
    background:#1a1a1a; border:1px solid rgba(255,255,255,0.15); border-radius:10px;
    padding:10px; box-shadow:0 10px 30px rgba(0,0,0,0.5); min-width:170px;
    opacity:0; transform:translateY(-4px); pointer-events:none; transition:opacity .15s, transform .15s;
  }
  .hlx-share-popover.open{ opacity:1; transform:translateY(0); pointer-events:auto; }
  .hlx-share-popover .hlx-share-btn{ display:flex; width:100%; justify-content:flex-start; }

  /* ---------- CONTACT ---------- */
  #contact{ background:#0a0a0a; text-align:center; }
  #contact .container{ max-width:640px; }
  .contact-info{ display:flex; flex-direction:column; gap:6px; margin-bottom:36px; color:#ddd; }
  form.contact-form{ display:flex; flex-direction:column; gap:16px; text-align:left; }
  form.contact-form input, form.contact-form textarea{
    background:#141414; border:1px solid rgba(255,255,255,0.15); border-radius:8px;
    padding:14px; color:#fff; font-family:inherit; font-size:1rem;
  }
  form.contact-form textarea{ min-height:120px; resize:vertical; }
  form.contact-form button{
    background:var(--red-3); color:#0a0a0a; border:none; padding:16px; border-radius:8px;
    font-weight:700; font-size:1.05rem; cursor:pointer; transition:opacity .2s;
  }
  form.contact-form button:hover{ opacity:0.85; }
  .consent-label{
    display:flex; align-items:flex-start; gap:10px; font-size:0.9rem; color:var(--muted);
    line-height:1.4; cursor:pointer;
  }
  .consent-label input[type="checkbox"]{ margin-top:3px; flex-shrink:0; width:16px; height:16px; cursor:pointer; }
  .consent-label a{ color:#fff; text-decoration:underline; }

  /* ---------- PRIVACY PAGE ---------- */
  .privacy-content{ max-width:760px; margin:0 auto; text-align:left; }
  .privacy-content h2{ margin-top:40px; font-size:1.4rem; }
  .privacy-content h2:first-child{ margin-top:0; }
  .privacy-content p, .privacy-content li{ color:#e2e2e2; font-size:1rem; margin-bottom:12px; }
  .privacy-content ul{ padding-left:22px; margin-bottom:16px; }
  .privacy-content .updated{ color:var(--muted); font-size:0.9rem; margin-bottom:32px; }

  /* ---------- COOKIE BANNER ---------- */
  .hlx-cookie-banner{
    position:fixed; left:0; right:0; bottom:0; z-index:9999;
    background:#111; border-top:1px solid #2a2a2a;
    padding:18px 24px; display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
    gap:16px; transform:translateY(110%); transition:transform .35s ease;
    box-shadow:0 -4px 20px rgba(0,0,0,0.4);
  }
  .hlx-cookie-banner.show{ transform:translateY(0); }
  .hlx-cookie-text{ color:var(--muted); font-size:0.9rem; max-width:640px; line-height:1.5; }
  .hlx-cookie-text a{ color:#fff; text-decoration:underline; }
  .hlx-cookie-actions{ display:flex; gap:10px; flex-shrink:0; }
  .hlx-cookie-actions button{
    border:none; border-radius:8px; padding:10px 18px; font-size:0.9rem; font-weight:600;
    cursor:pointer; font-family:inherit; transition:opacity .2s;
  }
  .hlx-cookie-actions button:hover{ opacity:0.85; }
  .hlx-cookie-decline{ background:#2a2a2a; color:#fff; }
  .hlx-cookie-accept{ background:var(--red-3); color:#0a0a0a; }
  @media (max-width:600px){
    .hlx-cookie-banner{ flex-direction:column; align-items:stretch; text-align:center; }
    .hlx-cookie-actions{ justify-content:center; }
  }

  /* ---------- FOOTER ---------- */
  footer{ background:#050505; text-align:center; padding:40px 24px; color:var(--muted); font-size:0.85rem; }
  footer .footer-name{ font-weight:700; color:#fff; margin-bottom:8px; }
  footer .footer-links{ display:flex; gap:18px; justify-content:center; margin:14px 0; }
