:root {
    --bg: #050506;
    --bg-elevated: #111115;
    --bg-elevated-soft: #16161b;
    --border-subtle: #2a2a31;
    --accent: #d4a35a;
    --accent-soft: rgba(212, 163, 90, 0.16);
    --accent-strong: #f4c678;
    --brand-red: #ff3333;
    --brand-red-soft: rgba(255, 51, 51, 0.16);
    --brand-red-glow: rgba(255, 51, 51, 0.3);
    --text-main: #f5f5f5;
    --text-muted: #9b9ba3;
    --error: #f97373;
}

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

body.page {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, #1a1a22 0, #050506 55%);
    color: var(--text-main);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header */

.site-header {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.logo--centered {
    justify-content: center;
    flex: 1;
    min-width: 0; /* Allows flex shrinking if needed */
}

.logo-mark {
    width: 120px;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .logo-mark {
        width: 80px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo {
        gap: 12px;
    }
}

.logo-text .brand-number {
    color: var(--brand-red);
    text-shadow: 0 0 10px var(--brand-red-glow);
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.nav-link:hover {
    color: var(--text-main);
    border-color: var(--accent-soft);
}

.nav-link--primary {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--accent-soft);
    color: var(--accent-strong);
}

.nav-link--primary:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

/* Menu Dropdown */
.menu-dropdown {
    position: relative;
}

.menu-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    padding: 8px 14px;
    margin: 0;
}

.menu-dropdown-arrow {
    font-size: 0.7em;
    transition: transform 0.2s ease;
    display: inline-block;
}

.menu-dropdown-toggle--active .menu-dropdown-arrow {
    transform: rotate(180deg);
}

.menu-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}

.menu-dropdown-menu--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: background 0.15s ease;
    cursor: pointer;
}

.menu-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-strong);
}

.menu-dropdown-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent-strong);
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .logo--centered {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .nav {
        flex: 1 1 100%;
        justify-content: center;
    }
    
    .menu-dropdown-menu {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
    }
    
    .menu-dropdown-menu--open {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 16px 20px;
    }
    
    .header-inner {
        gap: 10px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
}

/* Layout */

.layout {
    max-width: 1120px;
    margin: 12px auto 40px;
    padding: 0 24px 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 48px;
}

@media (max-width: 880px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-header {
        padding-inline: 20px;
    }
}

@media (max-width: 480px) {
    .booking-card {
        padding: 18px 16px;
    }
    
    .field {
        margin-bottom: 14px;
    }
    
    .field-input {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .country-code-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Intro / story side */

.intro {
    padding-top: 20px;
}

.intro-title {
    margin: 0 0 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 2.8vw, 2.6rem);
    letter-spacing: 0.04em;
}

.intro-text {
    margin: 0 0 24px;
    max-width: 34rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.intro-sub {
    margin: 0 0 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.intro-sub:last-child {
    margin-bottom: 0;
}

/* Booking card */

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

.booking-card {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(145deg, var(--bg-elevated), #050506);
    border-radius: 20px;
    padding: 20px 22px 20px;
    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.booking-title {
    margin: 0 0 12px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Steps */

.step {
    border-radius: 14px;
    padding: 12px 12px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.4));
    margin-bottom: 10px;
}

.step--collapsed .step-body {
    display: none;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--accent-strong);
}

.step-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.step-body {
    margin-top: 6px;
}

/* Form controls */

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.field:last-child {
    margin-bottom: 0;
}

.field-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.field-input {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: rgba(10, 10, 14, 0.8);
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    min-height: 40px;
}

.field-input:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 1px var(--brand-red-soft), 0 0 10px var(--brand-red-glow);
}

input[type="date"].field-input {
    position: relative;
}

input[type="date"].field-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
    filter: invert(0.7);
}

input[type="date"].field-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Party size buttons */

.party-size {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 6px;
}

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

.party-btn {
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(19, 19, 25, 0.8);
    color: var(--text-muted);
    padding: 7px 0;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s ease-out;
}

.party-btn:hover {
    border-color: var(--accent-soft);
    color: var(--text-main);
}

.party-btn--selected {
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand-red) 100%);
    color: #111;
    border-color: transparent;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 0 10px var(--brand-red-soft);
    font-weight: 600;
}

/* Slots */

.slots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.slot-btn {
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(19, 19, 25, 0.85);
    color: var(--text-muted);
    padding: 7px 12px;
    font-size: 0.86rem;
    cursor: pointer;
    transition: all 0.15s ease-out;
}

.slot-btn:hover {
    border-color: var(--accent-soft);
    color: var(--text-main);
}

.slot-btn--selected {
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand-red) 100%);
    color: #111;
    border-color: transparent;
    box-shadow: 0 0 10px var(--brand-red-soft);
    font-weight: 600;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.1s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--brand-red) 100%);
    color: #111;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6), 0 0 20px var(--brand-red-soft);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-strong) 0%, #ff4444 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.7), 0 0 30px var(--brand-red-glow);
}

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

.btn-full {
    width: 100%;
    margin-top: 4px;
}

/* Result messages */

.result {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.result--success {
    color: #bbf7d0;
}

.result--error {
    color: var(--error);
}

.muted {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.small-note {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Phone/Email form elements */
.phone-group {
    display: flex;
    gap: 8px;
    align-items: stretch;
    width: 100%;
}

.country-code-select-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
}

.country-code-select {
    padding: 10px 8px;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: rgba(10, 10, 14, 0.8);
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    min-width: 120px;
    min-height: 40px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239b9ba3' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 28px;
}

.country-code-select:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 1px var(--brand-red-soft), 0 0 10px var(--brand-red-glow);
}

.phone-input {
    flex: 1;
    min-width: 0;
}

.full-phone-input {
    width: 100%;
    margin-top: 0;
}

@media (max-width: 480px) {
    .phone-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .country-code-select {
        min-width: 100%;
        width: 100%;
    }
    
    .phone-input {
        width: 100%;
    }
}

.contact-divider {
    display: flex;
    align-items: center;
    margin: 12px 0;
    text-align: center;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.contact-divider span {
    padding: 0 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.field-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 8px;
    line-height: 1.4;
}

.field-hint-small {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 6px 0 0;
    font-style: italic;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 24px 18px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-right {
    opacity: 0.8;
}

@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        gap: 4px;
    }
}

/* Admin */

body.admin-page {
    background: linear-gradient(160deg, #08080c, #020203 60%);
}

.admin-layout {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.admin-card {
    background: var(--bg-elevated);
    border-radius: 20px;
    padding: 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.admin-card__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

@media (max-width: 768px) {
    .admin-card__header {
        flex-direction: column;
    }
    
    .admin-card__header > div:last-child {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }
    
    .view-toggle {
        flex: 1;
        min-width: 0;
    }
    
    .view-toggle-btn {
        flex: 1;
        padding: 6px 8px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .admin-card__header .btn-primary {
        flex: 0 0 auto;
        min-width: 80px;
    }
}

.admin-title {
    margin: 0 0 6px;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
}

.admin-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .admin-filters {
        flex-direction: column;
        gap: 12px;
    }
    
    .status-toggle-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .status-toggle {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .status-toggle-btn {
        flex: 1;
        min-width: 0;
        padding: 8px 10px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .admin-filters > div:last-child {
        width: 100%;
        margin-top: 0;
    }
}

.status-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 4px;
    border: 1px solid var(--border-subtle);
}

.status-toggle-btn {
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s ease-out;
    white-space: nowrap;
}

.status-toggle-btn--active {
    background: var(--accent);
    color: #111;
}

.btn-ghost {
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-main);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.admin-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.admin-flash {
    color: var(--accent-strong);
}

.admin-flash.error {
    color: var(--error);
}

.table-wrapper {
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(8, 8, 12, 0.7);
}

.reservations-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.reservations-table tr {
    height: auto;
}

@media (max-width: 768px) {
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.reservations-table th,
.reservations-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.reservations-table th {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.reservations-table tr:last-child td {
    border-bottom: none;
}

.empty-state {
    padding: 18px 20px;
}

.guest-name {
    font-weight: 600;
}

.guest-phone {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.guest-created {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-pill--pending {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.status-pill--accepted {
    background: rgba(72, 187, 120, 0.2);
    color: #9ae6b4;
}

.status-pill--declined {
    background: rgba(244, 114, 182, 0.18);
    color: #feb2b2;
}

.actions-cell {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

@media (min-width: 960px) {
    .actions-cell {
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }
}

.action-btn {
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: opacity 0.1s ease-out, transform 0.1s ease-out;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
}

.action-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.action-btn--accept {
    background: rgba(72, 187, 120, 0.18);
    color: #68d391;
    border-color: rgba(72, 187, 120, 0.3);
}

.action-btn--decline {
    background: rgba(245, 101, 101, 0.18);
    color: #feb2b2;
    border-color: rgba(245, 101, 101, 0.3);
}

.action-btn--reset {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.08);
}

/* View toggle */
.view-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 4px;
    border: 1px solid var(--border-subtle);
}

.view-toggle-btn {
    padding: 6px 14px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s ease-out;
}

.view-toggle-btn--active {
    background: var(--accent);
    color: #111;
}

.view-container {
    margin-top: 20px;
}

/* Calendar view */
.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.calendar-month-year {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 12px;
    background: rgba(8, 8, 12, 0.7);
}

.calendar-day-header {
    padding: 10px;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.calendar-day {
    min-height: 100px;
    padding: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.15s ease-out;
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-subtle);
}

.calendar-day--has-reservations {
    border-color: var(--accent-soft);
}

.calendar-day--has-reservations:hover {
    border-color: var(--accent);
    background: rgba(212, 163, 90, 0.1);
}

.calendar-day--empty {
    background: transparent;
    border: none;
}

.calendar-day--today {
    border-color: var(--accent);
    background: rgba(212, 163, 90, 0.08);
}

.calendar-day-number {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.calendar-reservations {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.calendar-reservation {
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 0.75rem;
    line-height: 1.3;
    border-left: 3px solid;
}

.calendar-reservation--pending {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--text-muted);
}

.calendar-reservation--accepted {
    background: rgba(72, 187, 120, 0.15);
    border-left-color: #68d391;
}

.calendar-reservation--declined {
    background: rgba(245, 101, 101, 0.15);
    border-left-color: #feb2b2;
}

.calendar-res-time {
    font-weight: 600;
    color: var(--text-main);
}

.calendar-res-name {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.calendar-res-more {
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 2px 6px;
    font-style: italic;
}

.guest-contact {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}