  @font-face{
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('fonts/fraunces-normal.woff2') format('woff2');
  }
  @font-face{
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 400 600;
    font-display: swap;
    src: url('fonts/fraunces-italic.woff2') format('woff2');
  }
  @font-face{
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('fonts/work-sans.woff2') format('woff2');
  }
  :root{
    --ink: #1B1714;
    --ink-soft: #5C554E;
    --paper: #F7F4EE;
    --paper-soft: #EDE6D8;
    --white: #FFFFFF;
    --brass: #8F0029;
    --brass-deep: #6E0020;
    --sage: #C24B63;
    --line: #E3DACB;
    --font-display: 'Fraunces', serif;
    --font-body: 'Work Sans', sans-serif;
    --shadow: 0 18px 40px -22px rgba(34,48,40,0.35);
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  }

  body{
    margin: 0;
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  a{ color: inherit; }
  img{ max-width: 100%; display: block; }

  :focus-visible{
    outline: 2px solid var(--brass-deep);
    outline-offset: 3px;
  }

  .wrap{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
  }

  /* ---------- Header ---------- */
  header{
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(242,238,226,0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 5vw, 56px);
    gap: 24px;
  }
  .logo{
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo img{
    height: 52px;
    width: auto;
    display: block;
  }
  nav.locations-nav{
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
  }
  nav.locations-nav a{
    font-family: var(--font-body);
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    background: none;
    border: none;
    color: var(--ink-soft);
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }
  nav.locations-nav a:hover,
  nav.locations-nav a:focus-visible{
    background: var(--paper-soft);
    color: var(--ink);
  }
  nav.locations-nav a.active{
    background: var(--ink);
    color: var(--white);
  }
  @media (max-width: 720px){
    nav.locations-nav{ display: none; }
  }

  /* ---------- Hero ---------- */
  .hero{
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 12vw, 128px) 0 clamp(48px, 8vw, 96px);
    background: url("bilder/Phoenixsee-Dortmund-von-oben-Café-Solo.jpeg") center 62% / cover no-repeat;
  }
  .hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, var(--paper) 0%, var(--paper) 42%, rgba(247,244,238,0.88) 54%, rgba(247,244,238,0.32) 74%, rgba(247,244,238,0.05) 100%);
  }
  .hero-inner{
    position: relative;
    max-width: 680px;
  }
  .eyebrow{
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass-deep);
    font-weight: 600;
    margin: 0 0 18px;
  }
  h1{
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.05;
    margin: 0 0 22px;
    letter-spacing: -0.01em;
  }
  h1 em{
    font-style: italic;
    font-weight: 400;
    color: var(--brass-deep);
  }
  .hero p.lede{
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 46ch;
    margin: 0 0 34px;
  }
  .hero-actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn{
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .btn:hover{ transform: translateY(-1px); background: var(--brass-deep); border-color: var(--brass-deep); }
  .btn.ghost{
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn.ghost:hover{ background: var(--ink); color: var(--white); }

  /* ---------- Section headings ---------- */
  .section-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .section-head h2{
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.7rem, 3.4vw, 2.3rem);
    margin: 0;
  }
  .section-head p{
    color: var(--ink-soft);
    max-width: 40ch;
    margin: 0;
    font-size: 0.98rem;
  }

  section{ padding: clamp(56px, 9vw, 96px) 0; }
  section.locations{ border-top: 1px solid var(--line); scroll-margin-top: 90px; }

  /* ---------- Location blocks ---------- */
  .loc-list{
    display: flex;
    flex-direction: column;
  }
  .loc-block{
    padding: 44px 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 96px;
  }
  .loc-block:first-child{ border-top: none; padding-top: 0; }
  .loc-block-head{
    display: flex;
    gap: 28px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .loc-photo{
    width: 220px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--paper-soft);
  }
  .loc-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .loc-block-titles{ flex: 1; min-width: 240px; }
  .loc-block-titles .eyebrow{ margin-bottom: 8px; }
  .loc-block-titles h3{
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    margin: 0 0 8px;
  }
  .loc-block-titles .tagline{
    color: var(--ink-soft);
    max-width: 52ch;
    margin: 0 0 18px;
  }
  @media (max-width: 560px){
    .loc-photo{ width: 100%; aspect-ratio: 16 / 9; }
  }
  .panel-meta{
    display: flex;
    gap: 14px 28px;
    flex-wrap: wrap;
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--ink);
  }
  .panel-meta span{ display: flex; align-items: center; gap: 9px; }
  .panel-meta svg{ width: 19px; height: 19px; color: var(--brass-deep); flex-shrink: 0; }
  .panel-meta a{ text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
  .panel-meta a:hover{ text-decoration-color: var(--brass-deep); }

  .tabs{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
  }
  .tab-btn{
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    background: none;
    border: none;
    padding: 10px 4px;
    margin-right: 20px;
    color: var(--ink-soft);
    cursor: pointer;
    position: relative;
  }
  .tab-btn::after{
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -3px;
    height: 2px;
    background: var(--brass-deep);
    transform: scaleX(0);
    transition: transform 0.2s ease;
  }
  .tab-btn.active{ color: var(--ink); }
  .tab-btn.active::after{ transform: scaleX(1); }

  .menu-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px 40px;
  }
  .menu-files{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
  }
  .file-link{
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .file-link:hover, .file-link:focus-visible{
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--brass);
  }
  .file-link-icon{
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--paper-soft);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--brass-deep);
  }
  .file-link-icon svg{ width: 18px; height: 18px; }
  .file-link-label{
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.02rem;
    flex: 1;
  }
  .file-link-cta{
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brass-deep);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
  }
  .file-link-cta svg{ width: 13px; height: 13px; }
  .menu-item{
    padding-bottom: 16px;
    border-bottom: 1px dotted var(--line);
  }
  .menu-item-top{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
  }
  .menu-item-top h3{
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.05rem;
    margin: 0;
  }
  .menu-item-top .price{
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--brass-deep);
    white-space: nowrap;
    font-size: 0.95rem;
  }
  .menu-item p{
    margin: 6px 0 0;
    font-size: 0.88rem;
    color: var(--ink-soft);
  }
  .gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin: 8px 0 32px;
  }
  .gallery-grid a{
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
  }
  .gallery-grid img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }
  .gallery-grid a:hover img{ transform: scale(1.06); }
  .menu-empty{
    font-size: 0.98rem;
    color: var(--ink-soft);
    font-style: italic;
    margin: 0;
    padding: 8px 0 4px;
  }
  .menu-note{
    margin-top: 36px;
    padding: 16px 18px;
    background: var(--paper-soft);
    border-radius: 12px;
    font-size: 0.84rem;
    color: var(--ink-soft);
  }

  /* ---------- Footer ---------- */
  footer{
    background: var(--ink);
    color: var(--paper);
    padding: clamp(48px, 8vw, 72px) 0 28px;
    margin-top: 40px;
  }
  .footer-grid{
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 32px;
  }
  @media (max-width: 880px){
    .footer-grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px){
    .footer-grid{ grid-template-columns: 1fr; }
  }
  footer h4{
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 0 6px;
  }
  footer .foot-loc h5{
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sage);
    margin: 0 0 10px;
  }
  footer .foot-loc p{
    font-size: 0.85rem;
    color: #C9D2C7;
    margin: 0 0 4px;
    line-height: 1.5;
  }
  footer .foot-loc a{ text-decoration: none; color: inherit; }
  footer .foot-loc a:hover{ color: var(--brass); }
  .footer-bottom{
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(251,249,244,0.15);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: #9DAB9F;
  }
  .footer-bottom a{ color: #9DAB9F; text-decoration: none; margin-left: 18px; }
  .footer-bottom a:hover{ color: var(--paper); }

  .sr-only{
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }
