/* =========================================================
   Variables
   ========================================================= */
:root {
  /* Color Palette - Hungary restaurant & offline event venue */
  --color-bg: #f9f5ef;              /* ivory / warm light */
  --color-bg-soft: #fffaf3;         /* soft cream */
  --color-bg-elevated: #ffffff;     /* white for cards */

  --color-text: #2c2a27;            /* deep warm text */
  --color-text-soft: #5a534b;       /* secondary text */
  --color-text-muted: #8a8177;      /* subtle text */

  --color-primary: #c64533;         /* soft paprika red */
  --color-primary-soft: #f3d0c7;    /* light paprika tint */
  --color-primary-deep: #8f2f24;    /* deeper paprika */

  --color-success: #4f7c4a;         /* olive/green success */
  --color-success-soft: #e0f0e0;

  --color-warning: #d7a022;         /* pale / warm gold */
  --color-warning-soft: #fbf1d4;

  --color-danger: #b03030;          /* error state */
  --color-danger-soft: #fbe3e3;

  --color-border-subtle: #e1d7cd;   /* light stone grey border */
  --color-border-soft: #efe3d7;
  --color-border-strong: #c8b8a8;

  --color-neutral-50: #f9f5ef;
  --color-neutral-100: #f2e7db;
  --color-neutral-200: #e4d5c5;
  --color-neutral-300: #d1bfac;
  --color-neutral-400: #bda695;
  --color-neutral-500: #a18a76;
  --color-neutral-600: #7f6a56;
  --color-neutral-700: #5f4d3c;
  --color-neutral-800: #403226;
  --color-neutral-900: #261c15;

  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-display: "Playfair Display", "Times New Roman", serif;

  --font-size-xs: 0.75rem;   /* 12px */
  --font-size-sm: 0.875rem;  /* 14px */
  --font-size-base: 1rem;    /* 16px */
  --font-size-md: 1.0625rem; /* 17px slightly refined body */
  --font-size-lg: 1.125rem;  /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --font-size-5xl: 3rem;     /* 48px */

  --line-height-tight: 1.2;
  --line-height-snug: 1.35;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  /* Spacing scale (0–96px) */
  --space-0: 0;
  --space-1: 0.125rem;  /* 2px */
  --space-2: 0.25rem;   /* 4px */
  --space-3: 0.375rem;  /* 6px */
  --space-4: 0.5rem;    /* 8px */
  --space-5: 0.625rem;  /* 10px */
  --space-6: 0.75rem;   /* 12px */
  --space-7: 0.875rem;  /* 14px */
  --space-8: 1rem;      /* 16px */
  --space-9: 1.25rem;   /* 20px */
  --space-10: 1.5rem;   /* 24px */
  --space-12: 2rem;     /* 32px */
  --space-14: 2.5rem;   /* 40px */
  --space-16: 3rem;     /* 48px */
  --space-20: 4rem;     /* 64px */
  --space-24: 6rem;     /* 96px */

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows - soft daylight & evening card feel */
  --shadow-soft: 0 8px 20px rgba(26, 14, 5, 0.06);
  --shadow-card: 0 14px 40px rgba(26, 14, 5, 0.08);
  --shadow-elevated: 0 18px 55px rgba(26, 14, 5, 0.14);
  --shadow-focus: 0 0 0 3px rgba(198, 69, 51, 0.24);

  /* Transitions */
  --transition-fast: 120ms ease-out;
  --transition-base: 180ms ease-out;
  --transition-slow: 260ms ease;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Reset / Normalize
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

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

img {
  height: auto;
}

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

button {
  border: none;
  padding: 0;
  background: none;
  color: inherit;
}

textarea {
  resize: vertical;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================================================
   Base Styles
   ========================================================= */
body {
  font-family: var(--font-sans);
  font-size: var(--font-size-md);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: radial-gradient(circle at top left, #fffdf7 0, #f4e6d7 32%, #f9f5ef 60%, #f5eee5 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

p {
  margin-bottom: var(--space-6);
  color: var(--color-text-soft);
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
  line-height: var(--line-height-snug);
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.25rem, 2.6vw, 3rem);
  margin-bottom: var(--space-6);
}

h2 {
  font-size: clamp(1.875rem, 2vw, 2.25rem);
  margin-bottom: var(--space-5);
}

h3 {
  font-size: clamp(1.5rem, 1.5vw, 1.875rem);
  margin-bottom: var(--space-4);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
}

h5 {
  font-size: 1.125rem;
  margin-bottom: var(--space-2);
}

h6 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

small {
  font-size: var(--font-size-sm);
}

strong {
  font-weight: 600;
}

a {
  position: relative;
  transition: color var(--transition-base), opacity var(--transition-fast);
}

a:not(.btn):not(.button) {
  color: var(--color-primary-deep);
}

a:not(.btn):not(.button):hover {
  color: var(--color-primary);
}

a:not(.btn):not(.button):focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-sm);
}

hr {
  border: none;
  border-top: 1px solid var(--color-border-subtle);
  margin: var(--space-10) 0;
}

::selection {
  background-color: rgba(198, 69, 51, 0.14);
  color: var(--color-text);
}

/* =========================================================
   Accessibility & Focus
   ========================================================= */
:focus-visible {
  outline: 2px solid transparent;
  box-shadow: var(--shadow-focus);
  border-radius: 4px;
}

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

/* Screen reader only */
.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;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* =========================================================
   Layout Utilities
   ========================================================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

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

.section--soft {
  padding-top: var(--space-14);
  padding-bottom: var(--space-14);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.4) 0, rgba(249, 245, 239, 0.9) 100%);
}

.section-header {
  max-width: 640px;
  margin: 0 auto var(--space-10);
  text-align: center;
}

.section-header__eyebrow {
  text-transform: uppercase;
  font-size: var(--font-size-xs);
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.section-header__title {
  margin-bottom: var(--space-3);
}

.section-header__lead {
  font-size: var(--font-size-lg);
}

/* Flex helpers */
.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

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

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

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}

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

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

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

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

/* Grid helpers */
.grid {
  display: grid;
}

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

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

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

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

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

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--color-border-soft);
  background-color: rgba(255, 250, 243, 0.9);
  color: var(--color-text-soft);
}

.badge--primary {
  border-color: rgba(198, 69, 51, 0.2);
  background: rgba(198, 69, 51, 0.06);
  color: var(--color-primary-deep);
}

.badge--soft-gold {
  border-color: rgba(215, 160, 34, 0.32);
  background: rgba(251, 241, 212, 0.7);
  color: var(--color-warning);
}

/* Spacing utilities (limited, for layout tweaks) */
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-6 { margin-top: var(--space-6) !important; }
.mt-8 { margin-top: var(--space-8) !important; }
.mt-10 { margin-top: var(--space-10) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.mb-6 { margin-bottom: var(--space-6) !important; }
.mb-8 { margin-bottom: var(--space-8) !important; }
.mb-10 { margin-bottom: var(--space-10) !important; }

/* =========================================================
   Core Components
   ========================================================= */

/* Buttons - rounded reservation-style CTA */
.btn,
.button {
  --btn-bg: var(--color-primary);
  --btn-bg-hover: var(--color-primary-deep);
  --btn-bg-active: #78221a;
  --btn-color: #ffffff;
  --btn-border: transparent;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--btn-border);
  background-color: var(--btn-bg);
  color: var(--btn-color);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast),
    border-color var(--transition-base),
    opacity var(--transition-fast);
  box-shadow: 0 10px 26px rgba(139, 38, 26, 0.18);
}

.btn:hover,
.button:hover {
  background-color: var(--btn-bg-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(139, 38, 26, 0.23);
}

.btn:active,
.button:active {
  background-color: var(--btn-bg-active);
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(139, 38, 26, 0.25);
}

.btn:focus-visible,
.button:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus), 0 10px 26px rgba(139, 38, 26, 0.18);
}

.btn[disabled],
.button[disabled],
.btn.is-disabled,
.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
}

.btn--ghost {
  --btn-bg: rgba(255, 250, 243, 0.92);
  --btn-bg-hover: #ffffff;
  --btn-bg-active: #f4e6d7;
  --btn-color: var(--color-primary-deep);
  --btn-border: rgba(198, 69, 51, 0.32);
  box-shadow: 0 10px 30px rgba(26, 14, 5, 0.08);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-bg-hover: rgba(198, 69, 51, 0.06);
  --btn-bg-active: rgba(198, 69, 51, 0.12);
  --btn-color: var(--color-primary-deep);
  --btn-border: rgba(198, 69, 51, 0.6);
  box-shadow: none;
}

.btn--subtle {
  --btn-bg: rgba(255, 250, 243, 0.9);
  --btn-bg-hover: rgba(255, 250, 243, 1);
  --btn-bg-active: rgba(244, 230, 215, 1);
  --btn-color: var(--color-text);
  --btn-border: rgba(225, 215, 205, 1);
  box-shadow: var(--shadow-soft);
}

.btn--block {
  width: 100%;
}

/* Form elements */
label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-soft);
  margin-bottom: var(--space-2);
}

.input,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  background-color: rgba(255, 255, 255, 0.92);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base);
}

.input::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--color-text-muted);
}

.input:focus-visible,
select:focus-visible,
textarea:focus-visible,
input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="tel"]:focus-visible,
input[type="date"]:focus-visible,
input[type="time"]:focus-visible,
input[type="number"]:focus-visible {
  outline: none;
  border-color: rgba(198, 69, 51, 0.7);
  box-shadow: var(--shadow-focus);
  background-color: #ffffff;
}

.input[aria-invalid="true"],
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--color-danger);
  background-color: var(--color-danger-soft);
}

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

@media (min-width: 640px) {
  .form-row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-help {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.form-error {
  margin-top: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-danger);
}

/* Cards - for sections, hero collage tiles, event cards */
.card {
  position: relative;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-elevated);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
}

.card--soft {
  background: radial-gradient(circle at top left, #fffaf3 0, #ffffff 45%, #fbf3e5 100%);
}

.card--outlined {
  box-shadow: none;
  border: 1px solid rgba(200, 184, 168, 0.65);
  background: rgba(255, 255, 255, 0.9);
}

.card--pill {
  border-radius: 32px;
}

.card__header {
  margin-bottom: var(--space-5);
}

.card__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-2);
}

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

.card__body {
  font-size: var(--font-size-sm);
}

.card--floating-tag::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(198, 69, 51, 0.32);
  background: radial-gradient(circle at 30% 10%, rgba(255, 250, 243, 1) 0, rgba(243, 208, 199, 0.72) 40%, rgba(227, 156, 136, 0.9) 100%);
  opacity: 0.35;
  transform: rotate(10deg);
}

/* Hero collage label chips (e.g. "Éttermi esték") */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid rgba(225, 215, 205, 0.9);
  box-shadow: 0 8px 22px rgba(26, 14, 5, 0.14);
  font-size: var(--font-size-xs);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

.hero-label__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c64533 0, #e78e44 100%);
}

.hero-label--olive {
  border-color: rgba(79, 124, 74, 0.5);
}

.hero-label--paprika {
  border-color: rgba(198, 69, 51, 0.6);
}

.hero-label--gold {
  border-color: rgba(215, 160, 34, 0.6);
}

/* Header shell (without specific layout, just base look) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(249, 245, 239, 0.98) 0, rgba(249, 245, 239, 0.92) 70%, rgba(249, 245, 239, 0.9) 100%);
  box-shadow: 0 18px 40px rgba(26, 14, 5, 0.14);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-soft);
}

.site-nav a {
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--color-primary-deep);
  border-color: rgba(198, 69, 51, 0.45);
}

.site-nav a[aria-current="page"] {
  color: var(--color-primary-deep);
  border-color: rgba(198, 69, 51, 0.8);
}

.site-header__cta .btn,
.site-header__cta .button {
  padding-inline: 1.4rem;
}

@media (max-width: 768px) {
  .site-header__inner {
    padding-inline: var(--space-6);
  }

  .site-nav {
    display: none; /* can be toggled via JS for mobile menu */
  }
}

/* Logo emblem placeholder shell */
.logo-emblem {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  border: 1px solid rgba(200, 184, 168, 0.9);
  background:
    radial-gradient(circle at 20% 10%, #fffdf8 0, rgba(245, 226, 211, 0.9) 32%, rgba(235, 188, 160, 0.95) 72%),
    linear-gradient(145deg, rgba(198, 69, 51, 0.85) 0, rgba(215, 160, 34, 0.98) 40%, rgba(98, 122, 76, 0.98) 100%);
  padding: 6px;
  box-shadow: 0 14px 38px rgba(26, 14, 5, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-emblem__inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(248, 240, 230, 0.75);
  background: radial-gradient(circle at 20% 10%, #fffefb 0, #f9f1e7 40%, #f0e0cf 100%);
  position: relative;
  overflow: hidden;
}

/* simplistic visual guide elements hinting at plate, table marker, card corner */
.logo-emblem__plate {
  position: absolute;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  border: 1px solid rgba(206, 182, 157, 0.95);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.7);
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.logo-emblem__marker {
  position: absolute;
  width: 20px;
  height: 28px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #c64533 0, #8f2f24 100%);
  box-shadow: 0 6px 12px rgba(143, 47, 36, 0.35);
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
}

.logo-emblem__card-corner {
  position: absolute;
  width: 20px;
  height: 16px;
  border-radius: 4px 0 0 0;
  border-top: 1px solid rgba(198, 69, 51, 0.7);
  border-left: 1px solid rgba(198, 69, 51, 0.7);
  background: rgba(255, 250, 243, 0.9);
  bottom: 6px;
  right: 8px;
}

/* Simple tag for offline-only messaging */
.offline-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(98, 122, 76, 0.7);
  background-color: rgba(224, 240, 224, 0.85);
  color: var(--color-success);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.offline-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: var(--color-success);
}

/* Simple list for menu / highlights */
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding-block: 0.25rem;
}

.list-clean li::before {
  content: "";
  margin-top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c64533 0, #d7a022 100%);
  flex-shrink: 0;
}

/* CTA panel / reservation strip */
.cta-panel {
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0, rgba(251, 241, 212, 0.98) 40%, rgba(244, 230, 215, 0.98) 100%);
  border: 1px solid rgba(215, 160, 34, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  box-shadow: 0 14px 36px rgba(26, 14, 5, 0.16);
}

.cta-panel__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.cta-panel__text strong {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-primary-deep);
}

@media (max-width: 720px) {
  .cta-panel {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }
}

/* Poker info callout (offline, social) */
.poker-note {
  border-radius: 20px;
  padding: var(--space-6);
  border: 1px solid rgba(79, 124, 74, 0.5);
  background: radial-gradient(circle at top left, #f1f8f1 0, #ffffff 55%, #e0f0e0 100%);
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
}

.poker-note__title {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-success);
  margin-bottom: var(--space-2);
}

.poker-note ul {
  margin: 0;
  padding-left: 1.1rem;
}

.poker-note li {
  margin-bottom: 0.25rem;
}

/* =========================================================
   Misc
   ========================================================= */



@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
