:root {
    color-scheme: light;
    --bg: #f4f5f7;
    --card: #ffffff;
    --text: #1f2430;
    --muted: #6b7280;
    --border: #e2e4e9;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --danger: #dc2626;
    --success: #16a34a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.nav a {
    color: var(--text);
    text-decoration: none;
    margin-left: 1rem;
    font-size: 0.95rem;
}

.nav a.brand {
    font-weight: 700;
    margin-left: 0;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links form {
    display: inline;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 0 auto;
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
}

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

.locale-switcher select {
    padding: 0.35rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
    background: #fff;
    font-family: inherit;
    color: var(--text);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    max-width: 420px;
    margin: 3rem auto;
}

.card h1 {
    margin-top: 0;
    font-size: 1.4rem;
}

.field {
    margin-bottom: 1.1rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.field input,
.field select {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    background: #fff;
    font-family: inherit;
}

.field input:focus,
.field select:focus {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}

.field select:disabled {
    background: var(--bg);
    color: var(--muted);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background: var(--primary-dark);
}

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

.btn:disabled,
.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: var(--danger);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.1rem;
    font-size: 0.9rem;
}

.status {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: var(--success);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.1rem;
    font-size: 0.9rem;
}

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

.remember {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
    font-size: 0.9rem;
}

.remember input {
    width: auto;
}

.badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Admin layout: topbar + left sidebar */

.admin-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.5rem;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.admin-topbar .brand {
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    font-size: 1.1rem;
}

.topbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.admin-body {
    flex: 1;
    display: flex;
    position: relative;
}

.sidebar {
    width: 220px;
    flex-shrink: 0;
    background: var(--card);
    border-right: 1px solid var(--border);
    padding: 1.25rem 0.75rem;
}

.sidebar-link {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.sidebar-link:hover {
    background: var(--bg);
}

.sidebar-link.active {
    background: #eef2ff;
    color: var(--primary-dark);
    font-weight: 600;
}

.admin-content {
    flex: 1;
    padding: 2rem;
    min-width: 0;
}

.sidebar-overlay {
    display: none;
}

/* Users module: table, badges, link-style buttons */

.table-wrap {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.users-table th,
.users-table td {
    text-align: left;
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    white-space: nowrap;
}

.users-table th {
    background: var(--bg);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--muted);
}

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

.actions-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge-role-admin {
    background: #eef2ff;
    color: var(--primary-dark);
}

.badge-role-client {
    background: #f1f5f9;
    color: #334155;
}

.badge-verified {
    background: #f0fdf4;
    color: var(--success);
}

.badge-unverified {
    background: #fef2f2;
    color: var(--danger);
}

.link-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: inherit;
}

.link-btn-danger {
    color: var(--danger);
}

.impersonation-banner {
    background: #fffbeb;
    border-bottom: 1px solid #fde68a;
    color: #92400e;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    text-align: center;
}

.impersonation-banner form {
    display: inline;
    margin-left: 0.4rem;
}

/* Public events */

.events-header {
    text-align: center;
    margin: 0.5rem 0 2rem;
}

.events-header h1 {
    margin: 0.5rem 0 0;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--brand-black);
    letter-spacing: -0.01em;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.event-card {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.event-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-gold);
    box-shadow: 0 20px 35px -20px rgba(13, 13, 12, 0.35);
}

.event-card-media {
    position: relative;
}

.event-card-banner {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    background: var(--brand-cream);
}

.event-card-date {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    background: #fff;
    border-radius: 8px;
    padding: 0.35rem 0.6rem;
    box-shadow: 0 6px 16px -8px rgba(13, 13, 12, 0.4);
}

.event-card-date-day {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-red);
}

.event-card-date-month {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-black);
    letter-spacing: 0.04em;
}

.event-card-body {
    padding: 1.1rem 1.2rem;
}

.event-card-body h2 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.event-card-price {
    font-weight: 700;
    color: var(--brand-red-dark);
    margin: 0.5rem 0 0;
}

.event-card-child-price {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0.15rem 0 0;
}

.event-landing {
    max-width: 720px;
    margin: 0 auto;
}

.event-banner {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.event-price {
    font-size: 1.1rem;
}

.event-price strong {
    color: var(--brand-red-dark);
}

.event-description {
    line-height: 1.6;
}

.event-description p {
    margin: 0 0 1rem;
}

.event-description ul,
.event-description ol {
    margin: 0 0 1rem;
    padding-left: 1.4rem;
}

/* Public seat picker */

.checkout-bar[hidden] {
    display: none;
}

.checkout-bar {
    position: sticky;
    bottom: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.checkout-bar-summary {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Table seat-picker modal — sits above the whole page, including the map's
   +/- zoom controls and the sticky checkout bar. Adults + children are
   chosen here in one step and the price updates live. */
.seat-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
}

.seat-modal-overlay[hidden] {
    display: none;
}

.seat-modal {
    width: 100%;
    max-width: 360px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.seat-modal .field {
    margin-bottom: 0.85rem;
}

.seat-modal label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.seat-modal select {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--card);
    color: var(--text);
}

.seat-modal-unit {
    margin: -0.1rem 0 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
}

.seat-modal-price {
    margin: 0.5rem 0 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.seat-modal-price:empty {
    display: none;
}

/* Checkout — "your details": account vs. guest options */

.checkout-option {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.1rem;
    margin-bottom: 0.85rem;
}

.checkout-option-title {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
}

.checkout-option-guest {
    background: var(--bg);
}

.checkout-option #guestForm {
    margin-top: 1rem;
}

/* Admin QR check-in scanner */

.scan-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.scan-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scan-guide {
    position: absolute;
    inset: 12% 12%;
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    pointer-events: none;
}

/* Admin event form */

.event-form {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start;
}

.event-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card-panel {
    max-width: none;
    margin: 0;
    width: 100%;
}

.sidebar-heading {
    margin: 0 0 1.1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--muted);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.locale-tabs {
    display: flex;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.locale-tab {
    padding: 0.6rem 1.1rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.locale-tab:hover {
    color: var(--text);
}

.locale-tab.active {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

.locale-required {
    color: var(--danger);
}

.locale-panel {
    display: none;
}

.locale-panel.active {
    display: block;
}

.wysiwyg-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 0.4rem;
    background: var(--bg);
}

.wysiwyg-toolbar button {
    border: 1px solid transparent;
    background: none;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text);
    font-family: inherit;
}

.wysiwyg-toolbar button:hover {
    background: #fff;
    border-color: var(--border);
}

.wysiwyg-sep {
    width: 1px;
    background: var(--border);
    margin: 0.15rem 0.3rem;
}

.wysiwyg-editor {
    min-height: 180px;
    border: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    background: #fff;
    line-height: 1.55;
}

.wysiwyg-editor:focus {
    outline: 2px solid var(--primary);
    outline-offset: -1px;
}

.wysiwyg-editor p {
    margin: 0 0 0.75rem;
}

.wysiwyg-editor ul,
.wysiwyg-editor ol {
    margin: 0 0 0.75rem;
    padding-left: 1.4rem;
}

.banner-drop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    background: var(--bg);
    overflow: hidden;
}

.banner-preview {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.banner-drop-label {
    color: var(--muted);
    font-size: 0.85rem;
}

.banner-file-input {
    width: 100%;
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.form-actions {
    margin-top: 1.75rem;
}

/* Seating designer */

.add-section-form,
.add-table-form,
.background-upload-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.add-section-form .field,
.add-table-form input {
    margin-bottom: 0;
}

.add-table-form input {
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    width: 140px;
}

.section-panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.section-header h2.section-name {
    margin: 0;
    font-size: 1.05rem;
}

.designer-canvas {
    width: 100%;
    height: auto;
    background: var(--bg);
    border: 1px dashed var(--border);
    border-radius: 8px;
    touch-action: none;
}

/* Public seat picker: the room map is pan/zoomable so it stays usable on a
   phone. The viewport clips the zoomed SVG and anchors the +/- controls. */
.seatmap-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg);
}

.seatmap-viewport .designer-canvas {
    display: block;
    cursor: grab;
}

.seatmap-viewport .designer-canvas.is-panning {
    cursor: grabbing;
}

.seatmap-controls {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.seatmap-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    color: var(--text);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.seatmap-btn:hover {
    background: var(--bg);
}

.seatmap-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.seatmap-zoom-reset {
    font-size: 1.1rem;
}

.table-group {
    cursor: grab;
}

.table-group:active {
    cursor: grabbing;
}

.table-shape {
    fill: #fff;
    stroke: var(--primary);
    stroke-width: 2;
}

.table-group:focus .table-shape,
.table-group:hover .table-shape {
    stroke: var(--primary-dark);
    fill: #eef2ff;
}

.table-label {
    font-size: 9px;
    font-weight: 600;
    fill: var(--text);
    pointer-events: none;
}

.table-seats {
    font-size: 8px;
    fill: var(--muted);
    pointer-events: none;
}

/* Room template designer only (#sections is unique to that page) — the
   designer keeps the plain drag-and-edit circle look; the read-only admin
   event view and the public seat picker both use the bigger pie-style
   table below instead, so this only needs to scale the designer's own
   text to match its already-bigger circle. */
#sections .table-label {
    font-size: 14px;
}

#sections .table-seats {
    font-size: 12px;
}

/* Read-only admin event view: tables drawn 1.5x bigger, as a pie — same
   light green/pink palette as the public seat picker — with "taken/total"
   inside the circle and the table name below it. */
.event-seat-canvas .table-pie-free {
    fill: #86efac;
}

.event-seat-canvas .table-pie-taken {
    fill: #ffb6c1;
}

.event-seat-canvas .table-label {
    font-size: 13px;
    font-weight: 700;
    fill: var(--text);
}

.event-seat-canvas .table-available {
    font-size: 11px;
    font-weight: 600;
    fill: var(--text);
    pointer-events: none;
}

.event-seat-canvas .table-outline,
.seat-picker-canvas .table-outline {
    fill: none;
    stroke: var(--card);
    stroke-width: 2;
}

/* Public seat picker only: lighter pie colors with dark text (the table
   stays readable at a glance without needing the high-contrast white-on-
   saturated-color treatment the admin view uses), and the table name sits
   below the circle instead of inside it. */
.seat-picker-canvas .table-pie-free {
    fill: #86efac;
}

.seat-picker-canvas .table-pie-taken {
    fill: #ffb6c1;
}

.seat-picker-canvas .table-label {
    font-size: 13px;
    font-weight: 700;
    fill: var(--text);
}

.seat-picker-canvas .table-available {
    font-size: 11px;
    font-weight: 600;
    fill: var(--text);
    pointer-events: none;
}

.seat-picker-canvas .picker-table {
    cursor: pointer;
}

.seat-picker-canvas .picker-table:hover .table-outline,
.seat-picker-canvas .picker-table:focus .table-outline {
    stroke: var(--primary-dark);
    stroke-width: 3;
}

/* A friend-invite link can suggest a table — highlighted so it's easy to
   spot, but still just a suggestion: nothing stops picking another one. */
.picker-table-suggested .table-outline {
    stroke: var(--primary);
    stroke-width: 4;
    stroke-dasharray: 6 4;
}

.table-editor {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 50;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    width: 260px;
}

.table-editor .field {
    margin-bottom: 0.75rem;
}

.table-editor input {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 6px;
}

/* Mobile: hamburger-driven nav + off-canvas sidebar */

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        padding: 0.85rem 1.25rem;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .nav-links {
        order: 3;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        width: 100%;
        margin-top: 0.85rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        margin-left: 0;
    }

    .admin-topbar {
        padding: 0.75rem 1rem;
    }

    .sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 40;
        transform: translateX(-100%);
        transition: transform 0.2s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
        padding-top: 4.5rem;
        width: 240px;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-overlay.open {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 30;
    }

    .admin-content {
        padding: 1.25rem;
    }

    .container {
        padding: 1.25rem;
    }

    .card {
        margin: 1.5rem auto;
        padding: 1.5rem;
    }

    .table-editor {
        left: 12px;
        right: 12px;
        top: auto;
        bottom: 12px;
        width: auto;
    }

    .add-section-form,
    .add-table-form,
    .background-upload-form {
        flex-direction: column;
        align-items: stretch;
    }

    .add-table-form input {
        width: 100%;
    }

    .event-form {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .locale-tabs {
        overflow-x: auto;
    }
}

/* Home page: EuropeDeli hero */

:root {
    --brand-black: #0d0d0c;
    --brand-red: #c31f2c;
    --brand-red-dark: #8f1620;
    --brand-gold: #f0b429;
    --brand-cream: #faf6ef;
}

.hero {
    position: relative;
    background: #fff;
    text-align: center;
    padding: 4rem 1.5rem 3.5rem;
    overflow: hidden;
    isolation: isolate;
}

.hero-decor {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero-decor::before,
.hero-decor::after {
    content: '';
    position: absolute;
    width: 55vw;
    height: 55vw;
    max-width: 620px;
    max-height: 620px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.16;
}

.hero-decor::before {
    top: -18vw;
    left: -14vw;
    background: var(--brand-red);
}

.hero-decor::after {
    bottom: -22vw;
    right: -16vw;
    background: var(--brand-gold);
}

.hero-inner {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.logo-plate {
    display: inline-block;
    width: min(60vw, 260px);
    flex-shrink: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(160deg, #17140f 0%, var(--brand-black) 100%);
    border-radius: 24px;
    box-shadow: 0 25px 45px -22px rgba(13, 13, 12, 0.45), 0 0 0 1px rgba(240, 180, 41, 0.2);
}

.hero-logo {
    display: block;
    width: 100%;
    height: auto;
}

.hero-tagline {
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--brand-black);
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    color: #fff;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 25px -10px rgba(195, 31, 44, 0.7);
}

.btn-brand:hover {
    background: linear-gradient(135deg, #d6303d 0%, var(--brand-red) 100%);
}

.btn-brand-outline {
    background: transparent;
    color: var(--brand-black);
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-brand-outline:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.hero-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto 1.75rem;
}

.hero-dj-photo {
    width: 140px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 45px -22px rgba(13, 13, 12, 0.45);
}

.visit {
    background: var(--brand-cream);
}

.visit-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-block: 2.5rem;
}

.visit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.visit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--brand-red);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.visit-icon svg {
    width: 22px;
    height: 22px;
}

.badge-visit {
    background: rgba(195, 31, 44, 0.1);
    color: var(--brand-red-dark);
    margin-bottom: 0.35rem;
}

.visit-text address {
    font-style: normal;
    color: var(--brand-black);
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .hero {
        padding: 3rem 1.25rem 2.75rem;
    }

    .hero-tagline {
        font-size: 1.6rem;
    }

    .hero-brands {
        flex-direction: column;
        gap: 1.25rem;
    }

    .logo-plate {
        width: min(78vw, 280px);
        padding: 1rem 1.25rem;
    }

    .hero-dj-photo {
        width: 130px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-brand,
    .hero-actions .btn-brand-outline {
        text-align: center;
    }

    .visit-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

}
