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

:root {
  --bg: #FCFAF7;
  --text: #2B2B2B;
  --text-dark: #1A1A1A;
  --gold: #C8A96E;
  --gold-dim: rgba(200,169,110,0.55);
  --header-bg: transparent;
  --footer-bg: #1A1A1A;
  --footer-text: rgba(255,255,255,0.7);
  --card-bg: #FCFAF7;
  --section-light: #f5eee4;
  transition: background-color 0.5s ease, color 0.5s ease;
}
body.dark-theme {
  --bg: #1A1A1A;
  --text: #ccc;
  --text-dark: #FCFAF7;
  --gold-dim: rgba(200,169,110,0.7);
  --header-bg: rgba(0,0,0,0.85);
  --footer-bg: #0d0d0d;
  --footer-text: rgba(255,255,255,0.6);
  --card-bg: #222;
  --section-light: #1f1f1f;
}

html { scroll-behavior: auto; }

body {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 10001;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(to right, #C8A96E, #d4b87a, #C8A96E);
  box-shadow: 0 0 6px rgba(200,169,110,0.4);
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
picture { display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; }

.story { background: linear-gradient(135deg, var(--bg) 0%, var(--section-light) 100%); }

.dishes { background: linear-gradient(180deg, var(--bg) 0%, var(--section-light) 100%); }

.gallery { background: linear-gradient(135deg, var(--section-light) 0%, var(--bg) 100%); }

.chef { background: linear-gradient(180deg, var(--section-light) 0%, var(--bg) 100%); }

.testimonials { background: linear-gradient(135deg, var(--bg) 0%, var(--section-light) 100%); }

.section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: var(--text-dark);
  margin-bottom: 56px;
  position: relative;
  display: inline-block;
  padding: 18px 36px;
  border: 1.5px solid var(--gold-dim);
  box-shadow: 0 0 24px rgba(200,169,110,0.08), inset 0 0 24px rgba(200,169,110,0.04);
  background:
    radial-gradient(circle at 0 0, #C8A96E 2px, transparent 2px),
    radial-gradient(circle at 100% 0, #C8A96E 2px, transparent 2px),
    radial-gradient(circle at 0 100%, #C8A96E 2px, transparent 2px),
    radial-gradient(circle at 100% 100%, #C8A96E 2px, transparent 2px),
    linear-gradient(135deg, rgba(200,169,110,0.06), rgba(200,169,110,0.02));
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-size: 10px 10px, 10px 10px, 10px 10px, 10px 10px, 100% 100%;
  background-position: 0 0, 100% 0, 0 100%, 100% 100%, 0 0;
}

/* Inner frame — more visible */
.section__title::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid rgba(200,169,110,0.2);
  pointer-events: none;
}

/* Diamond crest — larger, with glow, floating above top border */
.section__title::after {
  content: ' ✦ ';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: #C8A96E;
  letter-spacing: 5px;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(200,169,110,0.35);
  animation: diamondGlow 3s ease-in-out infinite;
}

@keyframes diamondGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(200,169,110,0.35); transform: translateX(-50%) scale(1); }
  50% { text-shadow: 0 0 20px rgba(200,169,110,0.6), 0 0 40px rgba(200,169,110,0.2); transform: translateX(-50%) scale(1.05); }
}

/* Hover — frame brightens and glows */
.section__title:hover {
  border-color: rgba(200,169,110,0.8);
  box-shadow: 0 0 40px rgba(200,169,110,0.15), inset 0 0 30px rgba(200,169,110,0.08);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.section__title:hover::after {
  animation-duration: 1s;
}

.section__title:hover::before {
  border-color: rgba(200,169,110,0.35);
  transition: border-color 0.5s ease;
}

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

/* ===== DIVIDER ===== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  gap: 16px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, #C8A96E, transparent);
}

.divider__ornament {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #C8A96E;
  opacity: 0.5;
}

/* ===== DROP CAP ===== */
.drop-cap {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 0.8;
  color: #C8A96E;
  float: left;
  margin: 8px 12px 0 0;
}

/* ===== CURTAIN LOADER ===== */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  pointer-events: none;
}

.curtain.active {
  pointer-events: auto;
}

.curtain__panel {
  flex: 1;
  background: #1A1A1A;
  position: relative;
  will-change: transform;
}

.curtain__panel--left { transform-origin: left center; }
.curtain__panel--right { transform-origin: right center; }

.curtain__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.curtain__label {
  font-family: 'Alex Brush', cursive;
  font-size: 5rem;
  color: #C8A96E;
  letter-spacing: 4px;
  opacity: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid #C8A96E;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #C8A96E;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.btn--primary {
  background-color: #C8A96E;
  color: #FCFAF7;
}

.btn--primary:hover { background-color: #b8974f; }

.btn--outline {
  background-color: transparent;
  color: #FCFAF7;
  border-color: #FCFAF7;
  z-index: 1;
}

.btn--outline::after { background: #C8A96E; }

.btn--outline:hover {
  border-color: #C8A96E;
  color: #FCFAF7;
}

.btn--outline:hover::after { transform: scaleX(1); transform-origin: left; }

.btn--large {
  padding: 18px 52px;
  font-size: 1rem;
}

.btn--primary:hover { transform: scale(1.02); }

/* ===== CTA BUTTON FRAME ===== */
.cta__btn {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.cta-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: #C8A96E;
  border-style: solid;
  transition: border-color 0.3s ease;
}

.cta-corner--tl { top: -5px; left: -5px; border-width: 1.5px 0 0 1.5px; }
.cta-corner--tr { top: -5px; right: -5px; border-width: 1.5px 1.5px 0 0; }
.cta-corner--bl { bottom: -5px; left: -5px; border-width: 0 0 1.5px 1.5px; }
.cta-corner--br { bottom: -5px; right: -5px; border-width: 0 1.5px 1.5px 0; }

.cta-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #C8A96E;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(200,169,110,0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cta-dot--tl { top: -7px; left: -7px; }
.cta-dot--tr { top: -7px; right: -7px; }
.cta-dot--bl { bottom: -7px; left: -7px; }
.cta-dot--br { bottom: -7px; right: -7px; }

.cta__btn:hover .cta-corner { border-color: #d4b87a; }
.cta__btn:hover .cta-dot { background: #d4b87a; box-shadow: 0 0 8px rgba(200,169,110,0.6); }

/* Inner border */
.cta__btn::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid rgba(200,169,110,0.2);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.cta__btn:hover::before { border-color: rgba(200,169,110,0.4); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: background-color 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}

.header.scrolled {
  background-color: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Alex Brush', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: #C8A96E;
  letter-spacing: 2px;
}

.nav__menu {
  display: flex;
  gap: 40px;
}

.nav__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
  transition: padding 0.3s ease;
  position: relative;
  padding: 4px 10px;
}

.nav__link::before,
.nav__link::after {
  content: '';
  position: absolute;
  height: 1px;
  background: #C8A96E;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav__link::before {
  top: 0;
  left: 50%;
  width: 0;
}

.nav__link::after {
  bottom: 0;
  right: 50%;
  width: 0;
}

.nav__link:hover::before,
.nav__link.active::before {
  width: 50%;
  left: 10%;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 50%;
  right: 10%;
}

.nav__link:hover,
.nav__link.active { color: #C8A96E; padding-left: 16px !important; padding-right: 16px !important; }

/* Corner ornaments on hover */
.nav__link .corner {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid #C8A96E;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav__link:hover .corner,
.nav__link.active .corner { opacity: 1; }

.nav__link .corner--tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.nav__link .corner--tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.nav__link .corner--bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.nav__link .corner--br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.nav__cta {
  position: relative;
  padding: 12px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #FCFAF7;
  border: 1px solid #C8A96E;
  cursor: pointer;
  overflow: visible;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.nav__cta:hover {
  background: #C8A96E;
  color: #1A1A1A;
  transform: scale(1.02);
}

/* Ornate corners for CTA button */
.nav__cta .corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #C8A96E;
  border-style: solid;
  transition: border-color 0.3s ease;
}

.nav__cta:hover .corner { border-color: #FCFAF7; }

.nav__cta .corner--tl { top: -4px; left: -4px; border-width: 1px 0 0 1px; }
.nav__cta .corner--tr { top: -4px; right: -4px; border-width: 1px 1px 0 0; }
.nav__cta .corner--bl { bottom: -4px; left: -4px; border-width: 0 0 1px 1px; }
.nav__cta .corner--br { bottom: -4px; right: -4px; border-width: 0 1px 1px 0; }

/* Decorative gold dots at corners */
.nav__cta .dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #C8A96E;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.nav__cta:hover .dot { background: #FCFAF7; }

.nav__cta .dot--tl { top: -5px; left: -5px; }
.nav__cta .dot--tr { top: -5px; right: -5px; }
.nav__cta .dot--bl { bottom: -5px; left: -5px; }
.nav__cta .dot--br { bottom: -5px; right: -5px; }

/* Inner border line */
.nav__cta::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid rgba(200,169,110,0.3);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.nav__cta:hover::before { border-color: rgba(255,255,255,0.3); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #FCFAF7;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* X animation via class */
.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.theme-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: #FCFAF7;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  margin-right: 8px;
}
.theme-toggle:hover {
  border-color: #C8A96E;
  color: #C8A96E;
  transform: rotate(30deg);
}
body.dark-theme .theme-toggle {
  border-color: rgba(200,169,110,0.4);
  color: #C8A96E;
}
body.dark-theme .dish-card__img img {
  filter: brightness(0.85);
}
body.dark-theme img:not(.hero__bg img) {
  filter: brightness(0.9);
}
body.dark-theme .section__title {
  background-color: rgba(200,169,110,0.04);
}
body.dark-theme .hero__bg img {
  filter: brightness(0.5);
}
body.dark-theme .cta {
  background-color: #0d0d0d;
}

/* Smooth theme transition */
body.theme-animating,
body.theme-animating *,
body.theme-animating *::before,
body.theme-animating *::after {
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FCFAF7;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 5.5rem;
  letter-spacing: 8px;
  margin-bottom: 20px;
  will-change: transform, opacity;
  line-height: 1.15;
}

.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 4px;
}

.hero__title .char {
  display: inline-block;
  will-change: transform, opacity;
}

.hero__subtitle {
  font-family: 'Alex Brush', cursive;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 44px;
}

.hero__btn { z-index: 1; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ===== IMAGE REVEAL ===== */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal__overlay {
  position: absolute;
  inset: 0;
  background: hsla(39, 45%, 61%, 0.2);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: left center;
  will-change: transform;
}

/* ===== STORY ===== */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__desc {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.9;
}

.story__desc .line {
  display: block;
  overflow: hidden;
}

.story__desc .line-inner {
  display: inline-block;
  will-change: transform;
}

.story__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ===== DISHES ===== */
.dishes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  perspective: 1200px;
}

.dish-card {
  cursor: pointer;
  transform-style: preserve-3d;
}

.dish-card__img {
  overflow: hidden;
}

.dish-card__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dish-card:hover .dish-card__img img {
  transform: scale(1.08);
}

.dish-card__info {
  padding: 24px 0 0;
}

.dish-card__info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.dish-card__info p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery { overflow: hidden; }

.gallery__track-wrapper {
  overflow: hidden;
  cursor: grab;
}

.gallery__track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  padding: 0 24px;
  align-items: center;
}

.gallery__item {
  width: 42vw;
  max-width: 640px;
  height: 420px;
  flex-shrink: 0;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img { transform: scale(1.06); }

/* ===== CHEF ===== */
.chef__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.chef__image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.chef__name {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #C8A96E;
  margin-bottom: 20px;
}

.chef__desc {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.9;
}

.chef__desc .line {
  display: block;
  overflow: hidden;
}

.chef__desc .line-inner {
  display: inline-block;
  will-change: transform;
}

/* ===== TESTIMONIALS ===== */
.testimonials__slider {
  position: relative;
  min-height: 380px;
}

.testimonial-card {
  text-align: center;
  padding: 50px 40px;
  background: var(--card-bg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
}

.testimonial__icon {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #C8A96E;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}

.testimonial__text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  max-width: 600px;
}

.testimonial__author {
  font-family: 'Alex Brush', cursive;
  font-size: 1.4rem;
  color: #C8A96E;
  font-style: normal;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background: #C8A96E;
  transform: scale(1.3);
}

/* ===== CTA ===== */
.cta {
  background-color: #1A1A1A;
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #C8A96E, transparent);
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2.5px 2.5px at 12% 20%, rgba(200,169,110,0.35) 0%, transparent 100%),
    radial-gradient(2px 2px at 28% 55%, rgba(200,169,110,0.25) 0%, transparent 100%),
    radial-gradient(3px 3px at 42% 12%, rgba(200,169,110,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 78%, rgba(200,169,110,0.2) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 68% 40%, rgba(200,169,110,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 85% 90%, rgba(200,169,110,0.18) 0%, transparent 100%),
    radial-gradient(3px 3px at 92% 30%, rgba(200,169,110,0.25) 0%, transparent 100%),
    radial-gradient(2px 2px at 20% 70%, rgba(200,169,110,0.15) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 48% 50%, rgba(200,169,110,0.22) 0%, transparent 100%),
    radial-gradient(2px 2px at 75% 65%, rgba(200,169,110,0.2) 0%, transparent 100%);
}

.cta__title {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 3.2rem;
  color: #FCFAF7;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.cta__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2.5px 2.5px at 10% 18%, rgba(200,169,110,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 25% 52%, rgba(200,169,110,0.2) 0%, transparent 100%),
    radial-gradient(3px 3px at 40% 10%, rgba(200,169,110,0.25) 0%, transparent 100%),
    radial-gradient(2px 2px at 52% 75%, rgba(200,169,110,0.15) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 65% 38%, rgba(200,169,110,0.22) 0%, transparent 100%),
    radial-gradient(2px 2px at 82% 85%, rgba(200,169,110,0.12) 0%, transparent 100%),
    radial-gradient(3px 3px at 90% 28%, rgba(200,169,110,0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 18% 68%, rgba(200,169,110,0.12) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 45% 45%, rgba(200,169,110,0.18) 0%, transparent 100%),
    radial-gradient(2px 2px at 72% 60%, rgba(200,169,110,0.15) 0%, transparent 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer__logo {
  font-family: 'Alex Brush', cursive;
  font-size: 2.2rem;
  color: #C8A96E;
  letter-spacing: 2px;
}

.footer__tagline {
  margin-top: 8px;
  font-size: 0.9rem;
  font-style: italic;
}

.footer__links h4,
.footer__info h4,
.footer__social h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #FCFAF7;
  margin-bottom: 16px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C8A96E;
  transition: width 0.3s ease;
}

.footer__links a:hover::after { width: 100%; }
.footer__links a:hover { color: #C8A96E; }

.footer__info p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer__info h4:not(:first-child) { margin-top: 16px; }

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.social-icons a:hover {
  border-color: #C8A96E;
  color: #C8A96E;
  transform: translateY(-3px);
}

.footer__bottom {
  text-align: center;
  font-size: 0.85rem;
}

/* ===== TEXT SPLIT HELPERS ===== */
[data-split] .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 2px;
}

[data-split] .char {
  display: inline-block;
  will-change: transform, opacity;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__title { font-size: 3.8rem; letter-spacing: 5px; }
  .section__title { font-size: 2.2rem; }
  .dishes__grid { grid-template-columns: repeat(2, 1fr); }
  .story__grid,
  .chef__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .story__image img,
  .chef__image img { height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item { width: 50vw; max-width: 480px; height: 320px; }

  .chef__image img { height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(20,20,20,0.97);
    backdrop-filter: blur(24px);
    padding: 100px 36px 40px;
    gap: 6px;
    align-items: flex-end;
    z-index: 999;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    will-change: transform;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    border-left: 1px solid rgba(200,169,110,0.15);
  }

  .nav__menu.active {
    visibility: visible;
    pointer-events: auto;
  }

  /* Menu brand mark at top — removed */

  /* Separator line below header */
  .nav__menu::before {
    content: '';
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200,169,110,0.3), transparent);
  }

  /* Brand at bottom-center */
  .nav__menu::after {
    content: 'YAS';
    font-family: 'Alex Brush', cursive;
    font-size: 1.6rem;
    color: #C8A96E;
    letter-spacing: 3px;
    margin-top: auto;
    padding-top: 30px;
    align-self: center;
    opacity: 0.5;
  }

  .nav__menu .nav__item {
    width: 100%;
    text-align: right;
    overflow: hidden;
  }

  .nav__menu .nav__link {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    display: block;
    padding: 14px 0;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease, padding 0.3s ease;
    position: relative;
  }

  .nav__menu .nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 0;
    height: 1px;
    background: #C8A96E;
    transition: width 0.4s ease;
  }

  .nav__menu .nav__link:hover,
  .nav__menu .nav__link.active {
    color: #C8A96E;
  }

  .nav__menu .nav__link:hover::after,
  .nav__menu .nav__link.active::after {
    width: 100%;
  }

  /* Backdrop overlay */
  .nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav__backdrop.active {
    visibility: visible;
    pointer-events: auto;
  }

  .nav__cta { display: none; }
  .nav__toggle { display: flex; position: relative; z-index: 1001; }
  .theme-toggle { position: relative; z-index: 1001; }
  .theme-toggle {
    margin-left: auto;
    margin-right: 10px;
  }

  .hero__title { font-size: 2.6rem; letter-spacing: 4px; }
  .hero__subtitle { font-size: 0.95rem; }
  .hero__scroll { display: none; }

  .section { padding: 80px 0; }
  .section__title { font-size: 1.8rem; margin-bottom: 40px; }

  .dishes__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dish-card__img img { height: 300px; }

  .gallery__item { width: 80vw; max-width: 380px; height: 260px; }

  .chef__image img { height: 320px; }

  .cta { padding: 80px 0; }
  .cta__title { font-size: 2rem; }

  .testimonial-card { padding: 30px 20px; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .curtain { display: none; }
  [data-split] .word { overflow: visible; }
}
