@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,600;1,6..96,400&family=Roboto:wght@300;400;500&display=swap");
.of {
  --of-bg: #f7f6f5;
  --of-bg-elevated: #ffffff;
  --of-bg-sunken: #f0efed;
  --of-bg-overlay: rgba(32, 33, 35, 0.6);
  --of-text-primary: #202123;
  --of-text-secondary: #77726c;
  --of-text-muted: #bcb5b1;
  --of-text-inverse: #ffffff;
  --of-accent: #cb334f;
  --of-accent-hover: #b22a43;
  --of-accent-light: rgba(203, 51, 79, 0.08);
  --of-accent-ring: rgba(203, 51, 79, 0.25);
  --of-burgundy: #821427;
  --of-burgundy-light: rgba(130, 20, 39, 0.1);
  --of-sage: #9CA998;
  --of-sage-light: rgba(156, 169, 152, 0.12);
  --of-forest: #67876a;
  --of-forest-light: rgba(103, 135, 106, 0.1);
  --of-gold: #fdc334;
  --of-gold-light: rgba(253, 195, 52, 0.12);
  --of-white: #ffffff;
  --of-black: #000000;
  --of-border: #e8e5e2;
  --of-border-strong: #d4d0cc;
  --of-font-display: 'Bodoni Moda', serif;
  --of-font-body: 'Roboto', sans-serif;
  --of-font-size-body: clamp(15px, 2vw, 18px);
  --of-font-size-sm: 13px;
  --of-font-size-xs: 11px;
  --of-font-size-lg: clamp(20px, 2.5vw, 24px);
  --of-font-size-xl: clamp(28px, 4vw, 40px);
  --of-font-size-2xl: clamp(36px, 5vw, 56px);
  --of-line-height: 1.6;
  --of-line-height-tight: 1.2;
  --of-letter-spacing-wide: 4px;
  --of-letter-spacing-medium: 2px;
  --of-letter-spacing-subtle: 0.5px;
  --of-space-3xs: 0.44rem;
  --of-space-2xs: 0.67rem;
  --of-space-xs: 1rem;
  --of-space-sm: 1.5rem;
  --of-space-md: 2.25rem;
  --of-space-lg: 3.38rem;
  --of-space-xl: 5.06rem;
  --of-radius-none: 0px;
  --of-radius-pill: 9999px;
  --of-radius-sm: 4px;
  --of-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --of-shadow-md: 4px 4px 8px rgba(0, 0, 0, 0.1);
  --of-shadow-lg: 6px 6px 9px rgba(0, 0, 0, 0.2);
  --of-shadow-elevated: 0 8px 30px rgba(0, 0, 0, 0.12);
  --of-transition-fast: 0.15s ease;
  --of-transition-base: 0.25s ease;
  --of-transition-slow: 0.4s ease;
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-body);
  font-weight: 400;
  line-height: var(--of-line-height);
  color: var(--of-text-primary);
  background-color: var(--of-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.of.dark,
.of[data-theme=dark] {
  --of-bg: #1a1a1c;
  --of-bg-elevated: #242426;
  --of-bg-sunken: #121213;
  --of-bg-overlay: rgba(0, 0, 0, 0.7);
  --of-text-primary: #f0efed;
  --of-text-secondary: #a8a29e;
  --of-text-muted: #6b6560;
  --of-text-inverse: #202123;
  --of-accent: #e0475f;
  --of-accent-hover: #cb334f;
  --of-accent-light: rgba(224, 71, 95, 0.12);
  --of-accent-ring: rgba(224, 71, 95, 0.3);
  --of-burgundy-light: rgba(130, 20, 39, 0.2);
  --of-sage-light: rgba(156, 169, 152, 0.15);
  --of-forest-light: rgba(103, 135, 106, 0.15);
  --of-gold-light: rgba(253, 195, 52, 0.15);
  --of-border: #333335;
  --of-border-strong: #4a4a4d;
  --of-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
  --of-shadow-md: 4px 4px 8px rgba(0, 0, 0, 0.3);
  --of-shadow-lg: 6px 6px 9px rgba(0, 0, 0, 0.4);
  --of-shadow-elevated: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.of-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--of-space-3xs);
  padding: 12px 28px;
  font-family: var(--of-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--of-letter-spacing-wide);
  text-transform: uppercase;
  line-height: 1;
  color: var(--of-white);
  background-color: var(--of-accent);
  border: 2px solid var(--of-accent);
  border-radius: var(--of-radius-none);
  cursor: pointer;
  transition: background-color var(--of-transition-base), color var(--of-transition-base), border-color var(--of-transition-base), box-shadow var(--of-transition-base);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}
.of-btn:hover {
  background-color: var(--of-white);
  color: var(--of-accent);
  border-color: var(--of-accent);
}
.of-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--of-accent-ring);
}
.of-btn:active {
  background-color: var(--of-accent-hover);
  color: var(--of-white);
  border-color: var(--of-accent-hover);
}
.of-btn:disabled, .of-btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.of-btn--outlined {
  background-color: transparent;
  color: var(--of-accent);
  border-color: var(--of-accent);
}
.of-btn--outlined:hover {
  background-color: var(--of-accent);
  color: var(--of-white);
}
.of-btn--outlined:active {
  background-color: var(--of-accent-hover);
  border-color: var(--of-accent-hover);
  color: var(--of-white);
}
.of-btn--text {
  background-color: transparent;
  color: var(--of-accent);
  border-color: transparent;
  padding-left: var(--of-space-3xs);
  padding-right: var(--of-space-3xs);
}
.of-btn--text:hover {
  background-color: var(--of-accent-light);
  color: var(--of-accent-hover);
  border-color: transparent;
}
.of-btn--text:active {
  background-color: var(--of-accent-light);
  color: var(--of-accent-hover);
}
.of-btn--gold {
  background-color: var(--of-gold);
  color: var(--of-text-primary);
  border-color: var(--of-gold);
}
.of-btn--gold:hover {
  background-color: transparent;
  color: var(--of-gold);
  border-color: var(--of-gold);
}
.of-btn--gold:active {
  background-color: #e5af2a;
  border-color: #e5af2a;
  color: var(--of-text-primary);
}
.of-btn--gold:focus-visible {
  box-shadow: 0 0 0 3px var(--of-gold-light);
}
.of-btn--dark {
  background-color: var(--of-text-primary);
  color: var(--of-white);
  border-color: var(--of-text-primary);
}
.of-btn--dark:hover {
  background-color: transparent;
  color: var(--of-text-primary);
  border-color: var(--of-text-primary);
}
.of-btn--dark:active {
  background-color: var(--of-black);
  border-color: var(--of-black);
  color: var(--of-white);
}
.of-btn--sm {
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 3px;
}
.of-btn--lg {
  padding: 16px 40px;
  font-size: 15px;
  letter-spacing: 5px;
}

.of-card {
  position: relative;
  background-color: var(--of-bg-elevated);
  border-radius: var(--of-radius-none);
  padding: var(--of-space-md);
  transition: box-shadow var(--of-transition-base), transform var(--of-transition-base);
}
.of-card__media {
  margin: calc(-1 * var(--of-space-md));
  margin-bottom: var(--of-space-sm);
  overflow: hidden;
}
.of-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.of-card__title {
  font-family: var(--of-font-display);
  font-size: var(--of-font-size-lg);
  font-weight: 400;
  line-height: var(--of-line-height-tight);
  color: var(--of-text-primary);
  margin: 0 0 var(--of-space-3xs);
}
.of-card__subtitle {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-sm);
  font-weight: 400;
  letter-spacing: var(--of-letter-spacing-medium);
  text-transform: uppercase;
  color: var(--of-text-muted);
  margin: 0 0 var(--of-space-xs);
}
.of-card__body {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-body);
  font-weight: 300;
  line-height: var(--of-line-height);
  color: var(--of-text-secondary);
  margin: 0 0 var(--of-space-sm);
}
.of-card__body:last-child {
  margin-bottom: 0;
}
.of-card__actions {
  display: flex;
  align-items: center;
  gap: var(--of-space-xs);
  margin-top: var(--of-space-sm);
  padding-top: var(--of-space-sm);
  border-top: 1px solid var(--of-border);
}
.of-card--elevated {
  box-shadow: var(--of-shadow-md);
}
.of-card--elevated:hover {
  box-shadow: var(--of-shadow-lg);
  transform: translateY(-2px);
}
.of-card--bordered {
  border: 1px solid var(--of-border-strong);
}
.of-card--image {
  padding: 0;
  overflow: hidden;
}
.of-card--image .of-card__media {
  margin: 0;
  margin-bottom: 0;
  position: relative;
}
.of-card--image .of-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
}
.of-card--image .of-card__media img {
  aspect-ratio: 4/3;
}
.of-card--image .of-card__title,
.of-card--image .of-card__subtitle,
.of-card--image .of-card__body {
  position: relative;
  z-index: 1;
}
.of-card--image .of-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--of-space-md);
  z-index: 2;
}
.of-card--image .of-card__overlay .of-card__title {
  color: var(--of-white);
}
.of-card--image .of-card__overlay .of-card__subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.of-card--image .of-card__overlay .of-card__body {
  color: rgba(255, 255, 255, 0.85);
}
.of-card--image .of-card__content {
  padding: var(--of-space-sm) var(--of-space-md) var(--of-space-md);
}
.of-card--image .of-card__actions {
  margin-left: var(--of-space-md);
  margin-right: var(--of-space-md);
  margin-bottom: var(--of-space-md);
}

.of-field {
  display: flex;
  flex-direction: column;
  gap: var(--of-space-3xs);
  margin-bottom: var(--of-space-sm);
}
.of-field__label {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-xs);
  font-weight: 500;
  letter-spacing: var(--of-letter-spacing-medium);
  text-transform: uppercase;
  color: var(--of-text-muted);
  line-height: 1;
}
.of-field__hint {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-xs);
  font-weight: 300;
  color: var(--of-text-muted);
  margin-top: var(--of-space-3xs);
}
.of-field__error {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-xs);
  font-weight: 400;
  color: var(--of-accent);
  margin-top: var(--of-space-3xs);
}
.of-field.is-error .of-input,
.of-field.is-error .of-select,
.of-field.is-error .of-textarea {
  border-bottom-color: var(--of-accent);
}
.of-field.is-error .of-field__label {
  color: var(--of-accent);
}

.of-textarea, .of-select, .of-input {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-body);
  font-weight: 300;
  line-height: var(--of-line-height);
  color: var(--of-text-primary);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--of-text-muted);
  border-radius: 0;
  padding: var(--of-space-2xs) 0;
  width: 100%;
  transition: border-color var(--of-transition-base), box-shadow var(--of-transition-base);
  outline: none;
  -webkit-appearance: none;
}
.of-textarea::placeholder, .of-select::placeholder, .of-input::placeholder {
  color: var(--of-text-muted);
  font-weight: 300;
}
.of-textarea:hover, .of-select:hover, .of-input:hover {
  border-bottom-color: var(--of-text-secondary);
}
.of-textarea:focus, .of-select:focus, .of-input:focus {
  border-bottom-color: var(--of-accent);
  box-shadow: 0 1px 0 0 var(--of-accent);
}
.of-textarea:disabled, .of-select:disabled, .of-input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-bottom-style: dashed;
}

.of-select {
  cursor: pointer;
  padding-right: var(--of-space-sm);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2377726c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
}
.of-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cb334f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.of-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: var(--of-line-height);
}

.of-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--of-space-3xs);
  padding: 4px 14px;
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-xs);
  font-weight: 500;
  letter-spacing: var(--of-letter-spacing-medium);
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--of-text-secondary);
  background-color: var(--of-bg-sunken);
  border-radius: var(--of-radius-pill);
  white-space: nowrap;
  user-select: none;
}
.of-badge--wine {
  color: var(--of-accent);
  background-color: var(--of-accent-light);
}
.of-badge--gold {
  color: #9a7410;
  background-color: var(--of-gold-light);
}
.of-badge--sage {
  color: #6b7f68;
  background-color: var(--of-sage-light);
}
.of-badge--dark {
  color: var(--of-white);
  background-color: var(--of-text-primary);
}

.of-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--of-bg-sunken);
  color: var(--of-text-secondary);
  font-family: var(--of-font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  overflow: hidden;
  flex-shrink: 0;
  user-select: none;
}
.of-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.of-avatar--sm {
  width: 32px;
  height: 32px;
  font-size: 13px;
}
.of-avatar--lg {
  width: 64px;
  height: 64px;
  font-size: 24px;
}
.of-avatar--xl {
  width: 96px;
  height: 96px;
  font-size: 36px;
}
.of-avatar--wine {
  background-color: var(--of-accent-light);
  color: var(--of-accent);
}
.of-avatar--sage {
  background-color: var(--of-sage-light);
  color: var(--of-forest);
}
.of-avatar--gold {
  background-color: var(--of-gold-light);
  color: #9a7410;
}
.of-avatar--dark {
  background-color: var(--of-text-primary);
  color: var(--of-white);
}
.of-avatar--bordered {
  border: 2px solid var(--of-border);
}
.of-avatar-group {
  display: flex;
}
.of-avatar-group .of-avatar {
  border: 2px solid var(--of-bg-elevated);
  margin-left: -12px;
}
.of-avatar-group .of-avatar:first-child {
  margin-left: 0;
}

.of-alert {
  position: relative;
  padding: var(--of-space-sm) var(--of-space-sm) var(--of-space-sm) var(--of-space-md);
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-body);
  font-weight: 300;
  line-height: var(--of-line-height);
  color: var(--of-text-primary);
  background-color: var(--of-bg-elevated);
  border-left: 3px solid var(--of-border-strong);
  border-radius: 0;
}
.of-alert__title {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-sm);
  font-weight: 500;
  letter-spacing: var(--of-letter-spacing-medium);
  text-transform: uppercase;
  margin: 0 0 var(--of-space-3xs);
}
.of-alert__body {
  color: var(--of-text-secondary);
  margin: 0;
}
.of-alert__close {
  position: absolute;
  top: var(--of-space-sm);
  right: var(--of-space-sm);
  background: none;
  border: none;
  color: var(--of-text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  transition: color var(--of-transition-fast);
}
.of-alert__close:hover {
  color: var(--of-text-primary);
}
.of-alert--info {
  border-left-color: var(--of-sage);
  background-color: var(--of-sage-light);
}
.of-alert--info .of-alert__title {
  color: var(--of-forest);
}
.of-alert--warning {
  border-left-color: var(--of-gold);
  background-color: var(--of-gold-light);
}
.of-alert--warning .of-alert__title {
  color: #9a7410;
}
.of-alert--error {
  border-left-color: var(--of-accent);
  background-color: var(--of-accent-light);
}
.of-alert--error .of-alert__title {
  color: var(--of-accent);
}
.of-alert--success {
  border-left-color: var(--of-forest);
  background-color: var(--of-forest-light);
}
.of-alert--success .of-alert__title {
  color: var(--of-forest);
}

.of-faq {
  width: 100%;
}
.of-faq__item {
  border-bottom: 1px solid var(--of-text-muted);
}
.of-faq__item:first-child {
  border-top: 1px solid var(--of-text-muted);
}
.of-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--of-space-xs);
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--of-font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: var(--of-line-height-tight);
  color: var(--of-text-primary);
  transition: color var(--of-transition-fast);
}
.of-faq__question:hover {
  color: var(--of-accent);
}
.of-faq__question:focus-visible {
  outline: none;
  color: var(--of-accent);
}
.of-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--of-text-muted);
  transition: transform var(--of-transition-slow);
}
.of-faq__icon::before, .of-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  transition: transform var(--of-transition-slow);
}
.of-faq__icon::before {
  width: 16px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.of-faq__icon::after {
  width: 1.5px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.of-faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}
.of-faq__answer p {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-body);
  font-weight: 300;
  line-height: var(--of-line-height);
  color: var(--of-text-secondary);
  margin: 0;
}
.of-faq__item.is-open .of-faq__question {
  color: var(--of-accent);
}
.of-faq__item.is-open .of-faq__icon {
  transform: rotate(45deg);
  color: var(--of-accent);
}
.of-faq__item.is-open .of-faq__answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 0 20px 0;
}

.of-calendar {
  width: 100%;
  max-width: 360px;
  font-family: var(--of-font-body);
}
.of-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--of-space-sm);
  padding-bottom: var(--of-space-2xs);
}
.of-calendar__month-year {
  font-family: var(--of-font-display);
  font-size: var(--of-font-size-lg);
  font-weight: 400;
  color: var(--of-text-primary);
  line-height: 1;
}
.of-calendar__nav {
  display: flex;
  align-items: center;
  gap: var(--of-space-3xs);
}
.of-calendar__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--of-border);
  border-radius: 0;
  color: var(--of-text-secondary);
  cursor: pointer;
  font-size: 16px;
  transition: color var(--of-transition-fast), border-color var(--of-transition-fast), background-color var(--of-transition-fast);
}
.of-calendar__nav-btn:hover {
  color: var(--of-accent);
  border-color: var(--of-accent);
}
.of-calendar__nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--of-accent-ring);
}
.of-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--of-space-3xs);
}
.of-calendar__weekday {
  text-align: center;
  font-size: var(--of-font-size-xs);
  font-weight: 500;
  letter-spacing: var(--of-letter-spacing-subtle);
  text-transform: uppercase;
  color: var(--of-text-muted);
  padding: var(--of-space-3xs) 0;
}
.of-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.of-calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto;
  font-size: var(--of-font-size-sm);
  font-weight: 400;
  color: var(--of-text-primary);
  background: none;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background-color var(--of-transition-fast), color var(--of-transition-fast), border-color var(--of-transition-fast), box-shadow var(--of-transition-fast);
  user-select: none;
}
.of-calendar__day:hover {
  background-color: var(--of-accent-light);
  color: var(--of-accent);
}
.of-calendar__day:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--of-accent-ring);
}
.of-calendar__day--today {
  border-color: var(--of-accent);
  font-weight: 500;
}
.of-calendar__day--selected {
  background-color: var(--of-accent);
  color: var(--of-white);
  font-weight: 500;
  box-shadow: var(--of-shadow-sm);
}
.of-calendar__day--selected:hover {
  background-color: var(--of-accent-hover);
  color: var(--of-white);
}
.of-calendar__day--disabled {
  color: var(--of-text-muted);
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.of-calendar__day--unavailable {
  color: var(--of-text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}
.of-calendar__day--unavailable:hover {
  background: none;
  color: var(--of-text-muted);
}
.of-calendar__day--empty {
  cursor: default;
  pointer-events: none;
}

.of-reservation {
  width: 100%;
  max-width: 680px;
  font-family: var(--of-font-body);
}
.of-reservation__header {
  margin-bottom: var(--of-space-lg);
  text-align: center;
}
.of-reservation__title {
  font-family: var(--of-font-display);
  font-size: var(--of-font-size-2xl);
  font-weight: 400;
  line-height: var(--of-line-height-tight);
  color: var(--of-text-primary);
  margin: 0 0 var(--of-space-2xs);
}
.of-reservation__subtitle {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-body);
  font-weight: 300;
  color: var(--of-text-secondary);
  margin: 0;
}
.of-reservation__form {
  margin-bottom: var(--of-space-md);
}
.of-reservation__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--of-space-sm);
  margin-bottom: var(--of-space-2xs);
}
@media (max-width: 600px) {
  .of-reservation__row {
    grid-template-columns: 1fr;
  }
}
.of-reservation__group {
  margin-bottom: var(--of-space-2xs);
}
.of-reservation__section-label {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-xs);
  font-weight: 500;
  letter-spacing: var(--of-letter-spacing-wide);
  text-transform: uppercase;
  color: var(--of-text-muted);
  margin: var(--of-space-md) 0 var(--of-space-xs);
}
.of-reservation__time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: var(--of-space-2xs);
  margin-bottom: var(--of-space-md);
}
.of-reservation__slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-sm);
  font-weight: 400;
  letter-spacing: var(--of-letter-spacing-subtle);
  color: var(--of-text-secondary);
  background-color: transparent;
  border: 1px solid var(--of-border-strong);
  border-radius: var(--of-radius-pill);
  cursor: pointer;
  transition: background-color var(--of-transition-fast), color var(--of-transition-fast), border-color var(--of-transition-fast), box-shadow var(--of-transition-fast);
  user-select: none;
}
.of-reservation__slot:hover {
  border-color: var(--of-accent);
  color: var(--of-accent);
}
.of-reservation__slot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--of-accent-ring);
}
.of-reservation__slot--selected {
  background-color: var(--of-accent);
  color: var(--of-white);
  border-color: var(--of-accent);
}
.of-reservation__slot--selected:hover {
  background-color: var(--of-accent-hover);
  border-color: var(--of-accent-hover);
  color: var(--of-white);
}
.of-reservation__slot--unavailable {
  color: var(--of-text-muted);
  border-color: var(--of-border);
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.of-reservation__guests {
  display: flex;
  align-items: center;
  gap: var(--of-space-xs);
  margin-bottom: var(--of-space-md);
}
.of-reservation__guest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--of-border-strong);
  border-radius: 0;
  color: var(--of-text-secondary);
  font-size: 20px;
  cursor: pointer;
  transition: color var(--of-transition-fast), border-color var(--of-transition-fast);
}
.of-reservation__guest-btn:hover {
  color: var(--of-accent);
  border-color: var(--of-accent);
}
.of-reservation__guest-count {
  font-family: var(--of-font-display);
  font-size: var(--of-font-size-lg);
  font-weight: 400;
  color: var(--of-text-primary);
  min-width: 48px;
  text-align: center;
}
.of-reservation__summary {
  background-color: var(--of-bg-sunken);
  padding: var(--of-space-sm) var(--of-space-md);
  margin-bottom: var(--of-space-md);
  box-shadow: var(--of-shadow-sm);
}
.of-reservation__summary-title {
  font-family: var(--of-font-body);
  font-size: var(--of-font-size-xs);
  font-weight: 500;
  letter-spacing: var(--of-letter-spacing-wide);
  text-transform: uppercase;
  color: var(--of-text-muted);
  margin: 0 0 var(--of-space-xs);
}
.of-reservation__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--of-space-3xs) 0;
  border-bottom: 1px solid var(--of-border);
}
.of-reservation__summary-row:last-child {
  border-bottom: none;
}
.of-reservation__summary-label {
  font-size: var(--of-font-size-sm);
  font-weight: 300;
  color: var(--of-text-secondary);
}
.of-reservation__summary-value {
  font-size: var(--of-font-size-sm);
  font-weight: 500;
  color: var(--of-text-primary);
}
.of-reservation__actions {
  text-align: center;
}
.of-reservation__actions .of-btn {
  min-width: 240px;
}
.of-reservation__divider {
  border: none;
  border-top: 1px solid var(--of-border);
  margin: var(--of-space-md) 0;
}
