 :root{
    --bg:      #FFFFFF;
    --ink:     #1B1F2A;
    --ink-soft:#5C6472;
    --line:    #DDDCD6;
    --yellow:  #F5B700;
  }

  *{ box-sizing:border-box; }
  html{ -webkit-text-size-adjust:100%; }

  body{
    margin:0;
    color:var(--ink);
    font-family:"IBM Plex Sans","Helvetica Neue",Arial,sans-serif;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    background: #dedede;
    background: linear-gradient(186deg,rgba(222, 222, 222, 1) 0%, rgba(255, 255, 255, 1) 50%);
    background-repeat:no-repeat;
    background-attachment:fixed;
  }

  h1,h2,.brand-name{ font-family:"Archivo","IBM Plex Sans",sans-serif; }

  a{ color:var(--ink); }
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
    outline:2px solid var(--yellow);
    outline-offset:2px;
  }

  .page{ max-width:900px; }

  /* Top accent */
  .top-accent{
    height:8px;
    width:100%;
    background:linear-gradient(90deg, var(--yellow) 0%, var(--yellow) 55%, #F0603F 100%);
  }

  /* Header */
  header{ padding:56px 0 0; }
  .brand{ text-decoration:none; display:inline-block; }
  .brand-logo{ height:44px; width:auto; display:block; }

  .contact-block{
    font-size:14px;
    color:var(--ink-soft);
    line-height:1.55;
    padding-top:4px;
  }
  .contact-block strong{ color:var(--ink); font-weight:600; }
  .contact-block a{ text-decoration:none; color:#C99000; font-weight:600; }
  .contact-block a:hover{ color:var(--yellow); }

  .rule{
    height:1px;
    background:rgba(27,31,42,0.4);
    border:none;
    margin:32px 0 0;
  }

  /* Eyebrow */
  .eyebrow{
    display:flex;
    align-items:center;
    gap:9px;
    font-size:12px;
    font-weight:600;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:#9A7300;
  }
  .eyebrow::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:2px;
    background:var(--yellow);
    flex:none;
  }

  /* Intro */
  .intro-section{ padding:36px 0 4px; }
  .intro-section h2{
    font-size:25px;
    font-weight:700;
    letter-spacing:-0.01em;
    margin:12px 0 14px;
    color:var(--ink);
  }
  .intro-text{
    font-size:16px;
    color:var(--ink-soft);
    max-width:100%;
  }

  /* Services */
  main{ padding:8px 0 0; }
  .service{
    display:grid;
    grid-template-columns:52px 1fr;
    gap:22px;
    padding:38px 0;
    border-top:1px solid var(--line);
    position:relative;
  }
  .service::before{
    content:"";
    position:absolute;
    top:-1px; left:0;
    width:72px; height:2px;
    background:linear-gradient(90deg, var(--ink), transparent);
  }
  .service:last-child{ padding-bottom:4px; }

  .icon{
    width:48px;
    height:48px;
    border:1.5px solid var(--yellow);
    border-radius:10px;
    background:linear-gradient(135deg, #FBDD84, #FFF9E8);
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .icon svg{
    width:22px;
    height:22px;
    stroke:var(--ink);
    fill:none;
    stroke-width:1.6;
    stroke-linecap:square;
    stroke-linejoin:miter;
  }

  .service h2{
    font-size:20px;
    font-weight:700;
    letter-spacing:-0.006em;
    margin:12px 0 10px;
    color:var(--ink);
  }
  .service p{
    margin:0;
    color:var(--ink-soft);
    font-size:15.5px;
    max-width:100%;
  }
  .service p + p{ margin-top:12px; }
  .brandname{ color:var(--ink); font-weight:600; }

  /* Kontaktformular */
  .contact-form-section{
    border-top:1px solid var(--line);
    margin-top:8px;
    padding:44px 0 4px;
  }
  .contact-form-section h2{
    font-size:22px;
    font-weight:700;
    letter-spacing:-0.008em;
    margin:12px 0 24px;
    color:var(--ink);
  }
  .contact-form-section .form-label{
    font-size:12px;
    font-weight:600;
    letter-spacing:0.04em;
    text-transform:uppercase;
    color:var(--ink-soft);
    margin-bottom:6px;
  }
  .contact-form-section .form-control{
    background:#FFFFFF;
    border:1px solid var(--line);
    border-radius:0;
    padding:10px 12px;
    font-size:15px;
    color:var(--ink);
  }
  .contact-form-section .form-control:focus{
    border-color:var(--yellow);
    box-shadow:none;
  }
  .contact-form-section textarea.form-control{ resize:vertical; }

  .btn-send{
    background:var(--yellow);
    border:1px solid var(--yellow);
    color:var(--ink);
    font-weight:700;
    font-size:13px;
    letter-spacing:0.05em;
    text-transform:uppercase;
    padding:12px 30px;
    border-radius:0;
    transition:background-color .15s ease, border-color .15s ease;
  }
  .btn-send:hover{ background:var(--bg); border-color:var(--ink); color:var(--ink); }

  /* CONTENT FULL */
  .content_fullsize {
      margin: 25px 0 0 0;
  }
  
  /* Footer */
  footer{
    margin-top:12px;
    padding:26px 0 56px;
    border-top:1px solid rgba(27,31,42,0.4);
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:12px;
    font-size:13px;
    color:var(--ink-soft);
  }
  footer a{ color:#C99000; text-decoration:none; }
  footer a:hover{ color:var(--yellow); }
  .footer-links{ display:flex; gap:18px; }

  @media (max-width:560px){
    header{ padding:40px 0 0; }
    .service{ grid-template-columns:1fr; }
    footer{ flex-direction:column; }
  }
  
  /* FONTS */
  .f_b { font-weight: bold; }
  .f_14 { font-size: 14px; }