:root {
  --bg: #120d09;
  --bg-soft: #1a130e;
  --surface: rgba(35, 25, 18, 0.82);
  --surface-strong: #241813;
  --surface-light: #f4ece3;
  --surface-card: rgba(255, 248, 241, 0.06);
  --text: #f7efe7;
  --text-dim: rgba(247, 239, 231, 0.72);
  --text-dark: #271d17;
  --line: rgba(255, 235, 214, 0.12);
  --accent: #f1683a;
  --accent-strong: #ff844f;
  --accent-soft: #ffb28f;
  --gold: #deb47a;
  --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.24);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background:
    radial-gradient(circle at 12% 14%, rgba(241, 104, 58, 0.18), transparent 20%),
    radial-gradient(circle at 90% 18%, rgba(222, 180, 122, 0.12), transparent 18%),
    linear-gradient(180deg, #100b08 0%, #16100c 42%, #1e140f 100%);
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.ambient-1 {
  top: 120px;
  left: -90px;
  width: 260px;
  height: 260px;
  background: rgba(241, 104, 58, 0.16);
}

.ambient-2 {
  right: -80px;
  top: 420px;
  width: 240px;
  height: 240px;
  background: rgba(255, 178, 143, 0.14);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(13, 9, 7, 0.65);
  backdrop-filter: blur(12px);
}

.topbar-shell,
.topbar-meta,
.header-shell,
.site-nav,
.hero-actions,
.feature-actions,
.feature-meta {
  display: flex;
  align-items: center;
}

.topbar-shell {
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.topbar-shell p {
  margin: 0;
}

.topbar-meta {
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-meta span:first-child {
  color: var(--accent-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 8, 6, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-shell {
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #160f0a;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.hero-copy h1,
.section-intro h2,
.section-head h2,
.feature-copy h2,
.reservation-copy h2,
.site-footer h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand-copy strong {
  font-size: 1.55rem;
  line-height: 0.92;
}

.brand-copy small {
  color: var(--text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.site-nav {
  gap: 28px;
}

.site-nav a {
  color: var(--text-dim);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff7f1;
  box-shadow: 0 18px 36px rgba(241, 104, 58, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero,
.story-section,
.menu-section,
.feature-section,
.gallery-section,
.reservation-section,
.events-section,
.testimonials-section,
.faq-section {
  padding: 96px 0;
}

.hero {
  padding-top: 48px;
}

.hero-shell,
.feature-shell,
.reservation-shell,
.testimonial-shell,
.footer-shell {
  display: grid;
  gap: 28px;
}

.hero-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.eyebrow,
.panel-label,
.story-tag,
.footer-eyebrow {
  margin: 0 0 14px;
  color: var(--accent-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero-copy h1,
.section-intro h2,
.section-head h2,
.feature-copy h2,
.reservation-copy h2,
.site-footer h2 {
  margin: 0;
  line-height: 0.94;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 8vw, 6.3rem);
  max-width: 11ch;
}

.hero-text,
.section-head p,
.story-panel p,
.feature-copy p,
.reservation-copy p,
.reservation-summary-card p,
.event-card p,
.testimonial-card p,
.faq-answer p,
.site-footer p {
  line-height: 1.78;
}

.hero-text {
  margin: 24px 0 0;
  max-width: 34rem;
  color: var(--text-dim);
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.hero-highlights article,
.story-panel,
.menu-card,
.event-card,
.testimonial-card,
.faq-item,
.footer-card,
.reservation-summary-card,
.voice-agent-card,
.reservation-card,
.hero-floating-card {
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.hero-highlights article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 248, 241, 0.04);
}

.hero-highlights strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.hero-highlights span {
  color: var(--text-dim);
  font-size: 0.86rem;
}

.hero-stage {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.hero-card {
  overflow: hidden;
  border-radius: 28px;
  min-height: 260px;
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.hero-card:hover img {
  transform: scale(1.04);
}

.hero-card-tall {
  grid-row: span 2;
  min-height: 560px;
}

.hero-floating-card {
  position: absolute;
  left: 24px;
  bottom: -28px;
  max-width: 320px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(25, 17, 13, 0.86);
  box-shadow: var(--shadow-xl);
}

.hero-floating-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-floating-card strong,
.story-panel h3,
.menu-card h3,
.event-card h3,
.reservation-top strong,
.panel-title,
.reservation-summary-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
}

.hero-floating-card strong {
  font-size: 1.6rem;
}

.hero-floating-card p {
  margin: 8px 0 0;
  color: var(--text-dim);
  line-height: 1.6;
}

.section-intro,
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-intro h2,
.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 13ch;
}

.section-head p {
  max-width: 34rem;
  margin: 0;
  color: var(--text-dim);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr) minmax(0, 0.9fr);
  gap: 22px;
  margin-top: 38px;
}

.story-panel,
.story-photo {
  min-height: 420px;
  border-radius: 30px;
}

.story-panel {
  padding: 34px;
  background: rgba(255, 248, 241, 0.04);
}

.story-panel-dark {
  background: linear-gradient(160deg, rgba(241, 104, 58, 0.18), rgba(37, 24, 17, 0.9));
}

.story-panel h3 {
  margin: 0 0 16px;
  font-size: 2.2rem;
}

.story-panel p {
  margin: 0;
  color: var(--text-dim);
}

.story-photo {
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-photo img {
  height: 100%;
  object-fit: cover;
}

.menu-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.filter-chip,
.date-chip,
.slot-button {
  border: 1px solid var(--line);
  background: rgba(255, 248, 241, 0.04);
  color: var(--text);
}

.filter-chip,
.date-chip {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.filter-chip.is-active,
.date-chip.is-active,
.slot-button.is-active {
  background: linear-gradient(135deg, rgba(241, 104, 58, 0.92), rgba(255, 132, 79, 0.9));
  border-color: transparent;
  color: #fff7f1;
}

.menu-grid,
.event-grid,
.reservation-fields {
  display: grid;
}

.menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.menu-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 248, 241, 0.05);
  box-shadow: var(--shadow-lg);
}

.menu-card img {
  height: 220px;
  object-fit: cover;
}

.menu-card-body {
  padding: 22px;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.menu-card h3 {
  margin: 0;
  font-size: 1.7rem;
}

.menu-card-price {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

.menu-card p {
  margin: 12px 0 0;
  color: var(--text-dim);
  line-height: 1.66;
}

.menu-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.menu-card-tags span,
.feature-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-soft);
  font-size: 0.8rem;
}

.feature-shell {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 248, 241, 0.06), rgba(255, 248, 241, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}

.feature-media {
  overflow: hidden;
  border-radius: 28px;
}

.feature-media img {
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  align-content: center;
}

.feature-copy h2,
.reservation-copy h2,
.site-footer h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.feature-copy p,
.reservation-copy p {
  margin: 18px 0 0;
  color: var(--text-dim);
}

.feature-meta {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.feature-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  gap: 22px;
  margin-top: 34px;
}

.gallery-main-card,
.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.gallery-main-card {
  min-height: 620px;
  box-shadow: var(--shadow-xl);
}

.gallery-main-card img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 11, 8, 0.35), rgba(17, 11, 8, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-overlay span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-overlay strong {
  display: block;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.gallery-overlay p {
  margin: 10px 0 0;
  color: var(--text-dim);
  line-height: 1.7;
}

.gallery-sidebar {
  display: grid;
  gap: 14px;
}

.gallery-thumb {
  min-height: 146px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.gallery-thumb:hover {
  transform: translateY(-2px);
}

.gallery-thumb.is-active {
  border-color: var(--accent-soft);
}

.gallery-thumb img {
  height: 100%;
  min-height: 146px;
  object-fit: cover;
}

.gallery-thumb-copy {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.reservation-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.reservation-copy {
  position: sticky;
  top: 112px;
}

.reservation-summary-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 248, 241, 0.05);
}

.voice-agent-card {
  margin-top: 18px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(241, 104, 58, 0.14), rgba(255, 248, 241, 0.05));
  box-shadow: var(--shadow-lg);
}

.reservation-summary-card span,
.voice-agent-card span,
.form-note,
.reservation-fields label span {
  color: var(--text-dim);
}

.reservation-summary-card strong {
  margin-top: 10px;
  font-size: 2rem;
}

.voice-agent-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.7rem;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
}

.voice-agent-card p {
  margin: 12px 0 0;
  color: var(--text-dim);
  line-height: 1.72;
}

.voice-agent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.reservation-card {
  display: grid;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 248, 241, 0.06);
  box-shadow: var(--shadow-xl);
}

.reservation-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.reservation-top strong,
.panel-title {
  margin-top: 6px;
  font-size: 1.8rem;
}

.guest-stepper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.guest-stepper button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.date-chip-row,
.slot-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.date-chip-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.date-chip {
  padding: 14px 12px;
  text-align: left;
}

.date-chip strong,
.date-chip small {
  display: block;
}

.date-chip strong {
  margin-bottom: 6px;
}

.date-chip small {
  color: inherit;
  opacity: 0.82;
}

.slot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.slot-button {
  min-height: 54px;
  border-radius: 18px;
  cursor: pointer;
}

.reservation-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reservation-fields label {
  display: grid;
  gap: 10px;
}

.reservation-fields input,
.reservation-fields select,
.reservation-fields textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.96);
  color: var(--text-dark);
  outline: none;
}

.full-span {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
}

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.event-card {
  min-height: 240px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 248, 241, 0.05);
}

.event-card-accent {
  background: linear-gradient(145deg, rgba(241, 104, 58, 0.18), rgba(255, 248, 241, 0.05));
}

.event-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.event-card h3 {
  margin: 0 0 14px;
  font-size: 2rem;
}

.event-card p {
  margin: 0;
  color: var(--text-dim);
}

.testimonial-shell {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
}

.testimonial-card {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 248, 241, 0.05);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 700;
}

.testimonial-quote {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.5;
}

.testimonial-author {
  display: block;
  margin-top: 18px;
  color: var(--text-dim);
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.05);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-trigger span:last-child {
  font-size: 1.35rem;
  color: var(--accent-soft);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--text-dim);
}

.site-footer {
  padding: 40px 0 80px;
}

.footer-shell {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 248, 241, 0.06), rgba(255, 248, 241, 0.03));
  border: 1px solid var(--line);
}

.footer-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.04);
}

.footer-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.footer-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.chat-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 13;
  min-height: 54px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(27, 18, 13, 0.94);
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chat-toggle:hover,
.chat-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
}

.chat-toggle-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff8f2;
}

.chat-toggle-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chatbot-panel {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 13;
  width: min(390px, calc(100vw - 24px));
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #d7c7b7;
  border-radius: 28px;
  background: #f6ede4;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.chatbot-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chatbot-header,
.chatbot-form {
  display: flex;
  align-items: center;
}

.chatbot-header {
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid #3d2b21;
  background: #1b120d;
  color: #f8efe6;
}

.chatbot-header strong {
  display: block;
  font-size: 1.05rem;
}

.chatbot-header span {
  display: block;
  margin-top: 6px;
  color: #cdb9a7;
  font-size: 0.83rem;
  line-height: 1.55;
  max-width: 18rem;
}

.chatbot-close {
  border: none;
  background: transparent;
  color: #f8efe6;
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.88;
}

.chatbot-body {
  display: grid;
  gap: 14px;
  max-height: 340px;
  padding: 18px;
  overflow: auto;
  background: #f6ede4;
}

.chat-message {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.chat-message p {
  margin: 0;
  line-height: 1.65;
}

.chat-message-user {
  justify-self: end;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff8f1;
  border-color: #ff8a57;
  box-shadow: 0 14px 28px rgba(241, 104, 58, 0.2);
}

.chat-message-bot {
  background: #fffaf5;
  color: #2b2019;
  border-color: #eadbcb;
  box-shadow: 0 8px 20px rgba(41, 28, 19, 0.06);
}

.chat-message-loading {
  color: #7e6656;
}

.chatbot-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 18px 18px;
  background: #f6ede4;
}

.chat-prompt {
  flex: 0 1 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #ddcbbb;
  border-radius: 999px;
  background: #fff8f1;
  color: #3a2b21;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.chat-prompt:hover,
.chat-prompt:focus-visible {
  background: #fff1e7;
  border-color: #f0b391;
  transform: translateY(-1px);
}

.chatbot-form {
  gap: 12px;
  padding: 18px;
  border-top: 1px solid #e7d7c8;
  background: #efe2d4;
}

.chatbot-form input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #dbc7b6;
  border-radius: 16px;
  background: #fffdf9;
  color: var(--text-dark);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.chatbot-form input::placeholder {
  color: #8d7b6f;
}

#chatbot-send {
  min-width: 122px;
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(8px);
  transition:
    opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-scale {
  transform: translate3d(0, 30px, 0) scale(0.97);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal-children > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-children.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-children.is-visible > *:nth-child(1) { transition-delay: 50ms; }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 120ms; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 190ms; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 260ms; }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 330ms; }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: 400ms; }

@media (max-width: 1120px) {
  .hero-shell,
  .story-grid,
  .menu-grid,
  .feature-shell,
  .gallery-layout,
  .reservation-shell,
  .event-grid,
  .testimonial-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .reservation-copy {
    position: static;
  }

  .date-chip-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav.is-open {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(21, 14, 10, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open a {
    color: var(--text);
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card-tall {
    grid-column: 1 / -1;
    min-height: 380px;
  }

  .hero-floating-card {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100vw - 24px, 1180px);
  }

  .topbar-shell,
  .topbar-meta,
  .header-shell,
  .hero-actions,
  .feature-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .story-section,
  .menu-section,
  .feature-section,
  .gallery-section,
  .reservation-section,
  .events-section,
  .testimonials-section,
  .faq-section {
    padding: 78px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-highlights,
  .menu-grid,
  .event-grid,
  .reservation-fields,
  .date-chip-row,
  .slot-grid {
    grid-template-columns: 1fr;
  }

  .feature-shell,
  .reservation-card,
  .footer-shell {
    padding: 24px;
  }

  .gallery-main-card,
  .gallery-main-card img {
    min-height: 420px;
  }

  .story-panel,
  .story-photo {
    min-height: auto;
  }

  .feature-media img {
    min-height: 360px;
  }

  .chat-toggle {
    right: 12px;
    bottom: 12px;
  }

  .chatbot-panel {
    left: 12px;
    right: 12px;
    bottom: 78px;
    width: auto;
  }

  .chatbot-form {
    align-items: stretch;
    flex-direction: column;
  }

  #chatbot-send {
    width: 100%;
  }
}

