/* =========================================================
   Aisha Maddy's Home Kitchen — Stylesheet
   ========================================================= */

:root {
  --maroon-deep: #3A0D16;
  --maroon: #5C1522;
  --maroon-soft: #74202F;
  --gold: #C9A227;
  --gold-light: #E7C568;
  --cream: #FAF3E2;
  --cream-2: #F3E9D2;
  --olive: #3F453A;
  --ink: #2B1B14;
  --ink-soft: #5A4A3F;
  --white: #FFFFFF;
  --veg: #1E7D45;
  --nonveg: #A5222A;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-script: "Dancing Script", cursive;
  --font-body: "Mulish", "Segoe UI", sans-serif;

  --shadow-card: 0 10px 30px rgba(58, 13, 22, 0.12);
  --shadow-soft: 0 4px 14px rgba(58, 13, 22, 0.08);
  --radius: 10px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--maroon-deep);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .75rem;
  color: var(--gold);
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold-light);
  display: block;
}

.section {
  padding: 72px 0;
}
.section--tight { padding: 48px 0; }
.section--maroon {
  background: linear-gradient(160deg, var(--maroon-deep), var(--maroon) 60%, var(--maroon-soft));
  color: var(--cream);
}
.section--maroon h2, .section--maroon h3 { color: var(--cream); }
.section--maroon p { color: #E7D6C9; }
.section--olive { background: var(--olive); color: var(--cream); }
.section--olive h2 { color: var(--white); }

.center { text-align: center; }

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--maroon-deep);
  box-shadow: 0 8px 20px rgba(201, 162, 39, .35);
}
.btn-outline {
  border-color: rgba(250, 243, 226, .55);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { background: rgba(250, 243, 226, .1); }
.btn-maroon {
  background: var(--maroon);
  color: var(--cream);
}
.btn-whatsapp {
  background: #2CAE52;
  color: #fff;
}
.btn-small { padding: 9px 18px; font-size: .82rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(58, 13, 22, .97);
  border-bottom: 1px solid rgba(201, 162, 39, .35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}
.brand-text .sub {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--cream);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold-light);
  border-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 39, .5);
  color: var(--gold-light);
  transition: background .15s;
}
.icon-link:hover { background: rgba(201, 162, 39, .18); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gold-light);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 30% 0%, var(--maroon-soft), var(--maroon-deep) 65%);
  color: var(--cream);
  padding: 90px 0 110px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 162, 39, .35);
  pointer-events: none;
}
.hero-logo { width: 120px; margin: 0 auto 18px; opacity: .96; }
.hero h1 { color: var(--cream); margin-bottom: 6px; }
.hero .script { margin-bottom: 6px; }
.hero .tagline-2 {
  color: #E7D6C9;
  max-width: 520px;
  margin: 0 auto 30px;
  font-size: 1.02rem;
}
.badge-row {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 40px auto 0;
  flex-wrap: wrap;
  max-width: 620px;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.badge-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(58,13,22,.18); }
.dish-card .photo { aspect-ratio: 4/3; overflow: hidden; }
.dish-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.dish-card .body { padding: 16px 18px 18px; }
.dish-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.dish-card .row h3 { font-size: 1.02rem; margin: 0; }
.dish-card .price { font-family: var(--font-display); color: var(--maroon); font-weight: 700; white-space: nowrap; }
.tag-star {
  display: inline-block;
  color: var(--gold);
  margin-left: 4px;
}

/* ============ ABOUT / OFFERING GRID ============ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(250,243,226,.06);
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(201,162,39,.25);
}
.section--maroon .info-item, .section--olive .info-item { color: var(--cream); }
.info-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-top: 7px; flex: none;
}

/* ============ STRIP (hours/location) ============ */
.strip {
  background: var(--cream-2);
  border-top: 1px solid rgba(58,13,22,.08);
  border-bottom: 1px solid rgba(58,13,22,.08);
  padding: 30px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.strip-item .label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  color: var(--maroon);
  font-weight: 800;
  margin-bottom: 6px;
}
.strip-item .value { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }

/* ============ MENU PAGE ============ */
.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  padding: 16px 0;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.menu-legend span { display: inline-flex; align-items: center; gap: 7px; }
.dot-veg, .dot-nonveg {
  width: 12px; height: 12px; border: 1.5px solid; display: inline-block; border-radius: 2px;
}
.dot-veg { border-color: var(--veg); }
.dot-veg::after { content: ""; display: block; width: 6px; height: 6px; background: var(--veg); margin: 2px; border-radius: 50%; }
.dot-nonveg { border-color: var(--nonveg); }
.dot-nonveg::after { content: ""; display: block; width: 6px; height: 6px; background: var(--nonveg); margin: 2px; border-radius: 50%; }

.category-nav {
  position: sticky;
  top: 75px;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(58,13,22,.12);
  overflow-x: auto;
  white-space: nowrap;
  padding: 12px 0;
}
.category-nav .container { display: flex; gap: 10px; }
.category-nav a {
  flex: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  font-weight: 700;
  font-size: .84rem;
}
.category-nav a:hover, .category-nav a.active { background: var(--maroon); color: var(--cream); }

.menu-category {
  padding: 56px 0;
  scroll-margin-top: 140px;
  border-bottom: 1px dashed rgba(58,13,22,.18);
}
.menu-category:last-child { border-bottom: none; }
.category-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.category-head .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.category-photo {
  float: right;
  width: 260px;
  margin: 0 0 20px 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.category-photo:not(.is-small) img { width: 100%; height: 100%; object-fit: cover; display: block; }
.category-photo.is-small {
  width: 190px;
  border-radius: 0;
  padding: 8px;
  background: var(--white);
  border: 1px solid rgba(201,162,39,.4);
  box-shadow: var(--shadow-card);
  overflow: visible;
  position: relative;
}
.category-photo.is-small img { border-radius: 2px; display: block; }
.category-photo.is-small .corner { position: absolute; width: 26px; height: 26px; }
.category-photo.is-small .corner.tl { top: -3px; left: -3px; }
.category-photo.is-small .corner.tr { top: -3px; right: -3px; transform: scaleX(-1); }
.category-photo.is-small .corner.bl { bottom: -3px; left: -3px; transform: scaleY(-1); }
.category-photo.is-small .corner.br { bottom: -3px; right: -3px; transform: scale(-1,-1); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(58,13,22,.08);
}
.menu-list li .item-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}
.menu-list li .leader {
  flex: 1;
  border-bottom: 1.5px dotted rgba(58,13,22,.3);
  transform: translateY(-4px);
}
.menu-list li .item-price {
  font-family: var(--font-display);
  color: var(--maroon);
  font-weight: 700;
}
.chili { color: var(--nonveg); }
.subhead {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.05rem;
  margin: 26px 0 8px;
}
.note-banner {
  background: var(--maroon-deep);
  color: var(--cream);
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-family: var(--font-display);
  margin-top: 18px;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px;
}
.contact-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(58,13,22,.08);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream-2); color: var(--maroon);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 4px solid var(--white); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }
.qr-box {
  text-align: center;
  background: var(--maroon-deep);
  color: var(--cream);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 20px;
}
.qr-box img { width: 130px; margin: 0 auto 10px; border-radius: 6px; }

.order-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.order-badge {
  flex: 1;
  min-width: 150px;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}
.order-badge.zomato { background: #CB202D; }
.order-badge.swiggy { background: #FC8019; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--olive);
  color: #E7E5DD;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 46px; }
.footer-brand span { font-family: var(--font-display); color: #fff; font-size: 1.15rem; }
.site-footer h4 {
  color: var(--gold-light);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; font-size: .92rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(231,229,221,.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: #C9C7BC;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(160deg, var(--maroon-deep), var(--maroon));
  color: var(--cream);
  padding: 64px 0 50px;
  text-align: center;
}
.page-hero h1 { color: var(--cream); }
.page-hero .script { margin-bottom: 8px; }

/* ============ ABOUT PAGE EXTRAS ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--maroon-deep);
  font-style: italic;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 68px 0 0 0; background: var(--maroon-deep); padding: 20px 24px; transform: translateY(-140%); transition: transform .25s ease; z-index: 90; }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 14px 4px; border-bottom: 1px solid rgba(201,162,39,.15); }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .category-photo { float: none; width: 100%; margin: 0 0 20px; }
}
@media (max-width: 560px) {
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .badge-row { gap: 20px; }
  .brand-text .name { font-size: 1rem; }
  .brand img { height: 42px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =========================================================
   DECORATIVE ARTWORK — flourishes, patterns, frames
   ========================================================= */

/* Subtle warm paisley/dot texture for cream + maroon sections */
.section, .hero, .page-hero, .strip, .site-footer {
  position: relative;
}
.texture-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image: radial-gradient(circle at 2px 2px, var(--maroon-deep) 1.4px, transparent 0);
  background-size: 26px 26px;
}
.section--maroon.texture-bg::before,
.section--olive.texture-bg::before,
.hero.texture-bg::before,
.page-hero.texture-bg::before {
  opacity: .07;
  background-image: radial-gradient(circle at 2px 2px, var(--gold-light) 1.4px, transparent 0);
}

/* Flourish divider */
.flourish-divider {
  display: flex;
  justify-content: center;
  margin: 10px auto 26px;
}
.flourish-divider img { height: 34px; width: auto; opacity: .9; }
.flourish-divider.large img { height: 52px; }
.flourish-divider.top-flourish img { height: 30px; }

/* Corner-framed photo treatment for smaller-resolution dish photos */
.framed-photo {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201,162,39,.4);
}
.framed-photo img { display: block; }
.framed-photo .corner {
  position: absolute;
  width: 34px;
  height: 34px;
  pointer-events: none;
}
.framed-photo .corner.tl { top: -4px; left: -4px; }
.framed-photo .corner.tr { top: -4px; right: -4px; }
.framed-photo .corner.bl { bottom: -4px; left: -4px; }
.framed-photo .corner.br { bottom: -4px; right: -4px; }

/* Hero corner ornaments */
.hero-frame-corner {
  position: absolute;
  width: 70px;
  height: 70px;
  opacity: .55;
  pointer-events: none;
}
.hero-frame-corner.tl { top: 18px; left: 18px; }
.hero-frame-corner.tr { top: 18px; right: 18px; transform: scaleX(-1); }
.hero-frame-corner.bl { bottom: 18px; left: 18px; transform: scaleY(-1); }
.hero-frame-corner.br { bottom: 18px; right: 18px; transform: scale(-1,-1); }

/* Circular signature medallions */
.medallion-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.medallion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.medallion-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  box-shadow: var(--shadow-card);
  position: relative;
}
.medallion-photo .inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cream);
}
.medallion-photo .inner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.medallion:hover .inner img { transform: scale(1.08); }
.medallion h3 { font-size: .96rem; margin: 0; }
.medallion .price { font-family: var(--font-display); color: var(--maroon); font-weight: 700; display: block; margin-top: 2px; }

@media (max-width: 900px) {
  .medallion-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
}
@media (max-width: 560px) {
  .medallion-grid { grid-template-columns: repeat(2, 1fr); }
  .medallion-photo { width: 110px; height: 110px; }
  .hero-frame-corner { width: 44px; height: 44px; }
}

/* Ornamental section eyebrow with flourish */
.eyebrow-flourish {
  text-align: center;
  margin-bottom: 6px;
}
.eyebrow-flourish img { height: 26px; opacity: .85; }

/* Stamp / seal badge */
.seal {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 2px dashed rgba(201,162,39,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold-light);
  font-family: var(--font-script);
  font-size: 1.15rem;
  line-height: 1.2;
  padding: 14px;
  flex: none;
}
.seal span { display: block; font-family: var(--font-body); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; font-weight: 800; }

/* Category divider flourish (menu page) */
.menu-category { position: relative; }
.category-flourish {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
.category-flourish img { height: 28px; opacity: .8; }
