:root {
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-dim: #8a6f30;
  --black: #080808;
  --black-soft: #111111;
  --black-card: #0e0e0e;
  --off-white: #f0e8d8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

/* EDIT PANEL */
#edit-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--gold);
  color: #000;
  border: none;
  cursor: pointer;
  font-family: "Cinzel", serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 12px 20px;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: background 0.2s;
}

#edit-toggle:hover {
  background: var(--gold-light);
}

#edit-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.92);
  overflow-y: auto;
  padding: 40px 20px;
}

#edit-panel.open {
  display: block;
}

.edit-container {
  max-width: 700px;
  margin: 0 auto;
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 36px;
}

.edit-title {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
  text-align: center;
}

.edit-section-label {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin: 24px 0 10px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding-bottom: 6px;
}

.edit-row {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  align-items: center;
}

.edit-row input {
  background: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--off-white);
  padding: 8px 12px;
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.edit-row input:focus {
  border-color: var(--gold);
}

.edit-row input.name-input {
  flex: 1;
}

.edit-row input.price-input {
  width: 80px;
  text-align: right;
}

.edit-row button.del-btn {
  background: none;
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: rgba(255, 80, 80, 0.6);
  cursor: pointer;
  padding: 6px 10px;
  font-size: 0.8rem;
  transition: all 0.2s;
  flex-shrink: 0;
}

.edit-row button.del-btn:hover {
  background: rgba(255, 80, 80, 0.1);
  color: #ff5050;
}

.add-btn {
  background: none;
  border: 1px dashed rgba(201, 168, 76, 0.3);
  color: var(--gold-dim);
  cursor: pointer;
  padding: 7px 16px;
  font-family: "Cinzel", serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  margin-top: 6px;
  transition: all 0.2s;
  width: 100%;
}

.add-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.edit-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

.btn-cancel {
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-dim);
  cursor: pointer;
  padding: 10px 24px;
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  transition: all 0.2s;
}

.btn-cancel:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-apply {
  background: var(--gold);
  border: none;
  color: #000;
  cursor: pointer;
  padding: 10px 28px;
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  transition: background 0.2s;
}

.btn-apply:hover {
  background: var(--gold-light);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 60px 20px;
  background: radial-gradient(ellipse at center, #1a1308 0%, #080808 70%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(201, 168, 76, 0.018) 80px,
    rgba(201, 168, 76, 0.018) 81px
  );
}

.logo-img {
  width: 320px;
  max-width: 80vw;
  margin-bottom: 32px;
  mix-blend-mode: lighten;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.3s;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.6rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  line-height: 1;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.6s;
}

.hero-sub {
  font-family: "Cinzel", serif;
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.35em;
  color: var(--gold-dim);
  margin-top: 6px;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards 0.8s;
}

.hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 32px auto;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}

.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.35rem);
  color: var(--gold-light);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.2s;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.8s;
  color: var(--gold-dim);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.6);
  }
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display: none;
}

.nav-inner {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  min-width: max-content;
  justify-content: center;
  align-items: center;
}

nav a {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-decoration: none;
  padding: 18px 20px;
  transition: color 0.3s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

nav .menu-download {
    display: flex;
    align-items: center;
}

/* SECTIONS */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  display: block;
}

.section-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  justify-content: center;
}

.ornament-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}

.ornament-line.right {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}

.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.subsection-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
  text-align: center;
  margin: 48px 0 28px;
  letter-spacing: 0.1em;
}

.menu-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  position: relative;
}

.menu-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s ease;
  transform-origin: bottom;
}

.menu-item:hover::before {
  transform: scaleY(1);
}

.item-left {
  flex: 1;
  min-width: 0;
}

.item-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.03em;
}

.item-note {
  font-size: 0.72rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  margin-top: 2px;
  font-style: italic;
}

.item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 168, 76, 0.2);
  margin: 0 8px;
  align-self: center;
  min-width: 20px;
}

.item-price {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.accomp {
  margin-top: 28px;
  padding: 16px 20px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.03);
}

.accomp-label {
  font-family: "Cinzel", serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.accomp-items {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(240, 232, 216, 0.6);
  letter-spacing: 0.03em;
}

.section-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.25),
    transparent
  );
  max-width: 860px;
  margin: 0 auto;
}

footer {
  text-align: center;
  padding: 80px 24px 20px;
  background: radial-gradient(ellipse at center, #0f0c04 0%, #080808 60%);
}

.footer-logo {
  width: 70px;
  margin-bottom: 20px;
  opacity: 0.6;
  mix-blend-mode: lighten;
}

.footer-name {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
}

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(201, 168, 76, 0.4);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

.copyright {
    margin-top: 6rem;
    text-wrap: nowrap;
    text-transform: uppercase;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (max-width: 600px) {
  .section {
    padding: 60px 20px;
  }

  .item-dots {
    display: none;
  }

  .menu-item {
    flex-wrap: wrap;
    gap: 4px;
  }
}
