/* ========================================
   Velora — Specialty Coffee
   ======================================== */

:root {
  --espresso: #120c09;
  --roast: #1e1410;
  --mocha: #3d2618;
  --bean: #5c3a24;
  --caramel: #c49a6c;
  --gold: #d4a574;
  --foam: #e8d5bc;
  --steam: #f3ebe0;
  --muted: #a89480;
  --line: rgba(212, 165, 116, 0.22);
  --text: #f3ebe0;
  --text-dim: #b8a794;
  --radius: 4px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--espresso);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--steam);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-dim);
  max-width: 36rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 36rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--caramel));
  color: var(--espresso);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #e0b888, var(--gold));
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--foam);
  background: rgba(255, 255, 255, 0.03);
}

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

.btn--sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.82rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ========== Header ========== */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.header.is-scrolled {
  background: rgba(18, 12, 9, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.header__inner {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.logo__mark {
  width: 40px;
  height: 40px;
  animation: logoFloat 5s ease-in-out infinite;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--steam);
}

.logo--footer .logo__text {
  font-size: 1.6rem;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  margin-left: auto;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-dim);
  position: relative;
  transition: color 0.25s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--gold);
}

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

.header__cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--foam);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(5rem, 12vw, 7rem);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 12, 9, 0.45) 0%, rgba(18, 12, 9, 0.25) 35%, rgba(18, 12, 9, 0.82) 78%, var(--espresso) 100%),
    linear-gradient(90deg, rgba(18, 12, 9, 0.55) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  max-width: 640px;
  margin-right: auto;
  margin-left: max(1.25rem, calc((100% - 1120px) / 2));
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--steam);
  margin-bottom: 0.85rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero__subtitle {
  color: var(--text-dim);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 300;
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Hero loads with animation even before scroll observer */
.hero .reveal {
  animation: heroEnter 1s var(--ease) forwards;
}

.hero .reveal-delay-1 { animation-delay: 0.15s; }
.hero .reveal-delay-2 { animation-delay: 0.3s; }
.hero .reveal-delay-3 { animation-delay: 0.45s; }

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ========== About ========== */
.about {
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(92, 58, 36, 0.35), transparent),
    var(--espresso);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  filter: saturate(0.9);
}

.about__accent {
  position: absolute;
  inset: auto -12px -12px auto;
  width: 45%;
  height: 45%;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.5;
}

.about__text {
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-weight: 300;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__num,
.stat__plus {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat__plus {
  display: inline;
  font-size: 1.5rem;
}

.stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ========== Experience ========== */
.experience {
  background: linear-gradient(180deg, var(--espresso), var(--roast) 50%, var(--espresso));
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.exp-item {
  padding: 2rem 1.75rem;
  border-top: 1px solid var(--line);
  transition: border-color 0.35s, background 0.35s;
}

.exp-item:hover {
  border-color: var(--gold);
  background: rgba(212, 165, 116, 0.04);
}

.exp-item__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.exp-item__icon svg {
  width: 100%;
  height: 100%;
}

.exp-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  color: var(--steam);
}

.exp-item p {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ========== Menu ========== */
.menu {
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(61, 38, 24, 0.5), transparent),
    var(--espresso);
}

.menu__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

.menu-filter {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.menu-filter:hover {
  color: var(--foam);
}

.menu-filter.is-active {
  color: var(--espresso);
  background: var(--gold);
  border-color: var(--gold);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.menu-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--roast);
  border: 1px solid transparent;
  transition: border-color 0.35s, transform 0.4s var(--ease);
  animation: cardIn 0.55s var(--ease) both;
}

.menu-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}

.menu-card.is-hidden {
  display: none;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.menu-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-card__img img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.menu-card:hover .menu-card__img img {
  transform: scale(1.06);
}

.menu-card__body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.menu-card__cat {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.menu-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.menu-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.menu-card__price {
  font-weight: 500;
  color: var(--foam);
  font-size: 0.95rem;
}

.menu-card__view {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

/* ========== Signature ========== */
.signature {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  overflow: hidden;
  text-align: center;
}

.signature__bg {
  position: absolute;
  inset: 0;
}

.signature__bg img {
  width: 100%;
  height: 100%;
  filter: brightness(0.35) saturate(0.85);
}

.signature__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--espresso), transparent 30%, transparent 70%, var(--espresso));
}

.signature__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.signature__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.signature__text {
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  font-weight: 300;
}

/* ========== Gallery ========== */
.gallery__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

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

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: 2 / -1;
}

/* ========== Testimonials ========== */
.testimonials {
  background:
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(92, 58, 36, 0.4), transparent),
    var(--roast);
}

.testimonials__track {
  position: relative;
  min-height: 220px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.testimonial.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}

.testimonial blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--steam);
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.testimonial__name {
  display: block;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.testimonial__meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonials__dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bean);
  transition: background 0.3s, transform 0.3s;
}

.dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ========== Hours ========== */
.hours {
  border-block: 1px solid var(--line);
  background: var(--espresso);
}

.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

.hours__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
  font-weight: 300;
}

.hours__list li span:first-child {
  color: var(--foam);
  font-weight: 400;
}

/* ========== Contact ========== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.contact__details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact__details li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact__details strong {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.contact__details span,
.contact__details a {
  color: var(--text-dim);
  font-weight: 300;
  transition: color 0.25s;
}

.contact__details a:hover {
  color: var(--gold);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 2rem;
  background: linear-gradient(160deg, rgba(61, 38, 24, 0.45), rgba(30, 20, 16, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-row label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  padding: 0.85rem 1rem;
  background: rgba(18, 12, 9, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(168, 148, 128, 0.55);
}

.form-status {
  font-size: 0.9rem;
  color: var(--gold);
  min-height: 1.25rem;
}

/* ========== Footer ========== */
.footer {
  background:
    linear-gradient(180deg, var(--roast), #0d0907);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(196, 154, 108, 0.12), transparent 70%);
  pointer-events: none;
}

.footer__top {
  padding: clamp(3.5rem, 8vw, 5rem) 0 3rem;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1.2fr;
  gap: 2.5rem;
}

.footer__brand p {
  color: var(--text-dim);
  font-weight: 300;
  font-size: 0.95rem;
  margin: 1.15rem 0 1.5rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer__social {
  display: flex;
  gap: 0.65rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--foam);
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 165, 116, 0.08);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.15rem;
  color: var(--steam);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__col a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 300;
  transition: color 0.25s, padding-left 0.25s;
}

.footer__col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__col--newsletter p {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

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

.footer__form input {
  flex: 1;
  min-width: 140px;
  padding: 0.7rem 1rem;
  background: rgba(18, 12, 9, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

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

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.35rem 0;
  position: relative;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer__tagline {
  letter-spacing: 0.06em;
}

/* ========== Modal ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 3, 0.78);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  background: var(--roast);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: modalIn 0.4s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--foam);
  background: rgba(18, 12, 9, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.25s, color 0.25s;
}

.modal__close:hover {
  background: var(--gold);
  color: var(--espresso);
}

.modal__media {
  min-height: 280px;
}

.modal__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.modal__body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal__category {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.modal__body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.modal__desc {
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.modal__meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
}

.modal__meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.modal__meta li span:first-child {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.modal__price {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold);
}

body.modal-open {
  overflow: hidden;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .about__grid,
  .contact__grid,
  .hours__grid {
    grid-template-columns: 1fr;
  }

  .about__media img {
    aspect-ratio: 16 / 10;
  }

  .experience__grid,
  .menu__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery__item--tall {
    grid-row: auto;
    aspect-ratio: 3 / 4;
  }

  .gallery__item,
  .gallery__item--wide {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

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

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

  .modal__media {
    max-height: 240px;
  }

  .modal__media img {
    min-height: 220px;
    max-height: 240px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 0;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(18, 12, 9, 0.97);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.35rem;
    font-family: var(--font-display);
  }

  .hero__content {
    margin-left: 1.25rem;
    width: calc(100% - 2.5rem);
  }

  .experience__grid,
  .menu__grid {
    grid-template-columns: 1fr;
  }

  .about__stats {
    gap: 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .menu__filters {
    gap: 0.35rem;
  }

  .menu-filter {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
