
    :root{
      /* Theme palette (Adriatic cobalt, sunflower gold, paprika red, terracotta, olive) */
      --cobalt:#1d4ed8;
      --cobalt-ink:#0b2a6a;
      --sun:#f6c445;
      --paprika:#d43c2f;
      --terracotta:#c5653c;
      --olive:#556b2f;

      --stucco:#fbf3e6;
      --linen:#f7efe2;
      --ceramic:#eef4ff;
      --night:#0b1020;
      --ink:#1a1a1a;
      --muted:#5c5f66;

      --card:#ffffff;
      --shadow: 0 18px 55px rgba(11,16,32,.12);
      --shadow-soft: 0 10px 26px rgba(11,16,32,.10);

      --radius-xl: 26px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 12px;

      --stroke: rgba(11,16,32,.12);
      --stroke-strong: rgba(11,16,32,.18);

      --max: 1160px;
      --tap: 44px;

      --serif: ui-serif, "Georgia", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
      --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Liberation Sans", sans-serif;
      --accent: "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      color:var(--ink);
      background:
        radial-gradient(1200px 600px at 18% -10%, rgba(246,196,69,.30), transparent 55%),
        radial-gradient(900px 520px at 85% 5%, rgba(29,78,216,.18), transparent 52%),
        linear-gradient(180deg, var(--stucco), var(--linen) 45%, #fff 100%);
      font-family:var(--sans);
      line-height:1.55;
      letter-spacing:.2px;
    }

    a{color:inherit}
    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
      outline:3px solid rgba(246,196,69,.85);
      outline-offset:3px;
      border-radius:12px;
    }

    /* Header / Nav */
    header{
      position:sticky;
      top:0;
      z-index:50;
      background: rgba(251,243,230,.74);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(11,16,32,.10);
    }

    .topbar{
      max-width:var(--max);
      margin:0 auto;
      padding:12px 16px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 220px;
    }

    .mark{
      width:44px;height:44px;
      border-radius:999px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.85), transparent 42%),
        conic-gradient(from 210deg, var(--sun), var(--paprika), var(--terracotta), var(--cobalt), var(--sun));
      box-shadow: inset 0 0 0 2px rgba(255,255,255,.7), 0 10px 22px rgba(11,16,32,.16);
      position:relative;
    }
    .mark:after{
      content:"";
      position:absolute; inset:9px;
      border-radius:999px;
      border:2px dashed rgba(255,255,255,.7);
      opacity:.9;
    }

    .brand h2{
      margin:0;
      font-family:var(--serif);
      font-size:15px;
      letter-spacing:.6px;
      text-transform:uppercase;
      color:var(--cobalt-ink);
      line-height:1.1;
    }
    .brand p{
      margin:2px 0 0;
      font-size:12px;
      color:rgba(11,16,32,.72);
      letter-spacing:.2px;
    }

    /* NAV RULE: only ul li a inside nav (satisfied below) */
    nav ul{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:center;
    }
    nav a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: var(--tap);
      padding:10px 12px;
      text-decoration:none;
      border-radius:999px;
      font-weight:650;
      font-size:14px;
      color:rgba(11,16,32,.86);
      border:1px solid transparent;
      transition: transform .35s ease, background .35s ease, border-color .35s ease, box-shadow .45s ease;
      position:relative;
    }
    nav a:after{
      content:"";
      position:absolute;
      left:14px; right:14px; bottom:8px;
      height:2px;
      background: linear-gradient(90deg, rgba(29,78,216,.95), rgba(29,78,216,.15));
      transform: scaleX(0);
      transform-origin:left;
      transition: transform .45s ease;
      border-radius:2px;
      opacity:.9;
    }
    nav a:hover{
      background: rgba(255,255,255,.7);
      border-color: rgba(11,16,32,.12);
      box-shadow: 0 10px 20px rgba(11,16,32,.08);
      transform: translateY(-1px);
    }
    nav a:hover:after{transform:scaleX(1)}

    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      min-width: 220px;
      justify-content:flex-end;
    }

    .btn{
      appearance:none;
      border:1px solid rgba(11,16,32,.18);
      background: rgba(255,255,255,.72);
      color: rgba(11,16,32,.92);
      padding:10px 14px;
      min-height: var(--tap);
      border-radius: 999px;
      font-weight:750;
      letter-spacing:.2px;
      cursor:pointer;
      transition: transform .35s ease, box-shadow .45s ease, background .35s ease, border-color .35s ease, filter .35s ease;
      box-shadow: 0 10px 18px rgba(11,16,32,.08);
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .btn.primary{
      background: linear-gradient(180deg, rgba(246,196,69,.95), rgba(246,196,69,.72));
      border-color: rgba(212,60,47,.35);
      box-shadow:
        0 12px 26px rgba(246,196,69,.28),
        inset 0 0 0 2px rgba(255,255,255,.35);
    }
    .btn:hover{
      transform: translateY(-2px);
      border-color: rgba(29,78,216,.26);
      box-shadow:
        0 16px 34px rgba(11,16,32,.14),
        0 0 0 6px rgba(29,78,216,.08);
      filter:saturate(1.03);
    }

    /* Burger (CSS-only): show under 1200px */
    .burger{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height: var(--tap);
      width: var(--tap);
      border-radius: 999px;
      border:1px solid rgba(11,16,32,.18);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 18px rgba(11,16,32,.08);
      cursor:pointer;
      transition: transform .35s ease, box-shadow .45s ease, background .35s ease;
      position:relative;
      user-select:none;
    }
    .burger:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 34px rgba(11,16,32,.14);
    }
    .burger span{
      width:18px;height:2px;background: rgba(11,16,32,.82);
      position:relative; display:block; border-radius:2px;
      transition: transform .35s ease, opacity .35s ease;
    }
    .burger span:before,
    .burger span:after{
      content:"";
      position:absolute;
      left:0; right:0;
      height:2px;
      background: rgba(11,16,32,.82);
      border-radius:2px;
      transition: transform .35s ease, top .35s ease, bottom .35s ease;
    }
    .burger span:before{ top:-6px;}
    .burger span:after{ bottom:-6px;}

    #navToggle{
      position:absolute;
      width:1px;height:1px;
      overflow:hidden;
      clip: rect(0 0 0 0);
      white-space:nowrap;
    }

    .navwrap{
      display:none; /* mobile menu container */
      border-top:1px solid rgba(11,16,32,.10);
      background: rgba(251,243,230,.84);
    }
    .navwrap .inner{
      max-width:var(--max);
      margin:0 auto;
      padding:10px 16px 14px;
    }
    .navwrap nav ul{
      gap:8px;
      justify-content:flex-start;
    }
    .navwrap nav a{
      width:100%;
      justify-content:flex-start;
      border-radius: 14px;
      background: rgba(255,255,255,.58);
      border-color: rgba(11,16,32,.10);
    }

    #navToggle:checked ~ .navwrap{display:block}
    #navToggle:checked + label.burger span{opacity:0}
    #navToggle:checked + label.burger span:before{top:0; transform: rotate(45deg)}
    #navToggle:checked + label.burger span:after{bottom:0; transform: rotate(-45deg)}

    /* Hero */
    .hero{
      max-width:var(--max);
      margin:0 auto;
      padding: 18px 16px 18px;
      display:grid;
      grid-template-columns: 1fr;
      gap:14px;
    }

    .hero-panel{
      border-radius: var(--radius-xl);
      border:1px solid rgba(11,16,32,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.64)),
        radial-gradient(800px 420px at 10% 10%, rgba(29,78,216,.18), transparent 55%),
        radial-gradient(760px 520px at 85% 10%, rgba(212,60,47,.18), transparent 52%);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }

    .hero-panel:before{
      /* mosaic / tile diamonds */
      content:"";
      position:absolute;
      inset:-120px -120px auto auto;
      width:320px;height:320px;
      background:
        linear-gradient(45deg, rgba(29,78,216,.20) 25%, transparent 25% 50%, rgba(246,196,69,.22) 50% 75%, transparent 75%),
        linear-gradient(-45deg, rgba(212,60,47,.18) 25%, transparent 25% 50%, rgba(197,101,60,.18) 50% 75%, transparent 75%);
      background-size: 34px 34px;
      transform: rotate(9deg);
      border-radius: 40px;
      opacity:.75;
      filter: blur(.2px);
    }

    .hero-inner{
      position:relative;
      padding: 20px 16px 16px;
      display:grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      letter-spacing:.6px;
      text-transform:uppercase;
      font-size:12px;
      color: rgba(11,16,32,.78);
    }
    .beads{
      display:inline-flex; gap:6px; align-items:center;
    }
    .beads i{
      width:7px;height:7px;border-radius:999px; display:inline-block;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 6px 14px rgba(11,16,32,.12);
    }
    .beads i:nth-child(1){background: var(--cobalt)}
    .beads i:nth-child(2){background: var(--sun)}
    .beads i:nth-child(3){background: var(--paprika)}
    .beads i:nth-child(4){background: var(--olive)}

    .hero h1{
      margin:0;
      font-family: var(--serif);
      font-size: clamp(30px, 5vw, 56px);
      line-height:1.03;
      letter-spacing:.2px;
      color: rgba(11,16,32,.95);
      text-shadow: 0 10px 26px rgba(246,196,69,.18);
    }
    .hero h1 span{
      color: var(--cobalt-ink);
      text-decoration: underline;
      text-decoration-thickness: 3px;
      text-underline-offset: 7px;
      text-decoration-color: rgba(29,78,216,.35);
    }

    .hero p{
      margin:0;
      max-width: 62ch;
      color: rgba(11,16,32,.78);
      font-size: 15.5px;
      line-height:1.7;
    }

    .hero-cta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-top: 4px;
    }

    .mini-facts{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
      margin-top: 10px;
    }
    .fact{
      border-radius: 16px;
      border:1px solid rgba(11,16,32,.10);
      background: rgba(255,255,255,.60);
      padding: 12px 12px;
      box-shadow: 0 12px 22px rgba(11,16,32,.08);
      position:relative;
      overflow:hidden;
    }
    .fact:before{
      content:"";
      position:absolute; left:0; right:0; top:0;
      height:10px;
      background:
        repeating-linear-gradient(90deg,
          rgba(212,60,47,.55) 0 10px,
          rgba(246,196,69,.55) 10px 20px,
          rgba(29,78,216,.55) 20px 30px,
          rgba(85,107,47,.50) 30px 40px
        );
      opacity:.55;
    }
    .fact h3{
      margin:10px 0 4px;
      font-size:13px;
      letter-spacing:.5px;
      text-transform:uppercase;
      color: rgba(11,16,32,.76);
    }
    .fact p{
      margin:0;
      color: rgba(11,16,32,.72);
      font-size:14px;
    }

    /* Slider */
    .slider{
      border-top:1px solid rgba(11,16,32,.10);
      background:
        linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.70));
      padding: 14px 14px 16px;
    }
    .slider-shell{
      border-radius: 22px;
      border: 1px solid rgba(11,16,32,.12);
      overflow:hidden;
      box-shadow: var(--shadow-soft);
      background: #000;
      max-height: 600px; /* rule */
    }
    .slides{
      position:relative;
      height: min(56vw, 520px);
      max-height: 600px;
    }
    .slides figure{
      margin:0;
      position:absolute;
      inset:0;
      opacity:0;
      transform: scale(1.02);
      transition: opacity .8s ease, transform 1.2s ease;
    }
    .slides img{
      width:100%;
      height:100%;
      object-fit:cover;
      filter: saturate(1.15) contrast(1.05);
      opacity:.96;
    }
    .grain{
      position:absolute; inset:0;
      background:
        radial-gradient(circle at 10% 20%, rgba(246,196,69,.22), transparent 40%),
        radial-gradient(circle at 70% 10%, rgba(29,78,216,.22), transparent 42%),
        radial-gradient(circle at 80% 75%, rgba(212,60,47,.18), transparent 45%),
        linear-gradient(0deg, rgba(11,16,32,.55), rgba(11,16,32,.08) 55%, rgba(255,255,255,.08));
      mix-blend-mode: screen;
      pointer-events:none;
    }
    .caption{
      position:absolute;
      left:14px; right:14px; bottom:12px;
      display:flex;
      gap:12px;
      align-items:flex-end;
      justify-content:space-between;
      color:#fff;
    }
    .caption .tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.22);
      background: rgba(11,16,32,.38);
      backdrop-filter: blur(8px);
      font-weight:800;
      letter-spacing:.3px;
      box-shadow: 0 12px 30px rgba(0,0,0,.25);
      max-width: 78%;
    }
    .caption .tag b{
      font-family: var(--serif);
      font-size: 14px;
      text-shadow: 0 10px 18px rgba(0,0,0,.35);
    }
    .caption .tag span{
      font-size:12px;
      opacity:.92;
      white-space:nowrap;
    }

    /* Slider radio controls */
    .slider input{
      position:absolute;
      width:1px;height:1px;
      overflow:hidden;
      clip: rect(0 0 0 0);
      white-space:nowrap;
    }
    .dots{
      display:flex;
      gap:10px;
      justify-content:center;
      align-items:center;
      padding: 12px 0 0;
    }
    .dots label{
      width:38px; height:12px;
      border-radius: 999px;
      border:1px solid rgba(11,16,32,.20);
      background: rgba(255,255,255,.65);
      cursor:pointer;
      transition: transform .35s ease, background .35s ease, box-shadow .45s ease, border-color .35s ease;
      position:relative;
      overflow:hidden;
    }
    .dots label:before{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(90deg, rgba(29,78,216,.0), rgba(29,78,216,.25), rgba(246,196,69,.35), rgba(212,60,47,.25));
      transform: translateX(-65%);
      transition: transform .55s ease;
    }
    .dots label:hover{
      transform: translateY(-1px);
      box-shadow: 0 10px 18px rgba(11,16,32,.10);
      border-color: rgba(29,78,216,.28);
    }

    #s1:checked ~ .slider-shell .slides figure:nth-child(1),
    #s2:checked ~ .slider-shell .slides figure:nth-child(2),
    #s3:checked ~ .slider-shell .slides figure:nth-child(3){
      opacity:1;
      transform: scale(1);
    }
    #s1:checked ~ .dots label[for="s1"],
    #s2:checked ~ .dots label[for="s2"],
    #s3:checked ~ .dots label[for="s3"]{
      background: rgba(246,196,69,.82);
      border-color: rgba(212,60,47,.35);
      box-shadow: 0 10px 22px rgba(246,196,69,.22);
    }
    #s1:checked ~ .dots label[for="s1"]:before,
    #s2:checked ~ .dots label[for="s2"]:before,
    #s3:checked ~ .dots label[for="s3"]:before{
      transform: translateX(0%);
    }

    main{
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px 16px 34px;
      display:flex;
      flex-direction:column;
      gap: 18px;
    }

    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      padding: 0 2px;
    }
    .section-head h2{
      margin:0;
      font-family: var(--serif);
      font-size: clamp(20px, 2.2vw, 28px);
      letter-spacing:.3px;
      line-height:1.1;
    }
    .section-head p{
      margin:0;
      color: rgba(11,16,32,.70);
      max-width: 58ch;
      font-size:14px;
    }

    .grid{
      display:grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    article.card{
      border-radius: var(--radius-lg);
      border: 1px solid rgba(11,16,32,.12);
      background: rgba(255,255,255,.78);
      overflow:hidden;
      box-shadow: 0 14px 32px rgba(11,16,32,.10);
      transition: transform .45s ease, box-shadow .55s ease, border-color .35s ease, background .35s ease;
      position:relative;
    }
    .card:hover{
      transform: translateY(-4px);
      box-shadow: 0 22px 50px rgba(11,16,32,.14);
      border-color: rgba(29,78,216,.22);
    }
    .thumb{
      position:relative;
      height: 180px;
      background: #ddd;
      border-bottom: 1px solid rgba(11,16,32,.10);
    }
    .thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      filter:saturate(1.12) contrast(1.02);
      display:block;
    }
    .thumb:after{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(circle at 18% 20%, rgba(246,196,69,.28), transparent 45%),
        linear-gradient(0deg, rgba(11,16,32,.40), rgba(11,16,32,.02) 55%);
      opacity:.75;
      pointer-events:none;
    }
    .badge{
      position:absolute;
      top:12px; left:12px;
      padding:8px 10px;
      border-radius:999px;
      font-weight:850;
      font-size:12px;
      letter-spacing:.5px;
      text-transform:uppercase;
      color: rgba(11,16,32,.90);
      background: rgba(246,196,69,.90);
      border:1px solid rgba(11,16,32,.12);
      box-shadow: 0 14px 26px rgba(0,0,0,.18);
    }
    .card-body{
      padding: 14px 14px 14px;
    }
    .card-body h3{
      margin:0 0 6px;
      font-family: var(--serif);
      font-size: 18px;
      line-height:1.2;
      letter-spacing:.2px;
    }
    .meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:0 0 8px;
      color: rgba(11,16,32,.70);
      font-size: 13px;
    }
    .meta span{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .meta span:before{
      content:"";
      width:6px;height:6px;border-radius:999px;
      background: rgba(29,78,216,.65);
      box-shadow: 0 8px 16px rgba(29,78,216,.18);
    }
    .card-body p{
      margin:0 0 12px;
      color: rgba(11,16,32,.74);
      font-size: 14px;
      line-height:1.65;
    }
    .card-body a{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:800;
      text-decoration:none;
      color: var(--cobalt-ink);
      position:relative;
      padding-bottom:2px;
      transition: color .35s ease, transform .35s ease;
    }
    .card-body a:after{
      content:"";
      position:absolute;
      left:0; right:0; bottom:-2px;
      height:2px;
      background: linear-gradient(90deg, rgba(29,78,216,.95), rgba(29,78,216,.25));
      border-radius:2px;
      transform: scaleX(.22);
      transform-origin:left;
      transition: transform .45s ease;
    }
    .card-body a:hover{
      color: var(--cobalt);
      transform: translateX(2px);
    }
    .card-body a:hover:after{transform: scaleX(1)}

    /* Section individuality */
    .s1{
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(238,244,255,.85), rgba(255,255,255,.60)),
        repeating-linear-gradient(90deg, rgba(29,78,216,.08) 0 1px, transparent 1px 18px);
      border: 1px solid rgba(29,78,216,.16);
      padding: 14px;
      box-shadow: 0 18px 40px rgba(29,78,216,.08);
    }
    .s1 .badge{background: rgba(29,78,216,.92); color: #fff; border-color: rgba(255,255,255,.22)}
    .s1 article.card:hover{border-color: rgba(29,78,216,.32)}

    .s2{
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(255,245,220,.82), rgba(255,255,255,.62)),
        radial-gradient(900px 400px at 10% 0%, rgba(246,196,69,.28), transparent 58%);
      border: 1px solid rgba(246,196,69,.26);
      padding: 14px;
      box-shadow: 0 18px 40px rgba(246,196,69,.10);
    }
    .s2 .badge{background: rgba(212,60,47,.92); color:#fff; border-color: rgba(255,255,255,.20)}
    .s2 article.card{background: rgba(255,255,255,.80)}
    .s2 article.card:hover{transform: translateY(-5px) rotate(-.15deg)}

    .s3{
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(247,239,226,.88), rgba(255,255,255,.62)),
        repeating-linear-gradient(45deg, rgba(197,101,60,.10) 0 2px, transparent 2px 16px);
      border: 1px solid rgba(197,101,60,.20);
      padding: 14px;
      box-shadow: 0 18px 40px rgba(197,101,60,.10);
    }
    .s3 .badge{background: rgba(85,107,47,.92); color:#fff; border-color: rgba(255,255,255,.20)}
    .s3 article.card:hover{box-shadow: 0 26px 60px rgba(11,16,32,.16)}

    /* Blog list */
    .blog-wrap{
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 16px 26px;
    }
    .blog-block{
      border-radius: var(--radius-xl);
      border: 1px solid rgba(11,16,32,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58)),
        radial-gradient(820px 420px at 85% 0%, rgba(212,60,47,.16), transparent 60%);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .blog-head{
      padding: 16px 16px 12px;
      border-bottom: 1px solid rgba(11,16,32,.10);
      background:
        linear-gradient(90deg, rgba(29,78,216,.10), rgba(246,196,69,.12), rgba(212,60,47,.10));
    }
    .blog-head h2{
      margin:0;
      font-family: var(--serif);
      font-size: 22px;
      letter-spacing:.3px;
    }
    .blog-head p{
      margin:6px 0 0;
      color: rgba(11,16,32,.72);
      max-width: 70ch;
      font-size:14px;
    }
    .blog-list{
      list-style:none;
      margin:0;
      padding: 10px;
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .blog-list li{
      border-radius: 18px;
      border: 1px solid rgba(11,16,32,.10);
      background: rgba(255,255,255,.70);
      overflow:hidden;
      transition: transform .45s ease, box-shadow .55s ease, border-color .35s ease;
      box-shadow: 0 12px 24px rgba(11,16,32,.08);
    }
    .blog-list li:hover{
      transform: translateY(-3px);
      box-shadow: 0 20px 44px rgba(11,16,32,.12);
      border-color: rgba(29,78,216,.20);
    }
    .blog-list a{
      display:grid;
      grid-template-columns: 112px 1fr;
      gap: 12px;
      align-items:stretch;
      text-decoration:none;
      color:inherit;
      min-height: 96px;
    }
    .blog-list img{
      width:112px;
      height:100%;
      object-fit:cover;
      display:block;
      filter:saturate(1.12) contrast(1.02);
    }
    .blog-list .bl-text{
      padding: 10px 12px 10px 0;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:4px;
    }
    .blog-list .bl-text b{
      font-family: var(--serif);
      font-size:16px;
      line-height:1.2;
    }
    .blog-list .bl-text span{
      color: rgba(11,16,32,.70);
      font-size: 13px;
    }

    /* Content (centered) */
    .content-wrap{
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 16px 28px;
    }
    .content-block{
      margin:0 auto;
      max-width: 860px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(11,16,32,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62)),
        radial-gradient(900px 520px at 12% 0%, rgba(246,196,69,.18), transparent 58%),
        radial-gradient(900px 520px at 88% 10%, rgba(29,78,216,.14), transparent 58%);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .content-top{
      padding: 16px;
      border-bottom: 1px solid rgba(11,16,32,.10);
      background:
        repeating-linear-gradient(90deg, rgba(11,16,32,.08) 0 1px, transparent 1px 20px);
    }
    .content-top h2{
      margin:0;
      font-family: var(--serif);
      font-size: 22px;
    }
    .content-top p{
      margin:6px 0 0;
      color: rgba(11,16,32,.72);
      max-width: 74ch;
      font-size: 14px;
    }

    .lead-image{
      padding: 14px 16px 0;
      display:flex;
      justify-content:center;
    }
    .lead-image figure{
      margin:0;
      width:min(820px, 100%);
      border-radius: 22px;
      border:1px solid rgba(11,16,32,.12);
      overflow:hidden;
      box-shadow: 0 18px 46px rgba(11,16,32,.12);
      background:#000;
      position:relative;
    }
    .lead-image img{
      width:100%;
      height:auto;
      display:block;
      max-height: 520px;
      object-fit:cover;
      filter: saturate(1.14) contrast(1.03);
    }
    .lead-image figure:after{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(circle at 18% 22%, rgba(246,196,69,.25), transparent 42%),
        radial-gradient(circle at 78% 14%, rgba(29,78,216,.22), transparent 44%),
        linear-gradient(0deg, rgba(11,16,32,.35), rgba(11,16,32,.04) 56%);
      pointer-events:none;
    }

    .rating{
      padding: 12px 16px 0;
      display:flex;
      justify-content:center;
    }
    .rating .pill{
      width:min(820px, 100%);
      border-radius: 999px;
      border:1px solid rgba(11,16,32,.12);
      background: rgba(255,255,255,.72);
      box-shadow: 0 12px 24px rgba(11,16,32,.08);
      padding: 10px 14px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .rating b{
      font-family: var(--serif);
      letter-spacing:.2px;
    }
    .stars{
      display:inline-flex;
      gap:6px;
      align-items:center;
    }
    .stars i{
      width:10px;height:10px;border-radius:3px;
      background: linear-gradient(180deg, rgba(246,196,69,.95), rgba(246,196,69,.55));
      border:1px solid rgba(11,16,32,.12);
      box-shadow: 0 10px 18px rgba(246,196,69,.18);
      transform: rotate(45deg);
      display:inline-block;
    }

    .divider{
      margin: 14px 16px 0;
      height:1px;
      background: linear-gradient(90deg, transparent, rgba(11,16,32,.16), transparent);
    }

    .article-pad{
      padding: 16px;
    }
    .article-pad article{
      background: rgba(255,255,255,.55);
      border:1px solid rgba(11,16,32,.10);
      border-radius: 22px;
      padding: 16px;
      box-shadow: 0 14px 34px rgba(11,16,32,.08);
    }
    .article-pad h1{
      margin:0 0 8px;
      font-family: var(--serif);
      font-size: clamp(24px, 3.2vw, 36px);
      line-height:1.1;
      letter-spacing:.2px;
    }
    .byline{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin: 0 0 12px;
      color: rgba(11,16,32,.72);
      font-size: 13.5px;
    }
    .byline span{
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .byline span:before{
      content:"";
      width:7px;height:7px;border-radius:999px;
      background: rgba(212,60,47,.75);
      box-shadow: 0 10px 18px rgba(212,60,47,.16);
    }
    .bodycopy{
      color: rgba(11,16,32,.78);
      font-size: 15.5px;
      line-height:1.78;
    }
    .bodycopy p{margin:0 0 12px}
    .bodycopy p:last-child{margin-bottom:0}
    .callout{
      margin: 14px 0;
      padding: 12px 12px;
      border-radius: 18px;
      border: 1px solid rgba(212,60,47,.22);
      background:
        linear-gradient(180deg, rgba(212,60,47,.10), rgba(255,255,255,.55));
      position:relative;
      overflow:hidden;
    }
    .callout:before{
      content:"";
      position:absolute;
      top:0; left:0;
      width:100%; height:12px;
      background:
        repeating-linear-gradient(90deg,
          rgba(212,60,47,.55) 0 12px,
          rgba(246,196,69,.55) 12px 24px,
          rgba(29,78,216,.50) 24px 36px,
          rgba(197,101,60,.50) 36px 48px
        );
      opacity:.55;
    }
    .callout b{
      display:block;
      margin-top: 10px;
      font-family: var(--serif);
    }

    .prevnext{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      justify-content:space-between;
      padding: 12px 16px 16px;
    }
    .prevnext a{
      text-decoration:none;
      border-radius: 999px;
      border: 1px solid rgba(11,16,32,.14);
      background: rgba(255,255,255,.68);
      padding: 10px 12px;
      min-height: var(--tap);
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:850;
      transition: transform .35s ease, box-shadow .45s ease, border-color .35s ease;
    }
    .prevnext a:hover{
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(11,16,32,.12);
      border-color: rgba(29,78,216,.22);
    }

    /* Comments + form */
    .comments{
      padding: 0 16px 16px;
      display:grid;
      gap: 12px;
    }
    .comments .label{
      font-family: var(--serif);
      font-size: 18px;
      letter-spacing:.2px;
    }
    .empty{
      border-radius: 22px;
      border: 1px dashed rgba(11,16,32,.22);
      background: rgba(255,255,255,.50);
      padding: 14px;
      color: rgba(11,16,32,.62);
    }
    form.comment-form{
      border-radius: 22px;
      border: 1px solid rgba(11,16,32,.12);
      background: rgba(255,255,255,.66);
      padding: 14px;
      box-shadow: 0 14px 34px rgba(11,16,32,.08);
      display:grid;
      gap:10px;
    }
    .row{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    label.field{
      display:grid;
      gap:6px;
      font-weight:750;
      font-size: 13px;
      color: rgba(11,16,32,.78);
    }
    input, textarea{
      width:100%;
      padding: 11px 12px;
      border-radius: 14px;
      border: 1px solid rgba(11,16,32,.16);
      background: rgba(255,255,255,.82);
      transition: border-color .35s ease, box-shadow .45s ease, transform .35s ease;
      font: inherit;
    }
    textarea{min-height: 110px; resize: vertical}
    input:focus-visible, textarea:focus-visible{
      border-color: rgba(29,78,216,.35);
      box-shadow: 0 0 0 6px rgba(29,78,216,.10);
    }

    /* Related */
    .related{
      padding: 0 16px 18px;
    }
    .related .head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin-bottom: 10px;
    }
    .related .head h3{
      margin:0;
      font-family: var(--serif);
      font-size: 18px;
    }
    .related-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .rel{
      display:grid;
      grid-template-columns: 120px 1fr;
      gap:12px;
      border-radius: 18px;
      border: 1px solid rgba(11,16,32,.12);
      background: rgba(255,255,255,.66);
      overflow:hidden;
      box-shadow: 0 12px 24px rgba(11,16,32,.08);
      text-decoration:none;
      color:inherit;
      transition: transform .45s ease, box-shadow .55s ease, border-color .35s ease;
      min-height: 96px;
    }
    .rel:hover{
      transform: translateY(-3px);
      box-shadow: 0 20px 44px rgba(11,16,32,.12);
      border-color: rgba(212,60,47,.22);
    }
    .rel img{
      width:120px;height:100%;
      object-fit:cover; display:block;
      filter:saturate(1.12) contrast(1.02);
    }
    .rel .t{
      padding: 10px 12px 10px 0;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:4px;
    }
    .rel .t b{
      font-family: var(--serif);
      font-size: 16px;
      line-height:1.2;
    }
    .rel .t span{
      color: rgba(11,16,32,.70);
      font-size: 13px;
    }

    /* Contacts */
    .contacts{
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 16px 30px;
    }
    .contacts-block{
      border-radius: var(--radius-xl);
      border:1px solid rgba(11,16,32,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.60)),
        radial-gradient(900px 520px at 10% 10%, rgba(85,107,47,.14), transparent 60%),
        radial-gradient(900px 520px at 90% 0%, rgba(29,78,216,.12), transparent 55%);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .contacts-head{
      padding: 16px;
      border-bottom:1px solid rgba(11,16,32,.10);
      background:
        linear-gradient(90deg, rgba(197,101,60,.12), rgba(246,196,69,.10), rgba(29,78,216,.10));
    }
    .contacts-head h2{
      margin:0;
      font-family: var(--serif);
      font-size: 22px;
    }
    .contacts-grid{
      padding: 14px 16px 16px;
      display:grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .panel{
      border-radius: 22px;
      border:1px solid rgba(11,16,32,.12);
      background: rgba(255,255,255,.66);
      box-shadow: 0 14px 34px rgba(11,16,32,.08);
      padding: 14px;
    }
    .panel h3{
      margin:0 0 8px;
      font-family: var(--serif);
      font-size: 18px;
    }
    .addr{
      color: rgba(11,16,32,.74);
      margin:0;
      font-size: 14.5px;
      line-height:1.7;
    }
    .map{
      border-radius: 18px;
      overflow:hidden;
      border:1px solid rgba(11,16,32,.12);
      background: #f1f1f1;
    }
    .map iframe{
      width:100%;
      height: 260px;
      border:0;
      display:block;
      filter:saturate(1.05) contrast(1.03);
    }

    /* Aside promos + modal */
    aside{
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 16px 28px;
      display:grid;
      gap: 12px;
    }
    .promo{
      border-radius: var(--radius-xl);
      border:1px solid rgba(11,16,32,.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58)),
        repeating-linear-gradient(135deg, rgba(29,78,216,.08) 0 2px, transparent 2px 18px);
      box-shadow: var(--shadow-soft);
      padding: 14px;
      display:grid;
      gap:10px;
    }
    .promo h2{
      margin:0;
      font-family: var(--serif);
      font-size: 20px;
    }
    .promo-links{
      display:grid;
      grid-template-columns: 1fr;
      gap:10px;
    }
    .promo a{
      text-decoration:none;
      color:inherit;
      border-radius: 18px;
      border:1px solid rgba(11,16,32,.12);
      background: rgba(255,255,255,.65);
      padding: 12px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      transition: transform .45s ease, box-shadow .55s ease, border-color .35s ease;
      box-shadow: 0 12px 22px rgba(11,16,32,.08);
    }
    .promo a:hover{
      transform: translateY(-3px);
      box-shadow: 0 20px 44px rgba(11,16,32,.12);
      border-color: rgba(246,196,69,.35);
    }
    .promo a b{
      font-family: var(--serif);
      font-size: 16px;
      line-height:1.2;
    }
    .promo a span{
      display:block;
      color: rgba(11,16,32,.70);
      font-size: 13px;
      margin-top: 4px;
    }
    .glyph{
      width:44px;height:44px;
      border-radius: 16px;
      border:1px solid rgba(11,16,32,.12);
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), transparent 45%),
        linear-gradient(180deg, rgba(246,196,69,.85), rgba(246,196,69,.45));
      box-shadow: 0 12px 22px rgba(246,196,69,.18);
      position:relative;
      flex: 0 0 auto;
    }
    .glyph:before{
      content:"";
      position:absolute;
      inset:10px;
      border-radius: 999px;
      border:2px solid rgba(29,78,216,.55);
      box-shadow: inset 0 0 0 2px rgba(255,255,255,.4);
    }
    .glyph:after{
      content:"";
      position:absolute;
      width:14px;height:14px;
      right:9px; bottom:9px;
      border-radius: 6px;
      background: rgba(212,60,47,.85);
      border:1px solid rgba(255,255,255,.45);
      transform: rotate(12deg);
    }

    /* CSS-only modal */
    .modal{
      position:fixed;
      inset:0;
      display:none;
      align-items:center;
      justify-content:center;
      padding: 18px;
      background: rgba(11,16,32,.55);
      backdrop-filter: blur(6px);
      z-index: 80;
    }
    .modal:target{display:flex}
    .modal-card{
      width: min(560px, 100%);
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,.20);
      background:
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));
      box-shadow: 0 28px 80px rgba(0,0,0,.30);
      overflow:hidden;
    }
    .modal-top{
      padding: 14px 14px 12px;
      border-bottom: 1px solid rgba(11,16,32,.10);
      background:
        linear-gradient(90deg, rgba(29,78,216,.12), rgba(246,196,69,.14), rgba(212,60,47,.12));
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
    }
    .modal-top h2{
      margin:0;
      font-family: var(--serif);
      font-size: 18px;
      letter-spacing:.2px;
    }
    .modal-top a{
      text-decoration:none;
      border-radius:999px;
      border:1px solid rgba(11,16,32,.16);
      background: rgba(255,255,255,.70);
      min-height: 40px;
      padding: 8px 12px;
      display:inline-flex;
      align-items:center;
      font-weight:900;
      transition: transform .35s ease, box-shadow .45s ease;
    }
    .modal-top a:hover{transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11,16,32,.14)}
    .modal-body{padding: 14px}
    .modal-body p{margin:0 0 10px; color: rgba(11,16,32,.72)}
    .modal-body .row{grid-template-columns: 1fr}
    .modal-actions{
      padding: 12px 14px 14px;
      border-top: 1px solid rgba(11,16,32,.10);
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
    }

    /* Footer */
    footer{
      margin-top: 8px;
      background:
        linear-gradient(180deg, rgba(197,101,60,.92), rgba(11,16,32,.94));
      color: rgba(255,255,255,.92);
      border-top: 1px solid rgba(255,255,255,.12);
      position:relative;
      overflow:hidden;
    }
    footer:before{
      /* tile trim */
      content:"";
      position:absolute;
      left:0; right:0; top:0;
      height: 14px;
      background:
        repeating-linear-gradient(90deg,
          rgba(246,196,69,.92) 0 18px,
          rgba(29,78,216,.92) 18px 36px,
          rgba(212,60,47,.92) 36px 54px,
          rgba(85,107,47,.92) 54px 72px
        );
      opacity:.75;
    }
    footer:after{
      /* string-light silhouettes */
      content:"";
      position:absolute;
      left:-10%;
      right:-10%;
      top: 36px;
      height: 110px;
      background:
        radial-gradient(circle at 5% 30%, rgba(246,196,69,.55) 0 5px, transparent 6px),
        radial-gradient(circle at 14% 42%, rgba(246,196,69,.45) 0 4px, transparent 5px),
        radial-gradient(circle at 24% 28%, rgba(246,196,69,.55) 0 5px, transparent 6px),
        radial-gradient(circle at 36% 46%, rgba(246,196,69,.45) 0 4px, transparent 5px),
        radial-gradient(circle at 48% 30%, rgba(246,196,69,.55) 0 5px, transparent 6px),
        radial-gradient(circle at 60% 44%, rgba(246,196,69,.45) 0 4px, transparent 5px),
        radial-gradient(circle at 72% 28%, rgba(246,196,69,.55) 0 5px, transparent 6px),
        radial-gradient(circle at 84% 42%, rgba(246,196,69,.45) 0 4px, transparent 5px),
        radial-gradient(circle at 95% 30%, rgba(246,196,69,.55) 0 5px, transparent 6px),
        linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
      opacity:.55;
      filter: blur(.2px);
      pointer-events:none;
    }
    .foot-inner{
      max-width: var(--max);
      margin:0 auto;
      padding: 44px 16px 26px;
      display:grid;
      grid-template-columns: 1fr;
      gap: 12px;
      position:relative;
    }
    .slogan{
      font-family: var(--serif);
      font-size: 22px;
      margin:0;
      letter-spacing:.3px;
    }
    .about{
      margin:0;
      color: rgba(255,255,255,.82);
      max-width: 75ch;
      font-size: 14.5px;
      line-height:1.7;
    }
    .social{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top: 2px;
    }
    .social a{
      text-decoration:none;
      color: rgba(255,255,255,.92);
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      border-radius: 999px;
      padding: 10px 12px;
      min-height: var(--tap);
      display:inline-flex;
      align-items:center;
      font-weight:850;
      transition: transform .35s ease, box-shadow .45s ease, background .35s ease, border-color .35s ease;
    }
    .social a:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.12);
      border-color: rgba(246,196,69,.35);
      box-shadow: 0 16px 34px rgba(0,0,0,.22);
    }
    .copy{
      margin: 10px 0 0;
      color: rgba(255,255,255,.72);
      font-size: 13px;
    }

    /* Responsive */
    @media (min-width: 768px){
      .hero-inner{
        grid-template-columns: 1.15fr .85fr;
        align-items: start;
        padding: 24px 20px 18px;
        gap: 16px;
      }
      .mini-facts{grid-template-columns: 1fr; margin-top: 0}
      .grid{grid-template-columns: repeat(2, 1fr)}
      .thumb{height: 190px}
      .blog-list{grid-template-columns: repeat(2, 1fr)}
      .related-grid{grid-template-columns: repeat(2, 1fr)}
      .row{grid-template-columns: 1fr 1fr}
      .contacts-grid{grid-template-columns: 1.05fr .95fr}
      .promo-links{grid-template-columns: repeat(2, 1fr)}
      .foot-inner{grid-template-columns: 1.2fr .8fr}
      .social{justify-content:flex-end}
      .copy{grid-column: 1 / -1}
    }

    @media (min-width: 1200px){
      /* Desktop: show inline nav, hide burger + mobile drawer */
      .burger, .navwrap{display:none !important}
      .topbar{padding: 12px 16px}
      .hero{padding: 24px 16px 18px}
      .hero-inner{grid-template-columns: 1.1fr .9fr; padding: 28px 26px 18px}
      .mini-facts{grid-template-columns: 1fr; gap:12px}
      main{padding: 16px 16px 40px}
      .grid{grid-template-columns: repeat(3, 1fr); gap: 14px}
      .thumb{height: 200px}
      .blog-list{grid-template-columns: repeat(3, 1fr)}
      .related-grid{grid-template-columns: repeat(3, 1fr)}
      .promo-links{grid-template-columns: repeat(4, 1fr)}
    }

    @media (max-width: 1199.98px){
      /* Under 1200px: hide inline nav (in topbar) and show burger */
      .topbar nav{display:none}
      .burger{display:inline-flex}
    }

    @media (prefers-reduced-motion: reduce){
      *{transition:none !important; scroll-behavior:auto !important}
      .slides figure{transition:none !important}
    }
  