:root {
    --color-navy: #061a3a;
    --color-navy-dark: #04142d;
    --color-gold: #dcab44;
    --color-gold-dark: #bd8730;
    /* AA-compliant gold for TEXT/icons on light surfaces (bright gold fails
       contrast as text). Borders/backgrounds keep --color-gold. */
    --color-gold-ink: #8a5b12;
    --color-ink: #101828;
    --color-body: #404040;
    --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: 1240px;
}

* {
    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-body);
    background: var(--color-page);
    font-family: var(--font-body);
    font-weight: 200;
    font-size: 14px;
    letter-spacing: 0;
    overflow-x: hidden;
}

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

button,
[type="submit"],
.site-navbar__login,
.auth-panel__submit {
    border-radius: 0;
    font-weight: 400;
    padding: 12px 18px;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

h1,
h2,
h3,
.auth-panel__header p {
    font-family: var(--font-display);
    font-weight: 700;
    /* No global color: headings inherit their context (white on the dark hero,
       ink on light surfaces). Forcing a color here broke the hero contrast. */
}

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

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

.site-navbar__brand,
.site-footer__brand {
    width: max-content;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.site-navbar__brand {
    height: 46px;
}

.site-navbar__brand img {
    width: auto;
    height: 34px;
    display: block;
}

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

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

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

.site-navbar__link:hover::after,
.site-navbar__link--active::after {
    opacity: 1;
    transform: scaleX(1);
}

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

.mobile-nav__check,
.mobile-nav__toggle,
.mobile-nav__panel {
    display: none;
}

.mobile-nav__toggle,
.mobile-nav__close {
    color: #000000;
    cursor: pointer;
}

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

.mobile-nav__toggle 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);
}

.site-navbar__search {
    width: min(210px, 100%);
}

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

.site-navbar__search input::placeholder {
    color: #7b8494;
}

.site-navbar__search input:focus {
    border-color: #c7d2e4;
    background: #ffffff;
}

.site-navbar__login {
    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;
}

.site-navbar__login:hover {
    color: var(--color-gold-ink);
    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;
}

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

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

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

.site-footer__brand {
    flex: 1 1 auto;
    height: auto;
}

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

.site-footer__navs {
    display: flex;
    align-items: flex-start;
    gap: 78px;
}

.site-footer__identity p {
    margin: 0 0 10px;
    color: var(--color-gold); /* bright gold on the black footer (passes contrast) */
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

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

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

.site-footer__links div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.site-footer__links a:hover {
    color: #ffffff;
}

.site-footer__foot > a {
    flex: 0 0 auto;
    color: var(--color-gold); /* bright gold on the black footer (passes contrast) */
    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-panel__header {
    margin-bottom: 34px;
    text-align: center;
}

.auth-panel__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-panel__header h1 {
    margin: 0;
    color: var(--color-navy-dark);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
}

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

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

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

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

.auth-panel__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-panel__success-message i {
    color: #12b76a;
    font-size: 15px;
}

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

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

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

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

.auth-panel__field input,
.auth-panel__field select,
.auth-panel__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-panel__field input {
    height: 54px;
    padding: 0 18px;
}

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

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

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

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

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

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

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

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

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

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

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

.auth-panel__password {
    position: relative;
}

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

.auth-panel__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-panel__password-toggle i {
    font-size: 18px;
    line-height: 1;
}

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

.auth-panel__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-panel__submit:hover {
    color: var(--color-gold-ink);
    background: #ffffff;
    border-color: var(--color-gold);
    transform: none;
}

.auth-panel__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-page__shell {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 68px 28px 86px;
}

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

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

.business-form-page__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-page__header h1 em {
    font-weight: 400;
}

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

.business-form-page__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-panel__field:first-child {
    grid-column: 1;
}

.social-media__custom {
    grid-column: 2;
}

.social-media__row .auth-panel__field:last-of-type {
    grid-column: 3;
    min-width: 0;
}

.social-media__custom[hidden] + .auth-panel__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;
}

.image-upload-preview__cover,
.image-preview__cover-button {
    position: absolute;
    bottom: 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__cover:hover,
.image-preview__cover-button:hover {
    background: #f59e0b;
}

.image-upload-preview__cover--active,
.image-preview__cover-button--active {
    background: #f59e0b;
    border-color: #fbbf24;
}

.image-upload-preview__cover i,
.image-preview__cover-button 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-page__toolbar span,
.content-page__band span {
    color: var(--color-gold-ink);
    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-page__shell {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 64px 28px 82px;
}

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

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

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

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

.content-page__card,
.content-page__band,
.event-list__row,
.contact-layout__info,
.contact-layout__form {
    background: #ffffff;
    border: 1px solid #ece9df;
    border-radius: 6px;
    box-shadow: 0 14px 32px rgba(35, 43, 54, 0.08);
}

.content-page__card {
    padding: 28px;
}

.content-page__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-page__card h2,
.content-page__band h2,
.content-page__toolbar h2,
.event-list__row h2,
.contact-layout__info h2 {
    margin: 14px 0 10px;
    color: #17263d;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.content-page__card p,
.content-page__band p,
.event-list__row p {
    margin: 0;
    color: #4c5665;
    font-size: 14px;
    line-height: 1.65;
}

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

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

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

.content-page__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-page__toolbar a:hover {
    color: var(--color-gold-ink);
    background: #ffffff;
}

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

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

.event-list__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-list__date strong {
    font-size: 28px;
    line-height: 1;
}

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

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

.event-list__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-layout__info,
.contact-layout__form {
    padding: 28px;
}

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

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

.contact-layout__info i {
    width: 20px;
    color: var(--color-gold-ink);
    font-size: 17px;
}

.contact-layout__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.dashboard__nav-link--active {
    color: var(--color-gold-ink);
    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__button--ghost,
.dashboard__button--danger {
    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__button--ghost:hover,
.dashboard__button--danger:hover {
    color: var(--color-gold-ink);
    background: #ffffff;
    border-color: var(--color-gold);
}

.dashboard__button--ghost {
    background: #ffffff;
    color: var(--color-gold-ink);
}

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

.dashboard__button--danger: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 5px 4px 10px;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    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--active {
    flex-direction: row;
    padding: 4px 10px 4px 5px;
    color: #067647;
    background: rgba(18, 183, 106, 0.08);
    border-color: rgba(18, 183, 106, 0.24);
}

.dashboard__toggle--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__page--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);
}

.bulk__input-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.bulk__section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.bulk__section-heading h2 {
    margin: 0;
}

.bulk__input-textarea {
    min-height: 360px;
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
    font-size: 12px;
    line-height: 1.6;
    white-space: pre;
}

.bulk__input-textarea:disabled {
    color: #667085;
    background: #f2f4f7;
    border-color: #d0d5dd;
    cursor: not-allowed;
}

.bulk__file-preview {
    min-height: 44px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #17263d;
    background: #f8fafc;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.bulk__file-preview[hidden] {
    display: none;
}

.bulk__file-preview > i {
    color: var(--color-gold-ink);
    font-size: 17px;
}

.bulk__file-preview span {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bulk__file-preview button {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #344054;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease;
}

.bulk__file-preview button:hover {
    color: #b42318;
    border-color: rgba(180, 35, 24, 0.45);
}

.bulk__help-panel {
    padding: 22px;
    background: #fbfaf5;
    border: 1px solid #ece9df;
    border-radius: 6px;
}

.bulk__help-panel h3 {
    margin: 0 0 10px;
    color: #17263d;
    font-size: 16px;
}

.bulk__help-panel h3:not(:first-child) {
    margin-top: 24px;
}

.bulk__help-panel p {
    margin: 0 0 12px;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}

.bulk__help-panel code,
.bulk__category-list span {
    min-height: 28px;
    padding: 5px 8px;
    display: inline-flex;
    align-items: center;
    color: #17263d;
    background: #ffffff;
    border: 1px solid #ece9df;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.35;
}

.bulk__code-grid,
.bulk__category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bulk__error-list {
    max-height: 220px;
    overflow: auto;
    padding: 12px 14px;
    color: #b42318;
    background: rgba(217, 45, 32, 0.08);
    border: 1px solid rgba(217, 45, 32, 0.24);
    border-radius: 6px;
}

.bulk__error-list p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}

.bulk__error-list p + p {
    margin-top: 6px;
}

.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__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #f8fafc;
}

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

.image-preview__delete-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.image-preview__remove-button {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(16, 24, 40, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    cursor: pointer;
    transition: background 160ms ease;
}

.image-preview__remove-button:hover {
    background: #b42318;
}

.image-preview__remove-button i {
    font-size: 11px;
    line-height: 1;
}

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

    .bulk__input-layout {
        grid-template-columns: 1fr;
    }

    .bulk__section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .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-panel__field:first-child,
    .social-media__custom,
    .social-media__row .auth-panel__field:last-of-type,
    .social-media__custom[hidden] + .auth-panel__field {
        grid-column: auto;
    }

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

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

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

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

    .site-footer__container {
        padding: 0 22px 30px;
    }

    .site-navbar__links {
        display: none;
    }

    .site-navbar__actions {
        width: auto;
        justify-content: flex-end;
        grid-column: 3;
    }

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

    .mobile-nav__toggle {
        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;
    }

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

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

    .site-footer__identity,
    .site-footer__identity address {
        text-align: left;
    }

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

    .site-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-page__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-page__header h1,
    .dashboard__topbar h1 {
        font-size: 30px;
    }

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

    .site-navbar__container {
        padding-inline: 22px;
    }

    .site-footer__container {
        padding: 0 20px 28px;
    }

    .site-navbar__brand {
        height: 44px;
    }

    .site-navbar__brand img {
        height: 38px;
    }

    .site-navbar__search {
        width: 100%;
    }

    .site-footer__brand img {
        height: 150px;
    }

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

    .site-footer__foot > a,
    .site-footer__identity p {
        font-size: 16px;
    }

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

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

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

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

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

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

    .content-page__card,
    .content-page__band,
    .event-list__row,
    .contact-layout__info,
    .contact-layout__form {
        padding: 22px;
    }

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

    .event-list__date {
        width: 84px;
    }

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