@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Nanum+Myeongjo&display=swap');

:root {
    --color-navy: #061a3a;
    --color-navy-dark: #04142d;
    --color-gold: #dcab44;
    --color-gold-dark: #bd8730;
    --color-ink: #101828;
    --color-muted: #667085;
    --color-line: #e8ebf0;
    --color-surface: #ffffff;
    --color-page: #f7f8fb;
    --color-search: #f4f7fb;
    --font-body: "Inter Tight", sans-serif;
    --font-display: "Nanum Myeongjo", serif;
    --content-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--color-ink);
    background: var(--color-page);
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0;
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button,
[type="submit"],
.login-button,
.auth-submit {
    border-radius: 0;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

h1,
h2,
h3,
.auth-header p {
    font-family: var(--font-display);
}

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

.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;
}

.site-navbar {
    position: relative;
    z-index: 20;
    width: 100%;
    background: var(--color-surface);
    border-bottom: 0;
}

.nav-container {
    width: min(100%, var(--content-width));
    min-height: 64px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(90px, 1fr) auto auto;
    align-items: center;
    gap: 28px;
}

.brand-logo,
.footer-brand {
    width: max-content;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.brand-logo {
    height: 46px;
}

.brand-logo img {
    width: auto;
    height: 34px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    min-width: 0;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 64px;
    color: #111111;
    font-size: 11px;
    font-weight: 400;
}

.nav-link::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 1px;
    content: "";
    background: #111111;
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.mobile-nav-check,
.mobile-menu-button,
.mobile-nav-panel {
    display: none;
}

.mobile-menu-button,
.mobile-nav-close {
    color: #000000;
    cursor: pointer;
}

.mobile-menu-button {
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-button span {
    width: 24px;
    height: 2px;
    display: block;
    background: currentColor;
}

.mobile-nav-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 31px;
    height: 31px;
}

.mobile-nav-close span {
    position: absolute;
    top: 15px;
    left: 4px;
    width: 27px;
    height: 2px;
    display: block;
    background: currentColor;
}

.mobile-nav-close span:first-child {
    transform: rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: rotate(-45deg);
}

.business-search {
    width: min(210px, 100%);
}

.business-search input {
    width: 100%;
    height: 33px;
    padding: 0 18px;
    color: var(--color-ink);
    background: var(--color-search);
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 12px;
    outline: none;
}

.business-search input::placeholder {
    color: #7b8494;
}

.business-search input:focus {
    border-color: #c7d2e4;
    background: #ffffff;
}

.login-button {
    min-width: 72px;
    height: 34px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #12213a;
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 0;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    box-shadow: none;
}

.login-button:hover {
    color: var(--color-gold);
    background: #ffffff;
    border-color: var(--color-gold);
    transform: none;
}

.main-content {
    flex: 1 0 auto;
    width: 100%;
}

.site-footer {
    padding-top: 25px;
    width: 100%;
    color: #ffffff;
    background: #000000;
}

.footer-container {
    margin: 0 auto;
    padding: 0 28px 25px;
    width: min(100%, var(--content-width));
}

.footer-main {
    min-height: 157px;
    padding: 35px 0 24px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 117px;
    border-top: 1px solid #ffffff;
}

.footer-foot {
    min-height: 80px;
    padding-top: 28px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand {
    flex: 1 1 auto;
    height: auto;
}

.footer-brand img {
    width: auto;
    height: 126px;
    display: block;
    filter: invert(1) brightness(2.6);
}

.footer-navs {
    display: flex;
    align-items: flex-start;
    gap: 78px;
}

.footer-identity p {
    margin: 0 0 10px;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.footer-identity address {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    font-size: 13px;
    line-height: 1.65;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
    width: max-content;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    width: max-content !important;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1.12px;
    margin-bottom: 30px;
    font-weight: 400;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-foot > a {
    flex: 0 0 auto;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.auth-page {
    min-height: calc(100vh - 122px);
    padding: 76px 24px 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbfaf5;
}

.auth-page--register {
    align-items: flex-start;
    padding-top: 46px;
}

.auth-panel {
    width: min(100%, 520px);
}

.auth-panel--login {
    width: min(100%, 500px);
}

.auth-header {
    margin-bottom: 34px;
    text-align: center;
}

.auth-header p {
    margin: 0 0 10px;
    min-height: 31px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    color: #e8b13c;
    background: transparent;
    border: 1px solid rgba(232, 177, 60, 0.55);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-header h1 {
    margin: 0;
    color: var(--color-navy-dark);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
}

.auth-header h1 em {
    font-family: var(--font-display);
    font-weight: 400;
}

.auth-header span {
    max-width: 470px;
    margin: 14px auto 0;
    display: block;
    color: #344054;
    font-size: 15px;
    line-height: 1.55;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-field {
    display: grid;
    gap: 8px;
}

.auth-success-message {
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #067647;
    background: rgba(18, 183, 106, 0.08);
    border: 1px solid rgba(18, 183, 106, 0.22);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.auth-success-message i {
    color: #12b76a;
    font-size: 15px;
}

.auth-field label,
.auth-label-row label {
    color: var(--color-navy-dark);
    font-size: 14px;
    font-weight: 700;
}

.auth-field label .dot_required {
    color: #d92d20;
}

.auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.auth-label-row a,
.auth-switch a {
    color: var(--color-navy-dark);
    font-weight: 800;
}

.auth-field input,
.auth-field select,
.auth-field textarea {
    width: 100%;
    color: var(--color-ink);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #cfd6e3;
    border-radius: 8px;
    font: inherit;
    outline: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-field input {
    height: 54px;
    padding: 0 18px;
}

.auth-field select {
    height: 54px;
    padding: 0 18px;
}

.auth-field textarea {
    min-height: 126px;
    padding: 16px 18px;
    resize: vertical;
}

.auth-field input::placeholder,
.auth-field textarea::placeholder {
    color: #728095;
}

.auth-field input[type="date"] {
    color-scheme: light;
}

.auth-field input[type="date"]:invalid {
    color: #728095;
}

.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus {
    background: #ffffff;
    border-color: #dca437;
    box-shadow: 0 0 0 4px rgba(220, 164, 55, 0.12);
}

.auth-field span {
    color: var(--color-muted);
    font-size: 12px;
}

.auth-field small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b42318;
    font-size: 12px;
    line-height: 1.4;
}

.auth-field small i {
    color: #d92d20;
    font-size: 13px;
}

.auth-field strong {
    color: #d92d20;
}

.auth-field em {
    color: var(--color-muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.5;
}

.auth-password {
    position: relative;
}

.auth-password input {
    padding-right: 52px;
}

.auth-password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transform: translateY(-50%);
}

.auth-password-toggle i {
    font-size: 18px;
    line-height: 1;
}

.auth-password-toggle:hover,
.auth-password-toggle:focus-visible {
    color: var(--color-navy);
    background: rgba(6, 26, 58, 0.06);
    outline: 0;
}

.auth-submit {
    width: 100%;
    height: 54px;
    margin-top: 12px;
    color: #12213a;
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
    box-shadow: none;
}

.auth-submit:hover {
    color: var(--color-gold);
    background: #ffffff;
    border-color: var(--color-gold);
    transform: none;
}

.auth-switch {
    margin: 26px 0 0;
    color: #344054;
    font-size: 14px;
    text-align: center;
}

.business-form-page {
    width: 100%;
    background: #fbfaf5;
    overflow-x: hidden;
}

.business-form-shell {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 68px 28px 86px;
}

.business-form-header {
    max-width: 620px;
    margin-bottom: 36px;
}

.business-form-header p,
.dashboard-topbar p,
.dashboard-panel__header p {
    margin: 0 0 9px;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
}

.business-form-header h1 {
    margin: 0;
    color: var(--color-navy-dark);
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
}

.business-form-header h1 em {
    font-weight: 400;
}

.business-form-header span {
    margin-top: 16px;
    display: block;
    color: #344054;
    font-size: 15px;
    line-height: 1.6;
}

.business-form,
.dashboard-edit-form {
    display: grid;
    gap: 24px;
}

.form-section {
    padding: 28px;
    background: #ffffff;
    border: 1px solid #ece9df;
    border-radius: 6px;
    box-shadow: 0 14px 32px rgba(35, 43, 54, 0.08);
    display: grid;
    gap: 18px;
}

.form-section h2 {
    margin: 0;
    color: #17263d;
    font-size: 23px;
    font-weight: 800;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-media-section,
.social-media-list {
    display: grid;
    gap: 14px;
}

.social-media-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.58fr) minmax(160px, 0.62fr) minmax(320px, 1.8fr) 42px;
    gap: 14px;
    align-items: start;
}

.social-media-row > .auth-field:first-child {
    grid-column: 1;
}

.social-media-custom {
    grid-column: 2;
}

.social-media-row .auth-field:last-of-type {
    grid-column: 3;
    min-width: 0;
}

.social-media-custom[hidden] + .auth-field {
    grid-column: 2 / 4;
}

.social-media-custom[hidden] {
    display: none;
}

.social-media-remove {
    grid-column: 4;
    width: 42px;
    height: 42px;
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    background: #ffffff;
    border: 1px solid #cfd6e3;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.social-media-remove:hover {
    color: #b42318;
    background: rgba(217, 45, 32, 0.06);
    border-color: rgba(217, 45, 32, 0.36);
}

.social-media-add {
    justify-self: start;
}

.file-upload-field {
    align-items: stretch;
}

.file-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    opacity: 0;
}

.file-upload-control {
    min-height: 54px;
    padding: 0 18px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #12213a !important;
    background: rgba(220, 171, 68, 0.12);
    border: 1px dashed rgba(189, 135, 48, 0.7);
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 800;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.file-upload-control i {
    font-size: 18px;
    line-height: 1;
}

.file-upload-field:hover .file-upload-control,
.file-upload-input:focus-visible + .file-upload-control {
    color: var(--color-gold-dark) !important;
    background: #ffffff;
    border-color: var(--color-gold);
}

.image-upload-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 12px;
}

.image-upload-preview-grid--logo {
    grid-template-columns: minmax(112px, 132px);
}

.image-upload-preview-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8fafc;
    border: 1px solid #e4e7ec;
    border-radius: 6px;
}

.image-upload-preview-item--logo {
    background: #ffffff;
}

.image-upload-preview-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.image-upload-preview-item--logo img {
    padding: 8px;
    object-fit: contain;
}

.image-upload-preview-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(16, 24, 40, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.image-upload-preview-remove:hover {
    background: #b42318;
    transform: none;
}

.image-upload-preview-remove i {
    font-size: 11px;
    line-height: 1;
}

.content-hero {
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.54) 54%, rgba(0, 0, 0, 0.18) 100%),
        var(--content-hero-image);
    background-position: center;
    background-size: cover;
}

.content-hero__inner {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 72px 28px 54px;
}

.content-hero__inner > span,
.content-toolbar span,
.content-band span {
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
}

.content-hero h1 {
    max-width: 780px;
    margin: 13px 0 14px;
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.08;
}

.content-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.65;
}

.content-page {
    background: #fbfaf5;
}

.content-shell {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 64px 28px 82px;
}

.content-intro {
    max-width: 780px;
    margin-bottom: 34px;
}

.content-intro p {
    margin: 0;
    color: #27364b;
    font-size: 17px;
    line-height: 1.75;
}

.content-grid {
    display: grid;
    gap: 22px;
}

.content-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card,
.content-band,
.event-row,
.contact-info,
.contact-form {
    background: #ffffff;
    border: 1px solid #ece9df;
    border-radius: 6px;
    box-shadow: 0 14px 32px rgba(35, 43, 54, 0.08);
}

.content-card {
    padding: 28px;
}

.content-card i {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    color: #111111;
    background: var(--color-gold);
    border-radius: 6px;
    font-size: 18px;
}

.content-card h2,
.content-band h2,
.content-toolbar h2,
.event-row h2,
.contact-info h2 {
    margin: 14px 0 10px;
    color: #17263d;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.content-card p,
.content-band p,
.event-row p {
    margin: 0;
    color: #4c5665;
    font-size: 14px;
    line-height: 1.65;
}

.content-band {
    margin-top: 24px;
    padding: 32px;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.content-band h2,
.content-toolbar h2 {
    margin: 8px 0 0;
    font-size: 30px;
}

.content-toolbar {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.content-toolbar a {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    font-size: 12px;
    font-weight: 700;
}

.content-toolbar a:hover {
    color: var(--color-gold);
    background: #ffffff;
}

.event-list {
    display: grid;
    gap: 16px;
}

.event-row {
    padding: 22px;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

.event-date {
    min-height: 84px;
    display: grid;
    place-items: center;
    color: #111111;
    background: rgba(220, 171, 68, 0.18);
    border: 1px solid rgba(220, 171, 68, 0.42);
    border-radius: 6px;
}

.event-date strong {
    font-size: 28px;
    line-height: 1;
}

.event-date span {
    color: #9b6b13;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.event-row h2 {
    margin-top: 0;
}

.event-row div > span {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #667085;
    font-size: 13px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.contact-info,
.contact-form {
    padding: 28px;
}

.contact-info h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info a {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #344054;
    border-bottom: 1px solid #eef0f4;
    font-size: 14px;
}

.contact-info i {
    width: 20px;
    color: #dca437;
    font-size: 17px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.dashboard-body {
    background: #fbfaf5;
}

.dashboard-menu-check,
.dashboard-menu-button,
.dashboard-menu-close {
    display: none;
}

.dashboard-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.dashboard-sidebar {
    position: relative;
    padding: 28px 22px;
    color: #ffffff;
    background: #000000;
}

.dashboard-menu-button,
.dashboard-menu-close {
    color: #000000;
    cursor: pointer;
}

.dashboard-menu-button {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    background: #ffffff;
    border: 1px solid var(--color-gold);
}

.dashboard-menu-button span {
    width: 22px;
    height: 2px;
    display: block;
    background: currentColor;
}

.dashboard-menu-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 31px;
    height: 31px;
    color: #ffffff;
}

.dashboard-menu-close span {
    position: absolute;
    top: 15px;
    left: 4px;
    width: 27px;
    height: 2px;
    display: block;
    background: currentColor;
}

.dashboard-menu-close span:first-child {
    transform: rotate(45deg);
}

.dashboard-menu-close span:last-child {
    transform: rotate(-45deg);
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 14px;
    font-weight: 700;
}

.dashboard-brand img {
    width: 46px;
    height: auto;
    filter: invert(1) brightness(2.6);
}

.dashboard-nav {
    margin-top: 28px;
    display: grid;
    gap: 8px;
}

.dashboard-nav a {
    min-height: 44px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 13px;
}

.dashboard-nav a:hover,
.dashboard-nav a.is-active {
    color: var(--color-gold);
    background: #ffffff;
    border-color: var(--color-gold);
}

.dashboard-main {
    min-width: 0;
    padding: 34px;
}

.dashboard-topbar {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.dashboard-topbar h1 {
    margin: 0;
    color: var(--color-navy-dark);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
}

.dashboard-panel {
    margin-bottom: 24px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #ece9df;
    border-radius: 6px;
    box-shadow: 0 14px 32px rgba(35, 43, 54, 0.08);
}

.dashboard-panel__header {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.dashboard-panel__header h2 {
    margin: 0;
    color: #17263d;
    font-size: 24px;
    font-weight: 800;
}

.dashboard-stats {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.dashboard-stats article {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #ece9df;
    border-radius: 6px;
    box-shadow: 0 14px 32px rgba(35, 43, 54, 0.08);
}

.dashboard-stats span {
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-stats strong {
    margin-top: 10px;
    display: block;
    color: #17263d;
    font-size: 34px;
    line-height: 1;
}

.dashboard-button,
.dashboard-ghost-button,
.dashboard-danger-button {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: 0;
    color: #111111;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.dashboard-button:hover,
.dashboard-ghost-button:hover,
.dashboard-danger-button:hover {
    color: var(--color-gold);
    background: #ffffff;
    border-color: var(--color-gold);
}

.dashboard-ghost-button {
    background: #ffffff;
    color: var(--color-gold);
}

.dashboard-danger-button {
    background: #ffffff;
    border-color: #d92d20;
    color: #d92d20;
}

.dashboard-danger-button:hover {
    border-color: #d92d20;
    color: #d92d20;
}

.dashboard-filter-form {
    margin: 22px 0 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
}

.dashboard-filter-form label {
    display: grid;
    gap: 7px;
    color: #344054;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-filter-form select {
    min-width: 240px;
    min-height: 38px;
    padding: 0 12px;
    color: var(--color-ink);
    background: #ffffff;
    border: 1px solid #cfd6e3;
    border-radius: 4px;
    outline: 0;
}

.dashboard-filter-form select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(220, 171, 68, 0.12);
}

.dashboard-list-summary {
    margin: 0 0 16px;
    color: #667085;
    font-size: 12px;
}

.dashboard-list-summary strong {
    color: #17263d;
}

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

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #ece9df;
    text-align: left;
    vertical-align: top;
    font-size: 13px;
}

.dashboard-table th {
    color: #17263d;
    font-size: 11px;
    text-transform: uppercase;
}

.dashboard-table td > strong {
    margin-bottom: 5px;
    display: block;
    color: #17263d;
    font-size: 13px;
    line-height: 1.25;
}

.dashboard-table td > span {
    display: block;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
}

.dashboard-listing-thumb {
    width: 72px;
    aspect-ratio: 1.25;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.dashboard-table--editable input,
.dashboard-table--editable select,
.dashboard-table--editable textarea {
    width: 100%;
    min-width: 160px;
    min-height: 38px;
    padding: 0 12px;
    color: var(--color-ink);
    background: #ffffff;
    border: 1px solid #cfd6e3;
    border-radius: 4px;
    font: inherit;
    font-size: 13px;
    outline: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.dashboard-table--editable textarea {
    min-width: 240px;
    height: 38px;
    padding-top: 9px;
    resize: vertical;
}

.dashboard-table--editable input:focus,
.dashboard-table--editable select:focus,
.dashboard-table--editable textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(220, 171, 68, 0.12);
}

.status-badge {
    min-height: 26px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    color: #344054;
    background: #f2f4f7;
    border: 1px solid #e4e7ec;
    font-size: 11px;
    font-weight: 700;
}

.status-badge--active {
    color: #067647;
    background: rgba(18, 183, 106, 0.08);
    border-color: rgba(18, 183, 106, 0.24);
}

.status-badge--inactive {
    color: #b42318;
    background: rgba(217, 45, 32, 0.08);
    border-color: rgba(217, 45, 32, 0.24);
}

.status-badge--pending {
    color: #9b6b13;
    background: rgba(220, 171, 68, 0.16);
    border-color: rgba(220, 171, 68, 0.34);
}

.dashboard-toggle {
    min-width: 112px;
    min-height: 34px;
    padding: 4px 10px 4px 5px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #b42318;
    background: rgba(217, 45, 32, 0.08);
    border: 1px solid rgba(217, 45, 32, 0.24);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.dashboard-toggle span {
    width: 24px;
    height: 24px;
    display: inline-block;
    background: #d92d20;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.16);
}

.dashboard-toggle strong {
    line-height: 1;
}

.dashboard-toggle.is-active {
    color: #067647;
    background: rgba(18, 183, 106, 0.08);
    border-color: rgba(18, 183, 106, 0.24);
}

.dashboard-toggle.is-active span {
    background: #12b76a;
}

.dashboard-pagination {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.dashboard-pagination a,
.dashboard-pagination span {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #344054;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.dashboard-pagination a:hover,
.dashboard-pagination .is-active {
    color: #111111;
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.dashboard-card-grid {
    display: grid;
    gap: 18px;
}

.approval-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    padding: 18px;
    border: 1px solid #ece9df;
    border-radius: 6px;
}

.approval-card img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    border-radius: 4px;
}

.approval-card h3 {
    margin: 12px 0 8px;
    color: #17263d;
    font-size: 22px;
}

.approval-card p {
    margin: 0 0 14px;
    color: #4c5665;
    line-height: 1.55;
}

.approval-card dl {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 7px 14px;
    margin: 0;
    color: #344054;
    font-size: 13px;
}

.approval-card dt {
    font-weight: 700;
}

.approval-card dd {
    margin: 0;
}

.dashboard-actions,
.dashboard-inline-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.dashboard-inline-actions {
    margin-top: 0;
    white-space: nowrap;
}

.dashboard-empty,
.directory-empty {
    grid-column: 1 / -1;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #ece9df;
    border-radius: 6px;
}

.dashboard-empty h3,
.directory-empty h3 {
    margin: 0 0 8px;
    color: #17263d;
    font-size: 22px;
}

.dashboard-empty p,
.directory-empty p {
    margin: 0;
    color: #667085;
    line-height: 1.55;
}

.dashboard-alert {
    margin-bottom: 18px;
    padding: 13px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.45;
}

.dashboard-alert--success {
    color: #067647;
    background: rgba(18, 183, 106, 0.08);
    border-color: rgba(18, 183, 106, 0.24);
}

.dashboard-alert--error {
    color: #b42318;
    background: rgba(217, 45, 32, 0.08);
    border-color: rgba(217, 45, 32, 0.24);
}

.master-form,
.master-row form {
    display: grid;
    gap: 14px;
}

.master-form {
    max-width: 680px;
    grid-template-columns: 1fr;
    align-items: stretch;
}

.master-list {
    display: grid;
    gap: 14px;
}

.master-row {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    border: 1px solid #ece9df;
    border-radius: 6px;
}

.master-row > form:first-child {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.master-row > form:last-child {
    justify-self: start;
}

.master-row input,
.master-row select,
.master-row textarea {
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    color: var(--color-ink);
    background: #ffffff;
    border: 1px solid #cfd6e3;
    border-radius: 4px;
    font: inherit;
    outline: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.master-row input:focus,
.master-row select:focus,
.master-row textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(220, 171, 68, 0.12);
}

.master-row textarea {
    min-height: 40px;
    padding-top: 10px;
    resize: vertical;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.image-preview-grid img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 920px) {
    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 60;
        width: min(100%, 420px);
        min-height: 100vh;
        padding: 32px 22px 44px;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transform: translateX(-100%);
        transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
        overflow-y: auto;
    }

    .dashboard-menu-check:checked ~ .dashboard-shell .dashboard-sidebar {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateX(0);
    }

    .dashboard-menu-button,
    .dashboard-menu-close {
        display: inline-flex;
    }

    .dashboard-nav {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dashboard-nav a {
        min-height: 48px;
        padding: 0 14px;
        font-size: 14px;
    }

    .dashboard-main {
        padding: 24px;
    }

    .dashboard-brand {
        padding: 24px 48px 28px 0;
    }

    .dashboard-brand img {
        width: 58px;
    }

    .dashboard-topbar {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr) auto;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .approval-card {
        grid-template-columns: 1fr;
    }

    .master-form,
    .master-row,
    .master-row > form:first-child,
    .social-media-row {
        grid-template-columns: 1fr;
    }

    .social-media-remove {
        grid-column: auto;
        margin-top: 0;
    }

    .social-media-row > .auth-field:first-child,
    .social-media-custom,
    .social-media-row .auth-field:last-of-type,
    .social-media-custom[hidden] + .auth-field {
        grid-column: auto;
    }

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

    .content-grid--three,
    .content-band,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .content-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-container {
        min-height: 67px;
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        justify-items: stretch;
        gap: 20px;
        padding: 0 28px;
    }

    .footer-container {
        padding: 0 22px 30px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        width: auto;
        justify-content: flex-end;
        grid-column: 3;
    }

    .login-button {
        min-width: 86px;
        height: 43px;
        padding: 0 22px;
        font-size: 12px;
        font-weight: 500;
    }

    .mobile-menu-button {
        display: inline-flex;
        grid-column: 4;
    }

    .mobile-nav-panel {
        position: fixed;
        inset: 0;
        z-index: 40;
        min-height: 100vh;
        padding: 45vh 24px 56px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: #ffffff;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
    }

    .mobile-nav-check:checked ~ .mobile-nav-panel {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 26px;
    }

    .mobile-nav-links a {
        color: #1b2433;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.2;
    }

    .footer-main {
        min-height: auto;
        padding: 35px 0px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-foot {
        min-height: auto;
        padding-top: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        border-top-width: 24px;
    }

    .footer-identity,
    .footer-identity address {
        text-align: left;
    }

    .footer-navs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 40px;
        row-gap: 30px;
    }

    .footer-links {
        flex: 0 1 auto;
        align-items: flex-start;
        gap: 0;
        white-space: normal;
    }

    .auth-page {
        min-height: auto;
        padding: 54px 18px 62px;
    }
}

@media (max-width: 520px) {
    .dashboard-main,
    .business-form-shell {
        padding: 22px 18px 44px;
    }

    .dashboard-nav,
    .dashboard-stats,
    .image-preview-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-topbar,
    .dashboard-panel__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-topbar {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: start;
    }

    .dashboard-topbar form {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .business-form-header h1,
    .dashboard-topbar h1 {
        font-size: 30px;
    }

    .form-section,
    .dashboard-panel {
        padding: 22px;
    }

    .nav-container {
        padding-inline: 22px;
    }

    .footer-container {
        padding: 0 20px 28px;
    }

    .brand-logo {
        height: 44px;
    }

    .brand-logo img {
        height: 38px;
    }

    .business-search {
        width: 100%;
    }

    .footer-brand img {
        height: 150px;
    }

    .footer-links a {
        margin-bottom: 30px;
        font-size: 14px;
        letter-spacing: 0;
        font-weight: 400;
    }

    .footer-foot > a,
    .footer-identity p {
        font-size: 16px;
    }

    .footer-identity address {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.55;
    }

    .auth-header h1 {
        font-size: 30px;
    }

    .content-hero {
        min-height: 300px;
    }

    .content-hero__inner {
        padding: 54px 18px 38px;
    }

    .content-hero h1 {
        font-size: 34px;
    }

    .content-shell {
        padding: 42px 18px 58px;
    }

    .content-card,
    .content-band,
    .event-row,
    .contact-info,
    .contact-form {
        padding: 22px;
    }

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

    .event-date {
        width: 84px;
    }

    .auth-label-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}
