/* ============================================================
   LOGO v2 — Editorial / Magazine
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
    --pn-paper:        #F2EBDA;        /* main bg, warm cream paper */
    --pn-paper-2:      #EBE3CF;        /* slightly darker for cards */
    --pn-paper-3:      #DFD4B7;        /* outline / dividers */
    --pn-ink:          #1B140C;        /* main dark text */
    --pn-ink-2:        #2D2218;        /* deep dark bg sections */
    --pn-ink-3:        #3B2C1F;        /* card on dark */
    --pn-cream:        #F8F2E4;        /* on dark text */
    --pn-muted:        #6F614C;        /* muted body */
    --pn-line:         rgba(27,20,12,0.14);
    --pn-line-2:       rgba(27,20,12,0.32);
    --pn-line-light:   rgba(248,242,228,0.18);
    --pn-terra:        #B53D26;        /* terracotta accent */
    --pn-terra-2:      #D04931;
    --pn-bordeaux:     #5C1B16;
    --pn-olive:        #6F7B38;
    --pn-gold:         #B68A3F;

    --pn-serif:    'Fraunces', 'Cormorant Garamond', 'Times New Roman', serif;
    --pn-sans:     'Inter', system-ui, sans-serif;
    --pn-script:   'Italianno', cursive;

    --pn-r-sm:     8px;
    --pn-r-md:     16px;
    --pn-r-lg:     24px;
    --pn-r-xl:     36px;

    --pn-ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
    --pn-ease-soft: cubic-bezier(0.25, 1, 0.5, 1);

    --pn-container: 1380px;
    --pn-pad-x:     clamp(20px, 4vw, 56px);
    --pn-header-h:  78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
html.lenis { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }
html.lenis.lenis-stopped body { overflow: clip; }

body {
    margin: 0;
    font-family: var(--pn-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--pn-ink);
    background: var(--pn-paper);
    overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--pn-ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--pn-terra); color: var(--pn-cream); }

/* ---------- Layout ---------- */
.lg-container { width: 100%; max-width: var(--pn-container); margin: 0 auto; padding-inline: var(--pn-pad-x); }
.lg-section   { position: relative; padding-block: clamp(72px, 9vw, 140px); }
.lg-section--inner { min-height: 60vh; padding-top: calc(var(--pn-header-h) + 60px); }

/* ---------- Typography ---------- */
.lg-h2, h1, h2, h3 { font-family: var(--pn-serif); font-weight: 400; color: var(--pn-ink); margin: 0; letter-spacing: -0.015em; }
.lg-h2 { font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.02; font-variation-settings: "opsz" 144, "SOFT" 30; }
.lg-h2 em { font-style: italic; color: var(--pn-terra); font-variation-settings: "opsz" 144, "SOFT" 60; }
.lg-h2--center { text-align: center; }

.lg-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--pn-sans); font-size: 0.74rem; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase; color: var(--pn-terra);
}
.lg-eyebrow i { width: 24px; height: 1px; background: currentColor; }

.lg-script { font-family: var(--pn-script); font-size: 1.6em; color: var(--pn-terra); line-height: 1; font-weight: 400; }

.lg-lead { font-size: clamp(1.05rem, 1.3vw, 1.18rem); line-height: 1.7; color: var(--pn-ink); max-width: 60ch; }

.lg-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 500; color: var(--pn-terra);
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px; transition: gap .25s var(--pn-ease);
}
.lg-link svg { width: 16px; height: 16px; }
.lg-link:hover { gap: 14px; }

/* ---------- Buttons ---------- */
.lg-btn {
    --bg: transparent; --color: var(--pn-ink); --border: var(--pn-line-2);
    display: inline-flex; align-items: center; gap: 14px;
    padding: 14px 26px;
    border-radius: 999px;
    background: var(--bg); color: var(--color); border: 1px solid var(--border);
    font-family: var(--pn-sans); font-size: 0.92rem; font-weight: 500;
    letter-spacing: 0.04em;
    transition: all .35s var(--pn-ease);
    will-change: transform;
}
.lg-btn svg { width: 16px; height: 16px; transition: transform .35s var(--pn-ease); }
.lg-btn:hover { transform: translateY(-2px); }
.lg-btn:hover svg { transform: translateX(4px); }

.lg-btn--solid {
    --bg: var(--pn-ink);
    --color: var(--pn-cream);
    --border: var(--pn-ink);
    box-shadow: 0 14px 30px -16px rgba(27,20,12,0.5);
}
.lg-btn--solid:hover { --bg: var(--pn-terra); --border: var(--pn-terra); }

.lg-btn--terra { --bg: var(--pn-terra); --color: var(--pn-cream); --border: var(--pn-terra); }
.lg-btn--terra:hover { --bg: var(--pn-terra-2); --border: var(--pn-terra-2); }

/* Outline (ghost) button — clearly visible on cream background */
.lg-btn--ghost {
    --bg: transparent;
    --color: var(--pn-ink);
    --border: var(--pn-ink);
    border-width: 2px !important;
    background: transparent !important;
    color: var(--pn-ink) !important;
    box-shadow: 0 8px 22px -12px rgba(27,20,12,0.35);
}
.lg-btn--ghost:hover {
    background: var(--pn-ink) !important;
    color: var(--pn-cream) !important;
    box-shadow: 0 14px 32px -14px rgba(27,20,12,0.55);
}

.lg-btn--gold { --bg: var(--pn-terra); --color: var(--pn-cream); --border: var(--pn-terra); }
.lg-btn--gold:hover { --bg: var(--pn-terra-2); --border: var(--pn-terra-2); }

.lg-btn--lg { padding: 18px 32px; font-size: 0.96rem; }
.lg-btn--full { width: 100%; justify-content: center; }

/* ============================================================
   PRELOADER
   ============================================================ */
.lg-preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--pn-ink);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .8s var(--pn-ease), visibility 0s .8s;
}
.lg-preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.lg-preloader__inner { text-align: center; color: var(--pn-cream); }
.lg-preloader__script { display: block; font-family: var(--pn-script); color: var(--pn-terra-2); font-size: clamp(2.4rem, 6vw, 3.6rem); margin-bottom: -10px; }
.lg-preloader__title { display: block; font-family: var(--pn-serif); font-size: clamp(2.6rem, 7vw, 4.4rem); letter-spacing: 0.02em; font-weight: 400; font-style: italic; }
.lg-preloader__bar { display: block; width: 220px; height: 1px; margin: 28px auto 0; background: rgba(248,242,228,0.15); position: relative; overflow: hidden; }
.lg-preloader__bar span { display: block; position: absolute; inset: 0; width: 0; background: var(--pn-terra); animation: pnPreload 1.6s var(--pn-ease) forwards; }
@keyframes pnPreload { to { width: 100%; } }

/* ============================================================
   HEADER
   ============================================================ */
.lg-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--pn-header-h);
    background: transparent;
    transition: background .35s var(--pn-ease), backdrop-filter .35s var(--pn-ease), border-color .35s var(--pn-ease);
    border-bottom: 1px solid transparent;
}
.lg-header.is-scrolled { background: rgba(242,235,218,0.94); backdrop-filter: blur(14px) saturate(1.05); border-bottom-color: var(--pn-line); }
.lg-header__inner { height: 100%; max-width: var(--pn-container); margin: 0 auto; padding-inline: var(--pn-pad-x); display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo — clean editorial type */
.lg-logo {
    display: inline-flex; flex-direction: column; align-items: flex-start;
    line-height: 1;
    transition: opacity .25s var(--pn-ease);
}
.lg-logo:hover { opacity: 0.85; color: inherit; }
.lg-logo__name {
    font-family: var(--pn-serif); font-style: italic;
    color: var(--pn-ink);
    font-size: 1.55rem; font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1;
}
.lg-logo__sub {
    font-family: var(--pn-sans);
    color: var(--pn-terra);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Nav */
.lg-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 36px; }
.lg-nav a {
    position: relative;
    font-size: 0.88rem; font-weight: 500;
    color: var(--pn-ink);
    padding-block: 8px;
    letter-spacing: 0.02em;
    transition: color .25s var(--pn-ease);
}
.lg-nav a::before {
    content: '·';
    position: absolute; left: -22px; top: 8px;
    color: var(--pn-terra); opacity: 0;
    transition: opacity .25s var(--pn-ease);
}
.lg-nav a:hover, .lg-nav a.is-active { color: var(--pn-terra); }
.lg-nav a.is-active::before { opacity: 1; }

/* CTA cluster */
.lg-header__cta { display: flex; align-items: center; gap: 16px; }

.lg-header__status {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--pn-ink);
    padding: 6px 14px;
    border: 1px solid var(--pn-line);
    border-radius: 999px;
    background: var(--pn-paper-2);
    font-weight: 500;
}
.lg-header__status i {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--pn-olive);
    position: relative; flex-shrink: 0;
}
.lg-header__status i::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    border: 1px solid var(--pn-olive);
    animation: pnPulse 1.8s ease-out infinite;
}

.lg-header__book { padding: 11px 22px; font-size: 0.88rem; gap: 10px; }
.lg-header__book svg { width: 14px; height: 14px; transform: rotate(-45deg); }
.lg-header__book:hover svg { transform: rotate(-45deg) translateX(4px); }

.lg-burger {
    display: none;
    position: relative;
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid var(--pn-line-2);
    background: var(--pn-paper);
    align-items: center; justify-content: center;
    z-index: 101;
    transition: background .3s var(--pn-ease), border-color .3s var(--pn-ease), transform .3s var(--pn-ease);
}
.lg-burger:hover { background: var(--pn-paper-2); }
.lg-burger span {
    position: absolute;
    left: 14px; right: 14px;
    height: 1.8px;
    background: var(--pn-ink);
    border-radius: 2px;
    transition: transform .35s var(--pn-ease), opacity .25s var(--pn-ease), top .35s var(--pn-ease), background .25s var(--pn-ease);
}
.lg-burger span:nth-child(1) { top: 16px; }
.lg-burger span:nth-child(2) { top: 22.5px; }
.lg-burger span:nth-child(3) { top: 29px; }
.lg-burger.is-open {
    background: var(--pn-ink);
    border-color: var(--pn-ink);
    transform: rotate(90deg);
}
.lg-burger.is-open span { background: var(--pn-cream); }
.lg-burger.is-open span:nth-child(1) { top: 22.5px; transform: rotate(45deg); }
.lg-burger.is-open span:nth-child(2) { opacity: 0; }
.lg-burger.is-open span:nth-child(3) { top: 22.5px; transform: rotate(-45deg); }

/* Mobile nav — premium */
body.is-mobile-nav { overflow: hidden; }

.lg-mobile-nav {
    position: fixed; inset: 0; z-index: 99;
    pointer-events: none; visibility: hidden;
}
.lg-mobile-nav.is-open { pointer-events: auto; visibility: visible; }

.lg-mobile-nav__bg {
    position: absolute; inset: 0;
    background: var(--pn-paper);
    opacity: 0;
    transition: opacity .5s var(--pn-ease);
    cursor: pointer;
}
.lg-mobile-nav.is-open .lg-mobile-nav__bg { opacity: 1; }

/* When mobile nav is open: blend header with paper bg so the menu reads as one solid sheet */
body.is-mobile-nav .lg-header {
    background: var(--pn-paper);
    backdrop-filter: none;
    border-bottom-color: transparent;
}
body.is-mobile-nav .lg-mobile-nav { z-index: 200; }
body.is-mobile-nav .lg-burger { z-index: 201; }
.lg-mobile-nav__bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(181,61,38,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 100%, rgba(111,123,56,0.07) 0%, transparent 55%);
    pointer-events: none;
}
.lg-mobile-nav__bg::after {
    content: '';
    position: absolute;
    top: 50%; right: -25%;
    width: 60vw; height: 60vw;
    transform: translateY(-50%);
    background: radial-gradient(circle, var(--pn-gold, #c9a961) 0%, transparent 70%);
    opacity: 0.06;
    animation: pnSpin 60s linear infinite;
    pointer-events: none;
}

.lg-mobile-nav__inner {
    position: relative; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 110px 32px 40px;
    max-width: 540px;
    margin: 0 auto;
}
.lg-mobile-nav__hint {
    color: var(--pn-terra);
    font-family: var(--pn-script);
    font-size: 1.7rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .5s var(--pn-ease), transform .5s var(--pn-ease);
}
.lg-mobile-nav.is-open .lg-mobile-nav__hint { opacity: 1; transform: none; transition-delay: .15s; }

.lg-mobile-nav ul { list-style: none; margin: 28px 0 0; padding: 0; }
.lg-mobile-nav li {
    border-top: 1px solid var(--pn-line);
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .5s var(--pn-ease), transform .5s var(--pn-ease);
}
.lg-mobile-nav li:last-child { border-bottom: 1px solid var(--pn-line); }
.lg-mobile-nav.is-open li { opacity: 1; transform: none; }
.lg-mobile-nav.is-open li:nth-child(1) { transition-delay: .22s; }
.lg-mobile-nav.is-open li:nth-child(2) { transition-delay: .28s; }
.lg-mobile-nav.is-open li:nth-child(3) { transition-delay: .34s; }
.lg-mobile-nav.is-open li:nth-child(4) { transition-delay: .40s; }
.lg-mobile-nav.is-open li:nth-child(5) { transition-delay: .46s; }

.lg-mobile-nav a {
    display: flex; align-items: baseline; gap: 22px;
    padding: 22px 0;
    font-family: var(--pn-serif); font-style: italic;
    font-size: clamp(2rem, 9vw, 3rem);
    color: var(--pn-ink);
    font-weight: 500;
    line-height: 1;
    transition: color .25s var(--pn-ease), padding-left .35s var(--pn-ease);
}
.lg-mobile-nav a:hover, .lg-mobile-nav a:focus { color: var(--pn-terra); padding-left: 8px; }
.lg-mobile-nav a span {
    font-family: var(--pn-sans); font-size: 0.78rem;
    color: var(--pn-terra); letter-spacing: 0.22em;
    font-style: normal; font-weight: 600;
    width: 30px; flex-shrink: 0;
}

.lg-mobile-nav__foot {
    margin-top: auto; padding-top: 32px;
    display: flex; flex-direction: column; gap: 14px;
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s var(--pn-ease), transform .5s var(--pn-ease);
}
.lg-mobile-nav.is-open .lg-mobile-nav__foot { opacity: 1; transform: none; transition-delay: .55s; }
.lg-mobile-nav__foot a:not(.lg-btn) {
    font-family: var(--pn-serif); font-style: italic;
    font-size: 1.5rem; color: var(--pn-ink);
    display: inline-flex; align-items: center; gap: 10px;
}
.lg-mobile-nav__foot a:not(.lg-btn)::before {
    content: '☎'; color: var(--pn-terra); font-size: 1.1rem;
}
.lg-mobile-nav__foot a:not(.lg-btn):hover { color: var(--pn-terra); }
.lg-mobile-nav__foot .lg-btn { justify-content: center; padding: 18px 26px; font-size: 0.96rem; }
.lg-mobile-nav__cta {
    background: linear-gradient(180deg, var(--pn-terra-2) 0%, var(--pn-terra) 100%) !important;
    border-color: var(--pn-terra) !important;
    color: var(--pn-cream) !important;
    box-shadow: 0 12px 30px -10px rgba(181,61,38,0.45);
    letter-spacing: 0.04em;
    font-weight: 600;
}
.lg-mobile-nav__cta:hover {
    background: linear-gradient(180deg, var(--pn-terra) 0%, var(--pn-bordeaux) 100%) !important;
    box-shadow: 0 14px 36px -8px rgba(181,61,38,0.55);
}

/* ============================================================
   HERO — editorial magazine cover
   ============================================================ */
.lg-hero {
    position: relative;
    min-height: 100svh;
    padding-top: calc(var(--pn-header-h) + 36px);
    padding-bottom: 80px;
    background: var(--pn-paper);
    overflow: hidden;
    display: flex; flex-direction: column;
}

.lg-hero__paper {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse at 0% 100%, rgba(181,61,38,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(111,123,56,0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--pn-paper) 0%, var(--pn-paper) 100%);
}
.lg-hero__noise {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='0.6'/></svg>");
    opacity: 0.06; mix-blend-mode: multiply;
}

.lg-hero__top {
    position: relative; z-index: 2;
    max-width: var(--pn-container); margin: 0 auto;
    padding-inline: var(--pn-pad-x);
    width: 100%;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    font-size: 0.74rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pn-muted);
    margin-bottom: clamp(40px, 6vh, 80px);
}
.lg-hero__topl, .lg-hero__topr { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.lg-hero__live { display: inline-flex; align-items: center; gap: 10px; color: var(--pn-ink); }
.lg-hero__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--pn-olive); position: relative; }
.lg-hero__pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--pn-olive); animation: pnPulse 1.8s ease-out infinite; }
@keyframes pnPulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }
.lg-hero__sep { color: var(--pn-line-2); }

.lg-hero__grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    flex: 1;
}

/* Left: copy */
.lg-hero__copy { position: relative; }

/* ---- LOGO disc — desktop hidden, mobile only big half-cut behind title ---- */
.lg-hero__disc { display: none; }
.lg-hero__disc-logo {
    position: absolute;
    inset: 12%;
    background: radial-gradient(circle, var(--pn-gold, #c9a961) 0%, transparent 65%);
    animation: pnSpin 36s linear infinite;
    will-change: transform;
    transform-origin: center;
}
.lg-hero__disc-text {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    fill: var(--pn-ink);
    animation: pnSpinReverse 28s linear infinite;
    will-change: transform;
    transform-origin: center;
}
.lg-hero__disc-dot { display: none; }
@keyframes pnSpinReverse { to { transform: rotate(-360deg); } }

/* Title and content above disc on mobile */
.lg-hero__title,
.lg-hero__intro,
.lg-hero__actions,
.lg-hero__meta,
.lg-hero__est { position: relative; z-index: 2; }
.lg-hero__est { display: inline-block; font-size: 0.74rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--pn-terra); margin-bottom: 24px; font-weight: 500; }

.lg-hero__title {
    font-family: var(--pn-serif);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.04em;
    margin: 0;
    color: var(--pn-ink);
    font-variation-settings: "opsz" 144, "SOFT" 25;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.lg-hero__line { display: block; }
.lg-hero__line--1 { font-size: clamp(4.4rem, 11vw, 9rem); }
.lg-hero__line--2 { font-size: clamp(4.4rem, 11vw, 9rem); margin-top: -0.04em; }
.lg-hero__line--2 em { font-style: italic; color: var(--pn-terra); font-variation-settings: "opsz" 144, "SOFT" 100; font-weight: 400; }
.lg-hero__line--3 { margin-top: 16px; }
.lg-hero__script { font-family: var(--pn-script); color: var(--pn-terra); font-size: clamp(2.2rem, 5.4vw, 3.6rem); line-height: 1; }
.lg-hero__rule { display: block; width: 84px; height: 1px; background: var(--pn-ink); margin-top: 24px; }

.lg-hero__intro {
    margin: 36px 0 40px;
    max-width: 50ch;
    font-size: clamp(1.05rem, 1.25vw, 1.18rem);
    line-height: 1.7;
    color: var(--pn-ink);
    font-weight: 400;
}
.lg-hero__intro em { font-family: var(--pn-serif); font-style: italic; color: var(--pn-terra); font-size: 1.08em; }

.lg-hero__actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

.lg-hero__menu-link {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--pn-ink); font-weight: 500; font-size: 0.94rem;
    border-bottom: 1px solid var(--pn-line-2);
    padding-bottom: 6px;
    transition: color .25s var(--pn-ease), border-color .25s var(--pn-ease);
}
.lg-hero__menu-link:hover { color: var(--pn-terra); border-color: var(--pn-terra); }
.lg-hero__menu-num { font-family: var(--pn-serif); font-style: italic; color: var(--pn-terra); }

.lg-hero__meta {
    margin-top: clamp(40px, 6vh, 64px);
    padding: 28px 0;
    border-top: 1px solid var(--pn-line);
    border-bottom: 1px solid var(--pn-line);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}
.lg-hero__metaitem {
    display: flex; flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 4px 18px;
    min-width: 0;
}
.lg-hero__metaitem + .lg-hero__metaitem {
    border-left: 1px solid var(--pn-line);
}
.lg-hero__metanum { font-family: var(--pn-serif); font-style: italic; font-size: clamp(2rem, 3vw, 2.6rem); color: var(--pn-terra); line-height: 1; font-weight: 500; }
.lg-hero__metanum small { font-size: 0.5em; vertical-align: super; opacity: 0.7; }
.lg-hero__metalabel { font-size: 0.78rem; color: var(--pn-muted); letter-spacing: 0.06em; line-height: 1.45; display: flex; flex-direction: column; gap: 2px; }
.lg-hero__metalabel-extra { display: block; }

/* Right: media */
.lg-hero__media { position: relative; }
.lg-hero__photo {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--pn-r-lg);
    background: var(--pn-paper-2);
    box-shadow: 0 30px 80px -40px rgba(27,20,12,0.4);
}
.lg-hero__photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); will-change: transform; transition: transform 1.6s var(--pn-ease-soft); }
.lg-hero__photo:hover img { transform: scale(1.1); }
.lg-hero__photo figcaption {
    position: absolute; left: 20px; bottom: 20px; right: 20px;
    display: flex; align-items: center; gap: 14px;
    background: var(--pn-paper); color: var(--pn-ink);
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    border: 1px solid var(--pn-line-2);
}
.lg-hero__photo-num { font-family: var(--pn-serif); font-style: italic; color: var(--pn-terra); font-weight: 500; }
.lg-hero__photo-cap { font-weight: 500; }

.lg-hero__chip {
    position: absolute; top: -18px; left: -18px;
    background: var(--pn-ink); color: var(--pn-cream);
    padding: 18px 26px;
    border-radius: var(--pn-r-md);
    box-shadow: 0 24px 60px -24px rgba(27,20,12,0.5);
    transform: rotate(-3deg);
    max-width: 240px;
}
.lg-hero__chip-eyebrow { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pn-terra-2); margin-bottom: 4px; }
.lg-hero__chip strong { display: block; font-family: var(--pn-serif); font-style: italic; font-size: 1.4rem; line-height: 1.1; font-weight: 500; }
.lg-hero__chip-price { display: block; margin-top: 8px; font-family: var(--pn-serif); color: var(--pn-cream); font-size: 1.1rem; font-weight: 500; }

.lg-hero__stamp {
    position: absolute; bottom: -10px; right: -20px;
    width: 160px; height: 160px;
    color: var(--pn-terra);
    animation: pnSpin 22s linear infinite;
    opacity: 0.95;
}
@keyframes pnSpin { to { transform: rotate(360deg); } }

/* Hero ribbon (marquee) */
.lg-hero__ribbon {
    position: relative; z-index: 2;
    margin-top: clamp(60px, 7vh, 90px);
    padding-block: 14px;
    background: var(--pn-ink);
    color: var(--pn-cream);
    overflow: hidden; white-space: nowrap;
    border-radius: 999px;
    max-width: var(--pn-container);
    margin-inline: auto;
    width: calc(100% - 2 * var(--pn-pad-x));
}
.lg-hero__ribbon-track { display: inline-flex; align-items: center; gap: 28px; animation: pnMarquee 36s linear infinite; padding-inline: 28px; }
.lg-hero__ribbon-group { display: inline-flex; gap: 28px; align-items: center; }
.lg-hero__ribbon-item { font-family: var(--pn-serif); font-style: italic; font-size: clamp(1rem, 1.4vw, 1.25rem); letter-spacing: 0.01em; }
.lg-hero__ribbon-star { color: var(--pn-terra-2); font-size: 0.85rem; }
@keyframes pnMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   MARQUEE (other section, kept simple)
   ============================================================ */
.lg-marquee { display: none; }  /* hero already has ribbon */

/* ============================================================
   ABOUT — editorial collage + pull quote
   ============================================================ */
.lg-about { background: var(--pn-paper); padding-top: clamp(40px, 6vw, 100px); position: relative; }
.lg-about__decor { display: flex; justify-content: center; margin-bottom: 40px; color: var(--pn-terra); opacity: 0.65; }
.lg-about__decor svg { width: 120px; height: 24px; }

.lg-about__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }

/* Collage media — main + chef cutout side-by-side, quote below */
.lg-about__media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.lg-about__photo {
    overflow: hidden;
    border-radius: var(--pn-r-lg);
    margin: 0;
    position: relative;
    background: var(--pn-paper-2);
    aspect-ratio: 3 / 4;
}
.lg-about__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--pn-ease-soft); }
.lg-about__photo:hover img { transform: scale(1.04); }
.lg-about__photo figcaption {
    position: absolute; left: 12px; bottom: 12px;
    background: var(--pn-paper);
    color: var(--pn-ink);
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--pn-serif); font-style: italic; font-size: 0.78rem;
    border: 1px solid var(--pn-line-2);
    z-index: 2;
}

/* Chef cut-out — paper background like the rest, no gradient, contain */
.lg-about__photo--owner {
    background: var(--pn-paper-2);
    overflow: hidden;
    display: flex; align-items: flex-end; justify-content: center;
}
.lg-about__photo--owner::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(181,61,38,0.10) 0%, transparent 60%),
        repeating-linear-gradient(45deg, transparent 0 8px, rgba(27,20,12,0.025) 8px 9px);
    pointer-events: none;
}
.lg-about__photo--owner img {
    width: auto; height: 96%;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 1s var(--pn-ease-soft);
    position: relative; z-index: 1;
}
.lg-about__photo--owner:hover img { transform: translateY(-6px) scale(1.02); }

.lg-about__quote {
    grid-column: 1 / 3;
    margin: 0;
    background: var(--pn-ink);
    color: var(--pn-cream);
    padding: 26px 28px 22px;
    border-radius: var(--pn-r-lg);
    display: flex; flex-direction: column; gap: 12px;
    position: relative;
    overflow: hidden;
}
.lg-about__quote::after {
    content: ''; position: absolute; right: -30px; bottom: -30px;
    width: 90px; height: 90px; border-radius: 50%;
    background: rgba(181,61,38,0.16); pointer-events: none;
}
.lg-about__quote-mark {
    font-family: var(--pn-serif); font-style: italic;
    font-size: 3rem; line-height: 0.6;
    color: var(--pn-terra-2);
}
.lg-about__quote p {
    margin: 0; font-family: var(--pn-serif); font-style: italic;
    font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.5;
    color: var(--pn-cream); font-weight: 400;
}
.lg-about__quote p em { color: var(--pn-terra-2); font-style: italic; font-family: var(--pn-serif); }
.lg-about__quote cite {
    display: block; margin-top: 10px;
    font-style: normal; font-family: var(--pn-script);
    font-size: 1.4rem; color: var(--pn-terra-2); line-height: 1;
}

.lg-about__badge {
    position: absolute;
    top: -28px; left: -28px;
    width: 110px; height: 110px;
    color: var(--pn-cream);
    background: var(--pn-terra);
    border-radius: 50%;
    box-shadow: 0 18px 40px -18px rgba(181,61,38,0.5);
    z-index: 3;
    animation: pnSpin 28s linear infinite;
}
.lg-about__badge svg { width: 100%; height: 100%; }
.lg-about__badge text { fill: var(--pn-cream); }
.lg-about__badge tspan { fill: var(--pn-cream); }

/* Text side */
.lg-about__text > * + * { margin-top: 20px; }
.lg-about__text .lg-h2 { margin-top: 14px; }
.lg-about__lead { margin-top: 28px; }

.lg-about__dropcap {
    float: left;
    font-family: var(--pn-serif);
    font-style: italic;
    color: var(--pn-terra);
    font-size: 4.6rem;
    line-height: 0.82;
    margin: 6px 12px -4px 0;
    font-weight: 500;
}

.lg-about__features {
    list-style: none; padding: 24px 0 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px;
    border-top: 1px solid var(--pn-line);
    margin-top: 28px;
}
.lg-about__features li { display: flex; gap: 14px; align-items: flex-start; }
.lg-about__features svg { width: 22px; height: 22px; color: var(--pn-terra); flex-shrink: 0; margin-top: 4px; }
.lg-about__features strong { display: block; font-family: var(--pn-serif); font-style: italic; font-weight: 500; font-size: 1.08rem; color: var(--pn-ink); line-height: 1.2; margin-bottom: 2px; }
.lg-about__features span { display: block; font-size: 0.84rem; color: var(--pn-muted); line-height: 1.45; }

.lg-stats { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; border-top: 1px solid var(--pn-line); padding-top: 28px; }
.lg-stats li { display: flex; flex-direction: column; gap: 4px; }
.lg-stats strong { font-family: var(--pn-serif); font-style: italic; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--pn-terra); font-weight: 500; line-height: 1; }
.lg-stats span { font-size: 0.82rem; color: var(--pn-muted); letter-spacing: 0.06em; }

.lg-about__sign { margin-top: 24px; }

/* ============================================================
   PHILOSOPHY — light cards, numbered editorial
   ============================================================ */
.lg-philo { background: var(--pn-paper-2); }
.lg-philo__head { text-align: center; max-width: 720px; margin: 0 auto 80px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lg-philo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.lg-philo__card {
    position: relative;
    padding: 44px 36px 40px;
    border-left: 1px solid var(--pn-line);
    transition: background .4s var(--pn-ease);
}
.lg-philo__card:first-child { border-left: none; }
.lg-philo__card:hover { background: var(--pn-paper); }
.lg-philo__num {
    display: block;
    font-family: var(--pn-serif); font-style: italic;
    font-size: 3.4rem; color: var(--pn-terra); line-height: 1;
    margin-bottom: 18px; font-weight: 400;
}
.lg-philo__icon { display: none; }
.lg-philo__card h3 { font-size: clamp(1.6rem, 2.4vw, 2rem); margin-bottom: 14px; font-family: var(--pn-serif); font-style: italic; font-weight: 500; }
.lg-philo__card p { color: var(--pn-ink); line-height: 1.75; margin: 0; font-size: 1rem; }
.lg-philo__card p em { font-family: var(--pn-script); color: var(--pn-terra); font-size: 1.5em; font-style: normal; }

/* ============================================================
   MENU — editorial typographic
   ============================================================ */
.lg-menu { background: var(--pn-paper); }
.lg-menu__head { text-align: center; max-width: 720px; margin: 0 auto 56px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lg-menu__head .lg-h2 { margin-top: 4px; }

.lg-menu__tabs {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
    margin-bottom: 64px;
    padding: 8px;
    background: var(--pn-paper-2);
    border: 1px solid var(--pn-line);
    border-radius: 999px;
    width: fit-content; margin-inline: auto;
    max-width: 100%; overflow-x: auto; flex-wrap: nowrap;
    scrollbar-width: none;
}
.lg-menu__tabs::-webkit-scrollbar { display: none; }
.lg-menu__tab {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    color: var(--pn-muted);
    transition: all .3s var(--pn-ease);
    font-family: var(--pn-sans); font-size: 0.88rem; letter-spacing: 0.04em;
    white-space: nowrap; flex-shrink: 0;
}
.lg-menu__tab:hover { color: var(--pn-ink); }
.lg-menu__tab.is-active { background: var(--pn-ink); color: var(--pn-cream); }
.lg-menu__tab.is-active .lg-menu__tab-num { color: var(--pn-cream); opacity: 0.5; }
.lg-menu__tab-num { font-family: var(--pn-serif); font-style: italic; color: var(--pn-terra); font-size: 0.82rem; }
.lg-menu__tab-label { font-weight: 500; }

.lg-menu__panel { display: none; }
.lg-menu__panel.is-active { display: block; animation: pnFadeIn .55s var(--pn-ease); }
@keyframes pnFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.lg-menu__panel-head {
    display: flex; align-items: center; gap: 24px;
    padding-bottom: 28px; margin-bottom: 28px;
    border-bottom: 1px solid var(--pn-line);
}
.lg-menu__panel-icon { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--pn-paper-2); color: var(--pn-terra); }
.lg-menu__panel-icon svg { width: 28px; height: 28px; }
.lg-menu__panel-head h3 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 0; font-family: var(--pn-serif); font-style: italic; font-weight: 500; }
.lg-menu__panel-sub { color: var(--pn-muted); font-size: 0.95rem; }

.lg-menu__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 64px; }
.lg-menu__item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "name dots price"
        "desc desc desc";
    grid-template-columns: auto 1fr auto;
    column-gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--pn-line);
    align-items: baseline;
}
.lg-menu__name { grid-area: name; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.lg-menu__title { font-family: var(--pn-serif); font-size: 1.25rem; color: var(--pn-ink); font-weight: 500; }
.lg-menu__tag { display: inline-block; padding: 3px 10px; border-radius: 999px; font-style: normal; font-size: 0.68rem; color: var(--pn-cream); background: var(--pn-terra); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.lg-menu__dots { grid-area: dots; height: 1px; align-self: end; transform: translateY(-7px); background-image: linear-gradient(90deg, var(--pn-line-2) 50%, transparent 50%); background-size: 6px 1px; }
.lg-menu__price { grid-area: price; font-family: var(--pn-serif); font-style: italic; font-size: 1.3rem; color: var(--pn-terra); white-space: nowrap; font-weight: 500; }
.lg-menu__price em { font-style: normal; font-size: 0.7rem; color: var(--pn-muted); margin-left: 4px; letter-spacing: 0.1em; }
.lg-menu__desc { grid-area: desc; margin: 4px 0 0; font-size: 0.92rem; color: var(--pn-muted); line-height: 1.55; max-width: 60ch; }

.lg-menu__foot {
    margin-top: 64px; padding: 30px 36px;
    background: var(--pn-paper-2);
    border-radius: var(--pn-r-md);
    border: 1px solid var(--pn-line);
    display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between;
}
.lg-menu__foot p { margin: 0; color: var(--pn-ink); }
.lg-menu__foot strong { color: var(--pn-ink); font-family: var(--pn-serif); font-style: italic; }

/* ============================================================
   SIGNATURE — DARK editorial contrast section
   ============================================================ */
.lg-signature { background: var(--pn-ink-2); color: var(--pn-cream); }
.lg-signature .lg-eyebrow { color: var(--pn-terra-2); }
.lg-signature__head { text-align: center; max-width: 720px; margin: 0 auto 80px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lg-signature__head .lg-h2 { color: var(--pn-cream); }
.lg-signature__head .lg-h2 em { color: var(--pn-terra-2); }
.lg-signature__head .lg-lead { color: rgba(248,242,228,0.78); }

.lg-signature__list { max-width: var(--pn-container); margin: 0 auto; padding-inline: var(--pn-pad-x); }
.lg-signature__item {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    padding-block: clamp(60px, 8vw, 110px);
    border-top: 1px solid var(--pn-line-light);
}
.lg-signature__item:first-child { border-top: none; padding-top: 0; }
.lg-signature__item:nth-child(even) .lg-signature__media { order: 2; }
.lg-signature__media { position: relative; aspect-ratio: 5 / 4; border-radius: var(--pn-r-lg); overflow: hidden; }
.lg-signature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--pn-ease-soft); }
.lg-signature__item:hover .lg-signature__media img { transform: scale(1.06); }
.lg-signature__price { position: absolute; top: 24px; right: 24px; background: var(--pn-terra); color: var(--pn-cream); font-family: var(--pn-serif); font-style: italic; font-size: 1.2rem; font-weight: 500; padding: 12px 18px; border-radius: 999px; }
.lg-signature__sub { color: var(--pn-terra-2); font-family: var(--pn-script); font-size: 1.6rem; line-height: 1; }
.lg-signature__body h3 { font-family: var(--pn-serif); font-style: italic; font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin: 6px 0 18px; font-weight: 500; line-height: 1.05; color: var(--pn-cream); }
.lg-signature__body p { color: rgba(248,242,228,0.78); line-height: 1.75; margin-bottom: 24px; }
.lg-signature__body .lg-link { color: var(--pn-terra-2); }

/* ============================================================
   GALLERY
   ============================================================ */
.lg-gallery { background: var(--pn-paper); }
.lg-gallery__head { text-align: center; max-width: 720px; margin: 0 auto 80px; display: flex; flex-direction: column; align-items: center; gap: 18px; }

.lg-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
.lg-gallery__cell { position: relative; overflow: hidden; border-radius: var(--pn-r-md); cursor: zoom-in; transition: transform .55s var(--pn-ease); }
.lg-gallery__cell--tall { grid-row: span 2; }
.lg-gallery__cell--wide { grid-column: span 2; }
.lg-gallery__cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--pn-ease-soft); }
.lg-gallery__cell:hover img { transform: scale(1.06); }
.lg-gallery__zoom { position: absolute; right: 16px; bottom: 16px; width: 44px; height: 44px; border-radius: 50%; background: var(--pn-paper); color: var(--pn-terra); display: grid; place-items: center; opacity: 0; transform: scale(0.8); transition: opacity .35s var(--pn-ease), transform .35s var(--pn-ease); }
.lg-gallery__cell:hover .lg-gallery__zoom { opacity: 1; transform: scale(1); }
.lg-gallery__zoom svg { width: 20px; height: 20px; }

/* Lightbox */
.lg-lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(27,20,12,0.96); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .35s var(--pn-ease), visibility 0s .35s; }
.lg-lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lg-lightbox__figure { margin: 0; max-width: 86vw; max-height: 86vh; transform: scale(0.94); transition: transform .45s var(--pn-ease); }
.lg-lightbox.is-open .lg-lightbox__figure { transform: scale(1); }
.lg-lightbox__figure img { max-width: 100%; max-height: 86vh; border-radius: var(--pn-r-md); }
.lg-lightbox__close, .lg-lightbox__nav { position: absolute; width: 56px; height: 56px; border-radius: 50%; background: rgba(248,242,228,0.06); border: 1px solid var(--pn-line-light); color: var(--pn-cream); font-size: 1.6rem; line-height: 1; display: grid; place-items: center; transition: background .3s var(--pn-ease), color .3s var(--pn-ease); }
.lg-lightbox__close:hover, .lg-lightbox__nav:hover { background: var(--pn-terra); color: var(--pn-cream); }
.lg-lightbox__close { top: 28px; right: 28px; }
.lg-lightbox__nav--prev { top: 50%; left: 28px; transform: translateY(-50%); }
.lg-lightbox__nav--next { top: 50%; right: 28px; transform: translateY(-50%); }

/* ============================================================
   TESTIMONIALS — single big quote magazine
   ============================================================ */
.lg-testi { background: var(--pn-paper-2); }
.lg-testi__head { text-align: center; max-width: 720px; margin: 0 auto 56px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lg-testi__swiper { padding-bottom: 56px; }
.lg-testi__slide {
    background: var(--pn-paper);
    border: 1px solid var(--pn-line);
    border-radius: var(--pn-r-lg);
    padding: 44px 38px 40px;
    height: auto;
    position: relative;
    overflow: hidden;
}
.lg-testi__quote { font-family: var(--pn-serif); font-style: italic; font-size: 5rem; line-height: 1; color: var(--pn-terra); opacity: 0.5; margin-bottom: -20px; }
.lg-testi__stars { display: flex; gap: 2px; color: var(--pn-terra); margin-bottom: 14px; }
.lg-testi__stars svg { width: 18px; height: 18px; }
.lg-testi__text { font-family: var(--pn-serif); font-style: italic; font-size: 1.25rem; line-height: 1.55; color: var(--pn-ink); margin: 0 0 22px; font-weight: 400; }
.lg-testi__name { color: var(--pn-terra); font-weight: 500; letter-spacing: 0.04em; font-family: var(--pn-sans); }
.lg-testi__pag.swiper-pagination-bullets { bottom: 0 !important; }
.lg-testi__pag .swiper-pagination-bullet { width: 24px; height: 2px; border-radius: 0; background: var(--pn-line-2); opacity: 1; transition: background .3s var(--pn-ease); }
.lg-testi__pag .swiper-pagination-bullet-active { background: var(--pn-terra); }

/* ============================================================
   RESERVATION — dark accent
   ============================================================ */
.lg-reserve { position: relative; color: var(--pn-cream); overflow: hidden; background: var(--pn-ink); }
.lg-reserve__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.35; }
.lg-reserve__img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.1); will-change: transform; }
.lg-reserve__veil { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(27,20,12,0.95) 0%, rgba(27,20,12,0.6) 100%); }

.lg-reserve__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.lg-reserve__copy > * + * { margin-top: 22px; }
.lg-reserve__copy .lg-h2 { color: var(--pn-cream); margin-top: 18px; }
.lg-reserve__copy .lg-h2 em { color: var(--pn-terra-2); }
.lg-reserve__copy .lg-eyebrow { color: var(--pn-terra-2); }
.lg-reserve__copy .lg-lead { color: rgba(248,242,228,0.85); }

.lg-reserve__phone { margin-top: 40px; display: inline-flex; align-items: center; gap: 18px; padding: 20px 28px; border-radius: 999px; background: rgba(248,242,228,0.06); border: 1px solid var(--pn-line-light); transition: background .3s var(--pn-ease), border-color .3s var(--pn-ease); }
.lg-reserve__phone:hover { background: rgba(181,61,38,0.18); border-color: var(--pn-terra); color: var(--pn-cream); }
.lg-reserve__phone svg { width: 24px; height: 24px; color: var(--pn-terra-2); }
.lg-reserve__phone em { font-style: normal; font-size: 0.74rem; color: rgba(248,242,228,0.6); letter-spacing: 0.18em; text-transform: uppercase; display: block; }
.lg-reserve__phone strong { font-family: var(--pn-serif); font-style: italic; font-size: 1.5rem; color: var(--pn-cream); display: block; margin-top: 4px; font-weight: 500; }

.lg-reserve__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px 22px;
    background: rgba(248,242,228,0.04);
    backdrop-filter: blur(8px);
    border: 1px solid var(--pn-line-light);
    border-radius: var(--pn-r-lg);
    padding: 38px 36px;
    width: 100%;
}
.lg-reserve__form h3 { grid-column: 1 / -1; font-family: var(--pn-serif); font-style: italic; font-size: 1.7rem; margin: 0 0 8px; font-weight: 500; line-height: 1.15; color: var(--pn-cream); }

.lg-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.lg-field--full { grid-column: 1 / -1; }
.lg-field label { font-size: 0.74rem; letter-spacing: 0.16em; color: rgba(248,242,228,0.65); text-transform: uppercase; }
.lg-field input, .lg-field textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    background: rgba(248,242,228,0.04);
    border: 1px solid var(--pn-line-light); color: var(--pn-cream);
    font-family: var(--pn-sans); font-size: 1rem;
    padding: 14px 16px; border-radius: 12px;
    transition: border-color .3s var(--pn-ease), background .3s var(--pn-ease);
    -webkit-appearance: none;
    appearance: none;
}
.lg-field input::placeholder, .lg-field textarea::placeholder { color: rgba(248,242,228,0.35); }
.lg-field input:focus, .lg-field textarea:focus { outline: none; border-color: var(--pn-terra-2); background: rgba(248,242,228,0.07); }
.lg-field input[type="date"], .lg-field input[type="time"] {
    color-scheme: dark;
    font-family: var(--pn-sans);
    line-height: 1.4;
}
.lg-field input[type="date"]::-webkit-calendar-picker-indicator,
.lg-field input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8) brightness(1.2);
    cursor: pointer;
    opacity: 0.7;
}

/* People counter (stepper) */
.lg-counter {
    display: flex; align-items: stretch;
    background: rgba(248,242,228,0.05);
    border: 1px solid var(--pn-line-light);
    border-radius: 999px;
    padding: 6px;
    width: 100%;
    max-width: 280px;
    gap: 6px;
}
.lg-counter__btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(248,242,228,0.06);
    border: 1px solid var(--pn-line-light);
    color: var(--pn-cream);
    font-size: 1.4rem; line-height: 1;
    display: grid; place-items: center;
    transition: all .25s var(--pn-ease);
    flex-shrink: 0;
}
.lg-counter__btn:hover { background: var(--pn-terra); border-color: var(--pn-terra); color: var(--pn-cream); }
.lg-counter__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.lg-counter__btn:disabled:hover { background: rgba(248,242,228,0.06); border-color: var(--pn-line-light); }
.lg-counter__display {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px;
    line-height: 1;
}
.lg-counter__num {
    font-family: var(--pn-serif); font-style: italic;
    font-size: 1.6rem; color: var(--pn-cream); font-weight: 500;
}
.lg-counter__label {
    font-size: 0.72rem; color: rgba(248,242,228,0.55);
    letter-spacing: 0.18em; text-transform: uppercase;
}

.lg-field__note { margin: 12px 0 0; font-size: 0.74rem; color: rgba(248,242,228,0.55); letter-spacing: 0.06em; text-align: center; }

.lg-reserve__status { grid-column: 1 / -1; min-height: 0; }
.lg-reserve__status.is-success { padding: 14px 18px; border-radius: 12px; background: rgba(111,123,56,0.18); border: 1px solid rgba(111,123,56,0.5); color: #C8D793; }
.lg-reserve__status.is-error { padding: 14px 18px; border-radius: 12px; background: rgba(208,73,49,0.15); border: 1px solid rgba(208,73,49,0.4); color: #F4B7B1; }

/* Solid form variant for editorial — keep simple */
.lg-btn--gold { /* alias used in mobile nav from old code */ }

/* ============================================================
   CONTACT
   ============================================================ */
.lg-contact { background: var(--pn-paper); padding-block-start: clamp(80px, 8vw, 140px); }
.lg-contact__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 5vw, 80px); align-items: stretch; }
.lg-contact__info > * + * { margin-top: 22px; }
.lg-contact__info .lg-h2 { margin-top: 16px; }

.lg-contact__list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 14px; }
.lg-contact__list li { display: flex; gap: 18px; padding: 22px; background: var(--pn-paper-2); border: 1px solid var(--pn-line); border-radius: var(--pn-r-md); }
.lg-contact__list li > div { display: flex; flex-direction: column; gap: 4px; }
.lg-contact__list em { font-style: normal; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pn-muted); }
.lg-contact__list strong { font-family: var(--pn-serif); font-style: italic; font-size: 1.18rem; color: var(--pn-ink); font-weight: 500; line-height: 1.4; }
.lg-contact__list span { color: var(--pn-muted); font-size: 0.9rem; }
.lg-contact__icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--pn-paper); border: 1px solid var(--pn-line); color: var(--pn-terra); display: grid; place-items: center; }
.lg-contact__icon svg { width: 20px; height: 20px; }

.lg-contact__socials { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.lg-contact__socials a { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border: 1px solid var(--pn-line-2); border-radius: 999px; color: var(--pn-ink); font-size: 0.9rem; transition: all .3s var(--pn-ease); }
.lg-contact__socials a:hover { background: var(--pn-ink); border-color: var(--pn-ink); color: var(--pn-cream); }
.lg-contact__socials svg { width: 18px; height: 18px; color: var(--pn-terra); }
.lg-contact__socials a:hover svg { color: var(--pn-terra-2); }

.lg-contact__map { position: relative; border-radius: var(--pn-r-lg); overflow: hidden; min-height: 480px; border: 1px solid var(--pn-line); background: var(--pn-paper-2); }
.lg-contact__map iframe { width: 100%; height: 100%; min-height: 480px; filter: grayscale(0.8) contrast(0.95) saturate(0.7); }
.lg-contact__map-pin { position: absolute; top: 24px; left: 24px; background: var(--pn-paper); border: 1px solid var(--pn-line-2); border-radius: 999px; padding: 12px 22px 12px 14px; display: inline-flex; align-items: center; gap: 12px; box-shadow: 0 18px 40px -18px rgba(27,20,12,0.3); }
.lg-contact__map-pin span { width: 32px; height: 32px; border-radius: 50%; background: var(--pn-terra); color: var(--pn-cream); display: grid; place-items: center; }
.lg-contact__map-pin span svg { width: 18px; height: 18px; }
.lg-contact__map-pin strong { font-family: var(--pn-serif); font-style: italic; color: var(--pn-ink); font-size: 1.05rem; }
.lg-contact__map-pin em { font-style: normal; color: var(--pn-muted); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; margin-left: 8px; }

/* ============================================================
   FOOTER — dark elegant
   ============================================================ */
.lg-footer { position: relative; background: var(--pn-ink); color: rgba(248,242,228,0.78); padding-top: clamp(60px, 8vw, 100px); overflow: hidden; }
.lg-footer__bg { position: absolute; inset: -1px 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--pn-terra) 50%, transparent 100%); opacity: 0.7; }
.lg-footer__inner { max-width: var(--pn-container); margin: 0 auto; padding-inline: var(--pn-pad-x); display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 56px; padding-bottom: 56px; }
.lg-footer__brand { display: flex; flex-direction: column; gap: 14px; }
.lg-footer__script { font-family: var(--pn-script); color: var(--pn-terra-2); font-size: 2rem; line-height: 1; }
.lg-footer__brand h3 { font-family: var(--pn-serif); font-style: italic; font-size: 2.4rem; color: var(--pn-cream); margin: -6px 0 10px; font-weight: 500; }
.lg-footer__brand p { color: rgba(248,242,228,0.7); max-width: 38ch; }
.lg-footer__brand p em { color: var(--pn-terra-2); font-style: italic; }
.lg-footer__socials { display: flex; gap: 12px; margin-top: 14px; }
.lg-footer__socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(248,242,228,0.04); border: 1px solid var(--pn-line-light); color: var(--pn-cream); transition: all .3s var(--pn-ease); }
.lg-footer__socials svg { width: 18px; height: 18px; }
.lg-footer__socials a:hover { background: var(--pn-terra); border-color: var(--pn-terra); color: var(--pn-cream); }
.lg-footer__col h4 { font-family: var(--pn-serif); font-style: italic; color: var(--pn-cream); font-size: 1.2rem; letter-spacing: 0.02em; margin: 0 0 18px; font-weight: 500; }
.lg-footer__col p, .lg-footer__col a { color: rgba(248,242,228,0.78); }
.lg-footer__col p { margin: 0 0 8px; line-height: 1.65; }
.lg-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lg-footer__col ul li { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; padding-block: 6px; border-bottom: 1px dashed var(--pn-line-light); }
.lg-footer__col ul li:last-child { border-bottom: none; }
.lg-footer__col ul li span { color: rgba(248,242,228,0.55); font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase; }
.lg-footer__col ul li strong { color: var(--pn-cream); font-family: var(--pn-serif); font-style: italic; font-weight: 500; }
.lg-footer__links li { border: none !important; padding: 0 !important; display: block !important; }
.lg-footer__links a:hover { color: var(--pn-terra-2); }
.lg-footer__bar { border-top: 1px solid var(--pn-line-light); padding: 22px var(--pn-pad-x); max-width: var(--pn-container); margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(248,242,228,0.55); font-size: 0.85rem; }
.lg-footer__bar a { color: var(--pn-terra-2); }
.lg-footer__bar em { font-style: italic; color: var(--pn-terra-2); }

/* ============================================================
   404
   ============================================================ */
.lg-404 { min-height: 70vh; display: grid; place-items: center; }
.lg-404__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.lg-404__inner h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(36px); }
html.no-js [data-reveal] { opacity: 1; transform: none; }
html.is-loaded [data-reveal] { transition: opacity .8s var(--pn-ease), transform .8s var(--pn-ease); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .lg-nav { display: none; }
    .lg-burger { display: inline-flex; }
    .lg-header__status { display: none; }
    .lg-header__book { padding: 10px 18px; font-size: 0.84rem; }
    .lg-hero__grid { grid-template-columns: 1fr; gap: 56px; }
    .lg-hero__copy { max-width: 720px; position: relative; }

    /* BIG half-cut spinning logo — mobile/tablet only, behind the title */
    .lg-hero__disc {
        display: block;
        position: absolute;
        top: -30px;
        right: -38vw;
        width: 70vw;
        height: 70vw;
        max-width: 480px;
        max-height: 480px;
        z-index: 1;
        pointer-events: none;
        opacity: 0.5;
        color: var(--pn-ink);
    }
    .lg-hero__disc-text { font-size: clamp(10px, 1.5vw, 13px); opacity: 0.9; }

    .lg-hero__photo { aspect-ratio: 4 / 3; max-width: 640px; margin-inline: auto; }
    .lg-hero__stamp { width: 120px; height: 120px; bottom: -10px; right: 10px; }
    .lg-hero__chip { left: 10px; top: -16px; }
    .lg-philo__grid { grid-template-columns: 1fr; }
    .lg-philo__card { border-left: none; border-top: 1px solid var(--pn-line); }
    .lg-philo__card:first-child { border-top: none; }
    .lg-about__inner { grid-template-columns: 1fr; }
    .lg-about__media { max-width: 720px; margin-inline: auto; }
    .lg-about__features { grid-template-columns: 1fr 1fr; }
    .lg-stats { grid-template-columns: repeat(4, 1fr); }
    .lg-signature__item, .lg-signature__item:nth-child(even) .lg-signature__media { display: flex; flex-direction: column; }
    .lg-signature__item:nth-child(even) .lg-signature__media { order: 0; }
    .lg-reserve__inner { grid-template-columns: 1fr; }
    .lg-contact__inner { grid-template-columns: 1fr; }
    .lg-footer__inner { grid-template-columns: 1fr 1fr; gap: 44px; }
    .lg-gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 760px) {
    :root { --pn-pad-x: 18px; --pn-header-h: 68px; }
    body { font-size: 15.5px; }
    .lg-header__cta .lg-btn { display: none; }

    /* Header */
    .lg-logo__wrap { display: none; }

    /* Hero */
    .lg-hero { padding-top: calc(var(--pn-header-h) + 16px); padding-bottom: 56px; min-height: 0; }
    .lg-hero__top { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 22px; font-size: 0.62rem; letter-spacing: 0.18em; }
    .lg-hero__topr { gap: 8px; }
    .lg-hero__grid { gap: 40px; }
    .lg-hero__est { font-size: 0.66rem; letter-spacing: 0.26em; margin-bottom: 16px; }
    .lg-hero__line--1, .lg-hero__line--2 { font-size: clamp(3.6rem, 19vw, 5.8rem); }
    /* Disc — half-cut, ograniczony żeby nie nachodził na intro */
    .lg-hero__disc {
        top: -20px;
        right: -42vw;
        width: 78vw;
        height: 78vw;
        max-width: 460px;
        max-height: 460px;
        opacity: 0.5;
    }
    .lg-hero__disc-text { font-size: clamp(9px, 1.9vw, 12px); }
    .lg-hero__line--3 { margin-top: 12px; }
    .lg-hero__line--3 .lg-hero__script { font-size: clamp(2rem, 9vw, 3rem); }
    .lg-hero__rule { margin-top: 18px; width: 60px; }
    .lg-hero__intro { margin: clamp(90px, 26vw, 160px) 0 32px; font-size: 1rem; max-width: 100%; }
    .lg-hero__actions { gap: 12px; width: 100%; }
    .lg-hero__actions .lg-btn { padding: 16px 24px; font-size: 0.92rem; width: 100%; justify-content: center; }
    .lg-hero__menu-link {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        background: var(--pn-paper);
        border: 1px solid var(--pn-line-2);
        border-radius: 999px;
        font-size: 0.92rem;
        font-weight: 500;
        color: var(--pn-ink);
        gap: 10px;
    }
    .lg-hero__menu-link:hover, .lg-hero__menu-link:focus {
        background: var(--pn-ink); color: var(--pn-cream); border-color: var(--pn-ink);
    }
    .lg-hero__menu-link:hover .lg-hero__menu-num,
    .lg-hero__menu-link:focus .lg-hero__menu-num { color: var(--pn-terra-2); }
    .lg-hero__photo { aspect-ratio: 4 / 5; max-width: 100%; }
    .lg-hero__photo figcaption { left: 12px; right: 12px; bottom: 12px; padding: 8px 14px; font-size: 0.72rem; gap: 8px; }
    .lg-hero__photo-cap { display: none; }
    .lg-hero__chip { transform: rotate(-2deg); padding: 12px 16px; max-width: 180px; left: 8px; top: -14px; }
    .lg-hero__chip-eyebrow { font-size: 0.62rem; letter-spacing: 0.16em; }
    .lg-hero__chip strong { font-size: 1.05rem; }
    .lg-hero__chip-price { font-size: 1rem; margin-top: 4px; }
    .lg-hero__stamp { display: none; }
    .lg-hero__ribbon { padding-block: 11px; margin-top: 48px; }
    .lg-hero__ribbon-item { font-size: 0.95rem; }
    .lg-hero__meta {
        padding: 22px 0;
        margin-top: 28px;
        gap: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg-hero__metaitem { flex-basis: auto; min-width: 0; padding: 2px 10px; gap: 6px; }
    .lg-hero__metanum { font-size: clamp(1.3rem, 5.4vw, 1.8rem); }
    .lg-hero__metalabel { font-size: clamp(0.6rem, 2vw, 0.7rem); letter-spacing: 0.04em; line-height: 1.3; gap: 0; }
    .lg-hero__metalabel-extra { display: none; }

    /* Sections — typography breathe */
    .lg-section { padding-block: 56px; }
    .lg-h2 { font-size: clamp(2rem, 9vw, 3rem); }

    /* Menu */
    .lg-menu__head { margin-bottom: 36px; }
    .lg-menu__tabs { width: 100%; max-width: 100%; padding: 6px; border-radius: 999px; }
    .lg-menu__tab { padding: 9px 16px; font-size: 0.82rem; }
    .lg-menu__tab-num { display: none; }
    .lg-menu__list { grid-template-columns: 1fr; gap: 0; }
    .lg-menu__panel-head { flex-direction: row; align-items: center; gap: 14px; padding-bottom: 22px; margin-bottom: 22px; }
    .lg-menu__panel-icon { width: 48px; height: 48px; }
    .lg-menu__panel-icon svg { width: 22px; height: 22px; }
    .lg-menu__panel-head h3 { font-size: 1.6rem; }
    .lg-menu__panel-sub { font-size: 0.82rem; }
    .lg-menu__title { font-size: 1.1rem; }
    .lg-menu__price { font-size: 1.15rem; }
    .lg-menu__desc { font-size: 0.86rem; }
    .lg-menu__foot { flex-direction: column; align-items: stretch; text-align: left; padding: 22px; }
    .lg-menu__foot p { font-size: 0.88rem; line-height: 1.6; }
    .lg-menu__foot .lg-btn { justify-content: center; }

    /* About */
    .lg-about__decor svg { width: 90px; height: 18px; }
    .lg-about__media {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 100%;
    }
    .lg-about__photo { aspect-ratio: 3 / 4; }
    .lg-about__quote { padding: 20px 22px 18px; }
    .lg-about__badge { width: 80px; height: 80px; top: -16px; left: -16px; }
    .lg-about__photo figcaption { left: 10px; bottom: 10px; padding: 5px 10px; font-size: 0.7rem; }
    .lg-about__quote p { font-size: 1rem; line-height: 1.5; }
    .lg-about__quote cite { font-size: 1.2rem; }
    .lg-about__features { grid-template-columns: 1fr; gap: 14px; padding-top: 22px; margin-top: 24px; }
    .lg-about__features strong { font-size: 1.02rem; }
    .lg-about__dropcap { font-size: 3.6rem; margin-right: 10px; }
    .lg-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; padding-top: 24px; margin-top: 28px; }
    .lg-stats strong { font-size: 1.9rem; }

    /* Philosophy */
    .lg-philo__head { margin-bottom: 40px; }
    .lg-philo__card { padding: 32px 22px; }
    .lg-philo__num { font-size: 2.6rem; margin-bottom: 12px; }
    .lg-philo__card h3 { font-size: 1.5rem; }

    /* Signature */
    .lg-signature__head { margin-bottom: 50px; }
    .lg-signature__item { padding-block: 50px; gap: 28px; }
    .lg-signature__body h3 { font-size: 1.9rem; }
    .lg-signature__price { top: 14px; right: 14px; padding: 10px 14px; font-size: 0.95rem; }

    /* Gallery */
    .lg-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 8px; }
    .lg-gallery__cell--wide, .lg-gallery__cell--tall { grid-column: span 1; grid-row: span 1; }
    .lg-gallery__cell:nth-child(1), .lg-gallery__cell:nth-child(6) { grid-row: span 2; }
    .lg-gallery__zoom { width: 36px; height: 36px; opacity: 1; transform: scale(1); }
    .lg-gallery__zoom svg { width: 16px; height: 16px; }

    /* Testimonials */
    .lg-testi__slide { padding: 28px 24px 28px; }
    .lg-testi__quote { font-size: 4rem; margin-bottom: -16px; }
    .lg-testi__text { font-size: 1.1rem; }

    /* Reservation */
    .lg-reserve__form { grid-template-columns: minmax(0, 1fr); padding: 24px 18px; gap: 14px; }
    .lg-reserve__form h3 { font-size: 1.4rem; }
    .lg-reserve__phone { padding: 16px 20px; gap: 14px; margin-top: 24px; width: 100%; }
    .lg-reserve__phone strong { font-size: 1.25rem; }

    /* Contact */
    .lg-contact { padding-block-start: 56px; }
    .lg-contact__list li { padding: 16px; gap: 14px; }
    .lg-contact__list strong { font-size: 1.05rem; }
    .lg-contact__map, .lg-contact__map iframe { min-height: 300px; }
    .lg-contact__map-pin { top: 14px; left: 14px; padding: 10px 18px 10px 12px; }
    .lg-contact__map-pin strong { font-size: 0.95rem; }
    .lg-contact__map-pin em { font-size: 0.66rem; }
    .lg-contact__socials { gap: 8px; }
    .lg-contact__socials a { padding: 9px 14px; font-size: 0.84rem; }

    /* Footer */
    .lg-footer { padding-top: 56px; }
    .lg-footer__inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
    .lg-footer__brand h3 { font-size: 2rem; }
    .lg-footer__bar { flex-direction: column; align-items: flex-start; padding: 18px var(--pn-pad-x); font-size: 0.78rem; }

    /* Mobile nav */
    .lg-mobile-nav__inner { padding: 90px 24px 32px; }
    .lg-mobile-nav a { padding: 18px 0; font-size: clamp(1.7rem, 8vw, 2.4rem); }
    .lg-mobile-nav a span { font-size: 0.74rem; }

    /* Buttons */
    .lg-btn { padding: 12px 22px; font-size: 0.88rem; gap: 10px; }
    .lg-btn--lg { padding: 16px 26px; font-size: 0.92rem; }
}

@media (max-width: 420px) {
    :root { --pn-pad-x: 14px; }
    .lg-hero__line--1, .lg-hero__line--2 { font-size: clamp(3rem, 20vw, 4.6rem); letter-spacing: -0.03em; }
    .lg-hero__chip { max-width: 160px; padding: 10px 14px; }
    .lg-hero__chip strong { font-size: 0.95rem; }
    .lg-hero__meta { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
    .lg-hero__metaitem { padding: 2px 6px; }
    .lg-hero__metanum { font-size: clamp(1.15rem, 5.8vw, 1.5rem); }
    .lg-hero__metalabel { font-size: clamp(0.55rem, 2.2vw, 0.65rem); }
    .lg-hero__topl, .lg-hero__topr { font-size: 0.6rem; }
    .lg-hero__disc { right: -45vw; width: 84vw; height: 84vw; opacity: 0.5; }
    .lg-hero__disc-text { font-size: clamp(8px, 2.1vw, 11px); }
    .lg-menu__tab { padding: 8px 12px; }
    .lg-menu__tabs { padding: 5px; }
    .lg-stats { grid-template-columns: 1fr 1fr; }
    .lg-gallery__grid { grid-auto-rows: 140px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
