/* ==========================================================================
   Signature Cuisine — Restaurant & Reception — Site Stylesheet
   Design tokens match the brand's fine-dining identity: deep burgundy/wine
   backgrounds, warm cream-gold accents, and the row-of-stars divider motif.
   ========================================================================== */

:root {
  /* Color */
  --bg-deep:      #2a0d0a;   /* deep near-black burgundy (darkest ramp step) */
  --bg-plum:      #3d1712;   /* mid burgundy (radial-gradient highlight stop) */
  --bg-plum-2:    #551f16;   /* lighter burgundy; hero overlay + alt-surface */
  --surface:      #341210;   /* card surface start */
  --surface-2:    #45180f;   /* card surface end */
  --gold:         #c9974f;   /* links/accents */
  --gold-soft:    #f0d9a8;   /* headings/hover */
  --flame-orange: #b5542a;   /* warm copper-wine accent (gradient start) */
  --flame-red:    #7a2419;   /* deep wine red (gradient end/shadow) */
  --text-warm:    #f6ead9;   /* body text */
  --text-muted:   #d9c2ad;   /* muted warm tan */
  --text-faint:   #a98a76;   /* faint warm taupe */
  --border-hair:  rgba(240, 217, 168, 0.25);

  /* Type */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-lift: 0 18px 40px rgba(0, 0, 0, 0.45);
}

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

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

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 50% 0%, var(--bg-plum-2) 0%, var(--bg-deep) 62%);
  background-color: var(--bg-deep);
  color: var(--text-warm);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}
a:hover { color: var(--gold-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  color: var(--text-warm);
}

p { margin: 0 0 1em 0; color: var(--text-muted); }

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

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Star divider — the recurring motif from the printed menu ---------- */
.star-divider {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 4px;
}
.star-divider.left { justify-content: flex-start; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--flame-orange), var(--flame-red));
  color: #fff8ee;
  box-shadow: 0 10px 24px rgba(122, 36, 25, 0.35);
}
.btn-primary:hover { color: #fff; box-shadow: 0 14px 30px rgba(122, 36, 25, 0.5); }

.btn-outline {
  background: transparent;
  border-color: var(--border-hair);
  color: var(--gold-soft);
}
.btn-outline:hover { border-color: var(--gold); background: rgba(227, 177, 85, 0.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(42, 13, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-hair);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-warm);
}
.brand-logo { height: 48px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--text-warm);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--gold-soft); }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold-soft);
  border: 1px solid var(--border-hair);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}
.header-call:hover { border-color: var(--gold); background: rgba(227,177,85,0.08); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-hair);
  border-radius: 8px;
  color: var(--text-warm);
  padding: 8px 10px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 20px 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(42,13,10,0.55) 0%, rgba(42,13,10,0.78) 55%, var(--bg-deep) 100%), url('/images/hero-chicken-boti.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.05);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.hero img.hero-logo { max-width: 420px; margin: 0 auto 10px; }
.hero-tagline {
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Coming Soon landing ---------- */
.coming-soon-body { overflow-x: hidden; }
.coming-soon-body main { display: block; }
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.coming-soon-inner { width: 100%; max-width: 640px; min-width: 0; }
.coming-soon-inner > * { max-width: 100%; }
.coming-soon h1, .coming-soon-lead { overflow-wrap: break-word; }
.coming-soon-logo { max-width: 360px; margin: 0 auto 26px; }
.coming-soon-eyebrow {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.coming-soon h1 {
  font-size: 40px;
  margin-bottom: 20px;
}
.coming-soon-lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto;
}
.coming-soon-contact {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 14px;
}
.coming-soon-contact a { color: var(--text-muted); }
.coming-soon-contact a:hover { color: var(--gold-soft); }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-heading h2 { font-size: 34px; }
.section-heading p { margin-top: 10px; }

.alt-surface { background: linear-gradient(180deg, transparent, rgba(85, 31, 22, 0.35), transparent); }

/* ---------- Feature / highlight cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.feature-icon {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: var(--gold);
}
.feature-card h3 { font-size: 20px; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Info / hours strip ---------- */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.info-item {
  border-left: 2px solid var(--border-hair);
  padding-left: 18px;
}
.info-item h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.info-item p { margin-bottom: 4px; color: var(--text-warm); font-size: 15px; }

/* ---------- Nashta callout ---------- */
.nashta-banner {
  border: 1px solid var(--border-hair);
  background: linear-gradient(120deg, rgba(181, 84, 42, 0.12), rgba(122, 36, 25, 0.08));
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.nashta-banner h3 { font-size: 24px; margin-bottom: 6px; }
.nashta-banner p { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 70px 0;
}
.cta-band h2 { font-size: 30px; }

/* ---------- Menu page ---------- */
.menu-hero {
  padding: 70px 0 20px;
  text-align: center;
}
.menu-hero h1 { font-size: 42px; }

.menu-card {
  max-width: 760px;
  margin: 40px auto 10px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.menu-card p.lead { color: var(--text-warm); font-size: 16px; }
.menu-card .btn-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px;
}

.menu-preview {
  max-width: 900px;
  margin: 50px auto 0;
}
.menu-preview iframe {
  width: 100%;
  height: 82vh;
  min-height: 520px;
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.menu-preview-fallback {
  display: none;
  text-align: center;
  padding: 40px;
  border: 1px dashed var(--border-hair);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

.category-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 820px;
  margin: 34px auto 0;
}
.category-chip {
  border: 1px solid var(--border-hair);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ---------- Contact page ---------- */
.contact-section { padding-top: 20px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.contact-card, .contact-info-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border-hair);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-card-heading { margin-bottom: 22px; }

.field-optional { text-transform: none; color: var(--text-faint); }

.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
  width: 100%;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--border-hair);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--text-warm);
  font-family: var(--font-body);
  font-size: 15px;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--text-faint); }
.form-row textarea { min-height: 140px; resize: vertical; }

.field-validation-error {
  display: block;
  color: #ffab91;
  font-size: 13px;
  margin-top: 6px;
}
.validation-summary-errors ul {
  margin: 0 0 18px 0;
  padding-left: 18px;
  color: #ffab91;
  font-size: 14px;
}

/* Honeypot — visually hidden but present for bots/screen-readers get an accessible label so it doesn't confuse assistive tech; real users never see it via CSS below */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.alert {
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 14.5px;
}
.alert-success {
  background: rgba(90, 168, 110, 0.12);
  border: 1px solid rgba(90, 168, 110, 0.4);
  color: #b7e3c4;
}
.alert-error {
  background: rgba(122, 36, 25, 0.12);
  border: 1px solid rgba(122, 36, 25, 0.4);
  color: #ffb4a6;
}

.contact-info-card h3 { font-size: 20px; }
.contact-info-list { list-style: none; padding: 0; margin: 22px 0 0; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border-hair);
  color: var(--text-muted);
  font-size: 14.5px;
}
.contact-info-list li:first-child { border-top: none; padding-top: 0; }
.contact-info-list strong { color: var(--text-warm); display: block; font-size: 14px; margin-bottom: 2px; }

.map-embed {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-hair);
}
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-hair);
  padding: 56px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}
.footer-brand img { height: 46px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14.5px; }
.footer-col a { color: var(--text-muted); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border-hair);
  text-align: center;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .info-strip { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(42,13,10,0.98);
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--border-hair);
    gap: 16px;
  }
  .nav-toggle { display: inline-flex; }
  .header-call { display: none; }
  .hero { min-height: 74vh; padding-top: 70px; }
  .hero img.hero-logo { max-width: 300px; }
  .coming-soon-logo { max-width: 260px; }
  .coming-soon h1 { font-size: 30px; }
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .nashta-banner { flex-direction: column; text-align: center; }
}
