@font-face {
    font-family: "Inter Local";
    src: url("../fonts/Inter-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Local";
    src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Local";
    src: url("../fonts/Inter-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Local";
    src: url("../fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Local";
    src: url("../fonts/CormorantGaramond-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --green-950: #061918;
    --green-900: #092423;
    --green-800: #0d3733;
    --green-700: #124b43;
    --gold: #d6b45d;
    --gold-dark: #8b6421;
    --paper: #f4efe4;
    --ink: #161411;
    --muted: #6f695e;
    --line: rgba(214, 180, 93, 0.32);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    --radius: 8px;
    font-family: "Inter Local", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--paper);
    background: var(--green-950);
    font-size: 17px;
    line-height: 1.58;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url("../img/picok_bg.jpg") center / cover no-repeat,
        var(--green-900);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center -90px, center;
    background-size: auto, cover, auto;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 15%, rgba(214, 180, 93, 0.09), transparent 28%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: auto, 7px 100%;
    mix-blend-mode: screen;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Inter Local", Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    max-width: 840px;
    font-size: clamp(2.35rem, 5.4vw, 4.9rem);
}

h2 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

h3 {
    font-size: 1.18rem;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    max-width: 760px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: var(--ink);
    background: var(--gold);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header,
.admin-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(214, 180, 93, 0.22);
    background: rgba(6, 20, 19, 0.88);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 88px;
}

.brand {
    flex: 0 1 310px;
}

.brand img {
    width: min(310px, 56vw);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.46rem;
    font-family: "Inter Local", Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
}

.main-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.62rem;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
}

.main-nav a svg {
    display: none;
}

.mobile-contact {
    display: none;
}

.quick-contact {
    position: fixed;
    right: 0;
    top: 42%;
    z-index: 45;
    display: grid;
    gap: 0.35rem;
}

.quick-contact a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    writing-mode: vertical-rl;
    padding: 0.75rem 0.45rem;
    border: 1px solid var(--line);
    border-right: 0;
    border-radius: 8px 0 0 8px;
    color: var(--paper);
    background: rgba(6, 25, 24, 0.92);
    font: 700 0.72rem/1 "Inter Local", Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.quick-contact svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-contact a:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
    color: var(--ink);
    background: var(--gold);
    outline: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
    color: var(--ink);
    background: var(--gold);
    outline: none;
}

.nav-toggle,
.nav-close {
    display: none;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 60vh;
    display: grid;
    align-items: start;
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(3rem, 7vw, 5rem);
    background: linear-gradient(90deg, rgba(3, 13, 12, 0.66), rgba(3, 13, 12, 0.48) 50%, rgba(3, 13, 12, 0.34));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    z-index: 0;
    width: 100%;
    height: 72px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(3, 13, 12, 0.88), rgba(3, 13, 12, 0));
}

.hero-content {
    max-width: 920px;
    position: relative;
    z-index: 2;
}

.lead {
    max-width: 720px;
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.eyebrow {
    color: var(--gold);
    font-family: "Inter Local", Arial, Helvetica, sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0.78rem 1.15rem;
    font: 700 0.95rem/1 "Inter Local", Arial, Helvetica, sans-serif;
    text-decoration: none;
    cursor: pointer;
}

.button-primary {
    color: var(--ink);
    background: linear-gradient(180deg, #f0d98e, var(--gold));
}

.button-secondary {
    color: var(--paper);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.08);
}

.button-danger {
    color: #fff;
    background: #8f2f2f;
}

.button:hover,
.button:focus-visible {
    outline: 3px solid rgba(214, 180, 93, 0.5);
    outline-offset: 3px;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-light {
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(4, 18, 17, 0.95), rgba(10, 38, 34, 0.92)),
        url("../img/picok_bg.jpg") center / cover fixed;
}

.section-dark {
    background:
        linear-gradient(rgba(5, 18, 17, 0.86), rgba(5, 18, 17, 0.86)),
        url("../img/picok_bg.jpg") center / cover fixed;
}

.wood-band {
    color: #fff;
    background:
        linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
        url("../img/wood_bg.jpg") center / cover fixed;
}

.split,
.form-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    max-width: 760px;
}

.hours,
.form-panel,
.admin-panel,
.event-card,
.menu-tile {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hours {
    padding: 2rem;
    color: var(--paper);
    background: var(--green-900);
}

.hours dl {
    margin: 0;
}

.hours dt {
    color: var(--gold);
    font-weight: 700;
}

.hours dd {
    margin: 0 0 1.25rem;
}

.hours span,
.muted {
    color: #c8bda5;
    font-size: 0.92em;
}

.hours-note,
.hours-alert {
    margin-top: 1rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #f0e4c8;
    background: rgba(214, 180, 93, 0.1);
    font-size: 0.95rem;
}

.hours-alert {
    margin: 0 0 1rem;
    border-color: rgba(214, 180, 93, 0.55);
}

.hours-alert span {
    display: block;
    margin-top: 0.25rem;
    color: #c8bda5;
    font-size: 0.88rem;
}

.hours-alert p {
    margin: 0.35rem 0 0;
}

.page-hero {
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(3rem, 7vw, 5rem);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(3, 13, 12, 0.82), rgba(3, 13, 12, 0.82)),
        url("../img/picok_bg.jpg") center / cover no-repeat;
}

.menu-grid,
.event-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.menu-tile {
    padding: 1.25rem;
    text-align: center;
    background: rgba(244, 239, 228, 0.035);
}

.menu-tile > img {
    width: min(420px, 100%);
    margin: 0 auto 1.25rem;
    aspect-ratio: 1 / 0.92;
    object-fit: contain;
    filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.45));
}

.info-line {
    margin-top: 2rem;
    color: #e9ddbf;
    text-align: center;
}

.event-card {
    overflow: hidden;
    color: var(--ink);
    background: #fffaf0;
}

.event-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.event-content {
    padding: 1.4rem;
}

.date-range {
    color: var(--gold-dark);
    font: 700 0.9rem/1.4 "Inter Local", Arial, Helvetica, sans-serif;
}

.empty-state {
    grid-column: 1 / -1;
    color: var(--muted);
}

.contact-callout {
    padding: 1rem;
    border-left: 4px solid var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-panel {
    padding: clamp(1.25rem, 3vw, 2rem);
    color: var(--paper);
    background: var(--green-900);
}

.form-warning {
    margin-bottom: 1.25rem;
    padding: 1rem;
    border: 1px solid rgba(255, 176, 162, 0.7);
    border-left: 5px solid #e05a45;
    border-radius: var(--radius);
    color: #ffe5df;
    background: rgba(120, 28, 18, 0.42);
}

.form-warning p {
    margin: 0.35rem 0 0;
}

.form-warning a {
    color: #fff;
    font-weight: 700;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field {
    margin-bottom: 1.1rem;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.35rem;
    font: 700 0.95rem/1.4 "Inter Local", Arial, Helvetica, sans-serif;
}

input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(214, 180, 93, 0.45);
    border-radius: var(--radius);
    padding: 0.78rem 0.9rem;
    color: var(--ink);
    background: #fffaf0;
    font: 1rem/1.4 "Inter Local", Arial, Helvetica, sans-serif;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: 3px solid rgba(214, 180, 93, 0.52);
    outline-offset: 2px;
}

.service-select {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 1.2rem 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.service-select legend {
    padding: 0 0.45rem;
    color: var(--gold);
    font-weight: 700;
}

.service-select label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-weight: 400;
}

.service-select input {
    width: 18px;
    min-height: 18px;
}

.form-note,
.field-help {
    color: #ded2b8;
    font-size: 0.92rem;
}

.consent-box {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0.8rem;
    align-items: start;
    margin: 1.2rem 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
}

.consent-box input {
    width: 22px;
    min-height: 22px;
    margin-top: 0.2rem;
}

.consent-box label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    font-weight: 400;
}

.form-submit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
}

.form-status {
    flex: 1 1 260px;
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(214, 180, 93, 0.45);
    border-radius: var(--radius);
    color: #f0e4c8;
    background: rgba(214, 180, 93, 0.12);
    font-weight: 700;
}

.form-status.is-error {
    border-color: rgba(255, 176, 162, 0.65);
    color: #ffe0dc;
    background: rgba(120, 28, 18, 0.35);
}

.form-status[hidden] {
    display: none;
}

.notice {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: var(--radius);
    color: var(--ink);
    background: #e9ffd9;
}

.notice-error {
    background: #ffe0dc;
}

.site-footer {
    padding: 2rem 0;
    color: #d9cfba;
    background: #050f0f;
    font-family: "Inter Local", Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.footer-grid address {
    font-style: normal;
}

.footer-grid nav {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-credit {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(214, 180, 93, 0.18);
    color: #a99f8b;
    font: 0.9rem/1.4 "Inter Local", Arial, Helvetica, sans-serif;
    text-align: center;
}

.footer-credit a {
    color: var(--gold);
}

.social-links a::before {
    content: "↗ ";
    color: var(--gold);
}

.legal-content {
    max-width: 880px;
}

.legal-content h2 {
    margin-top: 2rem;
    color: var(--gold);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 180;
    width: min(920px, calc(100% - 2rem));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--paper);
    background: rgba(5, 18, 17, 0.96);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0;
}

.admin-body {
    color: var(--paper);
    background: var(--green-950);
}

.admin-main {
    padding: 3rem 0;
}

.admin-panel {
    margin-bottom: 2rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    color: var(--paper);
    background: rgba(6, 25, 24, 0.92);
}

.login-panel {
    max-width: 520px;
    margin: 3rem auto;
}

.admin-list {
    display: grid;
    gap: 1rem;
}

.admin-list-item {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.admin-list-item img,
.admin-list-item video {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: var(--radius);
}

.admin-list-item-text {
    grid-template-columns: 1fr auto;
}

.form-hint {
    margin: -0.25rem 0 1rem;
    color: #c8bda5;
    font-size: 0.95rem;
}

.admin-pill {
    display: inline-flex;
    margin-bottom: 0.45rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(214, 180, 93, 0.45);
    border-radius: 999px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-photo-stack {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hours-admin-row {
    display: grid;
    grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.float-photo {
    position: absolute;
    width: clamp(150px, 22vw, 320px);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(var(--scroll-y, 0px)) rotate(var(--rotate, -4deg));
    animation: floatIn 1s ease both, slowFloat 7s ease-in-out infinite 1s;
}

.photo-one {
    right: min(8vw, 90px);
    top: 22%;
    --rotate: 5deg;
}

.photo-two {
    right: min(21vw, 260px);
    bottom: 13%;
    --rotate: -7deg;
}

.page-intro {
    max-width: 720px;
    color: #e9ddbf;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-strip {
    color: var(--paper);
    background:
        linear-gradient(rgba(3, 13, 12, 0.72), rgba(3, 13, 12, 0.72)),
        url("../img/wood_bg.jpg") center / cover fixed;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.feature-card {
    min-height: 260px;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(244, 239, 228, 0.08);
    box-shadow: var(--shadow);
}

.feature-card:nth-child(2) {
    transition-delay: 0.12s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.24s;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.35rem;
    background: rgba(0, 0, 0, 0.22);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catering-section {
    color: var(--paper);
    background:
        linear-gradient(120deg, rgba(3, 13, 12, 0.9), rgba(12, 54, 48, 0.86)),
        url("../img/gallery/import-2026-05-12/picok-catering-20260512-12.jpeg") center / cover fixed;
}

.catering-hero {
    background:
        linear-gradient(90deg, rgba(3, 13, 12, 0.92), rgba(3, 13, 12, 0.45)),
        url("../img/gallery/import-2026-05-10/picok-impression-10.jpg") center / cover no-repeat;
}

.catering-intro {
    background:
        linear-gradient(rgba(5, 18, 17, 0.88), rgba(5, 18, 17, 0.92)),
        url("../img/picok_bg.jpg") center / cover fixed;
}

.catering-showcase {
    color: var(--paper);
    background:
        linear-gradient(rgba(3, 13, 12, 0.86), rgba(3, 13, 12, 0.94)),
        url("../img/wood_bg.jpg") center / cover fixed;
}

.catering-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.catering-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.catering-card:hover,
.catering-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.46);
}

.catering-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.catering-card:hover img {
    transform: scale(1.06);
}

.catering-card div {
    padding: 1.25rem;
}

.catering-card h3 {
    color: var(--gold);
}

.service-icons-section {
    color: var(--paper);
    background:
        linear-gradient(rgba(5, 18, 17, 0.9), rgba(5, 18, 17, 0.96)),
        url("../img/picok_bg.jpg") center / cover fixed;
}

.catering-gallery-section {
    color: var(--paper);
    background:
        linear-gradient(rgba(5, 18, 17, 0.9), rgba(5, 18, 17, 0.95)),
        url("../img/wood_bg.jpg") center / cover fixed;
}

.catering-collage {
    grid-auto-rows: 220px;
}

.service-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.service-icon-card {
    min-height: 220px;
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, background 0.35s ease;
}

.service-icon-card:hover,
.service-icon-card:focus-within {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.1);
}

.service-svg {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: var(--gold);
    background: rgba(214, 180, 93, 0.12);
}

.service-svg svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon-card h3 {
    color: var(--gold);
    margin-bottom: 0.45rem;
}

.service-icon-card p {
    margin: 0;
    font-size: 0.95rem;
}

.catering-seo-section {
    color: var(--paper);
    background:
        linear-gradient(rgba(4, 17, 16, 0.92), rgba(4, 17, 16, 0.97)),
        url("../img/gallery/import-2026-05-10/picok-impression-10.jpg") center / cover fixed;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
    max-width: 980px;
}

.faq-item {
    border: 1px solid rgba(214, 180, 93, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 1rem 1.2rem;
    color: var(--gold);
    font-weight: 800;
}

.faq-item summary:focus-visible {
    outline: 3px solid rgba(214, 180, 93, 0.62);
    outline-offset: -3px;
}

.faq-item p {
    margin: 0;
    padding: 0 1.2rem 1.15rem;
    color: #efe7d5;
}

.catering-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.catering-board {
    display: grid;
    gap: 1rem;
}

.catering-board article {
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.085);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.catering-board h3 {
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.catering-board p {
    margin-bottom: 0;
}

.gallery-section {
    color: var(--ink);
    background: linear-gradient(180deg, #f5efe4, #e9ddca);
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading p:last-child {
    max-width: 780px;
}

.image-collage {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-shot {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: transparent;
    box-shadow: 0 24px 58px rgba(22, 20, 17, 0.24);
    cursor: zoom-in;
    transform: rotate(var(--shot-rotate, -1deg));
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-shot:nth-child(1) {
    grid-row: span 2;
    --shot-rotate: -1.5deg;
}

.gallery-shot:nth-child(2) {
    --shot-rotate: 1.5deg;
}

.gallery-shot:nth-child(3) {
    grid-row: span 2;
    --shot-rotate: 1deg;
}

.gallery-shot:nth-child(4) {
    --shot-rotate: -0.5deg;
}

.gallery-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-video-shot {
    cursor: default;
}

.gallery-shot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #020807;
}

.gallery-shot:hover,
.gallery-shot:focus-visible {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 0 34px 80px rgba(22, 20, 17, 0.34);
    outline: 3px solid rgba(139, 100, 33, 0.28);
    outline-offset: 4px;
}

.gallery-shot:hover img,
.gallery-shot:focus-visible img {
    transform: scale(1.06);
}

.menu-tile {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.tilt-card {
    transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.menu-tile:hover,
.menu-tile:focus-within {
    box-shadow: 0 36px 95px rgba(0, 0, 0, 0.5);
}

.menu-paper {
    position: relative;
    display: block;
    width: min(420px, 100%);
    margin: 0 auto 1.25rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.42));
    transform: translateZ(34px) translateY(0) rotate(var(--paper-rotate, -2deg));
    transition: transform 0.35s ease;
    animation: menuFloat 5.5s ease-in-out infinite;
}

.menu-paper-link {
    cursor: pointer;
}

.menu-tile:nth-child(2) .menu-paper {
    --paper-rotate: 2deg;
    animation-delay: -2.2s;
}

.menu-tile:hover .menu-paper,
.menu-tile:focus-within .menu-paper {
    animation-play-state: paused;
    transform: translateZ(58px) rotate(0deg) translateY(-14px) scale(1.09);
}

.menu-paper img {
    width: 100%;
    margin: 0;
    aspect-ratio: 1 / 0.92;
    object-fit: contain;
    filter: none;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.menu-paper:hover img,
.menu-paper:focus-visible img {
    transform: scale(1.055);
    filter: saturate(1.08) contrast(1.04);
}

@keyframes menuFloat {
    0%,
    100% {
        transform: translateZ(34px) translateY(0) rotate(var(--paper-rotate, -2deg));
    }
    50% {
        transform: translateZ(34px) translateY(-12px) rotate(var(--paper-rotate, -2deg));
    }
}

.event-card {
    overflow: visible;
    transform: rotate(var(--event-rotate, -1deg));
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-card:nth-child(2n) {
    --event-rotate: 1deg;
}

.event-card:hover,
.event-card:focus-within {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 0 32px 80px rgba(22, 20, 17, 0.3);
}

.event-image-button {
    display: grid;
    width: 100%;
    min-height: 320px;
    padding: 1rem;
    border: 0;
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(226, 211, 184, 0.9)),
        url("../img/wood_bg.jpg") center / cover;
    cursor: zoom-in;
}

.event-card img {
    width: 100%;
    max-height: 560px;
    aspect-ratio: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.text-button {
    min-height: 44px;
    border: 0;
    padding: 0;
    color: var(--gold-dark);
    background: transparent;
    font: 700 0.95rem/1.4 "Inter Local", Arial, Helvetica, sans-serif;
    text-decoration: underline;
    cursor: pointer;
}

.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-panel {
    width: min(1100px, 100%);
    max-height: 94vh;
    display: grid;
    gap: 0.75rem;
}

.lightbox-tools {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lightbox-tools.is-plain .zoom-control,
.lightbox-tools.is-plain .lightbox-reset {
    display: none;
}

.zoom-control {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 48px;
    margin: 0;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.zoom-control span {
    font-size: 0.86rem;
}

.lightbox-range {
    width: min(220px, 38vw);
    min-height: auto;
    padding: 0;
    accent-color: var(--gold);
    background: transparent;
}

.lightbox-stage {
    overflow: auto;
    display: grid;
    place-items: center;
    max-height: 82vh;
    border-radius: var(--radius);
}

.lightbox-image {
    max-height: 82vh;
    width: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    background: #111;
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.65);
    transform: scale(var(--zoom, 1));
    transform-origin: center;
    transition: transform 0.2s ease;
}

.lightbox-caption {
    margin: 0;
    color: #fff;
    text-align: center;
}

.lightbox-close,
.lightbox-reset {
    justify-self: end;
    min-width: 48px;
    height: 48px;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font: 700 0.88rem/1 "Inter Local", Arial, Helvetica, sans-serif;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(14px);
}

.lightbox-close {
    width: 48px;
    padding: 0;
    border-radius: 50%;
    font-size: 2rem;
}

.about-hero {
    background:
        linear-gradient(90deg, rgba(3, 13, 12, 0.9), rgba(3, 13, 12, 0.68)),
        url("../img/gallery/import-2026-05-12/picok-catering-20260512-22.jpeg") center / cover no-repeat;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.legend-panel,
.story-aside {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: var(--shadow);
}

.legend-panel {
    padding: clamp(1.3rem, 3vw, 2.3rem);
}

.legend-panel blockquote {
    margin: 0 0 1.4rem;
    padding-left: 1rem;
    border-left: 4px solid var(--gold);
    color: #e8d8a9;
    font-size: 1.2rem;
}

.story-aside {
    overflow: hidden;
    position: sticky;
    top: 110px;
}

.story-aside img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.story-aside div {
    padding: 1.3rem;
}

.about-gallery {
    color: var(--paper);
    background:
        linear-gradient(rgba(5, 18, 17, 0.88), rgba(5, 18, 17, 0.94)),
        url("../img/picok_bg.jpg") center / cover fixed;
}

.full-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 210px;
    grid-auto-flow: dense;
    gap: 1rem;
}

.full-gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 1px solid rgba(214, 180, 93, 0.24);
    border-radius: var(--radius);
    background: #071c1a;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    cursor: zoom-in;
}

.full-gallery-video {
    cursor: default;
}

.full-gallery-item.is-large {
    grid-column: span 2;
    grid-row: span 2;
}

.full-gallery-item img,
.full-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease, filter 0.65s ease;
}

.full-gallery-item video {
    display: block;
    background: #020807;
}

.full-gallery-item span {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
    color: var(--ink);
    background: rgba(214, 180, 93, 0.92);
    font: 700 0.76rem/1 "Inter Local", Arial, Helvetica, sans-serif;
}

.full-gallery-video span {
    top: 0.75rem;
    bottom: auto;
}

.full-gallery-item:hover img,
.full-gallery-item:focus-visible img,
.full-gallery-video:hover video,
.full-gallery-video:focus-within video {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.05);
}

.admin-gallery-list {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.admin-gallery-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto 44px;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    cursor: grab;
}

.admin-gallery-item h3,
.admin-gallery-item p {
    overflow-wrap: anywhere;
}

.admin-gallery-item.is-dragging {
    opacity: 0.55;
}

.admin-gallery-item img,
.admin-gallery-item video {
    width: 92px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius);
}

.drag-handle {
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 1.4rem;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(35px) rotate(var(--rotate, -4deg));
    }
    to {
        opacity: 1;
    }
}

@keyframes slowFloat {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -14px;
    }
}

@media (max-width: 1100px) {
    .header-inner,
    .footer-grid,
    .split,
    .form-layout,
    .menu-grid,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        display: flex;
        min-height: auto;
        padding: 1rem 0;
        gap: 1rem;
    }

    .brand {
        flex: 1 1 auto;
    }

    .brand img {
        width: min(250px, 58vw);
    }

    .header-actions {
        gap: 0.45rem;
    }

    .quick-contact {
        display: none;
    }

    .nav-toggle {
        display: grid;
        grid-template-columns: 24px auto;
        align-items: center;
        gap: 0.7rem;
        justify-self: end;
        flex: 0 0 auto;
        min-height: 48px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 0.55rem 0.85rem;
        color: var(--paper);
        background: rgba(255, 255, 255, 0.08);
        font: 700 0.95rem/1 "Inter Local", Arial, Helvetica, sans-serif;
    }

    .nav-toggle span:not(.nav-toggle-text) {
        grid-column: 1;
        width: 24px;
        height: 2px;
        background: currentColor;
    }

    .nav-toggle-text {
        grid-column: 2;
        grid-row: 1 / 4;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        min-height: 100vh;
        min-height: 100dvh;
        z-index: 80;
        width: min(390px, 88vw);
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 5.3rem 1rem 1rem;
        border: 1px solid var(--line);
        border-block: 0;
        border-right: 0;
        border-radius: 18px 0 0 18px;
        background: rgba(4, 18, 17, 0.97);
        box-shadow: -28px 0 80px rgba(0, 0, 0, 0.5);
        pointer-events: none;
        transform: translateX(105%);
        transition: transform 0.28s ease;
    }

    .nav-open .main-nav {
        pointer-events: auto;
        transform: translateX(0);
    }

    .main-nav a {
        justify-content: flex-start;
        gap: 0.8rem;
        min-height: 58px;
        padding: 0.9rem 1rem;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        font-size: 1.05rem;
        flex: 0 0 auto;
        background: rgba(255, 255, 255, 0.045);
    }

    .main-nav a svg,
    .mobile-contact svg {
        display: block;
        flex: 0 0 auto;
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-contact div a:first-child svg {
        fill: currentColor;
        stroke: none;
    }

    .mobile-contact {
        display: grid;
        gap: 0.75rem;
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid var(--line);
    }

    .mobile-contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        min-height: 46px;
    }

    .mobile-contact div {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .nav-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        display: grid;
        place-items: center;
        width: 48px;
        height: 48px;
        border: 1px solid var(--line);
        border-radius: 50%;
        color: var(--paper);
        background: rgba(255, 255, 255, 0.06);
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 70;
        display: block;
        background: rgba(0, 0, 0, 0.54);
        backdrop-filter: blur(2px);
    }

    .nav-backdrop[hidden] {
        display: none;
    }

    .feature-grid,
    .image-collage,
    .story-grid,
    .catering-layout,
    .catering-cards,
    .service-icon-grid {
        grid-template-columns: 1fr;
    }

    .story-aside {
        position: static;
    }

    .full-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 190px;
    }

    .image-collage {
        grid-auto-rows: 260px;
    }

    .gallery-shot:nth-child(1),
    .gallery-shot:nth-child(3) {
        grid-row: span 1;
    }

    .hero-photo-stack {
        opacity: 0.42;
    }

    .photo-two {
        display: none;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(100% - 28px, 1120px);
    }

    .main-nav a {
        flex: 0 0 auto;
        min-width: 0;
    }

    .field-row,
    .admin-list-item,
    .admin-gallery-item,
    .hours-admin-row {
        grid-template-columns: 1fr;
    }

    .service-select {
        grid-template-columns: 1fr;
    }

    .full-gallery {
        grid-template-columns: 1fr;
    }

    .service-icon-card {
        min-height: auto;
    }

    .full-gallery-item.is-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero {
        min-height: 58vh;
        padding: 4rem 0 3rem;
    }

    .float-photo {
        width: 46vw;
        right: 1rem;
        top: 22%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }

    .menu-paper {
        animation: none !important;
    }
}
