﻿@font-face {
    font-family: 'Jost';
    src: url('../../fonts/jost/jost-v20-latin-300.woff2') format('woff2'),
         url('../../fonts/jost/jost-v20-latin-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Jost';
    src: url('../../fonts/jost/jost-v20-latin-regular.woff2') format('woff2'),
         url('../../fonts/jost/jost-v20-latin-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Jost';
    src: url('../../fonts/jost/jost-v20-latin-500.woff2') format('woff2'),
         url('../../fonts/jost/jost-v20-latin-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Jost';
    src: url('../../fonts/jost/jost-v20-latin-600.woff2') format('woff2'),
         url('../../fonts/jost/jost-v20-latin-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Jost';
    src: url('../../fonts/jost/jost-v20-latin-700.woff2') format('woff2'),
         url('../../fonts/jost/jost-v20-latin-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Playfair Display';
    src: url('../../fonts/playfair-display/playfair-display-v40-latin-regular.woff2') format('woff2'),
         url('../../fonts/playfair-display/playfair-display-v40-latin-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Playfair Display';
    src: url('../../fonts/playfair-display/playfair-display-v40-latin-italic.woff2') format('woff2'),
         url('../../fonts/playfair-display/playfair-display-v40-latin-italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Playfair Display';
    src: url('../../fonts/playfair-display/playfair-display-v40-latin-600.woff2') format('woff2'),
         url('../../fonts/playfair-display/playfair-display-v40-latin-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #F5EFE4;
    --warm-white: #FBF8F3;
    --stone: #C4B49A;
    --bark: #7A5C3A;
    --espresso: #2C1A0E;
    --moss: #5A6645;
    --gold: #C9A84C;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--espresso);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 3rem;
    background: rgba(251,248,243,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196,180,154,0.3);
    animation: fadeDown 0.8s ease both;
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    color: var(--espresso);
    text-decoration: none;
  }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
  .nav-links a {
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--bark); text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--espresso); }
  .nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(122,92,58,0.22);
    color: var(--espresso);
    width: 2.6rem;
    height: 2.6rem;
    padding: 0.55rem 0.5rem;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    margin: 0.24rem 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
  }

  /* ─── SPRACHUMSCHALTER ─── */
  .lang-switcher {
    display: flex; gap: 0.5rem; align-items: center; margin-left: 1rem; padding-left: 1rem;
    border-left: 1px solid rgba(196,180,154,0.3);
  }
  .lang-btn {
    background: none; border: none; cursor: pointer; font-size: 0.75rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--bark); transition: color 0.3s; padding: 0.4rem 0.6rem;
  }
  .lang-btn.active { color: var(--espresso); font-weight: 700; }
  .lang-btn:hover { color: var(--espresso); }
  .lang-separator { color: var(--stone); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    padding: 0 3rem; gap: 4rem;
    position: relative; overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 60% 80% at 70% 50%, rgba(196,180,154,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(90,102,69,0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  /* Stone texture */
  .hero::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; opacity: 0.6;
  }

  .hero-text { position: relative; z-index: 1; }

  .hero-eyebrow {
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--moss); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
    opacity: 0; animation: fadeUp 0.9s 0.3s ease forwards;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 2.5rem; height: 1px; background: var(--moss);
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    line-height: 1.1; color: var(--espresso);
    opacity: 0; animation: fadeUp 0.9s 0.5s ease forwards;
  }
  h1 em { font-style: italic; color: var(--bark); }

  .hero-sub {
    margin-top: 1.8rem;
    font-size: 1.05rem; font-weight: 300; line-height: 1.7;
    color: rgba(44,26,14,0.65); max-width: 38ch;
    opacity: 0; animation: fadeUp 0.9s 0.7s ease forwards;
  }

  .hero-cta {
    margin-top: 2.8rem; display: flex; gap: 1.2rem; align-items: center;
    opacity: 0; animation: fadeUp 0.9s 0.9s ease forwards;
  }

  .btn-primary {
    background: var(--espresso); color: var(--cream);
    padding: 0.85rem 2.2rem; border: none; cursor: pointer;
    font-family: 'Jost', sans-serif; font-size: 0.82rem;
    font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--bark); transform: translateY(-1px); }

  .btn-ghost {
    color: var(--bark); font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
    transition: gap 0.3s;
  }
  .btn-ghost:hover { gap: 0.9rem; }
  .btn-ghost::after { content: '→'; }

  /* Hero image mosaic */
  .hero-visual {
    position: relative; height: 80vh; z-index: 1;
    opacity: 0; animation: fadeUp 1s 0.4s ease forwards;
  }

  .img-card {
    position: absolute;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44,26,14,0.15);
  }

  .img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .img-card.main {
    width: 65%; height: 70%; top: 8%; right: 0;
  }
  .img-card.accent1 {
    width: 42%; height: 46%; bottom: 4%; left: 0;
    box-shadow: 0 12px 40px rgba(44,26,14,0.2);
  }

  /* Floating label */
  .float-badge {
    position: absolute; bottom: 28%; right: -1.5rem;
    background: var(--gold); color: var(--espresso);
    padding: 1rem 1.4rem;
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 0.95rem; z-index: 5;
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
  }

  /* ─── SECTION BASE ─── */
  section { padding: 7rem 3rem; }

  .section-label {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--moss); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--moss); }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.2; color: var(--espresso);
    max-width: 22ch;
  }
  .section-title em { font-style: italic; color: var(--bark); }

  /* ─── ÜBER UNS ─── */
  .about {
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }

  .about-text { }
  .about-text p {
    margin-top: 1.6rem; font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: rgba(44,26,14,0.7); max-width: 48ch;
  }

  .about-image {
    position: relative;
  }
  .about-image img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    display: block;
  }
  .about-image::before {
    content: '';
    position: absolute; top: -1.5rem; left: -1.5rem;
    right: 1.5rem; bottom: 1.5rem;
    border: 1px solid var(--stone); z-index: 0;
  }
  .about-image img { position: relative; z-index: 1; }

  /* ─── GALERIE ─── */
  .gallery {
    text-align: center;
  }
  .gallery .section-label, .gallery .section-title { margin-left: auto; margin-right: auto; }
  .gallery .section-label { justify-content: center; }
  .gallery .section-label::before { display: none; }

  .gallery-grid {
    margin-top: 3rem;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  }

  .gallery-item {
    position: relative; overflow: hidden; border-radius: 2px;
    box-shadow: 0 8px 24px rgba(44,26,14,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1;
  }
  .gallery-item:hover { transform: scale(1.03); box-shadow: 0 12px 32px rgba(44,26,14,0.18); }

  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.4s ease;
  }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item { cursor: pointer; }

  /* ─── LIGHTBOX ─── */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(4px);
  }
  .lightbox.active { display: flex; align-items: center; justify-content: center; }
  .lightbox-content {
    position: relative; max-width: 90vw; max-height: 90vh; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
  }
  .lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; }
  .lightbox-close {
    position: absolute; top: 2rem; right: 2rem;
    width: 3rem; height: 3rem; background: rgba(255,255,255,0.1); border: none;
    cursor: pointer; font-size: 1.8rem; color: white; border-radius: 50%;
    transition: background 0.3s;
    display: flex; align-items: center; justify-content: center;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.2); }
  .lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 3rem; height: 3rem; background: rgba(255,255,255,0.1); border: none;
    cursor: pointer; font-size: 1.5rem; color: white; border-radius: 50%;
    transition: background 0.3s; display: flex; align-items: center; justify-content: center;
  }
  .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
  .lightbox-prev { left: 2rem; }
  .lightbox-next { right: 2rem; }

  /* ─── KARTE ─── */
  .menu {
    text-align: center;
  }
  .menu .section-label, .menu .section-title { margin-left: auto; margin-right: auto; }
  .menu .section-label { justify-content: center; }
  .menu .section-label::before { display: none; }

  .menu-grid {
    margin-top: 4rem;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  }

  .menu-card {
    background: var(--cream); padding: 2.5rem 2rem;
    border-top: 2px solid var(--stone);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
  }
  .menu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(44,26,14,0.1); }

  .menu-card .icon {
    font-size: 1.6rem; margin-bottom: 1.2rem;
    display: block;
  }
  .menu-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--espresso); margin-bottom: 0.8rem;
  }
  .menu-card p {
    font-size: 0.9rem; font-weight: 300; line-height: 1.7;
    color: rgba(44,26,14,0.65);
  }

  .menu-items { margin-top: 1.4rem; }
  .menu-item {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 0.5rem 0; border-bottom: 1px solid rgba(196,180,154,0.4);
    font-size: 0.88rem; color: var(--espresso);
  }
  .menu-item:last-child { border-bottom: none; }
  .menu-item .price { color: var(--bark); font-weight: 500; }

  /* ─── RÄUME ─── */
  .spaces {
    background: var(--espresso); color: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  }

  .space {
    padding: 5rem 4rem; position: relative; overflow: hidden;
    transition: background 0.4s;
  }
  .space:first-child { border-right: 1px solid rgba(196,180,154,0.15); }
  .space:hover { background: rgba(255,255,255,0.04); }

  .space .section-label { color: var(--stone); }
  .space .section-label::before { background: var(--stone); }
  .space h3 {
    font-family: 'Playfair Display', serif; font-size: 2rem;
    color: var(--cream); margin: 0.8rem 0 1.2rem;
  }
  .space p {
    font-size: 0.95rem; font-weight: 300; line-height: 1.8;
    color: rgba(245,239,228,0.7); max-width: 42ch;
  }
  .space-number {
    position: absolute; bottom: 2rem; right: 2.5rem;
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 5rem; color: rgba(196,180,154,0.08); line-height: 1;
    pointer-events: none;
  }

  /* ─── ÖFFNUNGSZEITEN ─── */
  .hours {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
    background: var(--cream);
  }

  .hours-table { }
  .hours-row {
    display: flex; justify-content: space-between;
    padding: 1rem 0; border-bottom: 1px solid rgba(196,180,154,0.5);
    font-size: 0.95rem;
  }
  .hours-row:last-child { border-bottom: none; }
  .hours-row .day { color: rgba(44,26,14,0.65); font-weight: 300; }
  .hours-row .time { color: var(--espresso); font-weight: 500; }
  .hours-row.today { }
  .hours-row.today .day { color: var(--bark); font-weight: 500; }

  .hours-note {
    margin-top: 2rem; padding: 1.2rem 1.4rem;
    border-left: 3px solid var(--gold); background: rgba(201,168,76,0.08);
    font-size: 0.88rem; line-height: 1.6; color: rgba(44,26,14,0.7);
  }

  .hours-info p {
    margin-top: 1.5rem; font-size: 1rem; font-weight: 300;
    line-height: 1.8; color: rgba(44,26,14,0.7);
  }

  /* ─── JOBS ─── */
  .jobs {
    background: var(--warm-white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  }

  .jobs-intro { }
  .jobs-intro p {
    margin-top: 1rem; font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: rgba(44,26,14,0.7);
  }
  .jobs-intro a {
    color: var(--bark); font-weight: 500; text-decoration: none;
    transition: color 0.3s;
  }
  .jobs-intro a:hover { color: var(--espresso); }

  .jobs-content { }
  .jobs-category {
    margin-top: 2rem;
  }
  .jobs-category h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--espresso); margin-bottom: 1rem;
  }
  .jobs-category ul {
    list-style: none; padding-left: 0;
  }
  .jobs-category li {
    padding: 0.6rem 0 0.6rem 1.8rem; position: relative;
    font-size: 0.95rem; font-weight: 300; line-height: 1.6;
    color: rgba(44,26,14,0.7);
  }
  .jobs-category li::before {
    content: '•'; position: absolute; left: 0;
    color: var(--moss); font-weight: 500;
  }

  .jobs-cta {
    margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(196,180,154,0.3);
    font-size: 0.95rem; font-weight: 300; line-height: 1.8;
    color: rgba(44,26,14,0.7);
  }
  .jobs-cta a {
    color: var(--bark); font-weight: 500; text-decoration: none;
    transition: color 0.3s;
  }
  .jobs-cta a:hover { color: var(--espresso); }

  /* ─── SEKTEMPFANG ─── */
  .sektempfang {
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  }

  .sektempfang-intro { }
  .sektempfang-intro p:first-of-type {
    margin-top: 1rem; font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: rgba(44,26,14,0.7);
  }
  .sektempfang-intro p:nth-of-type(2) {
    margin-top: 1rem; font-size: 0.95rem; font-weight: 300; line-height: 1.6;
    color: rgba(44,26,14,0.7); font-style: italic;
  }

  .sektempfang-content { }
  .sektempfang-category {
    margin-top: 2rem;
  }
  .sektempfang-category h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--espresso); margin-bottom: 1rem;
  }
  .sektempfang-category ul {
    list-style: none; padding-left: 0;
  }
  .sektempfang-category li {
    padding: 0.6rem 0 0.6rem 1.8rem; position: relative;
    font-size: 0.95rem; font-weight: 300; line-height: 1.6;
    color: rgba(44,26,14,0.7);
  }
  .sektempfang-category li::before {
    content: '•'; position: absolute; left: 0;
    color: var(--moss); font-weight: 500;
  }

  .sektempfang-category p {
    margin-top: 1rem; font-size: 0.95rem; font-weight: 300; line-height: 1.6;
    color: rgba(44,26,14,0.7);
  }

  .sektempfang-cta {
    margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(196,180,154,0.3);
    font-size: 0.95rem; font-weight: 300; line-height: 1.8;
    color: rgba(44,26,14,0.7);
  }
  .sektempfang-cta a {
    color: var(--bark); font-weight: 500; text-decoration: none;
    transition: color 0.3s;
  }
  .sektempfang-cta a:hover { color: var(--espresso); }
  .sektempfang-cta-phone {
    display: block; margin-top: 0.3rem;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--espresso);
    padding: 4rem 3rem 2.5rem;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem;
    color: rgba(245,239,228,0.6);
  }

  .footer-brand .nav-logo { color: var(--cream); display: block; margin-bottom: 0.8rem; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.6; font-weight: 300; }

  .footer-col h4 {
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--stone); margin-bottom: 1.2rem; font-weight: 500;
  }
  .footer-col p, .footer-col a {
    font-size: 0.88rem; font-weight: 300; line-height: 1.8;
    color: rgba(245,239,228,0.6); text-decoration: none; display: block;
  }
  .footer-col a:hover { color: var(--cream); }

  .footer-bottom {
    background: var(--espresso);
    padding: 0 3rem 2rem;
    border-top: 1px solid rgba(196,180,154,0.12);
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1.5rem;
    font-size: 0.78rem; color: rgba(245,239,228,0.35);
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── PLACEHOLDER IMAGES (CSS art) ─── */
  .img-placeholder {
    background: linear-gradient(135deg, var(--stone) 0%, var(--bark) 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.3); font-size: 3rem;
    width: 100%; height: 100%;
  }

  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-toggle { display: block; z-index: 121; }
    .nav-links {
      position: fixed;
      top: 0;
      right: 0;
      width: min(85vw, 360px);
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 1.2rem;
      padding: 6.5rem 1.5rem 2rem;
      background: linear-gradient(180deg, rgba(251,248,243,0.98) 0%, rgba(245,239,228,0.98) 100%);
      border-left: 1px solid rgba(196,180,154,0.45);
      box-shadow: -16px 0 40px rgba(44,26,14,0.18);
      transform: translateX(105%);
      transition: transform 0.32s ease;
      z-index: 120;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      width: 100%;
      padding: 0.35rem 0;
      font-size: 0.92rem;
      letter-spacing: 0.09em;
    }
    .nav-open .nav-links { transform: translateX(0); }
    .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .lang-switcher {
      margin-left: 0;
      padding-left: 0;
      border-left: 0;
      border-top: 1px solid rgba(196,180,154,0.45);
      padding-top: 1rem;
      margin-top: 0.2rem;
      width: 100%;
    }
    .hero { grid-template-columns: 1fr; padding: 8rem 1.5rem 3rem; min-height: auto; gap: 2rem; }
    .hero-visual { height: 50vw; min-height: 260px; }
    .float-badge { right: 0; }
    section { padding: 4rem 1.5rem; }
    .about, .hours { grid-template-columns: 1fr; gap: 3rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .spaces { grid-template-columns: 1fr; }
    .space:first-child { border-right: none; border-bottom: 1px solid rgba(196,180,154,0.15); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    footer { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

.modal-dialog {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 90%;
    width: 600px;
    background: var(--warm-white);
    color: var(--bark);
    padding: 0;
    max-height: 90vh;
    margin: auto;
    inset: 0;
  }

  .modal-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
  }

  .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--stone);
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    z-index: 10;
  }

  .modal-close:hover {
    background-color: rgba(44, 26, 14, 0.05);
    color: var(--bark);
  }

  .modal-dialog h2 {
    font-size: 1.8rem;
    margin: 2rem 2rem 0 2rem;
    font-weight: 600;
    color: var(--bark);
    padding-right: 3rem;
  }

  .modal-body {
    overflow-y: auto;
    padding: 1.5rem 2rem 2rem 2rem;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .modal-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    color: var(--bark);
  }

  .modal-body p {
    margin: 0.5rem 0 1rem 0;
    color: var(--stone);
  }

  .modal-body a {
    color: var(--espresso);
    text-decoration: none;
    border-bottom: 1px solid var(--moss);
    transition: border-color 0.2s ease;
  }

  .modal-body a:hover {
    border-bottom-color: var(--espresso);
  }

  @media (max-width: 900px) {
    .modal-dialog {
      max-width: 95%;
      width: auto;
    }
    
    .modal-dialog h2 {
      font-size: 1.5rem;
    }
    
    .modal-body {
      font-size: 0.9rem;
    }
  }



/* Utility classes replacing inline styles */
.media-cover { width: 100%; height: 100%; object-fit: cover; }
.section-title-center { margin: 0 auto 0; }
.menu-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(44,26,14,0.45);
  font-weight: 300;
}
.italic-note { margin-top: 1.5rem; font-style: italic; }
.hours-seasonal-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(44,26,14,0.5);
  font-weight: 300;
  line-height: 1.6;
}
.footer-link-muted { margin-top: 0.8rem; color: var(--stone); }
.footer-link-stone { color: var(--stone); }
.footer-legal-link { color: var(--stone); text-decoration: none; }
.modal-list { margin: 1rem 0; padding-left: 1.5rem; list-style: disc; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-15 { transition-delay: 0.15s; }
.delay-30 { transition-delay: 0.3s; }
.delay-45 { transition-delay: 0.45s; }
.delay-60 { transition-delay: 0.6s; }
.delay-75 { transition-delay: 0.75s; }

/* Cookie consent */
.is-hidden { display: none !important; }

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  max-width: 40rem;
  margin: 0 auto;
  background: var(--warm-white);
  border: 1px solid rgba(196,180,154,0.7);
  box-shadow: 0 14px 40px rgba(44,26,14,0.2);
  padding: 1rem;
}

.cookie-consent h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--espresso);
}

.cookie-consent p {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: rgba(44,26,14,0.82);
  line-height: 1.55;
}

.cookie-consent-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--bark);
  text-decoration: none;
  border-bottom: 1px solid rgba(122,92,58,0.45);
}

.cookie-consent-actions {
  margin-top: 0.95rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: var(--bark);
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(122,92,58,0.45);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
