/**
 * LANGOS QUEEN — premium Vienna foodtruck site stylesheet.
 * No @layer / no @apply — plain CSS so it never depends on Tailwind processing.
 * Palette: warm Hungarian — purple #5C2B82, paprika orange #D97A2C, cream linen.
 */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --lq-purple:        #5C2B82;
    --lq-purple-deep:   #3F1B5F;
    --lq-purple-soft:   #7B4BA6;
    --lq-orange:        #D97A2C;
    --lq-orange-soft:   #E08838;
    --lq-orange-deep:   #B8631E;
    --lq-saffron:       #F4A23B;
    --lq-cream:         #FBF6EE;
    --lq-cream-warm:    #F4ECDD;
    --lq-cream-deep:    #ECDFCB;
    --lq-charcoal:      #1F1A24;
    --lq-warmgray:      #4B3F4A;
    --lq-line:          rgba(31, 26, 36, 0.08);
    --lq-line-strong:   rgba(31, 26, 36, 0.16);

    --shadow-card:      0 18px 50px -22px rgba(31, 26, 36, 0.18), 0 4px 12px -4px rgba(31, 26, 36, 0.08);
    --shadow-card-hover:0 32px 70px -20px rgba(31, 26, 36, 0.32), 0 6px 18px -4px rgba(31, 26, 36, 0.12);
    --shadow-pop:       0 24px 60px -16px rgba(92, 43, 130, 0.4);

    --radius-card:      22px;
    --radius-card-lg:   28px;
    --radius-pill:      999px;
    --radius-tight:     12px;

    --header-h:         72px;
    --container-max:    1240px;
    --container-pad:    clamp(1.25rem, 4vw, 3rem);
    --section-pad:      clamp(4rem, 9vw, 7.5rem);
    --gap-md:           clamp(1.25rem, 2.5vw, 2rem);
    --gap-lg:           clamp(2rem, 4vw, 3.5rem);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--lq-cream);
    color: var(--lq-charcoal);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--lq-purple); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--lq-orange-deep); }
::selection { background: var(--lq-purple); color: #fff; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--lq-charcoal);
    margin: 0;
    font-feature-settings: 'ss01';
}
h1 { font-weight: 700; letter-spacing: -0.035em; }
p { margin: 0; color: var(--lq-warmgray); }
p strong { color: var(--lq-charcoal); }

/* ---------- LAYOUT ---------- */
.lq-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}
.lq-section {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
    position: relative;
}
.lq-section--cream      { background: var(--lq-cream); }
.lq-section--cream-warm { background: var(--lq-cream-warm); }
.lq-section--cream-deep { background: var(--lq-cream-deep); }
.lq-section--charcoal   { background: var(--lq-charcoal); color: var(--lq-cream); }
.lq-section--charcoal h1, .lq-section--charcoal h2, .lq-section--charcoal h3 { color: #fff; }
.lq-section--orange     { background: var(--lq-orange); color: #fff; }
.lq-section--orange h1, .lq-section--orange h2, .lq-section--orange h3 { color: #fff; }
.lq-section--purple     { background: var(--lq-purple); color: var(--lq-cream); }
.lq-section--purple h1, .lq-section--purple h2, .lq-section--purple h3 { color: #fff; }

.lq-section--cream + .lq-section--cream      { padding-top: 0; }
.lq-section--cream-warm + .lq-section--cream-warm { padding-top: 0; }

/* ---------- TYPOGRAPHY UTILS ---------- */
.lq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--lq-purple);
    margin: 0 0 1.1rem;
}
.lq-kicker::before {
    content: '';
    width: 1.75rem; height: 1px;
    background: currentColor;
}
.lq-kicker--orange { color: var(--lq-orange-deep); }
.lq-kicker--cream  { color: var(--lq-saffron); }
.lq-kicker--center { justify-content: center; }
.lq-kicker--center::before { display: none; }

.lq-display {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0 0 1.25rem;
}
.lq-h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.9rem, 4.6vw, 3.4rem);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
}
.lq-h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 .5rem;
}
.lq-display em, .lq-h2 em, .lq-hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--lq-orange-deep);
    font-feature-settings: 'ss02';
}
.lq-lead {
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    line-height: 1.6;
    color: var(--lq-warmgray);
    max-width: 60ch;
    margin: 0;
}

/* ---------- BUTTONS ---------- */
.lq-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.7rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: transform .25s cubic-bezier(.4,.0,.2,1), background .25s ease, box-shadow .35s ease, color .25s ease, border-color .25s ease;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}
.lq-btn:focus-visible {
    outline: 3px solid var(--lq-orange);
    outline-offset: 3px;
}
.lq-btn--primary { background: var(--lq-purple); color: #fff; }
.lq-btn--primary:hover { background: var(--lq-purple-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.lq-btn--orange { background: var(--lq-orange); color: #fff; }
.lq-btn--orange:hover { background: var(--lq-orange-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 18px 44px -14px rgba(217, 122, 44, 0.55); }
.lq-btn--ghost { background: transparent; color: var(--lq-charcoal); border-color: var(--lq-line-strong); }
.lq-btn--ghost:hover { background: var(--lq-charcoal); color: #fff; border-color: var(--lq-charcoal); }
.lq-btn--ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.32); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.lq-btn--ghost-light:hover { background: #fff; color: var(--lq-purple-deep); border-color: #fff; }
.lq-btn--cream { background: var(--lq-cream); color: var(--lq-purple-deep); }
.lq-btn--cream:hover { background: #fff; color: var(--lq-purple-deep); transform: translateY(-2px); }
.lq-btn__arrow { transition: transform .3s ease; }
.lq-btn:hover .lq-btn__arrow { transform: translateX(4px); }
.lq-btn--sm { padding: .65rem 1.1rem; font-size: 0.85rem; }

/* ---------- HEADER ---------- */
.lq-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.lq-header.is-scrolled,
.lq-header.is-mobile-open,
.lq-header.is-solid {
    background: rgba(251, 246, 238, 0.94);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 8px 24px -12px rgba(31,26,36,0.16);
}
.lq-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 0;
    min-height: var(--header-h);
}
.lq-logo {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.005em;
    color: var(--lq-charcoal);
    text-decoration: none;
}
.lq-logo img { height: 40px; width: auto; }
.lq-logo__wordmark { display: none; }
@media (min-width: 480px) {
    .lq-logo__wordmark { display: inline; font-size: 1.15rem; }
}
@media (min-width: 1024px) {
    .lq-logo img { height: 44px; }
}
.lq-header.is-scrolled .lq-logo img,
.lq-header.is-solid .lq-logo img { height: 38px; }

.lq-header:not(.is-scrolled):not(.is-solid):not(.is-mobile-open) .lq-logo { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }

.lq-nav { display: none; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .lq-nav { display: flex; } }
.lq-nav a {
    color: var(--lq-charcoal);
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    padding: 0.3rem 0;
    text-decoration: none;
}
.lq-nav a::after {
    content: '';
    position: absolute; left: 0; bottom: -4px;
    height: 2px; width: 0;
    background: var(--lq-orange);
    transition: width .28s ease;
}
.lq-nav a:hover::after, .lq-nav a.is-active::after { width: 100%; }
.lq-header:not(.is-scrolled):not(.is-solid):not(.is-mobile-open) .lq-nav a { color: rgba(255,255,255,0.94); text-shadow: 0 1px 8px rgba(0,0,0,0.4); }

.lq-header__actions { display: flex; align-items: center; gap: .9rem; }
.lq-lang-switch { display: inline-flex; align-items: center; gap: .15rem; font-size: 0.78rem; font-weight: 600; }
.lq-lang-switch a {
    color: var(--lq-warmgray);
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}
.lq-lang-switch a.is-active { color: var(--lq-purple); background: rgba(92, 43, 130, 0.08); }
.lq-header:not(.is-scrolled):not(.is-solid):not(.is-mobile-open) .lq-lang-switch a { color: rgba(255,255,255,0.85); }
.lq-header:not(.is-scrolled):not(.is-solid):not(.is-mobile-open) .lq-lang-switch a.is-active { color: #fff; background: rgba(255,255,255,0.18); }
.lq-lang-switch span { color: rgba(0,0,0,0.2); }
.lq-header:not(.is-scrolled):not(.is-solid):not(.is-mobile-open) .lq-lang-switch span { color: rgba(255,255,255,0.4); }

.lq-burger { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: none; position: relative; }
@media (min-width: 1024px) { .lq-burger { display: none; } }
.lq-burger span {
    position: absolute;
    width: 22px; height: 2px;
    background: var(--lq-charcoal);
    transition: all .3s ease;
    border-radius: 2px;
}
.lq-burger span:nth-child(1) { transform: translateY(-6px); }
.lq-burger span:nth-child(3) { transform: translateY(6px); }
.lq-header:not(.is-scrolled):not(.is-solid):not(.is-mobile-open) .lq-burger span { background: #fff; }
.lq-header.is-mobile-open .lq-burger span:nth-child(1) { transform: rotate(45deg); }
.lq-header.is-mobile-open .lq-burger span:nth-child(2) { opacity: 0; }
.lq-header.is-mobile-open .lq-burger span:nth-child(3) { transform: rotate(-45deg); }

.lq-mobile-menu { display: none; padding: 0.5rem 0 1.75rem; }
.lq-header.is-mobile-open .lq-mobile-menu { display: block; }
.lq-mobile-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    color: var(--lq-charcoal);
    border-top: 1px solid var(--lq-line);
    text-decoration: none;
}
.lq-mobile-menu a:first-child { border-top: none; }

[data-show-on="lg"] { display: none !important; }
@media (min-width: 1024px) { [data-show-on="lg"] { display: inline-flex !important; } }

/* ---------- HERO ---------- */
.lq-hero {
    position: relative;
    min-height: clamp(640px, 96vh, 940px);
    display: flex; align-items: flex-end;
    overflow: hidden;
    background: var(--lq-charcoal);
    color: #fff;
}
.lq-hero__slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease;
    z-index: 0;
}
.lq-hero__slide.is-active { opacity: 1; z-index: 1; }
.lq-hero__slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: lq-kenburns 16s ease-out forwards;
}
@keyframes lq-kenburns {
    from { transform: scale(1.06); }
    to   { transform: scale(1.16); }
}
.lq-hero__overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(180deg, rgba(31,26,36,0.30) 0%, rgba(31,26,36,0.20) 35%, rgba(31,26,36,0.85) 100%),
        radial-gradient(ellipse at 80% 20%, rgba(217, 122, 44, 0.32) 0%, transparent 55%);
}
.lq-hero__halo {
    position: absolute; inset: -10% -10% auto auto;
    width: clamp(360px, 60vw, 760px); height: clamp(360px, 60vw, 760px);
    background: radial-gradient(circle, rgba(217,122,44,0.45), transparent 70%);
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
    animation: lq-halo 22s ease-in-out infinite alternate;
}
@keyframes lq-halo {
    from { transform: translate(0,0) scale(1); opacity: .8; }
    to   { transform: translate(-6%,4%) scale(1.1); opacity: 1; }
}
.lq-hero__inner {
    position: relative; z-index: 3;
    width: 100%;
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: clamp(4.5rem, 10vw, 7rem);
}
.lq-hero__kicker {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lq-cream);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
}
.lq-hero__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.6rem, 7.5vw, 6.4rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    max-width: 16ch;
    margin: 0 0 1.75rem;
    text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.lq-hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--lq-saffron);
}
.lq-hero__excerpt {
    font-size: clamp(1.05rem, 1.6vw, 1.32rem);
    max-width: 56ch;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    margin: 0 0 2.25rem;
}
.lq-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.lq-hero__indicators {
    position: absolute;
    bottom: 1.6rem; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 0.5rem;
    z-index: 4;
}
.lq-hero__indicator {
    width: 28px; height: 3px;
    border: none;
    background: rgba(255,255,255,0.32);
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s ease;
    padding: 0;
}
.lq-hero__indicator.is-active { background: var(--lq-orange-soft); width: 56px; }

/* ---------- ABOUT (homepage block) ---------- */
.lq-about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
    align-items: center;
}
@media (min-width: 900px) {
    .lq-about-grid { grid-template-columns: 1.1fr 0.9fr; gap: clamp(3rem, 6vw, 5rem); }
}
.lq-about-figure {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-card-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
}
.lq-about-figure img { width: 100%; height: 100%; object-fit: cover; }
.lq-about-figure__deco-1, .lq-about-figure__deco-2 {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}
.lq-about-figure__deco-1 {
    inset: -1.5rem -1.5rem auto auto;
    background: var(--lq-orange);
    width: 9rem; height: 9rem;
    opacity: .4;
}
.lq-about-figure__deco-2 {
    bottom: -1.5rem; left: -1rem;
    background: var(--lq-purple);
    width: 6rem; height: 6rem;
    opacity: .25;
}

/* ---------- USP ROW (Why) ---------- */
.lq-usp-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--gap-lg);
}
.lq-usp { display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem; }
.lq-usp__num {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--lq-orange);
    line-height: 1;
    font-style: italic;
}
.lq-usp__label {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--lq-charcoal);
    max-width: 22ch;
}

/* ---------- MENU ---------- */
.lq-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--gap-md);
}
.lq-menu-item {
    background: #fff;
    border-radius: var(--radius-card-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--lq-line);
    display: flex;
    flex-direction: column;
    transition: transform .35s cubic-bezier(.4,.0,.2,1), box-shadow .35s ease;
}
.lq-menu-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}
.lq-menu-item__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--lq-cream-warm);
    position: relative;
}
.lq-menu-item__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
}
.lq-menu-item:hover .lq-menu-item__media img { transform: scale(1.07); }
.lq-menu-item__tags {
    position: absolute; top: 0.85rem; left: 0.85rem;
    display: flex; gap: 0.35rem; flex-wrap: wrap;
}
.lq-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.32rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(8px);
    color: var(--lq-charcoal);
}
.lq-tag--vegan { background: #2D6F3F; color: #fff; }
.lq-tag--vegetarian { background: #6FA52A; color: #fff; }
.lq-tag--meat { background: var(--lq-orange-deep); color: #fff; }
.lq-tag--sweet { background: var(--lq-purple-soft); color: #fff; }

.lq-menu-item__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.lq-menu-item__name {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: var(--lq-charcoal);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.lq-menu-item__desc {
    font-size: 0.92rem;
    color: var(--lq-warmgray);
    line-height: 1.5;
    margin: 0 0 1rem;
    flex: 1;
}
.lq-menu-item__foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}
.lq-menu-item__price {
    font-family: 'Fraunces', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--lq-purple);
    letter-spacing: -0.01em;
    line-height: 1;
}
.lq-menu-item__hint {
    font-size: 0.72rem;
    color: var(--lq-warmgray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* Drinks list */
.lq-drinks-list {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--lq-line);
    overflow: hidden;
}
.lq-drinks-list__row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    padding: 1rem 1.4rem;
    border-top: 1px solid var(--lq-line);
    align-items: center;
}
.lq-drinks-list__row:first-child { border-top: none; }
.lq-drinks-list__name { font-weight: 600; color: var(--lq-charcoal); display: flex; gap: .55rem; align-items: baseline; flex-wrap: wrap; }
.lq-drinks-list__size { color: var(--lq-warmgray); font-size: 0.88rem; font-variant-numeric: tabular-nums; }
.lq-drinks-list__price { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: var(--lq-purple); }

/* ---------- LOCATION CARD — image on top (16:9), body below, equal heights ---------- */
.lq-loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
    gap: var(--gap-md);
    align-items: stretch;
}
.lq-location-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-card-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--lq-line);
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}
.lq-location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.lq-location-card__media {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    background: var(--lq-cream-warm);
    flex-shrink: 0;
}
.lq-location-card__media img { width: 100%; height: 100%; object-fit: cover; }
.lq-location-card__body {
    padding: 1.75rem 1.85rem 1.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}
.lq-location-card__season {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--lq-orange-deep);
}
.lq-hours { display: flex; flex-direction: column; gap: 0; margin-top: 0.5rem; }
.lq-hours__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    font-size: 0.9rem;
    padding: 0.65rem 0;
    border-top: 1px dashed var(--lq-line-strong);
}
.lq-hours__row:first-child { border-top: none; padding-top: 0; }
.lq-hours__days { color: var(--lq-charcoal); font-weight: 500; }
.lq-hours__time { font-variant-numeric: tabular-nums; color: var(--lq-purple); font-weight: 600; }

/* ---------- FAMILY CARD ---------- */
.lq-family-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: var(--gap-md);
}
.lq-family-card {
    background: var(--lq-cream-warm);
    border-radius: var(--radius-card-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .35s ease, box-shadow .35s ease;
}
.lq-family-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.lq-family-card__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--lq-cream);
    position: relative;
}
.lq-family-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.lq-family-card:hover .lq-family-card__media img { transform: scale(1.04); }
.lq-family-card__placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--lq-orange) 0%, var(--lq-purple) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 5.5rem;
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    font-style: italic;
}
.lq-family-card__body { padding: 1.6rem 1.75rem 1.85rem; }
.lq-family-card__name {
    font-family: 'Fraunces', serif;
    font-size: 1.65rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
    letter-spacing: -0.02em;
}
.lq-family-card__title {
    font-size: 0.92rem;
    font-weight: 500;
    font-style: italic;
    color: var(--lq-purple);
    margin-bottom: 1rem;
}
.lq-family-card dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.4rem 1rem;
    font-size: 0.88rem;
    margin: 0;
}
.lq-family-card dt { font-weight: 600; color: var(--lq-charcoal); }
.lq-family-card dd { margin: 0; color: var(--lq-warmgray); }

/* ---------- CATERING TILE ---------- */
.lq-catering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: var(--gap-md);
}
.lq-catering-tile {
    background: #fff;
    border-radius: var(--radius-card-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--lq-line);
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
    overflow: hidden;
}
.lq-catering-tile::before {
    content: '';
    position: absolute; left: 0; top: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--lq-purple), var(--lq-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.lq-catering-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.lq-catering-tile:hover::before { transform: scaleX(1); }
.lq-catering-tile__icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(92,43,130,0.14), rgba(217,122,44,0.14));
    color: var(--lq-purple);
    margin-bottom: 1.1rem;
    font-size: 1.7rem;
}
.lq-catering-tile h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--lq-charcoal);
}
.lq-catering-tile p { font-size: 0.95rem; line-height: 1.55; }
.lq-section--purple .lq-catering-tile {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: rgba(251,246,238,0.86);
}
.lq-section--purple .lq-catering-tile h3 { color: #fff; }
.lq-section--purple .lq-catering-tile__icon {
    background: linear-gradient(135deg, rgba(217,122,44,0.4), rgba(255,255,255,0.1));
    color: #fff;
}

/* ---------- CARD (news) ---------- */
.lq-card {
    background: #fff;
    border-radius: var(--radius-card-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--lq-line);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}
.lq-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.lq-card--media .lq-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--lq-cream-warm);
}
.lq-card--media .lq-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
}
.lq-card:hover .lq-card__media img { transform: scale(1.05); }
.lq-card__body { padding: 1.6rem 1.75rem 1.85rem; }
.lq-card__meta {
    display: flex; gap: 0.75rem; align-items: center;
    font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--lq-orange-deep); margin-bottom: 0.7rem; font-weight: 700;
}
.lq-card__meta-date { color: var(--lq-warmgray); letter-spacing: 0.08em; font-weight: 500; }

/* ---------- PARALLAX ---------- */
.lq-parallax {
    position: relative;
    min-height: 50vh;
    display: flex; align-items: center;
    background: var(--lq-charcoal);
    overflow: hidden;
    color: #fff;
}
.lq-parallax__bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
@media (max-width: 768px) {
    .lq-parallax__bg { background-attachment: scroll; }
}
.lq-parallax__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(120deg, rgba(63,27,95,0.85) 0%, rgba(31,26,36,0.72) 50%, rgba(184,99,30,0.55) 100%);
}
.lq-parallax__inner {
    position: relative; z-index: 2;
    width: 100%;
    padding: clamp(4rem, 9vw, 7rem) 0;
    text-align: center;
}
.lq-parallax__inner h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    color: #fff;
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
}
.lq-parallax__inner p {
    max-width: 50ch;
    margin: 0 auto;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* ---------- SUBPAGE HERO ---------- */
.lq-subhero {
    position: relative;
    background: var(--lq-cream-warm);
    padding-top: calc(var(--header-h) + 4rem);
    padding-bottom: 4rem;
    overflow: hidden;
}
.lq-subhero::before {
    content: '';
    position: absolute;
    right: -12rem; top: -12rem;
    width: 32rem; height: 32rem;
    background: radial-gradient(circle, var(--lq-orange) 0%, transparent 65%);
    opacity: 0.12;
    border-radius: 50%;
    pointer-events: none;
}
.lq-subhero h1 {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    margin: 0 0 0.75rem;
    line-height: 1.04;
    letter-spacing: -0.035em;
}
.lq-subhero__subtitle { color: var(--lq-warmgray); font-size: clamp(1.05rem, 1.4vw, 1.18rem); max-width: 56ch; }
.lq-subhero__crumbs {
    display: flex; gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--lq-warmgray);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
}
.lq-subhero__crumbs a { color: inherit; }
.lq-subhero__crumbs a:hover { color: var(--lq-purple); }

/* ---------- FOOTER ---------- */
.lq-footer {
    background: var(--lq-charcoal);
    color: rgba(251, 246, 238, 0.78);
    padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}
.lq-footer h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 1.25rem;
}
.lq-footer a { color: rgba(251, 246, 238, 0.78); display: inline-block; padding: 0.25rem 0; text-decoration: none; }
.lq-footer a:hover { color: var(--lq-orange-soft); }
.lq-footer__cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 700px) { .lq-footer__cols { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1000px) { .lq-footer__cols { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; } }
.lq-footer__bottom { padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.82rem; }
.lq-footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.lq-footer__brand img { height: 56px; width: auto; filter: brightness(1.15); margin-bottom: 1.4rem; }

/* ---------- FORM ---------- */
.lq-form { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .lq-form { grid-template-columns: repeat(2, 1fr); } }
.lq-form__row { display: flex; flex-direction: column; gap: 0.4rem; }
.lq-form__row--full { grid-column: 1 / -1; }
.lq-form label { font-size: 0.85rem; font-weight: 600; color: var(--lq-charcoal); }
.lq-form input, .lq-form select, .lq-form textarea {
    background: #fff;
    border: 1px solid var(--lq-line-strong);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-tight);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--lq-charcoal);
    transition: border-color .25s ease, box-shadow .25s ease;
    width: 100%;
}
.lq-form input:focus, .lq-form select:focus, .lq-form textarea:focus {
    border-color: var(--lq-purple); outline: none;
    box-shadow: 0 0 0 4px rgba(92,43,130,0.12);
}
.lq-form textarea { resize: vertical; min-height: 140px; }
.lq-form__check { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.9rem; color: var(--lq-charcoal); }
.lq-form__check input { margin-top: 0.25rem; flex-shrink: 0; width: auto; }
.lq-form__feedback { padding: 1rem; border-radius: var(--radius-tight); font-size: 0.92rem; }
.lq-form__feedback--success { background: rgba(45,111,63,0.1); color: #2D6F3F; border: 1px solid rgba(45,111,63,0.25); }
.lq-form__feedback--error { background: rgba(184,99,30,0.1); color: var(--lq-orange-deep); border: 1px solid rgba(184,99,30,0.25); }

/* ---------- HEAD ROW ---------- */
.lq-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: var(--gap-lg);
}
.lq-head-row__copy { max-width: 640px; }

/* ---------- WOLT FLOAT ---------- */
.lq-wolt-float {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 80;
    background: var(--lq-orange);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 0.85rem 1.4rem;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 14px 40px -10px rgba(217, 122, 44, 0.65);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.lq-wolt-float:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 18px 50px -10px rgba(217, 122, 44, 0.8);
}
@media (max-width: 640px) {
    .lq-wolt-float { bottom: 0.9rem; right: 0.9rem; padding: 0.7rem 1.05rem; font-size: 0.85rem; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1);
}
[data-reveal].is-revealed {
    opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .lq-hero__slide img { animation: none; transform: none; }
}

/* ---------- COOKIE BANNER — small floaty glass card, bottom-left ---------- */
.consent-banner {
    position: fixed !important;
    left: 1.25rem !important;
    bottom: 1.25rem !important;
    right: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: 340px !important;
    margin: 0 !important;
    padding: 1rem 1.1rem 1.05rem !important;
    background: rgba(20, 16, 24, 0.72) !important;
    backdrop-filter: blur(26px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(26px) saturate(180%) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    box-shadow: 0 18px 50px rgba(0,0,0,0.42), 0 2px 6px rgba(0,0,0,0.18) !important;
    color: rgba(255,255,255,0.92) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    z-index: 9000 !important;
    transform: translateY(16px) !important;
    opacity: 0 !important;
    transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s ease !important;
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
}
.consent-banner.is-visible,
.consent-banner[data-visible="true"] { transform: translateY(0) !important; opacity: 1 !important; }
.consent-banner::before { display: none !important; }
.consent-banner__icon { display: none !important; }
.consent-banner__body { display: contents !important; }
.consent-banner__copy { padding: 0 !important; }
.consent-banner__title {
    color: #fff !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin: 0 0 0.3rem !important;
    font-family: 'Fraunces', serif !important;
    letter-spacing: -0.01em !important;
}
.consent-banner__text {
    margin: 0 !important;
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.78) !important;
    line-height: 1.5 !important;
}
.consent-banner__link {
    color: rgba(255,255,255,0.92) !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
}
.consent-banner__link:hover { color: var(--lq-orange-soft) !important; }
.consent-banner__actions {
    display: flex !important;
    gap: 0.5rem !important;
    margin-top: 0.25rem !important;
    flex-direction: row !important;
}
.consent-banner__btn {
    flex: 1 1 0 !important;
    padding: 0.55rem 0.9rem !important;
    border-radius: 999px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
    transition: all .25s ease !important;
    line-height: 1 !important;
    font-family: inherit !important;
    text-align: center !important;
}
.consent-banner__btn--primary {
    background: var(--lq-orange) !important;
    color: #fff !important;
}
.consent-banner__btn--primary:hover {
    background: var(--lq-orange-deep) !important;
}
.consent-banner__btn--ghost {
    background: transparent !important;
    color: rgba(255,255,255,0.85) !important;
    border-color: rgba(255,255,255,0.22) !important;
}
.consent-banner__btn--ghost:hover {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
}
@media (max-width: 480px) {
    .consent-banner {
        left: 0.85rem !important;
        right: 0.85rem !important;
        bottom: 0.85rem !important;
        max-width: none !important;
    }
}

/* ---------- A11Y WIDGET (icon purple per Nils) ---------- */
.lq-a11y-trigger,
.langos-queen-a11y-button,
.langos-queen-a11y-trigger,
.a11y-widget-trigger {
    background: var(--lq-purple) !important;
}
.lq-a11y-trigger:hover,
.langos-queen-a11y-button:hover,
.langos-queen-a11y-trigger:hover,
.a11y-widget-trigger:hover {
    background: var(--lq-purple-deep) !important;
}

/* ---------- SR-ONLY ---------- */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: absolute; top: 0; left: 0;
    padding: 0.85rem 1.25rem;
    background: var(--lq-purple);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 0.5rem 0;
    transform: translateY(-200%);
    transition: transform 0.18s ease;
    z-index: 1000;
}
.skip-link:focus, .skip-link:focus-visible {
    transform: translateY(0);
    outline: 3px solid var(--lq-orange);
    outline-offset: -6px;
    color: #fff;
}

/* ---------- SCROLLBAR ---------- */
@media (pointer: fine) {
    ::-webkit-scrollbar { width: 10px; height: 10px; }
    ::-webkit-scrollbar-track { background: var(--lq-cream-warm); }
    ::-webkit-scrollbar-thumb { background: var(--lq-purple-soft); border-radius: 10px; border: 2px solid var(--lq-cream-warm); }
    ::-webkit-scrollbar-thumb:hover { background: var(--lq-purple); }
}

/* ---------- FOCUS-VISIBLE ---------- */
:focus-visible {
    outline: 3px solid var(--lq-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- RESPONSIVE TUNERS ---------- */
@media (max-width: 480px) {
    .lq-hero__title { font-size: clamp(2.2rem, 11vw, 3.4rem); max-width: 14ch; }
    .lq-hero__excerpt { font-size: 1rem; }
    .lq-hero__ctas .lq-btn { flex: 1 1 calc(50% - 0.5rem); justify-content: center; }
    .lq-section { padding-top: 4rem; padding-bottom: 4rem; }
    .lq-menu-item__body { padding: 1.2rem 1.25rem 1.4rem; }
    .lq-location-card__body { padding: 1.4rem 1.4rem 1.5rem; }
    .lq-family-card__body { padding: 1.3rem 1.4rem 1.5rem; }
    .lq-catering-tile { padding: 1.6rem; }
}

/* ---------- KEYFRAMES ---------- */
@keyframes lq-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lq-fade-up { animation: lq-fade-up .9s cubic-bezier(.16,1,.3,1) both; }
