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

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

* {
  margin: 0;
  padding: 0;
}

:root {
  --color-background: #FAF7F0;
  --color-surface: #F2EDE3;
  --color-surface-elevated: #fffaf1;
  --color-text: #241B17;
  --color-text-muted: #6b5b52;
  --color-primary: #7F1D1D;
  --color-primary-soft: #b63a3a;
  --color-success: #365C4A;
  --color-warning: #B08D57;
  --color-danger: #7F1D1D;
  --color-espresso: #241B17;
  --color-charcoal: #292524;
  --color-brass: #B08D57;
  --color-forest: #365C4A;
  --gray-50: #f7f4ef;
  --gray-100: #e7e0d7;
  --gray-200: #d4c9bd;
  --gray-300: #bfae9f;
  --gray-400: #a48f7d;
  --gray-500: #8a7564;
  --gray-600: #6f5c4e;
  --gray-700: #57443a;
  --gray-800: #3b2d26;
  --gray-900: #241B17;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Montserrat", "Nunito Sans", "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", "Georgia", serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.0625rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --line-height-tight: 1.2;
  --line-height-base: 1.6;
  --line-height-relaxed: 1.8;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-56: 14rem;
  --space-64: 16rem;
  --space-72: 18rem;
  --space-80: 20rem;
  --space-96: 24rem;
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 14px 40px rgba(24, 16, 10, 0.12);
  --shadow-warm: 0 18px 55px rgba(36, 27, 23, 0.2);
  --shadow-subtle: 0 1px 3px rgba(15, 10, 6, 0.15);
  --shadow-outline: 0 0 0 1px rgba(176, 141, 87, 0.6), 0 0 0 4px rgba(176, 141, 87, 0.18);
  --border-subtle: 1px solid rgba(36, 27, 23, 0.08);
  --border-strong: 1px solid rgba(36, 27, 23, 0.18);
  --transition-fast: 120ms ease-out;
  --transition-base: 180ms ease-out;
  --transition-slow: 260ms ease-out;
  --container-max: 1120px;
}

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

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: radial-gradient(circle at top, #F2EDE3 0, #FAF7F0 52%, #efe5d5 100%);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: transparent;
}

button {
  border: none;
  cursor: pointer;
}

ul, ol {
  padding-left: 1.25rem;
}

p + p {
  margin-top: var(--space-3);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-espresso);
}

h1 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

h2 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-3);
}

h3 {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-2);
}

h4 {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-2);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.35rem;
  }
}

p {
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
}

strong {
  font-weight: 600;
  color: var(--color-espresso);
}

code, pre {
  font-family: var(--font-mono);
}

.main {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section--tight {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.section--dark {
  background: radial-gradient(circle at top, #3b3029 0, #241B17 55%, #15100d 100%);
  color: #f7f1e8;
}

.section--dark p {
  color: rgba(250, 247, 240, 0.78);
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(176, 141, 87, 0.6);
  background: rgba(242, 237, 227, 0.92);
  color: var(--color-espresso);
  font-size: var(--font-size-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge--dark {
  background: rgba(24, 16, 10, 0.9);
  color: #f6eee1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  background: var(--color-primary);
  color: #fdf7ef !important;
  box-shadow: var(--shadow-soft);
  transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-base);
}

.btn:hover {
  background: #531111;
  transform: translateY(-1px);
  box-shadow: var(--shadow-warm);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-subtle);
}

.btn--outline {
  background: transparent;
  border-color: rgba(36, 27, 23, 0.22);
  color: var(--color-espresso) !important;
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(176, 141, 87, 0.12);
  border-color: rgba(176, 141, 87, 0.7);
}

.btn--ghost {
  background: rgba(24, 16, 10, 0.82);
  color: #f7f1e7 !important;
  border-color: rgba(247, 241, 231, 0.24);
}

.btn--ghost:hover {
  background: rgba(24, 16, 10, 0.96);
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: var(--font-size-xs);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(36, 27, 23, 0.22);
  background-color: rgba(250, 247, 240, 0.95);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), transform var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: rgba(107, 91, 82, 0.7);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

select {
  background-image: linear-gradient(45deg, transparent 50%, #7F1D1D 50%), linear-gradient(135deg, #7F1D1D 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(176, 141, 87, 0.9);
  box-shadow: 0 0 0 1px rgba(176, 141, 87, 0.6), 0 0 0 4px rgba(176, 141, 87, 0.18);
  background-color: #fffaf3;
}

input[disabled],
select[disabled],
textarea[disabled] {
  cursor: not-allowed;
  background-color: rgba(231, 224, 214, 0.9);
  opacity: 0.7;
}

label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text);
}

.form-field {
  margin-bottom: var(--space-4);
}

.form-note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(36, 27, 23, 0.12);
  background: linear-gradient(135deg, rgba(250, 247, 240, 0.96), rgba(242, 237, 227, 0.98));
  box-shadow: var(--shadow-soft);
  padding: var(--space-5);
}

.card--soft {
  box-shadow: var(--shadow-subtle);
}

.card--dark {
  background: radial-gradient(circle at top left, rgba(176, 141, 87, 0.18), #241B17 55%, #15100d 100%);
  border-color: rgba(244, 236, 224, 0.16);
  color: #f8f1e6;
}

.card--dark p {
  color: rgba(250, 247, 240, 0.84);
}

.card--menu {
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-md);
  background: #fdf7ef;
  border: 1px solid rgba(176, 141, 87, 0.26);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.card-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
}

.card-meta {
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(36, 27, 23, 0.09);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-main {
  flex: 1;
}

.menu-item-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: var(--font-size-sm);
}

.menu-item-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

.menu-item-price {
  font-family: var(--font-mono);
  color: var(--color-espresso);
  white-space: nowrap;
}

.menu-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  border-bottom: 1px solid rgba(36, 27, 23, 0.14);
  padding-bottom: 0.8rem;
}

.menu-section-title span {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
}

.gallery-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(36, 27, 23, 0.18);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 16, 10, 0.6), transparent 50%);
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.gallery-item--wide {
  grid-column: span 6;
}

.gallery-item--tall {
  grid-column: span 3;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .gallery-item--wide {
    grid-column: span 6;
  }
  .gallery-item--tall {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 2;
  }
}

.event-card {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: linear-gradient(140deg, rgba(250, 247, 240, 0.96), rgba(242, 237, 227, 0.96));
  border: 1px solid rgba(176, 141, 87, 0.24);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.event-meta span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.9);
  margin-right: 0.4rem;
}

.event-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}

.event-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: center;
}

.hero-eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: var(--font-size-5xl);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  max-width: 34rem;
  margin-bottom: var(--space-5);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-media {
  position: relative;
}

.hero-media-main {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(36, 27, 23, 0.2);
  box-shadow: 0 32px 80px rgba(24, 16, 10, 0.44);
}

.hero-media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-media-tag {
  position: absolute;
  left: 8%;
  bottom: 8%;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-pill);
  background: rgba(24, 16, 10, 0.86);
  border: 1px solid rgba(244, 236, 224, 0.4);
  color: #f8f1e6;
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-media-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #B08D57;
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.4);
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: rgba(250, 247, 240, 0.92);
  border-bottom: 1px solid rgba(36, 27, 23, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--font-size-sm);
}

.nav-link {
  position: relative;
  padding: 0.1rem 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(176, 141, 87, 0.4), rgba(127, 29, 29, 0.8));
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-espresso);
}

.nav-link:hover::after,
.nav-link--active::after {
  width: 100%;
}

.nav-link--active {
  color: var(--color-espresso);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(36, 27, 23, 0.18);
  background: rgba(250, 247, 240, 0.98);
}

.nav-toggle-bar {
  width: 1.1rem;
  height: 1px;
  border-radius: 999px;
  background: rgba(36, 27, 23, 0.9);
}

@media (max-width: 960px) {
  .nav-menu {
    position: fixed;
    inset-inline: 0;
    top: 3.5rem;
    padding: var(--space-4);
    padding-bottom: var(--space-6);
    background: radial-gradient(circle at top, #f4ece0 0, #FAF7F0 55%, #efe0cf 100%);
    border-bottom: 1px solid rgba(36, 27, 23, 0.1);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: scaleY(1);
    transition: opacity var(--transition-base), transform var(--transition-base);
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-cta {
    display: none;
  }
}

.footer {
  border-top: 1px solid rgba(36, 27, 23, 0.12);
  background: linear-gradient(180deg, #f4ece0 0, #FAF7F0 40%, #241B17 100%);
  color: #f6eee1;
}

.footer-top {
  padding-top: var(--space-10);
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 2.4fr repeat(4, minmax(0, 1fr));
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.footer-column-title {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-3);
  color: rgba(247, 241, 231, 0.9);
}

.footer-link {
  display: block;
  font-size: var(--font-size-sm);
  color: rgba(247, 241, 231, 0.78);
  padding: 0.2rem 0;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-disclaimer {
  font-size: var(--font-size-xs);
  color: rgba(247, 241, 231, 0.7);
  margin-top: var(--space-4);
  max-width: 40rem;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 241, 231, 0.18);
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  font-size: var(--font-size-xs);
  color: rgba(247, 241, 231, 0.7);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-outline);
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}

.badge-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(176, 141, 87, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), rgba(176, 141, 87, 0.3));
  color: var(--color-espresso);
  font-size: 0.9rem;
}

.tagline {
  font-size: var(--font-size-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.chip {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(36, 27, 23, 0.18);
  background: rgba(250, 247, 240, 0.9);
  font-size: var(--font-size-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.chip--casino {
  border-style: dashed;
  border-color: rgba(176, 141, 87, 0.6);
}

.list-plain {
  list-style: none;
  padding-left: 0;
}

.list-bullets {
  list-style: disc;
}

.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(54, 92, 74, 0.9);
  background: rgba(250, 247, 240, 0.9);
}

.kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

.stack-sm {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.stack-md {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.stack-lg {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.bg-ivory {
  background-color: #FAF7F0;
}

.bg-cream {
  background-color: #F2EDE3;
}

.bg-espresso {
  background-color: #241B17;
}

.bg-forest {
  background-color: #365C4A;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-brass {
  color: var(--color-brass);
}

.text-forest {
  color: var(--color-forest);
}

.text-espresso {
  color: var(--color-espresso);
}

.no-overflow-x {
  overflow-x: hidden;
}

.responsible-wrapper {
  background: linear-gradient(135deg, #FAF7F0, #e4efe7);
}

.responsible-card {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: #f7faf7;
  border: 1px solid rgba(54, 92, 74, 0.3);
  box-shadow: 0 18px 60px rgba(26, 46, 37, 0.25);
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid rgba(54, 92, 74, 0.8);
  color: #f6f9f6;
  background: radial-gradient(circle at 20% 0, #5b9476, #23382e);
  font-size: 0.82rem;
  font-weight: 600;
}

.table-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.poker-tag {
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(127, 29, 29, 0.7);
  background: rgba(127, 29, 29, 0.06);
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

ul {
    list-style: none !important;
}

.nav-toggle {
    flex-direction: column;
}
