/* ueber-uns.css */
.page-hero{
      position: relative;
      min-height: clamp(34rem, 76svh, 48rem);
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: clamp(7rem, 11vw, 8rem);
      background:
        linear-gradient(90deg, rgba(43,35,28,.76) 0%, rgba(43,35,28,.50) 42%, rgba(43,35,28,.24) 100%),
        url('../img/hero.png') center center / cover no-repeat;
      color: #fff;
    }

    .page-hero::after{
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 180px;
      background: linear-gradient(to bottom, rgba(244,239,231,0), rgba(244,239,231,1));
    }

    .hero-content{
      position: relative;
      z-index: 2;
      padding-top: clamp(3.5rem, 8vw, 7rem);
      padding-bottom: clamp(2.5rem, 6vw, 5rem);
    }

    .page-hero h1{
      color: #fff;
      font-size: clamp(3rem, 8vw, 6.1rem);
      line-height: .88;
      max-width: 10.5ch;
      margin-bottom: 1.2rem;
      overflow-wrap: break-word;
    }

    .page-hero p{
      font-size: 1.12rem;
      color: rgba(255,255,255,.88);
      max-width: 58ch;
      margin-bottom: 2rem;
    }

    .hero-facts{
      display: flex;
      flex-wrap: wrap;
      gap: .8rem;
      max-width: 760px;
    }

    .hero-fact{
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: .75rem 1rem;
      border-radius: 999px;
      color: #fff;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
      font-weight: 600;
    }

    .section-warm{
      background:
        radial-gradient(circle at top left, rgba(168,181,154,.12), transparent 30%),
        linear-gradient(180deg, rgba(244,239,231,.98), rgba(255,255,255,.66));
      border-bottom: 1px solid var(--line);
    }

    .section-light{
      background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(248,244,238,.9));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .content-panel,
    .image-panel,
    .value-card,
    .social-panel,
    .timeline-card{
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .content-panel{
      padding: clamp(1.5rem, 3vw, 2.4rem);
      height: 100%;
    }

    .image-panel{
      overflow: hidden;
      height: 100%;
      min-height: 420px;
      position: relative;
    }

    .image-panel img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .image-badge{
      position: absolute;
      left: 1.2rem;
      bottom: 1.2rem;
      right: 1.2rem;
      padding: 1rem 1.1rem;
      border-radius: 20px;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(10px);
      color: var(--text);
    }

    .image-badge strong{
      display: block;
      font-size: 1.05rem;
      margin-bottom: .2rem;
    }

    .image-badge span{
      color: var(--muted);
      font-size: .94rem;
    }

    .story-text p{
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .story-text strong{
      color: var(--text);
    }

    .highlight-panel{
      margin-top: 1.25rem;
      padding: 1.15rem 1.25rem;
      border-radius: 22px;
      background: rgba(116,134,108,.10);
      border: 1px solid rgba(116,134,108,.16);
      color: var(--green-dark);
      font-weight: 700;
    }

    .value-grid{
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 1rem;
    }

    .value-card{
      padding: 1.45rem 1.2rem;
      height: 100%;
      box-shadow: 0 14px 35px rgba(28,22,16,.08);
    }

    .value-icon{
      width: 54px;
      height: 54px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(116,134,108,.14);
      color: var(--green-dark);
      margin-bottom: 1rem;
      font-size: 1.25rem;
    }

    .value-card h3{
      font-size: 1.55rem;
      margin-bottom: .4rem;
    }

    .value-card p{
      color: var(--muted);
      margin: 0;
      font-size: .96rem;
      line-height: 1.55;
    }

    .timeline-grid{
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 1rem;
    }

    .timeline-card{
      padding: 1.35rem;
      height: 100%;
    }

    .timeline-year{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 76px;
      height: 42px;
      border-radius: 999px;
      background: var(--green);
      color: #fff;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .timeline-card h3{
      font-size: 1.65rem;
      margin-bottom: .45rem;
    }

    .timeline-card p{
      color: var(--muted);
      margin: 0;
    }

    .social-panel{
      padding: clamp(1.5rem, 3vw, 2.6rem);
      text-align: center;
      background:
        linear-gradient(135deg, rgba(51,69,56,.94), rgba(116,134,108,.9)),
        url('../img/zurmuehleIMG.jpg') center / cover no-repeat;
      color: #fff;
    }

    .social-panel h2{ color: #fff; }
    .social-panel p{ color: rgba(255,255,255,.82); margin: 0 auto 1.4rem; }

    .social-large{
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .social-large a{
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.12);
      font-size: 1.65rem;
      transition: background .2s ease, transform .2s ease;
    }

    .social-large a:hover{
      background: rgba(255,255,255,.20);
      transform: translateY(-2px);
    }

    .restaurant-footer{
      background: var(--footer-bg);
      color: var(--footer-text);
      border-top: 1px solid rgba(255,255,255,.06);
      margin-top: 0;
    }

    .footer-top{
      padding: 2.6rem 0 1.8rem;
      border-bottom: 1px solid var(--footer-border);
    }

    .footer-logo{
      width: 160px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .footer-heading{
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .95rem;
    }

    .footer-note{
      font-size: .95rem;
      color: var(--footer-muted);
      max-width: 34ch;
    }

    .footer-links{
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li{ margin-bottom: .55rem; }

    .footer-links a,
    .footer-contact a,
    .footer-bottom a{
      color: var(--footer-text);
      text-decoration: none;
      transition: color .2s ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover,
    .footer-bottom a:hover{ color: #fff; }

    .footer-contact strong{
      color: #fff;
      display: block;
      margin-bottom: .35rem;
      font-size: 1rem;
    }

    .phone{
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: .25rem;
    }

    .phone i{ color: var(--green-light); margin-right: .35rem; }
    .footer-time{ color: var(--footer-muted); font-size: .9rem; }

    .footer-bottom{ padding: 1rem 0 1.15rem; }

    .footer-bottom-inner{
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: .9rem;
      color: var(--footer-muted);
    }

    .footer-mini-links{
      display: flex;
      flex-wrap: wrap;
      gap: .55rem;
      align-items: center;
    }

    .socials{
      display: flex;
      gap: .6rem;
      align-items: center;
    }

    .socials a{
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      color: #fff;
      transition: background .2s ease, transform .2s ease;
    }

    .socials a:hover{
      background: rgba(255,255,255,.16);
      transform: translateY(-1px);
    }

    @media (max-width: 991.98px){
      .main-nav{ border-radius: 24px; }

      .navbar-nav{
        background: rgba(255,255,255,.08);
        border-radius: 18px;
        padding: .75rem;
        margin-top: .5rem;
        width: 100%;
      }

      .navbar-wrap.scrolled .navbar-nav{ background: rgba(51,69,56,.04); }

      .navbar .nav-link{
        width: 100%;
        padding: .9rem 1rem !important;
      }

      .navbar .nav-link::after{ display: none; }

      .brand-logo{
        height: 46px;
        max-width: 150px;
      }

      .brand-mark{
        min-width: auto;
        min-height: 46px;
      }

      .value-grid,
      .timeline-grid{
        grid-template-columns: 1fr;
      }

      .image-panel{ min-height: 360px; }
      .footer-bottom-inner{ justify-content: center; text-align: center; }
    }

    @media (max-width: 767.98px){
      html{ scroll-padding-top: 92px; }
      .section-space{ padding: 3.5rem 0; }
      .page-hero{ min-height: auto; }
      .page-hero h1{
        max-width: 100%;
        font-size: clamp(2.35rem, 10vw, 3rem);
        line-height: .9;
      }
      .hero-fact{ width: 100%; justify-content: center; }
      .footer-logo{ width: 140px; }
      .footer-bottom-inner{ flex-direction: column; }
      .footer-mini-links{ justify-content: center; text-align: center; }
    }
