/* ============ Design tokens ============ */
:root {
  --mint: #e8f3ec;
  --mint-deep: #d5ebdd;
  --forest: #1f5e3f;
  --forest-dark: #163f2a;
  --cream: #fbf8f2;
  --charcoal: #2b2b28;
  --charcoal-soft: #4d4d47;
  --white: #ffffff;
  --gold: #c99a3b;

  --font-heading: 'Baloo 2', 'Comfortaa', sans-serif;
  --font-body: 'Nunito Sans', 'Inter', sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-soft: 0 10px 30px rgba(31, 94, 63, 0.1);
  --shadow-card: 0 4px 18px rgba(31, 94, 63, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--forest);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--forest); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.5em;
}
.center { text-align: center; }
.center.section-lead { margin-left: auto; margin-right: auto; }

.section-lead {
  max-width: 640px;
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}

.veg-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--forest);
  margin: 0 2px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-small { padding: 8px 18px; font-size: 0.9rem; }
.btn-large { font-size: 1.05rem; }

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
}

.site-header-bg {
  position: absolute;
  inset: 0;
  background: rgba(232, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 94, 63, 0.08);
  z-index: -1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--forest);
}
.logo-mark {
  font-size: 1.6rem;
  line-height: 1;
}
.logo-text span { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 510;
}
.nav-toggle span {
  display: block;
  height: 3px;
  width: 26px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--forest);
  border-color: var(--gold);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 640px;
  max-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 100%;
  filter: brightness(0.88);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,63,42,0.68) 0%, rgba(22,63,42,0.5) 40%, rgba(22,63,42,0.95) 100%),
    linear-gradient(90deg, rgba(22,63,42,0.25) 0%, rgba(22,63,42,0.6) 55%, rgba(22,63,42,0.25) 100%);
  z-index: -1;
}
.hero-content {
  padding-top: 160px;
  padding-bottom: 72px;
  max-width: 760px;
}
.hero .eyebrow { color: var(--mint); opacity: 0.9; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  margin-bottom: 0.3em;
}
.hero h1 span {
  color: var(--mint);
  display: block;
  font-size: 0.6em;
  font-weight: 600;
  margin-top: 0.2em;
}
.hero-sub {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.8em;
}
.hero-copy {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 1.5em;
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.hero .btn-ghost:hover {
  background: #fff;
  color: var(--forest);
}

/* ============ Sections ============ */
.section {
  padding: 88px 0;
}
.section-alt {
  background: var(--mint);
}

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

/* ============ Pricing card ============ */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  max-width: 520px;
  margin: 0 auto 56px;
  border: 1px solid rgba(31,94,63,0.08);
}
.pricing-card h3 {
  text-align: center;
  margin-bottom: 1em;
}
.pricing-list {
  list-style: none;
  margin: 0 0 1.2em;
  padding: 0;
}
.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(31,94,63,0.15);
  font-size: 1.02rem;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list strong {
  color: var(--forest);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}
.pricing-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  margin: 0;
}

/* ============ Day tabs ============ */
.day-tabs {
  max-width: 760px;
  margin: 0 auto 64px;
}
.day-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.day-tab {
  font-family: var(--font-heading);
  font-weight: 600;
  background: var(--white);
  border: 2px solid var(--mint-deep);
  color: var(--forest);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.day-tab:hover {
  border-color: var(--forest);
}
.day-tab[aria-selected="true"] {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.day-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  border: 1px solid rgba(31,94,63,0.08);
}
.day-panel h3 { text-align: center; }

.curry-list, .extra-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 24px;
}
.curry-list li, .extra-list li {
  position: relative;
  padding-left: 22px;
  color: var(--charcoal);
}
.curry-list li::before, .extra-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.curry-list li.veg::before, .extra-list li.veg::before {
  background: var(--forest);
}
.curry-list li em, .extra-list li em {
  color: var(--charcoal-soft);
  font-size: 0.9em;
}

/* ============ Menu extras ============ */
.menu-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.menu-extra {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px;
  border: 1px solid rgba(31,94,63,0.08);
}
.menu-extra h3 { margin-bottom: 0.7em; }
.extra-list { grid-template-columns: 1fr; gap: 8px; }
.menu-photo {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.menu-photo img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* ============ Location ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
address {
  font-style: normal;
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 1.2em;
}
.location-notes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8em;
}
.location-notes li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--charcoal-soft);
}
.location-notes li::before {
  content: "📍";
  position: absolute;
  left: 0;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-width: 0;
}
.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ============ Hours ============ */
.hours-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 12px 32px;
  border: 1px solid rgba(31,94,63,0.08);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(31,94,63,0.15);
}
.hours-row:last-child { border-bottom: none; }
.hours-days {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--forest);
}
.hours-time {
  color: var(--charcoal-soft);
  font-weight: 600;
}

/* ============ Reviews / social ============ */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 12px 22px;
  text-decoration: none;
  color: var(--forest);
  font-weight: 600;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(31,94,63,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(31,94,63,0.14);
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.6;
}
.social-link svg path { fill: var(--forest); stroke: none; }
.social-link[aria-label="Tripadvisor"] svg path,
.social-link[aria-label="HappyCow"] svg path,
.social-link[aria-label="Foursquare"] svg path { fill: none; stroke: var(--forest); }

/* ============ Footer ============ */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand .logo-mark { font-size: 1.8rem; }
.footer-brand strong {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.15rem;
  display: block;
}
.footer-brand p {
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-info p {
  margin: 0 0 8px;
  font-size: 0.95rem;
}
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: background 0.15s ease;
}
.footer-social a:hover {
  background: var(--gold);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
}
.footer-social svg path { fill: #fff; stroke: none; }
.footer-social a[aria-label="Tripadvisor"] svg path,
.footer-social a[aria-label="HappyCow"] svg path,
.footer-social a[aria-label="Foursquare"] svg path { fill: none; stroke: #fff; }

.footer-tagline {
  grid-column: 1 / -1;
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--forest-dark);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
  }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) {
    display: block;
    width: 100%;
    color: #fff;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
  }
  .nav-links a:not(.btn):hover,
  .nav-links a:not(.btn).active {
    color: var(--gold);
  }
  .nav-links .btn {
    margin-top: 16px;
    width: 100%;
  }

  .hero-content { padding-top: 130px; padding-bottom: 56px; }
  .section { padding: 64px 0; }

  .menu-extra-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 420px) {
  .curry-list, .extra-list { grid-template-columns: 1fr; }
  .pricing-card, .day-panel, .menu-extra { padding: 22px; }
}
