/* Orbit & Ember Kitchen + Bar - Digital Menu Concierge Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #080706;
  --color-primary-brand: #e0a868;
  --color-brand-glow: rgba(224, 168, 104, 0.35);
  --color-text-main: #ffffff;
  --color-text-muted: #e6dfd5;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-dark);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.notice-bar {
  background: #1d1610;
  color: var(--color-primary-brand);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(224, 168, 104, 0.25);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-primary-brand);
  color: #000;
  font-weight: 700;
  padding: 10px 20px;
  z-index: 99999;
}
.skip-link:focus { top: 16px; }

/* Header & Nav */
.site-header {
  background: rgba(8, 7, 6, 0.92);
  border-bottom: 1px solid rgba(224, 168, 104, 0.25);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.logo span {
  color: var(--color-primary-brand);
  font-weight: 300;
  font-size: 0.95rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 0.6rem;
  margin-left: 0.4rem;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: #e6dfd5;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-primary-brand);
}

.container {
  width: min(1100px, calc(100% - 3rem));
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumb-trail {
  font-size: 0.9rem;
  color: #aba296;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-trail a {
  color: var(--color-primary-brand);
  text-decoration: none;
}

/* Section Header Typography */
.section-header-center {
  text-align: center;
}

.subhead-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary-brand);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 0.4rem;
}

h1, .hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 3.6rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
}

h1 em, .hero-title em {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic !important;
  color: var(--color-primary-brand) !important;
  font-weight: 400 !important;
}

/* Natural Language Search Section */
.concierge-nl-section {
  background: rgba(18, 15, 13, 0.9);
  border: 1px solid rgba(224, 168, 104, 0.4);
  border-radius: 20px;
  padding: 2.2rem 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.85);
}

.concierge-nl-section label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.concierge-nl-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 680px;
  margin: 0 auto;
}

.concierge-nl-box input {
  flex: 1;
  min-width: 300px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(224, 168, 104, 0.5);
  border-radius: 30px;
  padding: 0.9rem 1.6rem;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-body);
}

/* Buttons */
.cta-btn {
  background: linear-gradient(135deg, #e0a868 0%, #b87b3e 100%);
  color: #080706;
  padding: 0.85rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(224, 168, 104, 0.35);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 168, 104, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(224, 168, 104, 0.4);
  color: #ffffff;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(224, 168, 104, 0.22);
  border-color: var(--color-primary-brand);
  transform: translateY(-2px);
}

/* Concierge Card Panel */
.concierge-card-panel {
  background: rgba(14, 11, 9, 0.94);
  border: 1px solid rgba(224, 168, 104, 0.45);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(26px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.95);
  max-width: 920px;
  margin: 0 auto;
}

/* Progress Header Formatting */
.exp-progress-header {
  margin-bottom: 2.2rem;
}

.progress-labels {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0.75rem !important;
  padding-bottom: 0.4rem !important;
}

.prog-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #aba296;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.prog-label.active {
  color: var(--color-primary-brand) !important;
  font-weight: 700 !important;
}

.exp-progress-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #e0a868 0%, #b87b3e 100%);
  transition: width 0.4s ease;
}

/* Stages */
.stage-num-badge {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary-brand);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.4rem;
}

.concierge-stage h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #ffffff;
  font-size: 2.3rem;
  margin-bottom: 0.4rem;
  line-height: 1.18;
}

.stage-desc {
  color: #e6dfd5;
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

/* Options Grid */
.concierge-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.concierge-options-grid.visual-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.c-option-card {
  background: rgba(22, 18, 15, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.c-option-card.img-card {
  padding: 0;
  overflow: hidden;
}

.c-option-card.img-card .card-img-wrapper {
  height: 150px;
  overflow: hidden;
}

.c-option-card.img-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-option-card.img-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.c-option-card.img-card .card-text-body {
  padding: 1.4rem;
}

.c-option-card:hover {
  background: rgba(224, 168, 104, 0.24);
  border-color: var(--color-primary-brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(224, 168, 104, 0.35);
}

.c-option-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.c-option-card p {
  color: #e6dfd5;
  font-size: 0.92rem;
  line-height: 1.45;
}

.concierge-nav-bar {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}

/* Results Section */
.concierge-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.concierge-result-card {
  background: rgba(14, 11, 9, 0.94);
  border: 1px solid rgba(224, 168, 104, 0.45);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9);
  display: flex;
  flex-direction: column;
}

.res-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.res-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.res-card-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(10, 8, 7, 0.92);
  color: var(--color-primary-brand);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--color-primary-brand);
}

.res-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.res-card-cat {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary-brand);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.4rem;
}

.res-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.res-card-desc {
  color: #e6dfd5;
  font-size: 0.98rem;
  margin-bottom: 1.4rem;
}

.res-why-box {
  background: rgba(0, 0, 0, 0.6);
  border-left: 3px solid var(--color-primary-brand);
  padding: 0.9rem 1.1rem;
  margin-top: auto;
  border-radius: 0 10px 10px 0;
}

.res-why-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-brand);
  display: block;
  margin-bottom: 0.2rem;
}

.res-why-box p {
  font-size: 0.9rem;
  color: #ffffff;
}

.res-pairing-box {
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  background: rgba(224,168,104,0.14);
  border: 1px solid rgba(224,168,104,0.35);
  border-radius: 10px;
}

.res-pairing-label {
  color: var(--color-primary-brand);
  font-weight: 700;
  font-size: 0.82rem;
  display: block;
}

.res-pairing-box p {
  color: #ffffff;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.res-card-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.75rem;
}

.concierge-disclaimer-card {
  margin-top: 2.5rem;
  padding: 1.4rem 2rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  font-size: 0.88rem;
  color: #aba296;
  text-align: center;
}

.dish-inspector-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 5, 4, 0.88);
  backdrop-filter: blur(28px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.dish-inspector-modal {
  background: rgba(14, 11, 9, 0.96);
  border: 1px solid var(--color-primary-brand);
  border-radius: 24px;
  max-width: 640px;
  width: 100%;
  padding: 2.8rem;
  box-shadow: 0 35px 90px rgba(0,0,0,0.95);
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #1a1714;
  border: 1px solid var(--color-primary-brand);
  color: #ffffff;
  padding: 1rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  transition: all 0.3s ease;
}

.toast-notification.show-toast {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.site-footer {
  background: #050403;
  border-top: 1px solid rgba(224, 168, 104, 0.25);
  padding: 3rem 0 1.5rem;
  color: #aba296;
}

.footer-container {
  width: min(1100px, calc(100% - 3rem));
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;

  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--color-primary-brand);
  font-weight: 300;
}

.portfolio-disclosure-bar {
  background: #16120e;
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  border-radius: 10px;
  border: 1px solid rgba(224, 168, 104, 0.3);
  width: min(1100px, calc(100% - 3rem));
  font-size: 0.85rem;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* Visual Option Card & Image Fit Fix */
.c-option-card {
  background: rgba(22, 18, 15, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.6rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: auto !important;
  min-height: 140px;
}

.c-option-card.img-card {
  padding: 0 !important;
  overflow: hidden;
}

.c-option-card.img-card .card-img-wrapper {
  height: 130px !important;
  width: 100%;
  overflow: hidden;
  background: #110e0c;
}

.c-option-card.img-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
}

.c-option-card.img-card .card-text-body {
  padding: 1.2rem 1.4rem 1.4rem !important;
}

.card-badge-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: block;
}


/* Global Uncropped Logo Styling */
.logo img, .brand-logo img, .header-logo img, .hero-logo img, .footer-logo img {
  object-fit: contain !important;
  max-height: 70px !important;
  width: auto !important;
  padding: 4px !important;
  display: inline-block !important;
}


/* Responsive Safeguards */
html, body {
  margin: 0; padding: 0; width: 100%; max-width: 100vw;
  overflow-x: hidden; box-sizing: border-box;
}
*, *:before, *:after { box-sizing: inherit; }
img, video, canvas, iframe { max-width: 100%; height: auto; }


/* Clean Vector Logo Display Fix */
.hero-logo-img {
  max-height: 180px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  display: inline-block !important;
}

.nav-logo-icon {
  max-height: 40px !important;
  width: auto !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.footer-logo img, img.footer-logo {
  max-height: 90px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}


/* Official Brand Finish Logo Drop-Shadow & Display Rules */
.hero-logo-img {
  max-height: 220px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: drop-shadow(0 10px 25px rgba(224, 168, 104, 0.35)) !important;
  margin-bottom: 1.2rem !important;
}

.nav-logo-icon {
  height: 38px !important;
  width: auto !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  margin-right: 0.6rem !important;
  filter: drop-shadow(0 2px 8px rgba(224, 168, 104, 0.4)) !important;
}

.footer-logo img, img.footer-logo {
  max-height: 100px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: drop-shadow(0 4px 15px rgba(224, 168, 104, 0.25)) !important;
}
