:root {
  --bg: #1a1410;
  --paper: #2a1e17;
  --ink: #f2e4d3;
  --muted: #c7b09b;
  --accent: #b7794f;
  --accent-soft: #ead3bc;
  --line: #473429;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --gold-1: #f7ddb9;
  --gold-2: #e4b882;
  --gold-3: #c7884f;
  --gold-4: #8f5a2f;
}

body.dark-theme {
  --bg: #120d0a;
  --paper: #231912;
  --ink: #f2e3d2;
  --muted: #ccb7a4;
  --accent: #cf9368;
  --accent-soft: #f1d8c0;
  --line: #3f3026;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 7%, rgba(171, 117, 77, 0.18), transparent 36%),
    radial-gradient(circle at 92% 11%, rgba(110, 73, 48, 0.2), transparent 40%),
    linear-gradient(180deg, #221811 0%, #130e0b 100%),
    var(--bg);
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-size: 20px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: radial-gradient(rgba(255, 226, 201, 0.65) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

p,
li,
label,
input,
select,
textarea,
figcaption,
a,
button {
  font-size: 1.12rem;
}

.hero {
  min-height: 88vh;
  padding: 1.4rem 6vw 5rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1rem 5vw auto;
  height: 74vh;
  border-radius: 28px;
  background:
    linear-gradient(rgba(30, 19, 12, 0.5), rgba(30, 19, 12, 0.5)),
    radial-gradient(circle at 20% 18%, rgba(255, 239, 223, 0.4), transparent 34%),
    linear-gradient(120deg, #8b5b3d, #241710 58%, #4f3628);
  z-index: -1;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.2rem;
  border: 1px solid rgba(252, 237, 223, 0.42);
  border-radius: 14px;
  background: rgba(39, 26, 18, 0.48);
  backdrop-filter: blur(8px);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.05rem;
  font-weight: 700;
  color: #fff2e5;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
}

.nav-links a {
  color: #f8e9dc;
  text-decoration: none;
  font-size: 1.12rem;
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  border: 1px solid rgba(248, 233, 220, 0.35);
  background: rgba(255, 236, 220, 0.12);
  color: #f7e8da;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 1.02rem;
  cursor: pointer;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-family: "Outfit", sans-serif;
  border: 1px solid rgba(255, 232, 211, 0.45);
  background: rgba(255, 232, 211, 0.12);
}

.hero-content {
  max-width: 760px;
  margin-top: 6.5rem;
  color: #fff4e8;
  padding: 2.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 236, 220, 0.3);
  background: rgba(27, 18, 13, 0.36);
  backdrop-filter: blur(4px);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 600;
  color: #a15f37;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  margin: 0.2rem 0 0.7rem;
}

h1 {
  font-size: clamp(3.1rem, 5.4vw, 5.8rem);
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(2.6rem, 3.7vw, 3.9rem);
  color: var(--ink);
}

.section-head h2 {
  color: #f3e6d9;
  letter-spacing: 0.01em;
  margin-bottom: 0.95rem;
}

.experience .section-head h2,
.testimonials .section-head h2 {
  color: #f3e6d9;
}

body.dark-theme .section-head h2 {
  color: #f3e6d9;
}

.lead {
  max-width: 62ch;
  color: #f0e6dd;
  font-weight: 300;
  font-size: 1.16rem;
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  margin: 0.9rem 0 0;
  color: #eadbcd;
  font-size: 1.14rem;
}

.hero-badges {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-badges span {
  border: 1px solid rgba(242, 214, 189, 0.46);
  color: #f8e7d8;
  font-size: 0.76rem;
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  background: rgba(255, 236, 220, 0.07);
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-block;
  margin-top: 0;
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 234, 208, 0.68);
  background: linear-gradient(145deg, var(--gold-1) 0%, var(--gold-2) 36%, var(--gold-3) 68%, var(--gold-4) 100%);
  color: #2f1b0f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 28px rgba(87, 50, 23, 0.36),
    0 2px 0 rgba(255, 233, 209, 0.45) inset,
    0 -1px 0 rgba(91, 56, 30, 0.3) inset;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -50%;
  width: 24%;
  height: 320%;
  transform: rotate(17deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 252, 246, 0.76) 50%, rgba(255, 255, 255, 0) 100%);
  animation: reserveShine 4.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 249, 240, 0.3);
  pointer-events: none;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 20px 36px rgba(87, 50, 23, 0.44),
    0 2px 0 rgba(255, 233, 209, 0.5) inset,
    0 -1px 0 rgba(91, 56, 30, 0.32) inset;
  filter: brightness(1.05) saturate(1.04);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.99);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 219, 184, 0.75);
  outline-offset: 3px;
}

.btn-small {
  margin-top: 0;
  border-color: rgba(255, 240, 220, 0.82);
  background: linear-gradient(145deg, #faead7 0%, #efcfad 58%, #d7a678 100%);
  color: #3b271b;
  font-size: 1.06rem;
  box-shadow:
    0 10px 22px rgba(94, 58, 31, 0.26),
    0 2px 0 rgba(255, 243, 228, 0.65) inset,
    0 -1px 0 rgba(123, 78, 45, 0.2) inset;
}

.btn-small::before {
  opacity: 0.6;
  animation-duration: 5.6s;
}

.btn-small:hover {
  box-shadow:
    0 14px 28px rgba(94, 58, 31, 0.3),
    0 2px 0 rgba(255, 243, 228, 0.7) inset,
    0 -1px 0 rgba(123, 78, 45, 0.2) inset;
  filter: brightness(1.03) saturate(1.02);
}

.section {
  padding: 5.1rem 6vw;
  position: relative;
  z-index: 1;
}

.section::before {
  content: "";
  position: absolute;
  left: 6vw;
  right: 6vw;
  top: 2.2rem;
  border-top: 1px solid rgba(131, 92, 64, 0.15);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.35rem;
}

#menu {
  border-radius: 26px;
  margin: 1.2rem 4.8vw 0;
  padding: 4.2rem 1.2rem 4.6rem;
  border: 1px solid rgba(224, 187, 155, 0.2);
  background:
    radial-gradient(circle at 10% 0%, rgba(206, 149, 104, 0.12), transparent 36%),
    linear-gradient(160deg, rgba(34, 24, 18, 0.86), rgba(18, 13, 10, 0.92));
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 229, 206, 0.08);
}

#menu::before {
  left: 1.2rem;
  right: 1.2rem;
  border-top: 1px solid rgba(229, 193, 162, 0.18);
}

#menu .section-head .kicker {
  color: #d8ab84;
}

#menu .section-head h2 {
  color: #f3e4d4;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

#menu .menu-grid {
  margin-bottom: 2.5rem;
}

.photo-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 190px);
  gap: 0.9rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 0.4rem;
  padding: 0.25rem 0.2rem 0.45rem;
}

.gallery-shell {
  position: relative;
  padding: 0.9rem 0.85rem 0.7rem;
  border-radius: 20px;
  border: 1px solid rgba(223, 188, 156, 0.22);
  background:
    radial-gradient(circle at 20% 0%, rgba(214, 162, 121, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(34, 24, 18, 0.92), rgba(20, 14, 11, 0.94));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 231, 211, 0.08);
}

.gallery-label-wrap {
  margin: -0.1rem 0 0.55rem;
}

.gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  padding: 0.32rem 0.86rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #f6e4d2;
  border: 1px solid rgba(228, 191, 159, 0.45);
  background: linear-gradient(135deg, rgba(173, 109, 67, 0.4), rgba(95, 56, 33, 0.5));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.gallery-label::before {
  content: "◆";
  font-size: 0.62rem;
  color: #f3cfae;
}

.gallery-shell::before,
.gallery-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  pointer-events: none;
  z-index: 3;
}

.gallery-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(19, 13, 10, 0.98), rgba(19, 13, 10, 0));
}

.gallery-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(19, 13, 10, 0.98), rgba(19, 13, 10, 0));
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(228, 191, 159, 0.38);
  background: linear-gradient(180deg, rgba(255, 244, 232, 0.95), rgba(235, 208, 181, 0.95));
  color: #53311f;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(30, 18, 12, 0.2);
}

.gallery-nav-left {
  left: -8px;
}

.gallery-nav-right {
  right: -8px;
}

body.dark-theme .gallery-nav {
  background: rgba(44, 31, 24, 0.9);
  color: #f6dfcb;
  border-color: rgba(244, 213, 189, 0.28);
}

.photo-grid::-webkit-scrollbar {
  height: 10px;
}

.photo-grid::-webkit-scrollbar-track {
  background: rgba(120, 88, 63, 0.18);
  border-radius: 999px;
}

.photo-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ad744d, #7e4f32);
  border-radius: 999px;
}

body.dark-theme .photo-grid::-webkit-scrollbar-track {
  background: rgba(255, 245, 236, 0.12);
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #1a120d;
  border: 1px solid rgba(240, 207, 175, 0.28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 231, 211, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  scroll-snap-align: start;
  position: relative;
}

.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.38);
  border-color: rgba(245, 210, 178, 0.46);
}

.photo-card:nth-child(4n + 1) img {
  height: 170px;
}

.photo-card:nth-child(4n + 3) img {
  height: 155px;
}

.photo-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #d8b79c, #8f6243);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.photo-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03);
}

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 0.72rem 0.68rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff2e5;
  background: linear-gradient(180deg, rgba(9, 6, 4, 0) 0%, rgba(9, 6, 4, 0.86) 58%);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

body.dark-theme .gallery-shell {
  border-color: rgba(223, 179, 145, 0.18);
  background:
    radial-gradient(circle at 20% 0%, rgba(199, 145, 102, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(31, 22, 17, 0.95), rgba(16, 11, 9, 0.97));
}

.card,
.about-panel,
.contact,
.reserve-form {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(135, 94, 62, 0.16);
}

.card {
  padding: 1.2rem 1.1rem 0.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(4px);
}

#menu .card {
  background: linear-gradient(165deg, rgba(40, 28, 21, 0.94), rgba(27, 20, 15, 0.96));
  border: 1px solid rgba(228, 192, 160, 0.24);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 232, 210, 0.09);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(39, 25, 17, 0.18);
}

.card h3 {
  color: var(--ink);
  font-size: 2.2rem;
  letter-spacing: 0.01em;
}

#menu .card h3 {
  color: #f7dfc9;
  position: relative;
  padding-bottom: 0.38rem;
}

#menu .card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.04rem;
  width: 52px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9a578, rgba(217, 165, 120, 0));
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  border-bottom: 1px dashed rgba(95, 83, 75, 0.2);
  padding: 0;
}

#menu .card li {
  border-bottom-color: rgba(239, 205, 174, 0.16);
}

.card li strong {
  color: var(--ink);
}

.menu-item-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--muted);
  padding: 0.72rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.12rem;
  transition: color 0.22s ease, transform 0.22s ease, text-shadow 0.22s ease;
}

#menu .menu-item-trigger {
  color: #d7c1ad;
}

#menu .card li strong {
  color: #f3ddc8;
}

.menu-item-trigger:hover,
.menu-item-trigger:focus-visible {
  color: var(--accent);
  transform: translateX(3px);
  text-shadow: 0 0 14px rgba(214, 151, 108, 0.2);
}

.menu-item-trigger:focus-visible {
  outline: 2px solid rgba(187, 127, 88, 0.4);
  outline-offset: 3px;
  border-radius: 8px;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.about-text p {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.2rem;
}

.about-panel {
  padding: 1.4rem;
}

.about-panel h3 {
  font-size: 1.9rem;
  margin-top: 0.4rem;
}

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

.experience-grid article {
  margin: 0;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(63, 41, 31, 0.9), rgba(41, 28, 22, 0.92));
  border: 1px solid rgba(148, 103, 71, 0.36);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(14, 8, 6, 0.26);
}

.experience-grid h3 {
  margin: 0.2rem 0 0.5rem;
  font-size: 1.55rem;
  color: #f1e2d2;
}

.experience-grid p {
  color: #d6c1ae;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 103, 71, 0.36);
  background: linear-gradient(145deg, rgba(67, 43, 32, 0.9), rgba(42, 28, 22, 0.92));
  box-shadow: 0 16px 32px rgba(14, 8, 6, 0.26);
  color: #dcc4ad;
}

.testimonials blockquote {
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-grid cite {
  display: block;
  margin-top: 0.72rem;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c2a083;
}

body.dark-theme .experience-grid article {
  background: linear-gradient(145deg, rgba(63, 41, 31, 0.9), rgba(41, 28, 22, 0.92));
}

body.dark-theme .experience-grid p {
  color: #d6c1ae;
}

body.dark-theme .testimonial-grid blockquote {
  background: linear-gradient(145deg, rgba(67, 43, 32, 0.9), rgba(42, 28, 22, 0.92));
  border-color: rgba(148, 103, 71, 0.36);
}

body.dark-theme .testimonial-grid blockquote {
  color: #d6c1ae;
}

body.dark-theme .testimonial-grid cite {
  color: rgba(246, 220, 195, 0.74);
}

.contact {
  padding: 2.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.12rem;
}

.reserve-form {
  padding: 1.8rem;
  border: 1px solid rgba(227, 191, 159, 0.28);
  background:
    radial-gradient(circle at 85% 0%, rgba(193, 137, 98, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(38, 27, 20, 0.94), rgba(24, 17, 13, 0.96));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 231, 210, 0.08);
}

.reserve-form .form-grid::after {
  content: "";
  display: block;
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  border-bottom: 1px solid rgba(227, 191, 159, 0.16);
}

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

.reserve-form label {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  font-size: 1.02rem;
  font-weight: 500;
  color: #e1c6ae;
  letter-spacing: 0.01em;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  border: 1px solid rgba(222, 184, 151, 0.34);
  border-radius: 12px;
  padding: 0.72rem 0.78rem;
  font: inherit;
  background: rgba(250, 241, 232, 0.98);
  color: #2a1d15;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  outline: none;
  border-color: #d19366;
  box-shadow: 0 0 0 3px rgba(209, 147, 102, 0.22);
  transform: translateY(-1px);
}

.reserve-form h3 {
  margin-top: 1.5rem;
  font-size: 2.3rem;
  color: #f5dfcb;
  position: relative;
  padding-bottom: 0.3rem;
}

.reserve-form h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.02rem;
  width: 64px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8a678, rgba(216, 166, 120, 0));
}

.reserve-note {
  margin-top: -0.2rem;
  color: #d5bda9;
  font-size: 1.03rem;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.7rem;
}

.notes {
  margin-top: 1rem;
}

.reserve-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

#preorder-total {
  margin: 0;
  font-weight: 700;
  color: #f2dcc8;
  font-size: 1.14rem;
  padding: 0.48rem 0.74rem;
  border-radius: 999px;
  background: rgba(195, 138, 98, 0.16);
  border: 1px solid rgba(230, 196, 165, 0.24);
}

.reserve-form .reserve-footer .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 234, 208, 0.72);
  background:
    linear-gradient(145deg, var(--gold-1) 0%, var(--gold-2) 36%, var(--gold-3) 68%, var(--gold-4) 100%);
  color: #2f1b0f;
  font-weight: 700;
  box-shadow:
    0 16px 30px rgba(87, 50, 23, 0.42),
    0 2px 0 rgba(255, 233, 209, 0.5) inset,
    0 -1px 0 rgba(91, 56, 30, 0.34) inset;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.reserve-form .reserve-footer .btn::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -50%;
  width: 24%;
  height: 320%;
  transform: rotate(17deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 252, 246, 0.82) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: reserveShine 4.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 1;
}

.reserve-form .reserve-footer .btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 249, 240, 0.32);
  pointer-events: none;
  z-index: 1;
}

.reserve-form .reserve-footer .btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05) saturate(1.04);
  box-shadow:
    0 20px 36px rgba(87, 50, 23, 0.48),
    0 2px 0 rgba(255, 233, 209, 0.55) inset,
    0 -1px 0 rgba(91, 56, 30, 0.34) inset;
}

.reserve-form .reserve-footer .btn:active {
  transform: translateY(0);
  filter: brightness(0.99);
}

.reserve-form .reserve-footer .btn:focus-visible {
  outline: 2px solid rgba(255, 219, 184, 0.75);
  outline-offset: 3px;
}

@keyframes reserveShine {
  0% {
    left: -52%;
    opacity: 0;
  }
  16% {
    opacity: 0.85;
  }
  30% {
    left: 132%;
    opacity: 0;
  }
  100% {
    left: 132%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn::before {
    animation: none;
    opacity: 0;
  }

  .btn,
  .btn:hover,
  .btn:active,
  .floating-whatsapp,
  .floating-whatsapp:hover,
  .floating-whatsapp:active {
    transition: none;
    transform: none;
  }

  .reserve-form .reserve-footer .btn::before {
    animation: none;
    opacity: 0;
  }

  .reserve-form .reserve-footer .btn,
  .reserve-form .reserve-footer .btn:hover,
  .reserve-form .reserve-footer .btn:active {
    transition: none;
    transform: none;
  }
}

.footer {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem 2.8rem;
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
  background: linear-gradient(180deg, rgba(23, 16, 12, 0) 0%, rgba(23, 16, 12, 0.42) 100%);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  text-decoration: none;
  color: #2f1b0f;
  font-weight: 600;
  font-size: 1.08rem;
  border: 1px solid rgba(255, 234, 208, 0.68);
  background: linear-gradient(145deg, var(--gold-1) 0%, var(--gold-2) 36%, var(--gold-3) 68%, var(--gold-4) 100%);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  box-shadow:
    0 14px 28px rgba(87, 50, 23, 0.4),
    0 2px 0 rgba(255, 233, 209, 0.45) inset,
    0 -1px 0 rgba(91, 56, 30, 0.3) inset;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 20px 36px rgba(87, 50, 23, 0.44),
    0 2px 0 rgba(255, 233, 209, 0.5) inset,
    0 -1px 0 rgba(91, 56, 30, 0.32) inset;
  filter: brightness(1.05) saturate(1.04);
}

.floating-whatsapp:active {
  transform: translateY(0);
  filter: brightness(0.99);
}

.floating-whatsapp:focus-visible {
  outline: 2px solid rgba(255, 219, 184, 0.75);
  outline-offset: 3px;
}

.item-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.item-modal.open {
  display: block;
}

.item-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 9, 0.62);
  backdrop-filter: blur(4px);
}

.item-modal-card {
  position: relative;
  width: min(94vw, 560px);
  margin: 7vh auto;
  background: linear-gradient(165deg, #fffefb 0%, #faefdf 100%);
  border-radius: 20px;
  border: 1px solid rgba(126, 87, 59, 0.25);
  box-shadow: 0 24px 60px rgba(20, 12, 8, 0.36);
  padding: 1.4rem;
}

body.dark-theme .item-modal-card {
  background: linear-gradient(165deg, #2d2018 0%, #1f1611 100%);
}

.modal-close {
  border: 1px solid rgba(126, 87, 59, 0.3);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font: inherit;
  cursor: pointer;
  float: right;
}

.modal-price {
  margin: 0.1rem 0 0.8rem;
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
}

.modal-ingredients {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.modal-ingredients li {
  margin-bottom: 0.34rem;
}

@media (max-width: 760px) {
  .hero::before {
    inset: 0.8rem 4vw auto;
    height: 80vh;
  }

  .nav {
    padding: 0.62rem 0.85rem;
  }

  .nav-links {
    display: none;
  }

  .theme-toggle {
    padding: 0.5rem 0.7rem;
    font-size: 0.88rem;
  }

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

  .hero-content {
    margin-top: 3.2rem;
    padding: 1.4rem;
  }

  .reserve-form {
    padding: 1rem;
  }

  .photo-grid {
    grid-auto-columns: minmax(148px, 168px);
  }

  .gallery-nav {
    display: none;
  }

  .gallery-shell::before,
  .gallery-shell::after {
    display: none;
  }

  .photo-card:nth-child(4n + 1) img,
  .photo-card:nth-child(4n + 3) img {
    height: 140px;
  }
}
