/* ===== Custom properties ===== */
:root {
  --gold: #d9a63b;
  --gold-dark: #b3852a;
  --gold-light: #f0d9a3;
  --charcoal: #221f1c;
  --near-black: #17140f;
  --cream: #faf6ee;
  --white: #ffffff;
  --grey: #6b6459;
  --font-body: 'Poppins', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-script: 'Great Vibes', cursive;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 6px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3 { margin: 0 0 0.5em; }

section { scroll-margin-top: 84px; }

/* ===== Header ===== */
.gold-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  position: sticky;
  top: 0;
  z-index: 101;
}

.site-header {
  position: sticky;
  top: 6px;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-dark);
}

.logo-wordmark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--charcoal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  position: relative;
}

.site-nav a:not(.nav-cta) {
  padding: 4px 0;
}

.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--near-black);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.nav-cta:hover { background: var(--gold-dark); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--near-black);
}

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

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--near-black);
  transform: translateY(-2px);
}

.btn-block { width: 100%; text-align: center; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,15,11,0.55) 0%, rgba(17,15,11,0.35) 45%, rgba(17,15,11,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  color: var(--white);
  margin-bottom: 0.2em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.92);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

/* ===== Section shared ===== */
.eyebrow {
  font-family: var(--font-serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.82rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.eyebrow-light { color: var(--gold-light); }

.script-heading {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 0.5em;
}

.script-heading-light { color: var(--white); }

/* ===== Our Story ===== */
.story {
  padding: 110px 24px;
  background: var(--white);
}

.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 8px rgba(217,166,59,0.15);
  pointer-events: none;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.story-text p {
  color: var(--grey);
  font-size: 1.02rem;
  margin-bottom: 1.1em;
}

.story-text p:first-of-type { color: var(--charcoal); font-size: 1.1rem; }

/* ===== Menu ===== */
.menu {
  padding: 110px 24px;
  background: var(--cream);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(217,166,59,0.06), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(217,166,59,0.06), transparent 40%);
}

.menu-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.menu-lede {
  color: var(--grey);
  margin-bottom: 20px;
}

.dietary-key {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-categories {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 70px;
}

.menu-category { break-inside: avoid; }

.featured-category {
  grid-column: 1 / -1;
  background: var(--near-black);
  padding: 40px 44px;
  border-radius: 10px;
  color: var(--cream);
}

.featured-category .category-title { color: var(--gold); }
.featured-category .item-name { color: var(--white); }
.featured-category .item-desc { color: rgba(250,246,238,0.7); }
.featured-category .item-dots { border-bottom-color: rgba(217,166,59,0.35); }
.featured-category .item-price { color: var(--gold-light); }
.featured-category .menu-items { grid-template-columns: 1fr 1fr; display: grid; gap: 4px 40px; }

.category-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.menu-item {
  padding: 14px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.menu-item:last-child { border-bottom: none; }

.item-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.item-name {
  font-weight: 600;
  font-size: 1.02rem;
  white-space: nowrap;
}

.item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(0,0,0,0.25);
  transform: translateY(-4px);
}

.item-price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.02rem;
  white-space: nowrap;
}

.item-desc {
  margin: 4px 0 0;
  color: var(--grey);
  font-size: 0.9rem;
}

.tags {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(217,166,59,0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(217,166,59,0.3);
}

.tag-veg { background: rgba(88,138,74,0.1); color: #4c7a3f; border-color: rgba(88,138,74,0.3); }
.tag-vegan { background: rgba(58,110,140,0.1); color: #3a6e8c; border-color: rgba(58,110,140,0.3); }
.tag-gf { background: rgba(163,105,49,0.1); color: #a36931; border-color: rgba(163,105,49,0.3); }
.tag-mild { background: rgba(150,150,150,0.12); color: #6b6459; border-color: rgba(150,150,150,0.3); }

/* ===== Contact ===== */
.contact {
  position: relative;
  padding: 110px 24px 90px;
  background: var(--near-black);
  color: var(--cream);
  overflow: hidden;
}

.taj-silhouette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 900px 220px;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 220' fill='%23D9A63B'%3E%3Cpath d='M0 220V180H30V150H50V120H70V150H90V180H120V140H140V110H150V90L160 70H170V50L180 30L190 50V70H200V90L210 110H220V140H240V180H260V130H270L280 110L300 70L320 40L340 20L360 5L380 20L400 40L420 70L440 110L450 130H460V180H480V140H500V110H510V90L520 70H530V50L540 30L550 50V70H560V90L570 110H580V140H600V180H630V150H650V120H670V150H690V180H720V150H740V120H760V150H780V180H810V150H830V180H850V150H870V180H900V220Z'/%3E%3C/svg%3E");
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
}

.contact-card {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card p { color: rgba(250,246,238,0.85); margin: 0; }
.contact-card a:hover { color: var(--gold); }

.closed-note { color: rgba(250,246,238,0.5); font-size: 0.85rem; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid rgba(217,166,59,0.25);
}

.contact-form-wrap {
  background: rgba(250,246,238,0.04);
  border: 1px solid rgba(217,166,59,0.2);
  border-radius: 10px;
  padding: 36px;
}

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 1.3rem;
}

.form-note {
  color: rgba(250,246,238,0.6);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.form-note a { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 6px; }

.contact-form label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(250,246,238,0.6);
  margin-top: 12px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(217,166,59,0.3);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}

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

.contact-form .btn { margin-top: 22px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(250,246,238,0.7);
  padding: 50px 24px 30px;
  text-align: center;
}

.footer-inner { max-width: 700px; margin: 0 auto; }

.footer-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .logo-script { font-size: 1.7rem; }
.footer-brand .logo-wordmark { color: var(--cream); }

.footer-address { margin-bottom: 18px; font-size: 0.92rem; }
.footer-address a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(217,166,59,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: background 0.2s ease, color 0.2s ease;
}

.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--gold); color: var(--near-black); }

.footer-copy { font-size: 0.8rem; color: rgba(250,246,238,0.4); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-image { order: -1; }
  .menu-categories { grid-template-columns: 1fr; }
  .featured-category .menu-items { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }

  .site-nav.open { max-height: 320px; }

  .site-nav a:not(.nav-cta) {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-cta { border-radius: 0; text-align: center; padding: 16px 24px; }

  .hero-headline { font-size: clamp(2.6rem, 12vw, 4rem); }

  .story, .menu, .contact { padding: 70px 20px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 12px 16px; }
  .logo-script { font-size: 1.6rem; }
  .logo-wordmark { font-size: 0.78rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .item-name { white-space: normal; }
}
