    :root{
      --text:#222;
      --muted:#6b6b6b;
      --brand:#111;
      --accent:#c9b796;
      --bg:#fffdf8;
      --max:1160px;
    }

    @font-face {
      font-family: 'Holiday';
      src: url('/fonts/HolidayFree.woff2') format('woff2'),
           url('/fonts/HolidayFree.woff') format('woff');
      font-weight: normal;
      font-style: normal;
    }
    
    .brand {
      font-family: 'Holiday', serif;
      font-size: 20px;
      font-weight: normal;
      line-height: 1;
      color: var(--brand);
      margin-right: 32px;
      text-decoration: none;
    }

    *{box-sizing:border-box}
    html,body{margin:0;padding:0;background:#FFFFFF;color:var(--text);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}

    .nav{
      position:sticky; top:0; z-index:50;
      background:#fff; border-bottom:1px solid #eee;
    }
    .nav__inner{
      max-width:var(--max); margin:0 auto; padding:14px 20px;
      display:flex; align-items:center; justify-content:space-between; gap:16px; position: relative;
    }



    .menu{display:flex; gap:18px; flex-wrap:wrap}
    .menu a{
      text-decoration:none; color:var(--text); font-weight:500;
      padding:8px 10px; border-radius:8px;
    }
    .menu a:hover{background:#f4f4f4}

    .hero{
      max-width:var(--max); margin:0 auto; padding:60px 20px 40px;
      display:grid; grid-template-columns:1.2fr .9fr; align-items:center; gap:36px;
    }
    .hero h1{
      font-family:"Playfair Display", serif; font-size:56px; line-height:1.05; margin:0;
      letter-spacing:.2px;
    }
    .hero .tagline{
      margin:10px 0 28px; color:var(--muted); font-size:18px;
    }
    .hero .quote{
      font-size:28px; line-height:1.45; margin:20px 0 34px;
    }
    .hero .since{ color:var(--muted); margin-top:20px; }

    .social{ display:flex; align-items:center; gap:14px; margin-top:10px;}
    .icon{
      width:34px; height:34px; border:1px solid #ddd; border-radius:10px;
      display:grid; place-items:center; color:#000;
      background:#fff;
    }
    .handle{ margin-left:6px; color:#333; font-weight:600;}

    section{ scroll-margin-top:76px; }
    .section{
      max-width:var(--max); margin:40px auto; padding:20px;
      border-top:1px solid #f1f1f1;
    }
    .section h2{
      font-family:"Playfair Display", serif; font-size:32px; margin:10px 0 12px;
    }
    .muted{color:var(--muted)}

    @media (max-width:900px){
      .hero{grid-template-columns:1fr; padding-top:36px}
      .hero h1{font-size:44px}
      .hero .quote{font-size:24px}
      .menu{gap:10px}
    }
    
    * {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }
    
    input, textarea, [contenteditable] {
      caret-color: transparent;
    }
    

    
    .logo {
  width: 400px;
  height: auto;
}

.wa-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.wa-fab:hover {
  background: #20c85a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transform: scale(1.02);
}

.wa-fab .wa-svg {
  width: 28px;
  height: 28px;
  color: white;
}

  :root{
    --cookie-bg:#989898;
    --cookie-fg:#ffffff;
    --cookie-maxw:1200px;
  }
  .cookie-wrap{
    position:fixed; top:0; left:0; right:0;
    background:var(--cookie-bg);
    color:var(--cookie-fg);
    z-index:9999;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
  }
  .cookie-inner{
    max-width:var(--cookie-maxw);
    margin:0 auto;
    display:flex; align-items:center; justify-content:center;
    gap:16px;
    padding:14px 20px;
    line-height:1.5;
    font: 14px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  .cookie-text{
    text-align:center;
  }
  .cookie-text a{ color:#fff; text-decoration:underline; }
  .cookie-close{
    margin-left:auto;
    display:inline-flex; align-items:center; justify-content:center;
    width:28px; height:28px;
    border:2px solid rgba(255,255,255,.9);
    color:#fff; background:transparent;
    border-radius:999px;
    cursor:pointer;
    transition:all .2s ease;
  }
  .cookie-close:hover{ background:rgba(255,255,255,.2); transform:scale(1.05); }

  @media (max-width:480px){
    .cookie-inner{ padding:12px 14px; }
  }
  
.nav-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}


.lang-toggle {
  display: flex;
  width: 70px;
  background: #e8e8e8;
  border-radius: 30px;
  padding: 3px;
  border: 1px solid #cdd1df;
  cursor: pointer;
}

.lang-toggle .toggle-option {
  flex: 1;
  text-align: center;
  font-size: 12px;
  padding: 4px 0;
  border-radius: 20px;
  color: #555;
  user-select: none;
  transition: 0.25s;
}

.lang-toggle .active {
  background: #EFD8A3;
  color: #333;
}