/* ============================================================
   LOVE INDIA RESTAURANT — styles.css
   System: dark elegance · gold accents · Cormorant + Inter
   ============================================================ */

:root {
  /* Colors */
  --c-bg:        #0a0806;
  --c-bg-alt:    #14100b;
  --c-bg-soft:   #1a1510;
  --c-gold:      #d4af37;
  --c-gold-hi:   #e8c772;
  --c-gold-lo:   #a88828;
  --c-cream:     #f5efe0;
  --c-cream-mut: #c9c0ab;
  --c-muted:     #8a8270;
  --c-coral:     #c64f2e;
  --c-line:      #3a2f1f;
  --c-line-soft: #241c14;
  --c-err:       #e06b4a;
  --c-wa:        #25d366;

  /* Type */
  --f-display: "Cormorant Garamond", Georgia, serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Sizing */
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(4rem, 10vw, 9rem);
  --radius: 4px;
  --radius-lg: 16px;

  /* Motion */
  --t-fast: 180ms ease;
  --t-med: 320ms cubic-bezier(.22,.61,.36,1);
  --t-slow: 600ms cubic-bezier(.22,.61,.36,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-cream);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-gold-hi); }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; border-radius: 2px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, .section__title, .hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0;
  color: var(--c-cream);
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.section__title--center { text-align: center; }
.section__subtitle {
  font-family: var(--f-body);
  font-size: 1.05rem;
  color: var(--c-cream-mut);
  max-width: 58ch;
  margin: 0 auto;
}
.section__header { margin-bottom: clamp(2rem, 5vw, 4rem); }
.section__header--center { text-align: center; }
.section__cta { text-align: center; margin-top: 3rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--c-gold);
  margin: 0 0 1rem;
  position: relative;
  padding-left: 2.25rem;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.75rem; height: 1px;
  background: var(--c-gold);
  transform: translateY(-50%);
}
.section__header--center .eyebrow { padding-left: 0; display: inline-flex; align-items: center; gap: .75rem; }
.section__header--center .eyebrow::before {
  position: static; transform: none;
  width: 1.75rem; height: 1px;
  background: var(--c-gold);
}
.section__header--center .eyebrow::after {
  content: "";
  width: 1.75rem; height: 1px;
  background: var(--c-gold);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: var(--section-y) 0; position: relative; }
.section--dark { background: var(--c-bg-alt); }

/* Ornamental separator (gold line with diamond) */
.section + .section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--t-med);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.72rem; letter-spacing: 2px; }
.btn--lg { padding: 1.15rem 2.25rem; font-size: 0.85rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}
.btn--primary:hover {
  background: var(--c-gold-hi);
  border-color: var(--c-gold-hi);
  color: var(--c-bg);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn--outline:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}

.btn--wa {
  background: var(--c-wa, #25d366);
  color: #fff;
  border-color: var(--c-wa, #25d366);
}
.btn--wa:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, .55);
}
.btn__icon { flex: 0 0 auto; }

/* PDF download button: subtle in section header, prominent at end of menu */
.section__header .btn--pdf { margin-top: 1.5rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-med);
}
.topbar.is-scrolled {
  background: rgba(10, 8, 6, 0.96);
  border-bottom-color: var(--c-line-soft);
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.topbar__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.topbar__logo img { height: 40px; width: auto; }
.topbar__wordmark {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-gold);
  letter-spacing: 1px;
}
.topbar__nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.topbar__nav a {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--c-cream);
  padding: .5rem 0;
  position: relative;
}
.topbar__nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: all var(--t-med);
  transform: translateX(-50%);
}
.topbar__nav a:hover { color: var(--c-gold); }
.topbar__nav a:hover::after { width: 100%; }

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.topbar__tel {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  transition: all var(--t-fast);
}
.topbar__tel:hover { border-color: var(--c-gold); background: rgba(212,175,55,.08); }

.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 2px;
  border: 1px solid var(--c-line);
  border-radius: 100px;
}
.lang-switch button {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .65rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--c-cream-mut);
  border-radius: 100px;
  transition: all var(--t-fast);
}
.lang-switch button[aria-pressed="true"] {
  background: var(--c-gold);
  color: var(--c-bg);
}
.lang-switch button:hover:not([aria-pressed="true"]) { color: var(--c-gold); }

.flag {
  width: 16px;
  height: auto;
  display: block;
  flex: 0 0 auto;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .25);
}

.topbar__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.topbar__burger span {
  width: 22px; height: 1.5px;
  background: var(--c-gold);
  transition: all var(--t-med);
}
.topbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.topbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem var(--gutter) 2rem;
  background: var(--c-bg);
  border-top: 1px solid var(--c-line-soft);
}
.mobile-menu a {
  padding: 1rem 0;
  font-size: 1.1rem;
  font-family: var(--f-display);
  color: var(--c-cream);
  border-bottom: 1px solid var(--c-line-soft);
}
.mobile-menu.is-open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1510;
  animation: kenBurns 20s ease-out infinite alternate;
  z-index: 0;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,8,6,.35) 0%, rgba(10,8,6,.85) 100%),
    linear-gradient(180deg, rgba(10,8,6,.6) 0%, rgba(10,8,6,.4) 40%, rgba(10,8,6,.95) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero__badge {
  display: inline-block;
  padding: .5rem 1.25rem;
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  border-radius: 100px;
  background: rgba(10, 8, 6, 0.5);
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.75rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  letter-spacing: .005em;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--c-cream-mut);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: center;
  padding: .5rem;
  cursor: pointer;
  transition: opacity var(--t-fast);
}
.hero__scroll:hover { opacity: .8; }
.hero__scroll-dot {
  width: 7px; height: 7px;
  background: var(--c-gold);
  transform: rotate(45deg);
  opacity: .25;
  animation: scrollDots 1.8s ease-in-out infinite;
}
.hero__scroll-dot:nth-child(1) { animation-delay: 0s; }
.hero__scroll-dot:nth-child(2) { animation-delay: .25s; opacity: .45; }
.hero__scroll-dot:nth-child(3) { animation-delay: .5s; opacity: .65; }
@keyframes scrollDots {
  0%, 100% { opacity: .15; }
  50% { opacity: 1; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  padding: 1.5rem 0;
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
.trustbar__item strong {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--c-gold);
  text-transform: uppercase;
}

/* ============================================================
   QUICK ACTIONS
   ============================================================ */
.quick-actions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.q-card {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: var(--radius);
  transition: all var(--t-med);
  position: relative;
}
.q-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.6);
}
.q-card__icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  color: var(--c-gold);
}
.q-card__title {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: .75rem;
  color: var(--c-cream);
}
.q-card__text {
  color: var(--c-cream-mut);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: #1a1510;
  border-radius: var(--radius);
  position: relative;
}
.about__img::after {
  content: "";
  position: absolute;
  inset: -20px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}
.about__text p { color: var(--c-cream-mut); margin: 0 0 1.25rem; }
.about__quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--c-gold-hi);
  margin: 1.5rem 0 2rem !important;
  padding-left: 1.5rem;
  border-left: 2px solid var(--c-gold);
}
.about__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-line-soft);
}
.pillar { text-align: left; }
.pillar__icon {
  color: var(--c-gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  height: 1.6rem;
  margin-bottom: .75rem;
}
.pillar h4 {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-gold);
  margin: 0 0 .5rem;
}
.pillar p {
  font-size: 0.88rem;
  color: var(--c-cream-mut);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.dish {
  background: var(--c-bg);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t-med);
}
.dish:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}
.dish__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #1a1510;
}
.dish__body { padding: 1.75rem; }
.dish__name {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 .5rem;
  color: var(--c-cream);
}
.dish__desc {
  font-size: 0.9rem;
  color: var(--c-cream-mut);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.dish__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line-soft);
}
.dish__price {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--c-gold);
  font-weight: 500;
}
.spice { font-size: 0.95rem; letter-spacing: 2px; }

/* ============================================================
   MENU ACCORDION
   ============================================================ */
.menu__accordion {
  max-width: 860px;
  margin: 0 auto;
}
.menu-cat {
  border-bottom: 1px solid var(--c-line-soft);
}
.menu-cat[open] { background: var(--c-bg-soft); }
.menu-cat summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-cream);
  transition: color var(--t-fast);
}
.menu-cat summary:hover { color: var(--c-gold); }
.menu-cat summary::-webkit-details-marker { display: none; }
.menu-cat__chev {
  font-family: var(--f-body);
  font-size: 1.5rem;
  color: var(--c-gold);
  transition: transform var(--t-med);
  font-weight: 300;
}
.menu-cat[open] .menu-cat__chev { transform: rotate(45deg); }
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0 1.25rem 2rem;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .6rem 0;
}
.menu-list li span:first-child {
  flex: 1;
  font-size: 0.97rem;
  color: var(--c-cream);
}
.menu-list li span:first-child::after {
  content: "";
  display: inline-block;
  flex: 1;
  margin: 0 .5rem;
  border-bottom: 1px dotted var(--c-line);
  vertical-align: middle;
  min-width: 1rem;
}
.menu-list li span:last-child {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-gold);
  font-weight: 500;
  flex-shrink: 0;
}
.menu-cat__note {
  padding: 0 1.25rem .5rem;
  color: var(--c-cream-mut);
  font-size: 0.88rem;
}
.menu__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--c-muted);
  font-style: italic;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review {
  background: var(--c-bg);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin: 0;
  position: relative;
}
.review::before {
  content: """;
  position: absolute;
  top: -1rem; left: 1.5rem;
  font-family: var(--f-display);
  font-size: 5rem;
  color: var(--c-gold);
  line-height: 1;
  opacity: .7;
}
.review__stars {
  color: var(--c-gold);
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.review p {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--c-cream);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.review footer {
  padding-top: 1rem;
  border-top: 1px solid var(--c-line-soft);
}
.review cite {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--c-gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.review footer span {
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: .5px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.g-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: #1a1510;
  cursor: pointer;
  border: 1px solid var(--c-line-soft);
  transition: all var(--t-med);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,.25);
  transition: opacity var(--t-med);
  pointer-events: none;
}
.g-item:hover { border-color: var(--c-gold); transform: scale(1.02); }
.g-item:hover::after { opacity: 0; }

/* ============================================================
   RESERVE
   ============================================================ */
.reserve__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.reserve__img {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: #1a1510;
  border-radius: var(--radius);
}
.reserve__form-wrap { max-width: 640px; }
.reserve__form-wrap .section__title { margin-bottom: .5rem; }
.reserve__form-wrap .section__subtitle { margin-bottom: 2rem; }

/* Forms */
.form { max-width: 560px; }
.form--reserve { max-width: 100%; }

.form__row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form__row--2 { grid-template-columns: 1fr 1fr; }
.form__row--3 { grid-template-columns: 1.1fr 1.4fr 1fr; }
@media (max-width: 640px) {
  .form__row--2,
  .form__row--3 { grid-template-columns: 1fr; }
}

.form__note {
  margin: -.25rem 0 1.25rem;
  font-size: 0.82rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.form__note::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E") center/contain no-repeat;
}

.field {
  margin-bottom: 1.1rem;
  position: relative;
}
.form__row .field { margin-bottom: 0; }

.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--c-gold);
  margin-bottom: .55rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  background: rgba(10, 8, 6, 0.55);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-cream);
  font-size: 1rem;
  line-height: 1.3;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--f-body);
  min-height: 52px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--c-muted); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--c-gold-lo); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(10, 8, 6, 0.9);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .18);
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.6rem;
}
.field input[type="date"] {
  cursor: pointer;
  font-family: var(--f-body);
}
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.8) sepia(1) saturate(3) hue-rotate(10deg);
  cursor: pointer;
  opacity: .85;
}
.field textarea { resize: vertical; min-height: 110px; }
.field__help {
  display: block;
  margin-top: .4rem;
  font-size: 0.78rem;
  color: var(--c-muted);
}
.field__error {
  display: block;
  min-height: 1.05rem;
  margin-top: .35rem;
  font-size: 0.78rem;
  color: var(--c-err);
  line-height: 1.2;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--c-err);
  box-shadow: 0 0 0 3px rgba(224, 107, 74, .15);
}

.field--collapse {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  background: rgba(10, 8, 6, .35);
  transition: border-color var(--t-fast);
}
.field--collapse:hover { border-color: var(--c-gold-lo); }
.field--collapse[open] { border-color: var(--c-gold-lo); }
.field--collapse summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-gold);
  list-style: none;
  display: flex;
  align-items: center;
  gap: .65rem;
  letter-spacing: .3px;
}
.field--collapse summary::-webkit-details-marker { display: none; }
.field--collapse summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  transition: transform var(--t-fast);
}
.field--collapse[open] summary::before {
  content: "−";
}
.field--collapse textarea {
  margin: 0 1.1rem 1.1rem;
  width: calc(100% - 2.2rem);
  min-height: 90px;
}

.form__hint {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--c-muted);
  text-align: center;
}
.form__status {
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4rem;
}
.form__status.is-success { color: var(--c-gold-hi); }
.form__status.is-error { color: var(--c-err); }

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  font-size: 0.75rem;
  color: var(--c-muted);
}
.trust-pills li::before {
  content: "✓";
  color: var(--c-gold);
  margin-right: .35rem;
}

/* ============================================================
   VISIT
   ============================================================ */
.visit__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.visit__address p {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--c-cream);
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--c-gold);
}
.visit__details {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem 1.5rem;
}
.visit__details dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--c-gold);
  font-weight: 500;
  padding-top: .2rem;
}
.visit__details dd {
  margin: 0;
  color: var(--c-cream);
}
.visit__map {
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-line);
  filter: grayscale(.5) brightness(.85);
  transition: filter var(--t-med);
}
.visit__map:hover { filter: grayscale(0) brightness(1); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__wrap { max-width: 720px; margin: 0 auto; }
.contact__wrap .form { max-width: 100%; }
.contact__wrap .section__header { text-align: center; margin-bottom: 2.5rem; }
.form--contact .field { margin-bottom: 1.25rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__wrap { max-width: 820px; margin: 0 auto; }
.faq__list { margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid var(--c-line-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--c-cream);
  position: relative;
  padding-right: 2.5rem;
  transition: color var(--t-fast);
}
.faq-item summary:hover { color: var(--c-gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--c-gold);
  transition: transform var(--t-med);
  font-weight: 300;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin: 0 0 1.5rem;
  color: var(--c-cream-mut);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060503;
  border-top: 1px solid var(--c-line-soft);
  padding-top: 5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer__logo img { height: 80px; width: 80px; flex: 0 0 auto; }
.footer__brand-name {
  font-family: var(--f-display);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--c-cream);
  line-height: 1;
}
.footer__tagline {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-cream-mut);
  max-width: 300px;
  line-height: 1.5;
}
.footer__col h4 {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-gold);
  margin: 0 0 1rem;
}
.footer__col p {
  color: var(--c-cream-mut);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0 0 .75rem;
}
.footer__col a { color: var(--c-cream); }
.footer__col a:hover { color: var(--c-gold); }
.footer__social { display: flex; gap: .75rem; }
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-cream);
  transition: all var(--t-fast);
}
.footer__social a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(212,175,55,.06);
}
.footer__bottom {
  border-top: 1px solid var(--c-line-soft);
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__legal {
  margin: 0;
  font-size: 0.78rem;
  color: var(--c-muted);
  letter-spacing: .5px;
}
.footer__legal a { color: var(--c-cream-mut); }
.footer__legal a:hover { color: var(--c-gold); }
.footer__sep { margin: 0 .5rem; opacity: .5; }

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  font-size: .8rem;
  letter-spacing: .5px;
  color: var(--c-cream-mut);
  background: rgba(212, 175, 55, 0.04);
  transition: all var(--t-fast);
}
.footer__credit:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
}
.footer__credit-label {
  font-weight: 400;
  opacity: .85;
}
.footer__credit-brand {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: 1.5px;
  line-height: 1;
}
.footer__credit-arrow { opacity: .7; transition: transform var(--t-fast); }
.footer__credit:hover .footer__credit-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

@media (max-width: 640px) {
  .footer__bottom-inner { justify-content: center; flex-direction: column; gap: 1rem; }
  .footer__legal { text-align: center; }
}

/* ============================================================
   MANDALA — pattern indio dorado circular, decoración ambient
   ============================================================ */
.mandala {
  position: absolute;
  aspect-ratio: 1;
  background-image: url("../assets/mandala-gold-full.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  will-change: transform;
  filter:
    brightness(1.55)
    saturate(1.2)
    drop-shadow(0 0 18px rgba(232, 199, 114, .55))
    drop-shadow(0 0 38px rgba(212, 175, 55, .25));
}

/* HERO — círculo asomando por la derecha, gira lento */
.mandala--hero {
  width: clamp(420px, 70vh, 800px);
  top: 50%;
  right: clamp(-400px, -25vw, -160px);
  opacity: .58;
  animation: mandalaSpinCenter 140s linear infinite;
}

/* RESERVE — círculo asomando por la izquierda, simétrico, más sutil */
.mandala--reserve {
  width: clamp(380px, 60vh, 700px);
  top: 50%;
  left: clamp(-360px, -22vw, -140px);
  opacity: .42;
  animation: mandalaSpinCenter 200s linear infinite reverse;
}

@keyframes mandalaSpinCenter {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Las secciones que contienen mandala necesitan overflow hidden */
.hero { overflow: hidden; }
.reserve { position: relative; overflow: hidden; }

/* Reduce motion: respeta preferencia del usuario */
@media (prefers-reduced-motion: reduce) {
  .mandala { animation: none !important; }
}

/* Mobile: ocultar el mandala (ruido visual en pantalla pequeña) */
@media (max-width: 768px) {
  .mandala { display: none; }
}

/* ============================================================
   NUESTRO LOCAL — fotos horizontales con hover zoom + lightbox
   ============================================================ */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 800px) {
  .local-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.local-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  background: var(--c-bg-soft);
  cursor: zoom-in;
  padding: 0;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.local-card:hover { border-color: var(--c-gold-lo); }
.local-card:focus-visible {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .25);
}
.local-card__img,
.local-card__img img {
  display: block;
  width: 100%;
  height: 100%;
}
.local-card__img img {
  object-fit: cover;
  transition: transform 800ms cubic-bezier(.22,.61,.36,1);
}
.local-card:hover .local-card__img img,
.local-card:focus-visible .local-card__img img {
  transform: scale(1.06);
}
.local-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,5,3,.7) 0%, rgba(6,5,3,.0) 35%, rgba(6,5,3,.0) 65%, rgba(6,5,3,.35) 100%);
  pointer-events: none;
  opacity: .55;
  transition: opacity var(--t-med);
}
.local-card:hover::after { opacity: .25; }
.local-card__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.25rem;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-cream);
  text-align: left;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   FLOATING WHATSAPP — visible en todas las resoluciones
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 95;
  width: 60px; height: 60px;
  background: var(--c-wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(37, 211, 102, .55);
  transition: transform var(--t-med), box-shadow var(--t-med);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  color: #fff;
}
.wa-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px -5px rgba(37, 211, 102, .5), 0 0 0 0 rgba(37, 211, 102, .4); }
  50% { box-shadow: 0 10px 30px -5px rgba(37, 211, 102, .5), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================================
   ANIMATIONS (scroll reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 1024px) {
  .topbar__nav { display: none; }
  .topbar__burger { display: flex; }
  .topbar__actions { margin-left: auto; gap: .75rem; }
  .topbar__wordmark { font-size: 1.2rem; }
  .topbar__inner { gap: 1rem; padding: .9rem var(--gutter); }

  .quick-actions__grid,
  .dishes-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid,
  .reserve__grid,
  .visit__grid { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .reserve__media { max-width: 500px; margin: 0 auto; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }

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

/* ============================================================
   RESPONSIVE — mobile
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-y: 4rem; }

  .topbar__logo img { height: 34px; }
  .topbar__wordmark { display: none; }
  .topbar__tel { display: none; }
  .lang-switch { display: none; }
  .topbar__actions .btn { display: none; }

  .hero { padding: 6rem 1rem 3rem; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; }

  .trustbar__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .trustbar__item strong { font-size: 0.75rem; }

  .quick-actions__grid,
  .dishes-grid,
  .reviews-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .q-card { padding: 2.25rem 1.5rem; }

  .section__title { font-size: 1.9rem; }
  .hero__title { font-size: 2.25rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding-top: 3rem; }

  .wa-float { width: 52px; height: 52px; bottom: 1rem; right: 1rem; }

  .about__img::after { inset: -10px; }

  .menu-cat summary { font-size: 1.2rem; padding: 1.2rem 1rem; }
  .menu-list { padding: 0 1rem 1.5rem; }

  .review p { font-size: 1.05rem; }
  .review { padding: 2rem 1.5rem; }
}

/* WhatsApp flotante visible en todas las resoluciones */

/* ============================================================
   PICTURE/IMG containers (hero, about, dish, reserve)
   The base classes set aspect-ratio/background — picture+img
   inside fill the container with object-fit cover.
   ============================================================ */
.hero__bg,
.about__img,
.dish__img,
.reserve__img {
  display: block;
  overflow: hidden;
}
.hero__bg img,
.hero__bg source,
.about__img img,
.dish__img img,
.reserve__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  animation: kenBurns 20s ease-out infinite alternate;
}
.about__img,
.dish__img,
.reserve__img {
  background: none;
}

/* Form status feedback */
.form__status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  min-height: 1.4em;
  color: var(--c-cream-mut);
}
.form__status.is-success {
  color: #7ed29a;
}
.form__status.is-error {
  color: var(--c-err);
}
.form__hint strong {
  color: var(--c-gold-hi);
  font-weight: 600;
}
