:root{
    /* Bordeaux brand */
    --wine:        #8C2332;
    --wine-deep:   #6C1722;
    --wine-soft:   #F4E7E6;
    --wine-tint:   #FBF3F1;

    /* Neutrals – clinical & calm */
    --ink:         #232026;
    --ink-soft:    #5A5560;
    --line:        #E9E2DD;
    --paper:       #FBF8F6;
    --paper-2:     #F4EEEA;
    --white:       #FFFFFF;

    --maxw: 1200px;
    --r-lg: 22px;
    --r-md: 14px;

    --ff-head: 'Spectral', Georgia, serif;
    --ff-body: 'Hanken Grotesk', system-ui, sans-serif;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; scroll-padding-top:88px; }
  body{
    font-family:var(--ff-body);
    color:var(--ink);
    background:var(--paper);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
  }
  img{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  .wrap{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }

  h1,h2,h3,h4{ font-family:var(--ff-head); font-weight:600; line-height:1.08; letter-spacing:-0.01em; color:var(--ink); }

  .eyebrow{
    font-family:var(--ff-body);
    font-weight:700; font-size:13px; letter-spacing:.18em; text-transform:uppercase;
    color:var(--wine); display:inline-flex; align-items:center; gap:10px;
  }
  .eyebrow::before{ content:""; width:26px; height:2px; background:var(--wine); display:inline-block; border-radius:2px; }

  .btn{
    display:inline-flex; align-items:center; gap:10px;
    font-family:var(--ff-body); font-weight:700; font-size:16px;
    padding:15px 28px; border-radius:999px; cursor:pointer; border:1.5px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space:nowrap;
  }
  .btn svg{ width:17px; height:17px; }
  .btn-primary{ background:var(--wine); color:#fff; box-shadow:0 10px 26px -12px rgba(140,35,50,.7); }
  .btn-primary:hover{ background:var(--wine-deep); transform:translateY(-2px); box-shadow:0 16px 30px -12px rgba(140,35,50,.75); }
  .btn-ghost{ background:transparent; color:var(--wine); border-color:var(--wine); }
  .btn-ghost:hover{ background:var(--wine); color:#fff; transform:translateY(-2px); }
  .btn-light{ background:#fff; color:var(--wine); }
  .btn-light:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -14px rgba(0,0,0,.4); }
  .btn-outline-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.55); }
  .btn-outline-light:hover{ background:#fff; color:var(--wine); }

  section{ position:relative; }
  .pad{ padding:104px 0; }

  /* ---------------- HEADER ---------------- */
  header.site{
    position:fixed; top:0; left:0; right:0; z-index:100;
    transition:background .3s ease, box-shadow .3s ease, padding .3s ease;
    padding:20px 0;
  }
  header.site.scrolled{ background:rgba(251,248,246,.92); backdrop-filter:blur(12px); box-shadow:0 1px 0 var(--line); padding:12px 0; }
  .nav{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
  .brand{ display:flex; align-items:center; gap:13px; }
  .brand .mark{
    width:44px; height:44px; border-radius:50%; background:var(--wine);
    display:flex; align-items:center; justify-content:center; flex:0 0 auto;
    box-shadow:0 6px 16px -8px rgba(140,35,50,.8); overflow:hidden;
  }
  .brand .mark img{ width:26px; height:26px; object-fit:contain; filter:brightness(0) invert(1); }
  .brand .bt{ line-height:1.15; }
  .brand .bt strong{ font-family:var(--ff-head); font-weight:600; font-size:19px; display:block; color:var(--ink); }
  .brand .bt span{ font-size:12px; letter-spacing:.13em; text-transform:uppercase; color:var(--ink-soft); font-weight:600; }
  header.site:not(.scrolled) .brand .bt strong,
  header.site:not(.scrolled) .brand .bt span{ color:#fff; }

  .menu{ display:flex; align-items:center; gap:28px; }
  .menu a.lnk{ font-weight:600; font-size:15.5px; position:relative; padding:4px 0; color:var(--ink); }
  header.site:not(.scrolled) .menu a.lnk{ color:#fff; }
  .menu a.lnk::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--wine); transition:width .25s ease; }
  header.site:not(.scrolled) .menu a.lnk::after{ background:#fff; }
  .menu a.lnk:hover::after{ width:100%; }
  .menu .phone{
    display:inline-flex; align-items:center; gap:9px; font-weight:700; font-size:15.5px;
    padding:10px 20px; border-radius:999px; background:var(--wine); color:#fff; white-space:nowrap;
    transition:transform .18s ease, background .18s ease;
  }
  .menu .phone:hover{ transform:translateY(-2px); background:var(--wine-deep); }
  header.site:not(.scrolled) .menu .phone{ background:#fff; color:var(--wine); }
  .menu .phone svg{ width:16px; height:16px; }

  /* language switcher */
  .langswitch{ display:inline-flex; align-items:center; gap:2px; }
  .langswitch a{ font-size:13px; font-weight:700; padding:6px 9px; border-radius:8px; color:inherit; line-height:1; letter-spacing:.03em; transition:background .18s ease, color .18s ease; }
  .langswitch a.active{ background:var(--wine); color:#fff; }
  header.site:not(.scrolled) .langswitch a.active{ background:#fff; color:var(--wine); }
  .langswitch a:not(.active):hover{ background:rgba(140,35,50,.14); }
  header.site:not(.scrolled) .langswitch a:not(.active):hover{ background:rgba(255,255,255,.22); }

  .burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
  .burger span{ width:26px; height:2.5px; background:var(--ink); border-radius:3px; transition:.25s; }
  header.site:not(.scrolled) .burger span{ background:#fff; }

  /* ---------------- HERO ---------------- */
  .hero{ position:relative; min-height:100vh; display:flex; flex-direction:column; overflow:hidden; }
  .hero .bg{ position:absolute; inset:0; background:url('behandlungszimmer.jpg') center/cover no-repeat; }
  .hero .bg::after{
    content:""; position:absolute; inset:0;
    background:linear-gradient(100deg, rgba(76,15,25,.86) 0%, rgba(108,23,34,.66) 42%, rgba(140,35,50,.18) 75%, rgba(255,255,255,0) 100%);
  }
  .hero > .wrap{ position:relative; z-index:2; flex:1; display:flex; align-items:center; padding-top:120px; padding-bottom:40px; }
  .hero-inner{ max-width:680px; color:#fff; }
  .hero .eyebrow{ color:#fff; }
  .hero .eyebrow::before{ background:#fff; }
  .hero h1{
    color:#fff; font-size:clamp(40px, 6.2vw, 70px); font-weight:600; margin:22px 0 0;
  }
  .hero h1 em{ font-style:italic; font-weight:400; color:#F6D9D4; }
  .hero p.lead{ font-size:clamp(17px,2.1vw,20px); color:rgba(255,255,255,.9); margin-top:22px; max-width:560px; }
  .hero .cta-row{ display:flex; flex-wrap:wrap; gap:14px; margin-top:36px; }
  .hero .badges{ display:flex; flex-wrap:wrap; gap:26px; margin-top:46px; }
  .hero .badge{ display:flex; align-items:center; gap:11px; color:#fff; }
  .hero .badge svg{ width:22px; height:22px; flex:0 0 auto; color:#F6D9D4; }
  .hero .badge b{ font-weight:700; font-size:15px; display:block; }
  .hero .badge span{ font-size:13px; color:rgba(255,255,255,.75); }

  /* opening today strip */
  .today-strip{
    position:relative; z-index:3;
    background:var(--wine); color:#fff; padding:13px 0;
  }
  .today-strip > .wrap{ padding-top:0; padding-bottom:0; }
  .today-strip .wrap{ display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; text-align:center; }
  .today-strip .dot{ width:9px; height:9px; border-radius:50%; background:#7CE3A4; box-shadow:0 0 0 4px rgba(124,227,164,.25); flex:0 0 auto; }
  .today-strip span{ font-size:15.5px; font-weight:500; }
  .today-strip b{ font-weight:700; }

  /* ---------------- WELCOME ---------------- */
  .welcome .grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:64px; align-items:center; }
  .welcome h2{ font-size:clamp(30px,4vw,46px); margin:18px 0 0; }
  .welcome .sig{ margin-top:28px; }
  .welcome .sig .name{ font-family:var(--ff-head); font-style:italic; font-size:26px; color:var(--wine); }
  .welcome .sig .role{ font-size:14px; color:var(--ink-soft); letter-spacing:.04em; }
  .welcome p{ color:var(--ink-soft); font-size:17px; margin-top:18px; }
  .welcome .media{ position:relative; }
  .welcome .media img{ width:100%; border-radius:var(--r-lg); object-fit:cover; box-shadow:0 30px 60px -30px rgba(76,15,25,.4); }
  .welcome .media .chip{
    position:absolute; bottom:-26px; left:-26px; background:#fff; border-radius:var(--r-md);
    padding:20px 24px; box-shadow:0 24px 50px -20px rgba(0,0,0,.25); border:1px solid var(--line);
    display:flex; align-items:center; gap:16px;
  }
  .welcome .media .chip .big{ font-family:var(--ff-head); font-size:38px; font-weight:700; color:var(--wine); line-height:1; }
  .welcome .media .chip .lbl{ font-size:13.5px; color:var(--ink-soft); font-weight:600; line-height:1.3; }

  /* ---------------- SERVICES ---------------- */
  .services{ background:var(--white); }
  .sec-head{ text-align:center; max-width:680px; margin:0 auto 56px; }
  .sec-head h2{ font-size:clamp(30px,4vw,46px); margin-top:16px; }
  .sec-head p{ color:var(--ink-soft); font-size:17px; margin-top:14px; }
  .svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .svc{
    background:var(--paper); border:1px solid var(--line); border-radius:var(--r-lg);
    padding:34px 30px; transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  }
  .svc:hover{ transform:translateY(-5px); box-shadow:0 26px 50px -28px rgba(76,15,25,.45); border-color:var(--wine-soft); background:#fff; }
  .svc .ic{
    width:60px; height:60px; border-radius:16px; background:var(--wine-soft); color:var(--wine);
    display:flex; align-items:center; justify-content:center; margin-bottom:22px;
  }
  .svc:hover .ic{ background:var(--wine); color:#fff; }
  .svc .ic svg{ width:28px; height:28px; }
  .svc h3{ font-size:22px; }
  .svc p{ color:var(--ink-soft); font-size:15.5px; margin-top:10px; }
  .svc-link{ display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-weight:700; font-size:14.5px; color:var(--wine); }
  .svc-link svg{ width:15px; height:15px; transition:transform .2s ease; }
  a.svc:hover .svc-link svg{ transform:translate(2px,-2px); }

  /* ---------------- TEAM ---------------- */
  .team .t-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
  .member{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; transition:transform .22s ease, box-shadow .22s ease; }
  .member:hover{ transform:translateY(-5px); box-shadow:0 26px 50px -28px rgba(76,15,25,.4); }
  .member .ph{ aspect-ratio:4/3.4; overflow:hidden; background:var(--paper-2); }
  .member .ph img{ width:100%; height:100%; object-fit:cover; object-position:center top; transition:transform .5s ease; }
  .member:hover .ph img{ transform:scale(1.04); }
  .member .info{ padding:22px 24px 26px; }
  .member .info h3{ font-size:23px; }
  .member .info .role{ color:var(--wine); font-weight:700; font-size:14px; letter-spacing:.04em; margin-top:5px; text-transform:uppercase; }
  .member .info p{ color:var(--ink-soft); font-size:15px; margin-top:10px; }

  .team-note{ text-align:center; margin-top:40px; color:var(--ink-soft); font-size:15.5px; }
  .langs{ display:inline-flex; align-items:center; gap:10px; margin-left:8px; flex-wrap:wrap; justify-content:center; }
  .lang-pill{ display:inline-flex; align-items:center; gap:7px; background:var(--wine-soft); color:var(--wine-deep); font-weight:700; font-size:13px; padding:5px 13px; border-radius:999px; }

  /* ---------------- WHY / TRUST band ---------------- */
  .band{ background:var(--wine); color:#fff; }
  .band .b-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; text-align:center; }
  .band .stat .n{ font-family:var(--ff-head); font-size:clamp(38px,5vw,56px); font-weight:700; line-height:1; }
  .band .stat .l{ font-size:14.5px; color:rgba(255,255,255,.82); margin-top:10px; font-weight:500; }

  /* ---------------- CONTACT ---------------- */
  .contact{ background:var(--paper-2); }
  .c-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:48px; align-items:start; }
  .info-cards{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:30px; }
  .icard{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:24px; }
  .icard .ic{ width:46px; height:46px; border-radius:12px; background:var(--wine-soft); color:var(--wine); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
  .icard .ic svg{ width:22px; height:22px; }
  .icard h4{ font-family:var(--ff-body); font-weight:700; font-size:14px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); }
  .icard p{ font-size:16.5px; margin-top:6px; font-weight:600; }
  .icard a{ color:var(--wine); }

  .hours{ background:#fff; border:1px solid var(--line); border-radius:var(--r-md); padding:24px 26px; margin-top:18px; }
  .hours h4{ font-family:var(--ff-body); font-weight:700; font-size:14px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:14px; }
  .hours .row{ display:flex; justify-content:space-between; padding:9px 0; border-bottom:1px solid var(--line); font-size:15.5px; }
  .hours .row:last-child{ border-bottom:none; }
  .hours .row span:first-child{ color:var(--ink-soft); }
  .hours .row span:last-child{ font-weight:600; }
  .hours .row.closed span:last-child{ color:var(--ink-soft); font-weight:500; }

  .form-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:38px; box-shadow:0 30px 60px -36px rgba(76,15,25,.3); position:sticky; top:104px; }
  .form-card h3{ font-size:26px; }
  .form-card p.sub{ color:var(--ink-soft); font-size:15.5px; margin-top:8px; margin-bottom:24px; }
  .f-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
  .field{ margin-bottom:16px; }
  .field label{ display:block; font-size:13.5px; font-weight:700; color:var(--ink-soft); margin-bottom:7px; }
  .field input, .field textarea{
    width:100%; font-family:var(--ff-body); font-size:15.5px; color:var(--ink);
    padding:13px 15px; border:1.5px solid var(--line); border-radius:10px; background:var(--paper); transition:border-color .18s ease, background .18s ease;
  }
  .field input:focus, .field textarea:focus{ outline:none; border-color:var(--wine); background:#fff; }
  .field textarea{ resize:vertical; min-height:120px; }
  .form-card .btn{ width:100%; justify-content:center; margin-top:6px; }
  .form-note{ font-size:12.5px; color:var(--ink-soft); margin-top:14px; text-align:center; }
  /* honeypot – hidden anti-spam field */
  .hp-field{ position:absolute !important; left:-9999px !important; top:auto; width:1px; height:1px; overflow:hidden; }

  .map-wrap{ margin-top:18px; border-radius:var(--r-md); overflow:hidden; border:1px solid var(--line); }
  .map-wrap iframe{ display:block; width:100%; height:260px; border:0; filter:grayscale(.15); }
  .map-consent{ min-height:260px; background:var(--paper-2); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:14px; padding:28px; }
  .map-consent p{ font-size:14px; color:var(--ink-soft); max-width:360px; line-height:1.55; margin:0; }
  .map-consent .btn{ font-size:14.5px; padding:12px 22px; }

  /* ---------------- CONSENT BANNER ---------------- */
  .consent{
    position:fixed; right:20px; bottom:20px; z-index:300;
    width:min(390px, calc(100vw - 32px));
    background:#fff; border:1px solid var(--line); border-radius:var(--r-md);
    box-shadow:0 26px 60px -22px rgba(35,32,38,.45); padding:22px 22px 20px;
    opacity:0; transform:translateY(16px); pointer-events:none;
    transition:opacity .35s ease, transform .35s ease;
  }
  .consent.show{ opacity:1; transform:none; pointer-events:auto; }
  .consent h4{ font-family:var(--ff-body); font-weight:700; font-size:15.5px; color:var(--ink); margin-bottom:8px; }
  .consent p{ font-size:13.5px; color:var(--ink-soft); line-height:1.55; margin-bottom:16px; }
  .consent p a{ color:var(--wine); text-decoration:underline; }
  .consent .c-row{ display:flex; gap:10px; }
  .consent .c-row .btn{ flex:1; justify-content:center; padding:11px 14px; font-size:14.5px; }
  .consent .cbtn-reject{ background:#fff; color:var(--wine); border-color:var(--wine); }
  .consent .cbtn-reject:hover{ background:var(--wine); color:#fff; }
  [dir="rtl"] .consent{ right:auto; left:20px; }
  @media (max-width:480px){
    .consent{ right:12px; left:12px; bottom:12px; width:auto; }
    [dir="rtl"] .consent{ right:12px; left:12px; }
  }

  /* ---------------- FOOTER ---------------- */
  footer.site{ background:var(--ink); color:rgba(255,255,255,.72); padding:64px 0 30px; }
  .f-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:42px; }
  .f-brand .brand .bt strong{ color:#fff; }
  .f-brand .brand .bt span{ color:rgba(255,255,255,.6); }
  .f-brand p{ font-size:14.5px; margin-top:18px; max-width:320px; line-height:1.7; }
  footer.site h5{ font-family:var(--ff-body); font-weight:700; font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:#fff; margin-bottom:18px; }
  footer.site ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
  footer.site ul a{ font-size:14.5px; transition:color .18s ease; }
  footer.site ul a:hover{ color:#fff; }
  .f-bottom{ margin-top:48px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; }
  .f-bottom a{ margin-left:18px; }
  .f-bottom a:hover{ color:#fff; }

  /* ---------------- LEGAL PAGES ---------------- */
  .legal-head{ background:#fff; border-bottom:1px solid var(--line); }
  .legal-head .wrap{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding-top:16px; padding-bottom:16px; }
  .legal-head .brand .bt strong{ color:var(--ink); }
  .legal-head .brand .bt span{ color:var(--ink-soft); }
  .legal{ padding:52px 0 84px; background:var(--paper); }
  .legal .wrap{ max-width:840px; }
  .legal h1{ font-size:clamp(30px,5vw,44px); margin-bottom:8px; }
  .legal .updated{ color:var(--ink-soft); font-size:14px; margin-bottom:30px; }
  .legal h2{ font-size:22px; margin:36px 0 12px; }
  .legal h3{ font-size:16.5px; margin:22px 0 8px; font-family:var(--ff-body); font-weight:700; color:var(--ink); }
  .legal p, .legal li{ color:var(--ink-soft); font-size:16px; line-height:1.7; }
  .legal p{ margin-bottom:12px; }
  .legal ul{ margin:0 0 12px; padding-left:22px; }
  .legal li{ margin-bottom:6px; }
  .legal a{ color:var(--wine); text-decoration:underline; }
  .legal strong{ color:var(--ink); }
  .legal address{ font-style:normal; }
  .legal .note{ background:var(--wine-tint); border:1px solid var(--wine-soft); border-radius:var(--r-md); padding:16px 18px; margin:0 0 30px; font-size:14.5px; color:var(--wine-deep); }
  [dir="rtl"] .legal ul{ padding-left:0; padding-right:22px; }

  /* ---------------- MOBILE MENU ---------------- */
  .menu-backdrop{
    position:fixed; inset:0; z-index:190; background:rgba(35,32,38,.5);
    -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px);
    opacity:0; visibility:hidden; transition:opacity .35s ease, visibility .35s ease;
  }
  .menu-backdrop.open{ opacity:1; visibility:visible; }

  .mobile-menu{
    position:fixed; top:0; right:0; bottom:0; z-index:200;
    width:min(390px, 86vw); background:var(--wine-deep); color:#fff;
    display:flex; flex-direction:column; padding:88px 34px 36px;
    transform:translateX(100%); transition:transform .45s cubic-bezier(.7,0,.2,1);
    box-shadow:-26px 0 60px -28px rgba(0,0,0,.6); overflow-y:auto;
  }
  .mobile-menu.open{ transform:translateX(0); }
  .mobile-menu .close{
    position:absolute; top:22px; right:24px; background:none; border:none; color:#fff;
    font-size:36px; cursor:pointer; line-height:1; opacity:.85;
    transition:transform .25s ease, opacity .2s ease;
  }
  .mobile-menu .close:hover{ transform:rotate(90deg); opacity:1; }

  .mobile-menu .mm-nav{ display:flex; flex-direction:column; }
  .mobile-menu .mm-nav a{
    font-family:var(--ff-head); font-size:27px; padding:13px 0;
    border-bottom:1px solid rgba(255,255,255,.12);
    opacity:0; transform:translateX(26px);
    transition:opacity .45s ease, transform .45s ease, color .2s ease;
  }
  .mobile-menu .mm-nav a:hover{ color:#F6D9D4; }

  .mobile-menu .mphone{
    margin-top:26px; align-self:flex-start;
    opacity:0; transform:translateX(26px);
    transition:opacity .45s ease, transform .45s ease, background .18s ease, box-shadow .18s ease;
  }

  /* language switcher in mobile menu */
  .mobile-menu .mm-lang{ display:flex; gap:8px; margin-top:24px; flex-wrap:wrap; }
  .mobile-menu .mm-lang a{
    font-weight:700; font-size:14px; padding:8px 15px; border-radius:999px;
    border:1px solid rgba(255,255,255,.3); color:#fff; transition:background .18s ease, color .18s ease;
  }
  .mobile-menu .mm-lang a.active{ background:#fff; color:var(--wine-deep); border-color:#fff; }
  .mobile-menu .mm-lang a:not(.active):hover{ background:rgba(255,255,255,.15); }

  /* staggered reveal of the menu items once open */
  .mobile-menu.open .mm-nav a,
  .mobile-menu.open .mphone,
  .mobile-menu.open .mm-contact{ opacity:1; transform:none; }
  .mobile-menu.open .mm-nav a:nth-child(1){ transition-delay:.10s; }
  .mobile-menu.open .mm-nav a:nth-child(2){ transition-delay:.16s; }
  .mobile-menu.open .mm-nav a:nth-child(3){ transition-delay:.22s; }
  .mobile-menu.open .mm-nav a:nth-child(4){ transition-delay:.28s; }
  .mobile-menu.open .mphone{ transition-delay:.34s; }
  .mobile-menu.open .mm-contact{ transition-delay:.40s; }

  /* contact details at the bottom of the menu */
  .mobile-menu .mm-contact{
    margin-top:auto; padding-top:28px; border-top:1px solid rgba(255,255,255,.14);
    opacity:0; transform:translateY(16px);
    transition:opacity .45s ease, transform .45s ease;
  }
  .mobile-menu .mm-contact h5{
    font-family:var(--ff-body); font-weight:700; font-size:12px; letter-spacing:.14em;
    text-transform:uppercase; color:rgba(255,255,255,.6); margin-bottom:16px;
  }
  .mobile-menu .mm-contact .row{
    display:flex; align-items:flex-start; gap:12px; margin-bottom:14px;
    font-size:15px; color:rgba(255,255,255,.9); line-height:1.5;
  }
  .mobile-menu .mm-contact .row:last-child{ margin-bottom:0; }
  .mobile-menu .mm-contact .row svg{ width:18px; height:18px; flex:0 0 auto; color:#F6D9D4; margin-top:3px; }
  .mobile-menu .mm-contact a{ color:#fff; }
  .mobile-menu .mm-contact a:hover{ color:#F6D9D4; }

  /* ---------------- RTL (Arabic) ---------------- */
  [dir="rtl"] .welcome .media .chip{ left:auto; right:-26px; }
  [dir="rtl"] .f-bottom a{ margin-left:0; margin-right:18px; }
  [dir="rtl"] .langs{ margin-left:0; margin-right:8px; }
  [dir="rtl"] .mobile-menu{ right:auto; left:0; transform:translateX(-100%); box-shadow:26px 0 60px -28px rgba(0,0,0,.6); }
  [dir="rtl"] .mobile-menu.open{ transform:translateX(0); }
  [dir="rtl"] .mobile-menu .close{ right:auto; left:24px; }
  [dir="rtl"] .mobile-menu .mm-nav a{ transform:translateX(-26px); }
  [dir="rtl"] .mobile-menu .mphone{ transform:translateX(-26px); }
  [dir="rtl"] .mobile-menu.open .mm-nav a,
  [dir="rtl"] .mobile-menu.open .mphone{ transform:none; }

  /* ---------------- RESPONSIVE ---------------- */
  @media (max-width:980px){
    .welcome .grid, .c-grid{ grid-template-columns:1fr; gap:48px; }
    .svc-grid, .team .t-grid{ grid-template-columns:repeat(2,1fr); }
    .band .b-grid{ grid-template-columns:repeat(2,1fr); gap:38px 20px; }
    .welcome .media{ order:-1; }
  }
  @media (max-width:720px){
    .menu{ display:none; }
    .burger{ display:flex; }
    .pad{ padding:72px 0; }
    .svc-grid, .team .t-grid, .info-cards, .f-row{ grid-template-columns:1fr; }
    .f-grid{ grid-template-columns:1fr; gap:34px; }
    .form-card{ padding:26px; }
    .welcome .media .chip{ left:0; }
    [dir="rtl"] .welcome .media .chip{ left:auto; right:0; }
    /* Hero an den Inhalt anpassen statt volle Viewport-Höhe – sonst entsteht
       unter dem Text ein großer dunkelroter Leerraum, der in die today-strip übergeht */
    .hero{ min-height:auto; }
    .hero > .wrap{ align-items:flex-start; padding-top:130px; padding-bottom:48px; }
  }
