.admin-body {
  background: #f6f4ef;
  font-family: "Montserrat", sans-serif;
  color: #1e1e1e;
}

.admin-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

.admin-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e2da;
}

.admin-header__row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.admin-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-brand__logo {
  height: 44px;
  width: auto;
  display: block;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0;
  justify-content: center;
  flex: 1;
}

.admin-nav a {
  color: #2f2f2f;
  text-decoration: none;
  font-weight: 500;
}

.admin-main {
  padding-bottom: 4rem;
}

.admin-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.admin-flash {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.admin-flash--notice {
  background: #e6f6ec;
  color: #1a5f30;
}

.admin-flash--alert {
  background: #fdeaea;
  color: #8b2b2b;
}

.admin-button {
  display: inline-block;
  background: #1e1e1e;
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.admin-button--ghost {
  background: transparent;
  color: #1e1e1e;
  border: 1px solid #1e1e1e;
}

.admin-logout {
  margin-left: auto;
}

.admin-logout .admin-button {
  padding: 0.5rem 0.9rem;
  border-radius: 14px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid #eee8dd;
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #d7d2c8;
  font-family: inherit;
}

.admin-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-qr-card {
  display: grid;
  gap: 1.25rem;
}

.admin-qr-reader {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6e2da;
  background: #fffdf9;
}

.admin-qr-status {
  font-weight: 600;
  margin: 0;
}

.admin-qr-status--valid {
  color: #1a5f30;
}

.admin-qr-status--used {
  color: #8b2b2b;
}

.admin-qr-status--invalid {
  color: #8b2b2b;
}

.admin-qr-separator {
  font-size: 0.95rem;
  color: #6b675f;
}

.admin-qr-details {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
}

@media screen and (max-width: 1024px) {
  .admin-header__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .admin-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    scroll-snap-type: x proximity;
  }

  .admin-nav a {
    white-space: nowrap;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    min-height: 36px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    scroll-snap-align: start;
    background: #f7f4ee;
  }

  .admin-nav::after {
    content: "";
    flex: 0 0 12px;
  }

  .admin-nav::-webkit-scrollbar {
    height: 6px;
  }

  .admin-nav::-webkit-scrollbar-thumb {
    background: #d9d2c6;
    border-radius: 999px;
  }

  .admin-logout {
    margin-left: 0;
    width: 100%;
  }

  .admin-container {
    overflow-x: hidden;
  }

  .admin-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table table,
  .admin-table thead,
  .admin-table tbody {
    width: 100%;
  }
}
/* --- VARIABLES --- */
:root {
    --color-primary: #8B9A6D;
    --color-primary-dark: #6B7A4D;
    --color-primary-light: #A8B88D;
    --color-accent: #B8860B;
    --color-background: #FAF8F5;
    --color-foreground: #2C2C2C;
    --color-card: #FFFFFF;
    --color-muted: #F5F3EF;
    --color-border: rgba(44, 44, 44, 0.10);
    --color-border-strong: rgba(107, 122, 77, 0.24);
    --color-footer: #20231C;
    --color-footer-muted: rgba(250, 248, 245, 0.72);

    --font-sans: 'DM Sans', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;

    --header-height: 82px;
    --z-fixed: 100;
    --z-top: 999;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-soft: 0 18px 48px rgba(32, 35, 28, 0.10);
    --shadow-card: 0 20px 60px rgba(32, 35, 28, 0.09);
    --shadow-hover: 0 28px 70px rgba(32, 35, 28, 0.14);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--header-height);
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

body {
    font-family: var(--font-sans);
    color: var(--color-foreground);
    background:
        radial-gradient(circle at top left, rgba(168, 184, 141, 0.16), transparent 34rem),
        var(--color-background);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--color-primary-dark);
    line-height: 0.98;
    font-weight: 500;
}

a { text-decoration: none; color: inherit; transition: color 0.24s ease, background-color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease; }
ul { list-style: none; }
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-position: center;
}
p { white-space: pre-line; }
button, input, textarea, select { font: inherit; }

::selection {
    background: rgba(139, 154, 109, 0.25);
    color: var(--color-foreground);
}

/* --- UTILITIES --- */
.container {
    width: min(100% - 2rem, 1180px);
    margin: 0 auto;
    padding: 0;
}

.text-center { text-align: center; }
.bg-rose { background-color: var(--color-muted); }
.bg-white { background-color: var(--color-card); }

.separator {
    width: 68px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), rgba(184, 134, 11, 0.12));
    margin-bottom: 1.8rem;
    position: relative;
}

.separator::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-accent);
}

.separator--center {
    margin: 0 auto 2rem;
}

.separator--center::after {
    left: 50%;
    transform: translateX(-50%);
}

.admin-form {
    display: grid;
    gap: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.admin-form label {
    display: grid;
    gap: 0.45rem;
    color: rgba(44, 44, 44, 0.74);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-form input:not([type="submit"]),
.admin-form textarea,
.admin-form select {
    width: 100%;
    min-height: 50px;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(107, 122, 77, 0.22);
    background: #fff;
    color: var(--color-foreground);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.admin-form textarea { min-height: 132px; resize: vertical; }

.admin-form input:not([type="submit"]):focus,
.admin-form textarea:focus,
.admin-form select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(139, 154, 109, 0.14);
    background: #fff;
}

.admin-flash {
    width: min(100% - 2rem, 1180px);
    margin: 1rem auto 0;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    font-weight: 600;
}

.admin-flash--notice {
    background: rgba(139, 154, 109, 0.16);
    color: var(--color-primary-dark);
}

.admin-flash--alert {
    background: rgba(184, 91, 91, 0.13);
    color: #8B2B2B;
}

/* --- COMPONENTS: BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 50px;
    padding: 0.95rem 1.55rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 30px rgba(107, 122, 77, 0.24);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(107, 122, 77, 0.32);
}

.btn--secondary {
    background: var(--color-foreground);
    color: #fff;
    box-shadow: 0 14px 30px rgba(32, 35, 28, 0.18);
}

.btn--secondary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(184, 134, 11, 0.24);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.46);
}

.btn--outline:hover,
.btn--white:hover {
    background: #fff;
    color: var(--color-primary-dark);
    border-color: #fff;
}

.btn--white {
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary-dark);
    border-color: rgba(255, 255, 255, 0.64);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

/* --- NAVBAR (Fixed & Glass) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(250, 248, 245, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.54);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: var(--z-fixed);
    transition: background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.navbar.scroll-header {
    background: rgba(250, 248, 245, 0.92);
    border-color: rgba(44, 44, 44, 0.08);
    box-shadow: 0 12px 38px rgba(32, 35, 28, 0.10);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 1.2rem;
}

.navbar__logo {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
}

.navbar__logo img {
    height: 58px;
    width: auto;
    display: block;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(32, 35, 28, 0.08);
}

.navbar__nav {
    display: flex;
    flex: 1;
    justify-content: center;
}

.navbar__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.navbar__link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.8rem;
    border-radius: 999px;
    color: rgba(44, 44, 44, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
}

.navbar__link:hover,
.navbar__link.active-link {
    color: var(--color-primary-dark);
    background: rgba(139, 154, 109, 0.12);
}

.navbar__link.active-link::after { display: none; }

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.navbar__item--icon {
    display: inline-flex;
    align-items: center;
}

.navbar__icon-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0 12px 26px rgba(32, 35, 28, 0.13);
}

.navbar__icon-link--instagram {
    background: radial-gradient(circle at 30% 30%, #ffd776 0%, #f77737 25%, #e1306c 55%, #c13584 75%, #833ab4 100%);
}

.navbar__icon-link--thefork {
    background: #24A148;
}

.navbar__icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(32, 35, 28, 0.18);
}

.navbar__icon-link svg { stroke: currentColor; }

.navbar__locales {
    color: rgba(44, 44, 44, 0.70);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.navbar__locales a:hover { color: var(--color-primary-dark); }
.navbar__locales--mobile { display: none; }
.navbar__cta-mobile { display: none; }
.navbar__burger { display: none; cursor: pointer; }

/* --- HERO --- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(680px, 100svh, 960px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
    margin-top: 0;
    padding: calc(var(--header-height) + 4rem) 0 4rem;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 52%;
    transform: scale(1.03);
    z-index: -2;
    will-change: transform;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(32, 35, 28, 0.20), rgba(32, 35, 28, 0.48) 54%, rgba(32, 35, 28, 0.74)),
        linear-gradient(135deg, rgba(107, 122, 77, 0.36), rgba(184, 134, 11, 0.18));
    z-index: -1;
}

.hero__content {
    display: grid;
    justify-items: center;
    gap: 1.25rem;
}

.hero__title {
    max-width: 960px;
    color: #fff;
    font-size: clamp(4.2rem, 9vw, 8.7rem);
    line-height: 0.82;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.hero__subtitle {
    max-width: 760px;
    margin: 0 0 0.6rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.7;
    text-transform: uppercase;
}

/* --- SECTIONS --- */
.section { padding: 0; }

.section--padded {
    padding: 6rem 0;
}

.section__header {
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section__title {
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: 0;
    color: var(--color-primary-dark);
    text-wrap: balance;
}

.section__subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(44, 44, 44, 0.64);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.7;
    text-transform: uppercase;
}

.section__text {
    color: rgba(44, 44, 44, 0.72);
    font-size: 1.05rem;
    line-height: 1.9;
}

.link-underline {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 0.7rem;
    color: var(--color-primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.link-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.link-underline:hover {
    color: var(--color-accent);
}

.link-underline:hover::after {
    transform: scaleX(0.55);
}

/* --- SPLIT SECTIONS --- */
.split {
    background: var(--color-background);
    overflow: hidden;
}

.split__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: clamp(560px, 58vw, 760px);
    width: 100%;
}

.split__content {
    padding: clamp(4rem, 7vw, 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.05rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(245, 243, 239, 0.90)),
        var(--color-background);
}

.split__image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: clamp(420px, 48vw, 760px);
    contain: paint;
    background: var(--color-muted);
}

.split__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 54%, rgba(32, 35, 28, 0.18));
    pointer-events: none;
}

.split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease, filter 0.7s ease;
    filter: contrast(1.04) saturate(1.05);
}

.split__image:hover img {
    transform: scale(1.035);
    filter: contrast(1.06) saturate(1.12);
}

/* --- CARDS GRID --- */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 2.3rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
        var(--color-card);
    text-align: left;
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-accent));
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-hover);
}

.card__title {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    margin-bottom: 0.75rem;
}

.card__price {
    display: block;
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-style: italic;
    font-weight: 600;
}

.card__desc {
    color: rgba(44, 44, 44, 0.70);
    line-height: 1.8;
}

.card__link {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}
.card__link:hover { opacity: 0.65; }

/* --- MENU PAGE --- */
.menu-page {
    color: var(--color-foreground);
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 4rem);
}

.menu-page .section__title,
.menu-page .section__subtitle {
    color: var(--color-primary-dark);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin: 1.8rem 0 0.9rem;
    flex-wrap: wrap;
}

.menu-tab {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(107, 122, 77, 0.24);
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.menu-tab:hover {
    transform: translateY(-1px);
    border-color: var(--color-primary);
}

.menu-tab.is-active {
    background: var(--color-primary-dark);
    color: #fff;
    border-color: var(--color-primary-dark);
    box-shadow: 0 12px 28px rgba(107, 122, 77, 0.22);
}

.menu-panel {
    display: none;
    margin-top: 2rem;
}

.menu-panel.is-active {
    display: block !important;
}

.menu-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 248, 245, 0.92)),
        var(--color-card);
    box-shadow: var(--shadow-card);
}

.menu-card::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(184, 134, 11, 0.18);
    border-radius: calc(var(--radius-lg) - 8px);
    pointer-events: none;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.7rem);
    position: relative;
    z-index: 1;
}

.menu-section {
    margin: 0 0 0.85rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(107, 122, 77, 0.26);
    color: var(--color-primary-dark);
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.7rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 0.65rem;
    color: rgba(44, 44, 44, 0.84);
    font-family: var(--font-serif);
    font-size: 1.12rem;
    line-height: 1.25;
    position: relative;
}

.menu-list li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0.95em;
    border-bottom: 1px dotted rgba(107, 122, 77, 0.30);
}

.menu-list li span {
    background: #fff;
    position: relative;
    z-index: 1;
    padding-right: 0.45rem;
}

.menu-list li span:first-child {
    max-width: 70%;
}

.menu-price {
    padding-left: 0.45rem;
    color: var(--color-primary-dark);
    font-weight: 700;
    white-space: nowrap;
}

.menu-card--drinks .menu-list li { font-size: 0.95rem; }
.menu-card--drinks .menu-section { font-size: 0.72rem; }

.menu--pdf .menu-tabs,
.menu--pdf #menu-download,
.menu--pdf .section__subtitle {
    display: none;
}

.menu-pdf-header {
    text-align: center;
    margin: 1.2rem 0 1.6rem;
    color: var(--color-primary-dark);
}

.menu-pdf-logo img {
    width: 140px;
    height: auto;
    margin: 0 auto 0.6rem;
}

.menu-pdf-brand {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-pdf-contact {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

/* PDF print styling (WeasyPrint) */
.menu--pdf .navbar,
.menu--pdf .footer,
.menu--pdf .social-strip,
.menu--pdf .menu-tabs,
.menu--pdf #menu-download {
    display: none !important;
}

@media print {
    body { background: #fff; }
    .section--padded { padding: 1.2rem 0; }
    .menu-page { color: var(--color-primary-dark); padding-top: 1rem; }
    .menu-card { box-shadow: none; border: 1px solid rgba(107, 122, 77, 0.25); padding: 1.8rem 1.6rem; max-width: 100%; }
    .menu-card::before { border-style: solid; }
    .menu-section { border-bottom: 1px solid rgba(107, 122, 77, 0.30); }
    .menu-list li::after { border-bottom: 1px dotted rgba(107, 122, 77, 0.35); }
}

/* --- GALLERY --- */
.gallery-carousel {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

.gallery-carousel__viewport {
    position: relative;
    overflow: hidden;
    min-height: 0;
    height: clamp(520px, 58vw, 700px);
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    contain: paint;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(18px) scale(0.992);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    display: grid;
    grid-template-rows: 1fr auto;
}

.gallery-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.gallery-slide__media {
    min-height: 0;
    overflow: hidden;
    background: var(--color-muted);
}

.gallery-slide__media img,
.gallery-slide__media video,
.gallery-slide__media iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-slide__caption {
    padding: 1.25rem 1.5rem 1.45rem;
    background: #fff;
    color: var(--color-foreground);
    border-top: 1px solid var(--color-border);
}

.gallery-slide__caption h3 {
    margin-bottom: 0.25rem;
    color: var(--color-primary-dark);
    font-size: 1.65rem;
}

.gallery-slide__caption p {
    margin: 0;
    color: rgba(44, 44, 44, 0.66);
}

.gallery-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: var(--color-primary-dark);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(32, 35, 28, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.gallery-carousel__btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 18px 40px rgba(32, 35, 28, 0.20);
}

.gallery-carousel__btn--prev { left: -18px; }
.gallery-carousel__btn--next { right: -18px; }

.gallery-carousel__dots {
    margin-top: 1.15rem;
    display: flex;
    gap: 0.65rem;
    justify-content: center;
}

.gallery-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(107, 122, 77, 0.32);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.gallery-carousel__dot.is-active {
    background: var(--color-primary-dark);
    transform: scale(1.25);
}

/* --- HORAIRES STRIP --- */
.horaires-strip {
    background: var(--color-foreground);
    padding: 2.8rem 0;
}
.horaires-strip__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.horaires-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}
.horaires-strip__label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary-light);
}
.horaires-strip__value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.92);
}
.horaires-strip__sep {
    width: 1px;
    height: 40px;
    background: rgba(250, 248, 245, 0.18);
}
@media screen and (max-width: 768px) {
    .horaires-strip__sep { display: none; }
    .horaires-strip__container { gap: 1.8rem; }
}

/* --- SOCIAL STRIP & FOOTER --- */
.social-strip {
    padding: 2.5rem 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
}

.social-strip__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-strip__title {
    color: var(--color-primary-dark);
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
}

.social-strip__links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-strip__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(32, 35, 28, 0.13);
}

.social-strip__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(32, 35, 28, 0.18);
}

.social-strip__link--thefork { background: #24A148; }
.social-strip__link--instagram { background: radial-gradient(circle at 30% 30%, #ffd776 0%, #f77737 25%, #e1306c 55%, #c13584 75%, #833ab4 100%); }

.footer {
    background:
        linear-gradient(135deg, rgba(139, 154, 109, 0.15), transparent 38rem),
        var(--color-footer);
    color: var(--color-footer-muted);
    padding: 5rem 0 2rem;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.footer__title {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
}

.footer__col p,
.footer__col a {
    color: var(--color-footer-muted);
}

.footer__col a {
    display: block;
    width: fit-content;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer__col a:hover {
    color: #fff;
}

.footer__col--right { text-align: right; }
.footer__col--right p { margin-left: auto; }

.footer__copyright {
    text-align: center;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(250, 248, 245, 0.12);
    color: rgba(250, 248, 245, 0.52);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

/* --- SCROLL TO TOP --- */
.scroll-top {
    position: fixed;
    right: 1.5rem;
    bottom: -20%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary-dark);
    color: #fff;
    z-index: var(--z-top);
    opacity: 0;
    box-shadow: var(--shadow-soft);
    transition: bottom 0.35s ease, opacity 0.35s ease, background-color 0.22s ease, transform 0.22s ease;
}

.scroll-top:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.show-scroll {
    bottom: 1.5rem;
    opacity: 1;
}

/* --- RESERVATION CONFIRMATION --- */
.reservation-confirmation {
    margin-top: 2.2rem;
    padding: clamp(1.5rem, 4vw, 2.6rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: var(--shadow-card);
    text-align: left;
}

.reservation-confirmation__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reservation-confirmation__header h2 {
    margin: 0 0 0.45rem 0;
    font-size: 2.25rem;
}

.reservation-confirmation__meta {
    margin: 0;
    color: rgba(44, 44, 44, 0.62);
}

.reservation-confirmation__status {
    padding: 0.48rem 1rem;
    border-radius: 999px;
    background: rgba(139, 154, 109, 0.16);
    color: var(--color-primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.reservation-confirmation__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
}

.reservation-confirmation__details h3,
.reservation-confirmation__info h3 {
    margin-bottom: 1rem;
    font-size: 1.85rem;
}

.reservation-confirmation__details dl {
    display: grid;
    gap: 0.85rem;
    margin: 0;
}

.reservation-confirmation__details dt {
    color: rgba(44, 44, 44, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.reservation-confirmation__details dd {
    margin: 0.1rem 0 0 0;
    color: var(--color-foreground);
}

.reservation-confirmation__address {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.reservation-confirmation__address h4 {
    margin-bottom: 0.5rem;
    font-size: 1.45rem;
}

.reservation-confirmation__qr-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-strong);
    background: var(--color-muted);
    text-align: center;
}

.reservation-confirmation__qr {
    margin: 0 auto 1rem auto;
    padding: 1rem;
    border-radius: 14px;
    background: #fff;
}

.reservation-confirmation__qr svg {
    width: 240px;
    max-width: 100%;
    height: auto;
}

.reservation-confirmation__qr-text {
    margin: 0.6rem 0 0.4rem 0;
}

.reservation-confirmation__token {
    margin: 0 0 1rem 0;
    color: rgba(44, 44, 44, 0.72);
    font-size: 0.95rem;
}

.reservation-confirmation__cta {
    width: 100%;
    text-align: center;
}

.reservation-confirmation__info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.reservation-confirmation__info ul {
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(44, 44, 44, 0.70);
    list-style: disc;
}

/* --- ANIMATIONS --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(26px);
    animation: fadeInUp 0.85s cubic-bezier(.2, .8, .2, 1) forwards;
}

.delay-100 { animation-delay: 0.12s; }
.delay-200 { animation-delay: 0.24s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* --- RESPONSIVE --- */
@media screen and (max-width: 1100px) {
    .navbar__list { gap: 0.1rem; }
    .navbar__link { padding: 0 0.55rem; font-size: 0.68rem; }
    .navbar__actions { gap: 0.6rem; }
}

@media screen and (max-width: 968px) {
    :root { --header-height: 72px; }

    .container {
        width: min(100% - 1.5rem, 1180px);
    }

    .section--padded {
        padding: 4.8rem 0;
    }

    .split__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split--reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .split__content {
        padding: 4rem 1.5rem;
    }

    .split__image {
        min-height: 420px;
    }

    .navbar__burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        border-radius: 999px;
        background: rgba(139, 154, 109, 0.12);
    }

    .navbar__burger span {
        display: block;
        width: 20px;
        height: 2px;
        margin: 0 auto;
        border-radius: 999px;
        background-color: var(--color-primary-dark);
        transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .navbar__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .navbar__burger.active span:nth-child(2) { opacity: 0; }
    .navbar__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .navbar__nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: min(100%, 420px);
        height: calc(100vh - var(--header-height));
        padding: 1.4rem;
        background: var(--color-background);
        border-left: 1px solid var(--color-border);
        box-shadow: -18px 0 48px rgba(32, 35, 28, 0.14);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transition: right 0.34s ease;
        display: flex;
        flex-direction: column;
        gap: 1.4rem;
        z-index: calc(var(--z-fixed) + 1);
        overflow-y: auto;
    }

    .navbar__nav.show-menu {
        right: 0;
    }

    .navbar__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
    }

    .navbar__link {
        min-height: 46px;
        padding: 0 1rem;
        justify-content: center;
        font-size: 0.78rem;
        background: rgba(255, 255, 255, 0.48);
    }

    .navbar__item--icon {
        justify-content: center;
    }

    .btn--desktop {
        display: none;
    }

    .navbar__cta-mobile {
        display: block;
    }

    .navbar__locales {
        display: none;
    }

    .navbar__locales--mobile {
        display: block;
        padding: 0.7rem 0;
        border-top: 1px solid var(--color-border);
        text-align: center;
    }

    .navbar__logo img {
        height: 52px;
    }

    .footer__container {
        flex-direction: column;
        gap: 1.6rem;
        align-items: center;
        text-align: center;
    }

    .footer__col {
        width: 100%;
        max-width: 720px;
    }

    .footer__col--right {
        text-align: center;
    }

    .footer__col a,
    .footer__col--right p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    :root { --header-height: 66px; }
    html { font-size: 15px; }

    .hero {
        min-height: 76svh;
        padding: calc(var(--header-height) + 3rem) 0 3rem;
        align-items: flex-end;
    }

    .hero__title {
        font-size: clamp(3.2rem, 16vw, 5.2rem);
    }

    .hero__subtitle {
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        line-height: 1.6;
    }

    .section__header {
        margin-bottom: 2.3rem;
    }

    .section__title {
        font-size: clamp(2.8rem, 13vw, 4.6rem);
    }

    .section--padded {
        padding: 4rem 0;
    }

    .split__content {
        padding: 3.2rem 1rem;
    }

    .split__image {
        min-height: 340px;
    }

    .btn {
        width: 100%;
        min-height: 48px;
        padding: 0.9rem 1.2rem;
        font-size: 0.72rem;
    }

    .navbar__nav {
        width: 100%;
        right: -100%;
    }

    .navbar__nav.show-menu {
        right: 0;
    }

    .grid {
        gap: 1rem;
    }

    .card {
        min-height: auto;
        padding: 1.6rem;
        border-radius: 18px;
    }

    .menu-page {
        padding-top: calc(var(--header-height) + 3rem);
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-card {
        padding: 1.6rem;
        border-radius: 18px;
    }

    .menu-card::before {
        inset: 0.7rem;
        border-radius: 13px;
    }

    .menu-list li {
        font-size: 1rem;
    }

    .menu-card--drinks .menu-list li {
        font-size: 0.92rem;
    }

    .gallery-carousel__viewport {
        height: 460px;
        min-height: 0;
        border-radius: 18px;
    }

    .gallery-slide__media {
        min-height: 350px;
    }

    .gallery-slide__media img,
    .gallery-slide__media video,
    .gallery-slide__media iframe {
        object-fit: contain;
    }

    .gallery-carousel__btn {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .gallery-carousel__btn--prev { left: 8px; }
    .gallery-carousel__btn--next { right: 8px; }

    .social-strip__container {
        justify-content: center;
        text-align: center;
    }

    .social-strip__links {
        justify-content: center;
    }

    .footer {
        padding: 3.5rem 0 1.4rem;
    }

    .reservation-confirmation {
        margin: 1.5rem 0 0;
    }

    .reservation-confirmation__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reservation-confirmation__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 550px) {
    .hero {
        min-height: 72svh;
        padding: calc(var(--header-height) + 2.4rem) 0 2rem;
    }

    .hero__content.container {
        width: min(100% - 1.25rem, 1180px);
    }

    .hero__title {
        font-size: clamp(2.8rem, 17vw, 4rem);
        line-height: 0.86;
    }

    .hero__subtitle {
        font-size: 0.72rem;
    }

    .section__subtitle {
        font-size: 0.72rem;
        letter-spacing: 0.13em;
    }

    .admin-form {
        padding: 1.2rem;
        border-radius: 18px;
    }

    .menu-list li {
        gap: 0.55rem;
    }

    .menu-list li span:first-child {
        max-width: 66%;
    }

    .gallery-carousel__viewport {
        height: 380px;
        min-height: 0;
    }

    .gallery-slide__media {
        min-height: 285px;
    }

    .gallery-slide__caption {
        padding: 0.9rem 1rem 1rem;
    }

    .gallery-slide__caption h3 {
        font-size: 1.25rem;
    }

    .gallery-slide__caption p {
        font-size: 0.9rem;
    }

    .footer__title {
        font-size: 1.45rem;
    }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
