@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --purple: #4A1B6D;
  --purple-light: #7B3FA0;
  --purple-pale: #F3EEF8;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --white: #FFFFFF;
  --off-white: #FAF8FC;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --border: rgba(74,27,109,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--purple);
  padding: 0 48px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(74,27,109,0.3);
}
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--purple); font-size: 12px; font-weight: 700; padding: 10px 22px; border-radius: 4px; text-decoration: none; letter-spacing: 0.06em; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-light); }

/* ── PAGE ── */
.page { display: none; padding-top: 70px; min-height: 100vh; }
.page.active { display: block; }

/* ── HERO ── */
.hero { background: var(--purple); padding: 80px 48px; position: relative; overflow: hidden; min-height: 580px; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 70px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.03) 0, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 70px);
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-tag { display: inline-block; border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; padding: 6px 18px; border-radius: 2px; text-transform: uppercase; margin-bottom: 20px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 32px; max-width: 420px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }

/* ── BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--purple); font-size: 13px; font-weight: 700; padding: 13px 28px; border-radius: 4px; text-decoration: none; letter-spacing: 0.06em; transition: background 0.2s; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; display: inline-block; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500; padding: 13px 28px; border-radius: 4px; text-decoration: none; letter-spacing: 0.06em; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-purple { background: var(--purple); color: var(--white); font-size: 13px; font-weight: 700; padding: 14px 32px; border-radius: 4px; text-decoration: none; letter-spacing: 0.06em; display: inline-block; transition: background 0.2s; }
.btn-purple:hover { background: var(--purple-light); }

/* ── TAGLINE BAR ── */
.tagline-bar { background: var(--gold); padding: 14px 48px; }
.tagline-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.tagline-inner span { font-size: 12px; font-weight: 600; color: var(--purple); letter-spacing: 0.06em; }
.tagline-inner .sep { color: rgba(74,27,109,0.4); }

/* ── SECTIONS ── */
section { padding: 80px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 400; color: var(--purple); margin-bottom: 40px; line-height: 1.2; }
.section-title em { color: var(--gold); font-style: italic; }

/* ── FEATURED GRID ── */
.featured { background: var(--off-white); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.feat-card:hover { box-shadow: 0 8px 30px rgba(74,27,109,0.1); }
.feat-img { height: 220px; overflow: hidden; }
.feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.feat-card:hover .feat-img img { transform: scale(1.04); }
.feat-body { padding: 24px; }
.feat-body h3 { font-size: 18px; font-weight: 600; color: var(--purple); margin-bottom: 10px; }
.feat-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.feat-link { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.4); }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--purple-pale); }
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center; }
.about-img img { width: 100%; max-width: 320px; border-radius: 50%; box-shadow: 0 16px 48px rgba(74,27,109,0.15); }
.about-text p { font-size: 14px; color: var(--text-light); line-height: 1.85; margin-bottom: 14px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge { background: var(--white); border: 1px solid var(--border); font-size: 12px; font-weight: 500; color: var(--purple); padding: 7px 16px; border-radius: 20px; letter-spacing: 0.04em; }

/* ── CONTACT ── */
.contact-section { background: var(--purple); padding: 80px 48px; text-align: center; }
.contact-section .section-inner { text-align: left; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 22px; }
.contact-item strong { display: block; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.contact-item span { font-size: 14px; color: rgba(255,255,255,0.55); }
.contact-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 32px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 5px; padding: 11px 14px; font-size: 13px; color: var(--white); font-family: 'Montserrat', sans-serif; outline: none; transition: border-color 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--purple); color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* ── PAGE HERO ── */
.page-hero { background: var(--purple); padding: 70px 48px; }
.ph-inner { max-width: 1100px; margin: 0 auto; }

/* ── MENU ── */
.menu-section { margin-bottom: 60px; }
.menu-section-header { margin-bottom: 28px; }
.menu-section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 400; color: var(--purple); margin-bottom: 6px; }
.menu-section-header p { font-size: 13px; color: var(--text-light); }
.menu-img-full { border-radius: 12px; overflow: hidden; margin-bottom: 28px; max-height: 400px; }
.menu-img-full img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.menu-item { background: var(--off-white); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 18px 20px; }
.menu-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.menu-item h3 { font-size: 15px; font-weight: 700; color: var(--purple); }
.farsi { font-size: 13px; font-weight: 400; color: var(--text-light); margin-right: 8px; font-family: 'Montserrat', sans-serif; }
.price { font-size: 15px; font-weight: 700; color: var(--gold); white-space: nowrap; }
.menu-item p { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 8px; }
.allergens { font-size: 11px; color: var(--purple-light); font-weight: 500; letter-spacing: 0.04em; }
.menu-divider { height: 1px; background: var(--border); margin: 48px 0; }
.menu-cta { background: var(--purple-pale); border: 1px solid var(--border); border-radius: 12px; padding: 40px; text-align: center; }
.menu-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; color: var(--purple); margin-bottom: 10px; }
.menu-cta p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }

/* ── FOOTER ── */
footer { background: #2A0D45; padding: 40px 48px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo p { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 10px; letter-spacing: 0.06em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 40px 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 44px; }
  section { padding: 60px 20px; }
  .featured-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
