/* ============================================================
   Lakeview Indian Restaurant — Design tokens
   ============================================================ */
:root {
  --charcoal-950: #1c1815;
  --charcoal-900: #241f1a;
  --maroon-900: #4a1310;
  --maroon-700: #6e1b14;
  --red-600: #a8271b;
  --red-500: #c23322;
  --saffron-600: #c97a12;
  --saffron-500: #e2952f;
  --saffron-400: #eeab4f;
  --saffron-text: #8f5410;
  --gold-300: #f3c874;
  --lake-green-800: #1f3d33;
  --lake-green-700: #2c5545;
  --cream-50: #faf6ee;
  --cream-100: #f4ead7;
  --ink-900: #221a14;
  --ink-700: #4d3c30;
  --ink-500: #7c6a5a;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-soft: 0 24px 55px -22px rgba(28, 24, 21, 0.45);
  --shadow-card: 0 12px 32px -16px rgba(28, 24, 21, 0.28);
  --max-width: 1180px;
  --header-h: 76px;
}

/* ============================================================
   Reset
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
.icon { width: 20px; height: 20px; flex-shrink: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--maroon-900);
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--saffron-text);
  margin-bottom: 10px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub { color: var(--ink-500); max-width: 560px; margin: 10px auto 0; }

/* Accessible focus ring everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--saffron-500);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--maroon-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Decorative motifs (subtle, sparing)
   ============================================================ */
.motif {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}
.motif-paisley {
  width: 220px; height: 220px;
  right: -60px; bottom: -60px;
  background: radial-gradient(circle at 30% 30%, var(--saffron-500) 0%, transparent 70%);
  border-radius: 60% 40% 55% 45% / 55% 45% 60% 40%;
  transform: rotate(-15deg);
}
.motif-mandala {
  width: 420px; height: 420px;
  left: 50%; top: -120px;
  transform: translateX(-50%);
  background: repeating-conic-gradient(from 0deg, var(--gold-300) 0deg 8deg, transparent 8deg 20deg);
  border-radius: 50%;
  opacity: 0.06;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn .icon { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--red-600), var(--maroon-700));
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-secondary {
  background: transparent;
  border-color: currentColor;
  color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.location .btn-secondary { color: var(--maroon-900); }
.location .btn-secondary:hover { background: rgba(74,19,16,0.06); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 19, 16, 0.08);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--maroon-900);
}
.brand-mark {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-500), var(--red-600));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:not(.nav-cta) { position: relative; padding: 4px 0; }
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--saffron-500);
  transition: width 0.2s;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta {
  background: var(--maroon-900);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--red-600); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--maroon-900);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-50);
    border-bottom: 1px solid rgba(74,19,16,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 480px; }
  .nav-links a { padding: 16px 24px; border-top: 1px solid rgba(74,19,16,0.06); }
  .nav-cta { margin: 16px 24px; text-align: center; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 0;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-950);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,24,21,0.55) 0%, rgba(28,24,21,0.72) 55%, rgba(28,24,21,0.92) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero .eyebrow { color: var(--gold-300); }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--saffron-400); display: block; }
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-bottom: 32px;
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gold-300);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   About
   ============================================================ */
.about { padding: 110px 0; position: relative; }
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.img-placeholder {
  background: linear-gradient(150deg, var(--cream-100), #e9dcc4);
  border: 1px dashed var(--saffron-600);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--saffron-text);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-100);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-img { aspect-ratio: 4/5; }
.about-copy p { margin-bottom: 18px; color: var(--ink-700); }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(74,19,16,0.12);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--red-600);
}
.stat-label { font-size: 0.85rem; color: var(--ink-500); }

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about { padding: 70px 0; }
}

/* ============================================================
   Highlights
   ============================================================ */
.highlights { padding: 100px 0; background: var(--cream-100); }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.highlight-img { aspect-ratio: 16/11; border-radius: 0; }
.highlight-body { padding: 22px; }
.highlight-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.highlight-top h3 { font-size: 1.1rem; }
.price { font-weight: 700; color: var(--red-600); white-space: nowrap; font-family: var(--font-display); }
.highlight-body p { color: var(--ink-500); font-size: 0.92rem; margin-bottom: 14px; }
.badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  background: var(--saffron-500);
  color: var(--white);
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 6px;
}
.badge-veg { background: var(--lake-green-700); }

.spice-level {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-500);
}
.spice-level .icon { width: 14px; height: 14px; }
.spice-mild .icon { color: var(--saffron-500); }
.spice-medium .icon { color: var(--red-500); }
.spice-hot .icon { color: var(--maroon-700); }

@media (max-width: 980px) {
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .highlight-grid { grid-template-columns: 1fr; }
  .highlights { padding: 70px 0; }
}

/* ============================================================
   Full Menu / Accordion
   ============================================================ */
.full-menu { padding: 100px 0; }
.accordion { max-width: 800px; margin: 50px auto 0; }
.accordion-item {
  border-bottom: 1px solid rgba(74,19,16,0.14);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon-900);
}
.chevron {
  width: 12px; height: 12px;
  border-right: 2px solid var(--saffron-600);
  border-bottom: 2px solid var(--saffron-600);
  transform: rotate(45deg);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(-135deg); }
.accordion-panel { padding: 0 4px 24px; }
.menu-placeholder-note {
  font-size: 0.82rem;
  color: var(--saffron-text);
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
}
.dish-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  font-size: 0.98rem;
}
.dish-name { color: var(--ink-900); font-weight: 500; }
.dots {
  flex: 1;
  border-bottom: 1px dotted rgba(74,19,16,0.25);
  transform: translateY(-4px);
}
.dish-price { font-weight: 700; color: var(--red-600); font-family: var(--font-display); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--maroon-900); color: var(--white); position: relative; overflow: hidden; }
.testimonials .eyebrow { color: var(--gold-300); }
.testimonials h2 { color: var(--white); }
.stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 20px 0 46px;
  color: var(--gold-300);
}
.star { width: 22px; height: 22px; }
.stars-text { margin-left: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 14px;
  line-height: 1.4;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-300);
  font-size: 0.88rem;
}
@media (max-width: 980px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 70px 0; }
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery { padding: 100px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.gallery-img { aspect-ratio: 1/1; border-radius: var(--radius-md); font-size: 0.78rem; }
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Location
   ============================================================ */
.location { padding: 100px 0; background: var(--cream-100); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-list { margin: 26px 0 32px; display: flex; flex-direction: column; gap: 20px; }
.info-list li { display: flex; align-items: flex-start; gap: 14px; }
.info-list .icon { color: var(--red-600); margin-top: 3px; }
.info-list a { text-decoration: underline; text-underline-offset: 3px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.map-placeholder {
  position: relative;
  aspect-ratio: 4/3.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
}
.map-placeholder .map-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.05);
}
.map-placeholder span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 0.85rem;
  padding: 20px;
  background: linear-gradient(0deg, rgba(28,24,21,0.85), transparent);
  width: 100%;
}
@media (max-width: 860px) {
  .location-inner { grid-template-columns: 1fr; gap: 36px; }
  .location { padding: 70px 0; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--charcoal-950); color: rgba(255,255,255,0.75); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 70px 0 50px;
}
.brand-footer { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; margin-bottom: 20px; }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, transform 0.2s;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--saffron-500); transform: translateY(-2px); }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-nav h4, .footer-contact h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.footer-nav a, .footer-contact a { font-size: 0.92rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--saffron-400); }
.footer-contact p { font-size: 0.92rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Scroll-reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
