:root {
  --color-primary: #e8c46a;
  --color-accent: #e8c46a;
  --color-text: #ece9e3;
  --color-bg: #0d0d0f;
  --color-surface: #16161a;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --hero-min-height: 100vh;
  --hero-overlay-alpha: 0.55;
  --hero-focus: center;
  --animation-reveal-duration: 700ms;
  --animation-card-lift: -6px;
  --animation-image-scale: 1.06;
  --header-h: 64px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h, 64px);
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
p {
  margin: 0 0 1rem;
  color: color-mix(in srgb, var(--color-text) 86%, transparent);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}
section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
/* Section heading with the discreet animated gold underline. */ .section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 {
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.7rem;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transform: translateX(-50%);
  transition: width 600ms ease;
}
.reveal.is-visible .section-title h2::after, .section-title.is-visible h2::after {
  width: 64px;
}
/* Thin sticky header — invisible at top, reveals a hairline divider once scrolled. */ .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: color-mix(in srgb, var(--color-accent) 45%, transparent);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, 92vw);
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.brand b {
  color: var(--color-accent);
  font-weight: 600;
}
.site-nav {
  display: flex;
  gap: 1.6rem;
}
.site-nav a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: color-mix(in srgb, var(--color-text) 80%, transparent);
  position: relative;
  padding: 0.2rem 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 250ms ease;
}
.site-nav a:hover {
  color: var(--color-text);
}
.site-nav a:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}
/* Hero contract (verbatim class names the pipeline expects). */ .hero {
  min-height: var(--hero-min-height, 100vh);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, center);
  z-index: 0;
}
.hero__overlay {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, var(--hero-overlay-alpha, 0.55)));
}
.hero__overlay h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 900ms ease 200ms forwards;
}
.hero__overlay .tagline {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: color-mix(in srgb, #fff 85%, transparent);
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 900ms ease 450ms forwards;
}
.hero__overlay .hero-rule {
  width: 0;
  height: 2px;
  background: var(--color-accent);
  margin: 1.6rem auto;
  animation: ruleIn 700ms ease 800ms forwards;
}
.btn {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  transition: background 250ms ease, color 250ms ease;
}
.btn:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}
@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ruleIn {
  to {
    width: 90px;
  }
}
/* Carousel */ .carousel {
  position: relative;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel__slide {
  min-width: 100%;
}
.carousel__slide img {
  width: 100%;
  height: clamp(280px, 55vh, 560px);
  object-fit: cover;
}
.carousel__dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: color-mix(in srgb, var(--color-text) 30%, transparent);
  cursor: pointer;
  padding: 0;
}
.carousel__dot.is-active {
  background: var(--color-accent);
}
/* About / opening hours */ .about {
  background: var(--color-surface);
}
.about__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hours {
  background: transparent;
  border: 0;
  padding: 0;
}
.hours h3 {
  color: var(--color-accent);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
/* Each day group is its own rounded "pill": day left, time right; gold glow on hover. */ .hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 1.4rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-bg) 50%, transparent), color-mix(in srgb, var(--color-bg) 70%, transparent));
  border: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent);
  border-radius: 10px;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.hours li:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--color-accent) 45%, transparent), 0 10px 28px rgba(0, 0, 0, 0.45);
}
.hours .day {
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.hours .time {
  color: color-mix(in srgb, var(--color-text) 68%, transparent);
  letter-spacing: 0.2em;
  font-size: 0.92rem;
  white-space: nowrap;
}
.hours .closed {
  color: color-mix(in srgb, var(--color-text) 45%, transparent);
  font-style: italic;
  letter-spacing: 0.06em;
}
/* Menu */ .menu__section + .menu__section {
  margin-top: 3rem;
}
.menu__section-name {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.menu__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.menu-item {
  display: flex;
  gap: 1rem;
  background: var(--color-surface);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.menu-item__img {
  width: 110px;
  min-width: 110px;
  height: 110px;
  object-fit: cover;
  cursor: zoom-in;
}
.menu-item__body {
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
}
.menu-item__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}
.menu-item__price {
  color: var(--color-accent);
  white-space: nowrap;
  font-weight: 600;
}
.menu-item__desc {
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
}
/* Gallery */ .gallery__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
.gallery__grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 300ms ease, filter 300ms ease;
}
/* Testimonials */ .testimonials {
  background: var(--color-surface);
}
.testimonials__grid {
  column-gap: 1.5rem;
  column-count: 1;
}
.testimonial {
  break-inside: avoid;
  background: color-mix(in srgb, var(--color-bg) 60%, var(--color-surface));
  border: 1px solid color-mix(in srgb, var(--color-accent) 18%, transparent);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--color-accent);
  font-style: normal;
  font-size: 0.9rem;
}
/* Contact */ .contact__grid {
  display: grid;
  gap: 2rem;
}
.contact__info p {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.contact iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 12px;
  filter: grayscale(0.3) contrast(1.05);
}
footer {
  background: #08080a;
  padding: 2.5rem 0;
  text-align: center;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  font-size: 0.85rem;
}
footer a {
  color: var(--color-accent);
}
/* Scroll-reveal */ .reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal.is-visible {
    animation: fadeInUp var(--animation-reveal-duration, 700ms) ease-out forwards;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hover effects (pointer + motion-OK only) */ @media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .menu-item: hover {
    transform: translateY(var(--animation-card-lift, -6px));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  }
  .gallery__grid img: hover {
    transform: scale(var(--animation-image-scale, 1.06));
    filter: none;
  }
}
/* Lightbox */ .lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 2rem;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 6px;
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1.4fr 1fr;
  }
  .menu__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .testimonials__grid {
    column-count: 3;
  }
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: color-mix(in srgb, var(--color-bg) 96%, transparent);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    transform: translateY(-120%);
    transition: transform 300ms ease;
  }
  .site-nav.is-open {
    transform: translateY(0);
  }
  .site-nav a {
    padding: 0.9rem 8vw;
  }
  .nav-toggle {
    display: block;
  }
}
