:root {
    --display-font: "Cormorant Garamond", Georgia, serif;
    --body-font: "Montserrat", Arial, sans-serif;
    --ink: #242326;
    --muted: #717174;
    --gold: #caa256;
    --gold-dark: #b58d3f;
    --line: #e7e2d8;
    --paper: #fffdf9;
    --soft: #f8f5ef;
    --dark: #171717;
    --agency-bg: #e7e4dc;
    --agency-ink: #30302e;
    --agency-muted: #85827c;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

[data-aos] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .85s ease var(--aos-delay, 0ms), transform .85s cubic-bezier(.22, 1, .36, 1) var(--aos-delay, 0ms);
}

[data-aos="hero"] {
    transform: scale(1.015);
    transition-duration: 1.2s;
}

[data-aos="slide-left"] { transform: translateX(-28px); }
[data-aos="slide-right"] { transform: translateX(28px); }
[data-aos].aos-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    [data-aos] { opacity: 1; transform: none; }
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body-font);
    font-size: 16px;
    letter-spacing: 0;
}

a {
    color: inherit;
}

.container {
    max-width: 1420px;
}

.narrow {
    max-width: 880px;
}

.section-pad {
    padding: clamp(5rem, 9vw, 9rem) 0;
}

.eyebrow {
    margin: 0 0 1.1rem;
    color: rgba(255, 255, 255, .82);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.text-gold {
    color: var(--gold) !important;
}

.display-title {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    line-height: .88;
}

.title-rule {
    width: min(100%, 640px);
    height: 1px;
    margin: 3.5rem 0 2.5rem;
    background: #d7dce0;
}

.lead-copy {
    color: var(--muted);
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 500;
    line-height: 1.75;
}

.brand-mark {
    display: inline-flex;
    align-items: baseline;
    gap: .65rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .18em;
}

.brand-mark strong {
    color: var(--gold);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    margin-left: .8rem;
    color: rgba(255, 255, 255, .5);
    font: 600 .62rem var(--body-font);
    letter-spacing: .12em;
}

.language-switcher a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}

.language-switcher a:hover,
.language-switcher a.is-active {
    color: var(--gold);
}

.event-site-header__nav .language-switcher {
    color: rgba(255, 255, 255, .72);
}

.home-hero {
    min-height: 82vh;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: #fff;
}

.home-hero__media,
.home-hero__overlay {
    position: absolute;
    inset: 0;
}

.home-hero__media {
    background-image: url("../images/header.jpg.jpeg");
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.home-hero__overlay {
    background:
        radial-gradient(circle at 50% 46%, rgba(202, 162, 86, .16), transparent 34%),
        linear-gradient(180deg, rgba(19, 22, 24, .38), rgba(19, 22, 24, .78));
}

.home-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 82vh;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 2.5rem;
    padding-bottom: 7rem;
}

.home-hero__copy {
    max-width: 820px;
}

.home-hero h1 {
    margin: 0 0 1.5rem;
    font-family: var(--display-font);
    font-size: clamp(4.5rem, 11vw, 10rem);
    font-weight: 700;
    line-height: .86;
}

.home-hero p:last-child {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(1.05rem, 1.6vw, 1.45rem);
    line-height: 1.7;
}

.access-section {
    background: linear-gradient(90deg, #fff 0%, #fff 42%, var(--soft) 42%, var(--soft) 100%);
}

.feature-list {
    display: grid;
    gap: .75rem;
    padding: 2rem 0 0;
    margin: 0;
    list-style: none;
    color: #252528;
    font-size: 1.12rem;
    font-weight: 600;
}

.feature-list i {
    margin-right: .65rem;
    color: var(--gold);
}

.access-card,
.wish-form {
    padding: clamp(2rem, 4vw, 3.7rem);
    border: 1px solid rgba(25, 25, 25, .06);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(47, 39, 27, .09);
}

.form-label {
    color: var(--muted);
    font-size: .96rem;
    font-weight: 600;
}

.form-control {
    min-height: 52px;
    padding: .65rem 0;
    border: 0;
    border-bottom: 1px solid #dedede;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 600;
    box-shadow: none !important;
}

textarea.form-control {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--gold);
}

.field-error {
    min-height: 1.25rem;
    margin-top: .4rem;
    color: #a23a34;
    font-size: .82rem;
    font-weight: 600;
}

.check-row {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: .75rem;
    color: var(--muted);
    font-size: .94rem;
    font-weight: 500;
    line-height: 1.55;
}

.check-row input {
    width: 20px;
    height: 20px;
    margin-top: .12rem;
    accent-color: var(--gold);
}

.check-row a {
    color: var(--ink);
    font-weight: 700;
}

.btn {
    min-height: 52px;
    border-radius: 8px;
    font-weight: 800;
}

.btn-gold {
    border-color: var(--gold);
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover,
.btn-gold:focus {
    border-color: var(--gold-dark);
    background: var(--gold-dark);
    color: #fff;
}

.btn-dark-ewa {
    border: 1px solid #050505;
    background: #050505;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.btn-dark-ewa:hover,
.btn-dark-ewa:focus {
    border-color: #2b2a28;
    background: #2b2a28;
    color: #fff;
}

.ewa-agency-home {
    background: var(--agency-bg);
    color: var(--agency-ink);
}

.agency-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: var(--home-hero-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.agency-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .56), rgba(0, 0, 0, .23) 48%, rgba(0, 0, 0, .62)),
        linear-gradient(180deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, .52));
}

.agency-nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    width: 100%;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3.5rem);
    padding: clamp(1.5rem, 3vw, 3.4rem) clamp(1.25rem, 4vw, 4.4rem);
}

.agency-logo {
    display: grid;
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .34);
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.agency-logo span {
    display: block;
    font-family: var(--display-font);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: .8;
}

.agency-logo small {
    display: block;
    margin-top: .2rem;
    font-size: .31rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.agency-menu {
    display: flex;
    flex: 1;
    gap: clamp(1.6rem, 3vw, 3rem);
    align-items: center;
}

.agency-menu a,
.agency-call,
.agency-hero__button {
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .17em;
    text-decoration: none;
    text-transform: uppercase;
}

.agency-menu a {
    position: relative;
    color: rgba(255, 255, 255, .78);
    transition: color .25s ease;
}

.agency-menu a::after {
    position: absolute;
    right: 0;
    bottom: -.55rem;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: '';
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.agency-menu a:hover { color: #fff; }
.agency-menu a:hover::after { transform: scaleX(1); }

.agency-call,
.agency-hero__button {
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.agency-call:hover {
    color: #fff;
    background: var(--gold-dark);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
    transform: translateY(-3px);
}

.agency-hero__button:hover {
    color: var(--agency-ink);
    background: #f5efe3;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
    transform: translateY(-3px);
}

.agency-call {
    min-width: min(390px, 28vw);
    padding: 1.35rem 2rem;
    color: #fff;
    background: #050505;
    text-align: center;
}

.agency-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 8rem;
}

.agency-kicker,
.agency-section-kicker {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
    font-weight: 500;
    letter-spacing: .36em;
    text-transform: uppercase;
}

.agency-hero h1 {
    max-width: 1240px;
    margin: 0 auto;
    font-family: var(--display-font);
    font-size: clamp(4rem, 7.6vw, 8.5rem);
    font-weight: 500;
    line-height: 1.02;
}

.agency-subtitle {
    max-width: 900px;
    margin: 3rem auto 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1rem, 1.35vw, 1.35rem);
    font-weight: 500;
    letter-spacing: .22em;
    line-height: 1.75;
    text-transform: uppercase;
}

.agency-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(420px, 90vw);
    margin-top: 4rem;
    padding: 1.55rem 2rem;
    color: #333;
    background: #fff;
}

.agency-section {
    padding: clamp(5.5rem, 9vw, 8.5rem) 0;
    background: var(--agency-bg);
}

.agency-section-kicker {
    color: #73716c;
}

.agency-intro h2,
.agency-access h2,
.agency-compare h2 {
    margin: 0 auto;
    font-family: var(--display-font);
    font-size: clamp(3.4rem, 6.3vw, 6.8rem);
    font-weight: 500;
    line-height: 1.04;
}

.agency-intro p:not(.agency-section-kicker),
.agency-access p {
    color: var(--agency-muted);
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    font-weight: 400;
    line-height: 1.75;
}

.agency-intro .narrow > p:not(.agency-section-kicker) {
    margin: 3.5rem auto 0;
    max-width: 980px;
}

.agency-feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1160px;
    margin: 5rem auto 0;
}

.agency-feature-row article {
    min-height: 150px;
    padding: 2rem;
    border: 1px solid rgba(48, 48, 46, .1);
    color: #8a8781;
    background: rgba(255, 255, 255, .1);
}

.agency-feature-row i {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
}

.agency-feature-row span {
    font-size: .98rem;
    line-height: 1.6;
}

.agency-access {
    border-top: 1px solid rgba(48, 48, 46, .08);
}

.agency-access .container > .row {
    max-width: 1280px;
    margin: 0 auto;
}

.agency-access h2 {
    margin: 0 0 2rem;
}

.agency-access-note {
    display: inline-flex;
    gap: .75rem;
    margin-top: 2rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(48, 48, 46, .12);
    color: #77746e;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .82rem;
}

.agency-access-note span {
    color: var(--agency-ink);
    font-weight: 700;
}

.agency-form {
    padding: clamp(2rem, 4vw, 4rem);
    border: 1px solid rgba(48, 48, 46, .1);
    background: rgba(255, 255, 255, .16);
    box-shadow: none;
    transition: box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.auth-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(1.8rem, 3vw, 3rem);
    border: 1px solid rgba(48, 48, 46, .12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(48, 44, 36, .12);
}

.auth-panel::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 12%;
    left: 12%;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    content: '';
}

.auth-panel__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-panel__icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    place-items: center;
    border: 1px solid rgba(202, 162, 86, .34);
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    box-shadow: 0 10px 24px rgba(181, 141, 63, .22);
    font-size: 1rem;
}

.auth-panel__header strong {
    display: block;
    color: var(--agency-ink);
    font-family: var(--display-font);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: .95;
}

.auth-panel__eyebrow {
    display: block;
    margin-bottom: .45rem;
    color: var(--gold-dark);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.auth-panel .form-label {
    display: block;
    margin: .9rem 0 .45rem;
    color: #77736b;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.auth-panel .form-control {
    min-height: 56px;
    padding: .85rem 1rem;
    border: 1px solid rgba(48, 48, 46, .16);
    border-radius: 12px;
    background: #fbfaf7;
    color: var(--agency-ink);
    font-size: .96rem;
    font-weight: 600;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.auth-panel .form-control:focus {
    padding-left: 1rem;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(202, 162, 86, .14) !important;
    transform: translateY(-1px);
}

.auth-panel .form-control::placeholder {
    color: rgba(48, 48, 46, .36);
    font-weight: 500;
}

.auth-panel__submit {
    min-height: 56px;
    margin-top: 1.35rem;
    border: 0;
    border-radius: 12px !important;
    box-shadow: 0 12px 26px rgba(20, 20, 18, .14);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.auth-panel__submit:hover,
.auth-panel__submit:focus-visible {
    box-shadow: 0 16px 32px rgba(20, 20, 18, .2);
    transform: translateY(-2px);
}

.auth-panel__hint {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 1rem 0 0;
    color: #89847b !important;
    font-size: .76rem !important;
    line-height: 1.5 !important;
}

.auth-panel__hint i {
    color: var(--gold-dark);
}

.auth-register-summary__icon {
    display: inline-grid;
    width: 30px;
    height: 30px;
    margin-right: .7rem;
    place-items: center;
    border-radius: 10px;
    color: var(--gold-dark);
    background: #f7efdf;
}

.auth-register-summary__icon + span {
    flex: 1;
}

.account-access-panel {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(340px, .95fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    max-width: 1180px;
    padding: clamp(2rem, 5vw, 4.5rem);
    margin: 0 auto;
    border: 1px solid rgba(48, 48, 46, .12);
    border-radius: 28px;
    background: linear-gradient(135deg, #f8f4eb 0%, #fff 52%, #f5f1e8 100%);
    box-shadow: 0 30px 90px rgba(48, 44, 36, .1);
}

.account-access-panel__mark {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    place-items: center;
    border: 1px solid rgba(202, 162, 86, .34);
    border-radius: 15px;
    color: var(--gold-dark);
    background: #fffaf0;
}

.account-access-panel__copy h2 {
    margin-bottom: 1.4rem;
}

.account-access-panel__copy > p:last-of-type {
    max-width: 420px;
    margin-bottom: 0;
}

.account-panel-logout,
.agency-account-logout {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--agency-muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease;
}

.account-panel-logout {
    margin-top: 2rem;
}

.account-panel-logout:hover,
.agency-account-logout:hover {
    color: var(--gold-dark);
    transform: translateX(3px);
}

.admin-home-panel {
    max-width: 980px;
    padding: clamp(1.5rem, 4vw, 2.8rem);
    margin: 0 auto;
    border: 1px solid var(--editorial-line, rgba(48, 48, 46, .12));
    background: linear-gradient(135deg, #fbfaf7, #f3efe7);
    box-shadow: 0 20px 55px rgba(48, 44, 36, .08);
}

.admin-home-panel__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.7rem;
    border-bottom: 1px solid rgba(48, 48, 46, .12);
}

.admin-home-panel__title {
    margin: 0 0 .7rem !important;
    color: var(--agency-ink);
    font-family: var(--display-font);
    font-size: clamp(2.5rem, 4vw, 4rem) !important;
    font-weight: 400 !important;
    line-height: .95;
}

.admin-home-panel__top > div:first-child > p:last-child {
    max-width: 570px;
    margin: 0;
}

.admin-home-panel__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-home-panel__dashboard {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1rem;
    color: #fff;
    background: #25282d;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-home-panel__dashboard:hover { color: #fff; background: var(--gold-dark); }
.admin-home-panel__actions .account-panel-logout { margin-top: 0; }

.admin-home-event-form { margin-top: 1.5rem; }
.admin-home-event-form label { display: block; margin-bottom: .6rem; color: var(--agency-muted); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.admin-home-event-form__controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .7rem; }
.admin-home-event-form .form-control { min-height: 50px; padding: .65rem 1rem; border: 1px solid rgba(48, 48, 46, .15); background: #fff; }
.admin-home-event-form .btn { min-width: 160px; }

.agency-account-logout {
    min-height: 42px;
    padding: .7rem 1rem;
    border: 1px solid rgba(255, 255, 255, .28);
    color: rgba(255, 255, 255, .82);
}

.agency-account-logout:hover {
    border-color: var(--gold);
    color: #fff;
}

.agency-form__eyebrow {
    margin: 0 0 .65rem;
    color: var(--gold-dark) !important;
    font-size: .72rem !important;
    font-weight: 600 !important;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.agency-form h3 {
    margin: 0 0 1.4rem;
    color: var(--agency-ink);
    font-family: var(--display-font);
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 400;
}

.account-register-details,
.event-register-details {
    margin-top: 1rem;
    border-top: 1px solid rgba(48, 48, 46, .15);
}

.account-register-details summary,
.event-register-details summary {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: 1.25rem 0;
    color: var(--agency-muted);
    cursor: pointer;
    font-size: .85rem;
    letter-spacing: .08em;
    list-style: none;
    text-transform: uppercase;
}

.account-register-details summary::-webkit-details-marker,
.event-register-details summary::-webkit-details-marker {
    display: none;
}

.account-register-details summary strong,
.event-register-details summary strong {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-left: auto;
    color: var(--gold-dark);
}

.account-register-details[open] summary,
.event-register-details[open] summary {
    color: var(--agency-ink);
}

.account-register-details .agency-form,
.event-register-details .access-card {
    margin-bottom: 1rem;
}

.form-hint--intro {
    margin: -1rem 0 1.5rem;
    font-size: .86rem;
}

.agency-form:focus-within {
    border-color: rgba(202, 162, 86, .45);
    background: rgba(255, 255, 255, .32);
    box-shadow: 0 25px 70px rgba(48, 44, 36, .08);
}

.agency-form .form-label {
    color: #75726d;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.agency-form .form-control {
    border-bottom-color: rgba(48, 48, 46, .22);
    transition: border-color .25s ease, padding-left .25s ease;
}

.agency-form .form-control:focus {
    padding-left: .35rem;
}

.agency-form .form-control::placeholder {
    color: rgba(48, 48, 46, .35);
}

.agency-compare {
    padding-top: 3rem;
}

.agency-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1320px;
    margin-top: 5rem;
}

.agency-compare-card {
    padding: clamp(2.5rem, 5vw, 5rem);
    min-height: 420px;
}

.agency-compare-card h3 {
    margin: 0 0 3rem;
    color: #73716c;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.agency-compare-card p {
    display: flex;
    gap: 1rem;
    margin: 0 0 1.8rem;
    color: #8a8781;
    font-size: 1.05rem;
    line-height: 1.6;
}

.agency-compare-card--light {
    background: rgba(255, 255, 255, .12);
}

.agency-compare-card--dark {
    background: #2e2d2b;
}

.agency-compare-card--dark h3,
.agency-compare-card--dark p {
    color: #bbb6ad;
}

.btn-outline-gold {
    border-color: rgba(202, 162, 86, .45);
    color: var(--ink);
    background: #fff;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: #fff;
    background: var(--gold);
}

.btn-loader {
    display: inline-block;
    width: 1.15rem;
    height: 1.15rem;
    border: 2px solid rgba(255, 255, 255, .5);
    border-top-color: #fff;
    border-radius: 999px;
    animation: spin .8s linear infinite;
}

.form-message {
    margin-bottom: 1rem;
    padding: .9rem 1rem;
    border-radius: 8px;
    color: #7f241f;
    background: #fff0ed;
    font-size: .94rem;
    font-weight: 700;
}

.form-message.success {
    color: #215b3a;
    background: #edf8f0;
}

.intro-panel {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: #fff;
}

.intro-panel h2 {
    margin: 0 0 2rem;
    font-family: var(--display-font);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
}

.intro-panel p {
    margin: 0 auto;
    max-width: 880px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    font-weight: 600;
    line-height: 1.9;
}

.concierge-hero {
    padding: clamp(5rem, 8vw, 8rem) 0 4rem;
    background: #fff;
}

.concierge-hero h1 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(4.2rem, 9vw, 8rem);
    font-weight: 700;
    line-height: .95;
}

.concierge-hero p:not(.eyebrow) {
    max-width: 980px;
    margin: 2.2rem auto 0;
    color: var(--muted);
    font-size: 1.15rem;
    font-weight: 600;
}

.welcome-chip {
    display: inline-flex;
    margin-top: 1.75rem;
    padding: .65rem 1rem;
    border: 1px solid rgba(202, 162, 86, .28);
    border-radius: 999px;
    color: var(--gold-dark);
    background: #fffaf0;
    font-weight: 800;
}

.service-section {
    padding: 2rem 0 clamp(5rem, 8vw, 8rem);
    background: #fff;
}

.service-card {
    display: flex;
    min-height: 360px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    color: var(--ink);
    text-align: center;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(202, 162, 86, .5);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .08);
}

.service-icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin-bottom: 2rem;
    place-items: center;
    border-radius: 999px;
    color: var(--gold);
    background: #fbf6ee;
    font-size: 1.65rem;
}

.service-card h2 {
    margin: 0 0 1.35rem;
    font-size: 1.55rem;
    font-weight: 800;
}

.service-card p {
    min-height: 78px;
    margin: 0 0 1.8rem;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.mini-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-width: 132px;
    justify-content: center;
    padding: .75rem 1rem;
    border: 1px solid rgba(202, 162, 86, .35);
    border-radius: 8px;
    color: #161a27;
    background: #fff;
    font-weight: 800;
}

.mini-btn i {
    color: var(--gold);
}

.gallery-section,
.wishes-section {
    background: var(--soft);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: .95;
}

.gallery-item {
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #ddd;
    box-shadow: 0 24px 64px rgba(48, 40, 28, .1);
}

.gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform .28s ease;
}

.gallery-item:hover img {
    transform: scale(1.045);
}

.gallery-modal {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: transparent;
}

.gallery-modal .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    background-color: #fff;
    opacity: 1;
}

.gallery-modal img {
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
    background: #111;
}

.wish-form__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.wish-form__meta span {
    color: var(--muted);
    font-weight: 700;
}

.comment-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.comment-card,
.empty-state {
    border: 1px solid rgba(25, 25, 25, .06);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(47, 39, 27, .06);
}

.comment-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    padding: 1.2rem;
}

.comment-avatar {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--gold);
    font-weight: 900;
}

.comment-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.comment-card__head strong {
    font-weight: 800;
}

.comment-card__head time {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.comment-card p {
    margin: .5rem 0 0;
    color: #4e4e52;
    line-height: 1.65;
    white-space: pre-wrap;
}

.empty-state {
    padding: 1.2rem;
    color: var(--muted);
    font-weight: 700;
}

.logout-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.5rem;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.site-footer {
    padding: 5rem 0;
    color: rgba(255, 255, 255, .58);
    background: var(--dark);
}

.site-footer h2 {
    margin: 0 0 .6rem;
    color: #fff;
    font-family: var(--body-font);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.site-footer p {
    margin: 0 0 1.5rem;
    font-weight: 600;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 3rem;
}

.site-footer a {
    color: #f6f1eb;
    font-weight: 700;
    text-decoration: none;
}

.site-footer small {
    color: rgba(255, 255, 255, .35);
    font-weight: 600;
    line-height: 1.7;
}

.site-footer small a {
    color: #caa256;
    text-decoration: none;
    transition: color .25s ease;
}

.site-footer small a:hover {
    color: #fff;
}

.event-site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 1.2rem clamp(1.25rem, 4vw, 4.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
}

.event-site-header__brand {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, .58);
    color: #fff;
    font-family: var(--display-font);
    line-height: .8;
    text-align: center;
    text-decoration: none;
    transition: background .3s ease, color .3s ease;
}

.event-site-header__brand:hover {
    background: #fff;
    color: var(--ink);
}

.event-site-header__brand span {
    font-size: 1.7rem;
    font-weight: 400;
}

.event-site-header__brand small {
    margin-top: .35rem;
    font-family: var(--body-font);
    font-size: .48rem;
    font-weight: 500;
    letter-spacing: .18em;
}

.event-site-header__nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
}

.event-site-header__nav a {
    color: rgba(255, 255, 255, .88);
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .16em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .25s ease;
}

.event-site-header__nav a:hover {
    color: var(--gold);
}

.event-site-header__logout {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .9rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, .35);
}

.event-site-header__logout:hover {
    border-color: var(--gold);
}

.privacy-page {
    background: var(--soft);
}

.privacy-hero {
    background: #fff;
}

.privacy-content {
    background: var(--soft);
}

.privacy-block {
    padding: 0 0 2.8rem;
    margin-bottom: 2.8rem;
    border-bottom: 1px solid rgba(48, 48, 46, .12);
}

.privacy-block--last {
    margin-bottom: 2.5rem;
}

.privacy-block h2 {
    margin: 0 0 1rem;
    color: var(--ink);
    font-family: var(--display-font);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 600;
}

.privacy-block p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991.98px) {
    .agency-nav {
        position: absolute;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .agency-logo {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
    }

    .agency-menu {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
        justify-content: center;
    }

    .agency-call {
        min-width: auto;
        margin-left: auto;
        padding: 1rem 1.2rem;
        font-size: .76rem;
    }

    .agency-feature-row,
    .agency-compare-grid {
        grid-template-columns: 1fr 1fr;
    }

    .access-section {
        background: var(--soft);
    }

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

    .service-card {
        min-height: 320px;
    }
}

@media (max-width: 767.98px) {
    .event-site-header {
        min-height: 76px;
        padding: .8rem 1rem;
    }

    .event-site-header__brand {
        width: 56px;
        height: 56px;
    }

    .event-site-header__brand span {
        font-size: 1.35rem;
    }

    .event-site-header__nav {
        gap: .65rem;
    }

    .event-site-header__nav a {
        font-size: .62rem;
        letter-spacing: .08em;
    }

    .event-site-header__nav a:first-child {
        display: none;
    }

    .event-site-header__logout {
        padding: .7rem .75rem;
    }

    .agency-hero {
        min-height: 94vh;
        background-position: center;
    }

    .agency-nav {
        gap: 1rem;
        padding: 1rem;
    }

    .agency-logo {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
    }

    .agency-logo span {
        font-size: 1.45rem;
    }

    .agency-menu {
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: .25rem;
    }

    .agency-menu a,
    .agency-call,
    .agency-hero__button {
        font-size: .72rem;
        letter-spacing: .12em;
    }

    .agency-call {
        padding: .85rem .9rem;
    }

    .agency-hero__content {
        padding-top: 9rem;
    }

    .agency-kicker,
    .agency-section-kicker,
    .agency-subtitle {
        letter-spacing: .18em;
    }

    .agency-hero h1 {
        font-size: clamp(3.1rem, 14vw, 5rem);
    }

    .agency-subtitle {
        margin-top: 2rem;
        font-size: .86rem;
    }

    .agency-hero__button {
        min-width: 0;
        width: 100%;
        margin-top: 2.5rem;
    }

    .agency-feature-row,
    .agency-compare-grid {
        grid-template-columns: 1fr;
    }

    .agency-compare-card {
        min-height: auto;
    }

    .home-hero,
    .home-hero__content {
        min-height: 76vh;
    }

    .home-hero__content {
        padding-bottom: 4rem;
    }

    .display-title {
        font-size: clamp(3.6rem, 17vw, 5rem);
    }

    .access-card,
    .wish-form {
        padding: 1.5rem;
    }

    .comment-card {
        grid-template-columns: 42px 1fr;
    }

    .comment-avatar {
        width: 42px;
        height: 42px;
        font-size: .85rem;
    }

    .comment-card__head {
        align-items: flex-start;
        flex-direction: column;
        gap: .2rem;
    }

    .wish-form__meta {
        align-items: stretch;
        flex-direction: column;
    }
}

/* Editorial wedding theme */
.ewa-agency-home,
.event-dynamic {
    --editorial-paper: #e9e7df;
    --editorial-white: #fdfcf8;
    --editorial-black: #252422;
    --editorial-gray: #85827b;
    --editorial-line: rgba(37, 36, 34, .14);
    background: var(--editorial-paper);
    color: var(--editorial-black);
}

.ewa-agency-home .agency-hero {
    min-height: 100vh;
    background-color: #191817;
}

.ewa-agency-home .agency-hero__shade {
    background: linear-gradient(180deg, rgba(12, 12, 11, .58), rgba(12, 12, 11, .3) 45%, rgba(12, 12, 11, .72));
}

.ewa-agency-home .agency-nav {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.ewa-agency-home .agency-logo,
.ewa-agency-home .agency-menu a,
.ewa-agency-home .agency-call,
.ewa-agency-home .agency-kicker,
.ewa-agency-home .agency-subtitle {
    font-weight: 300;
}

.ewa-agency-home .agency-logo {
    border-color: rgba(255, 255, 255, .55);
}

.ewa-agency-home .agency-logo span {
    font-family: var(--display-font);
    font-weight: 400;
    letter-spacing: .05em;
}

.ewa-agency-home .agency-logo {
    display: inline-flex;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ewa-agency-home .agency-logo span {
    font-size: 1.7rem;
    line-height: .8;
}

.ewa-agency-home .agency-logo small {
    margin-top: .35rem;
    font-size: .48rem;
    font-weight: 500;
    letter-spacing: .18em;
    line-height: 1;
}

.ewa-agency-home .agency-hero h1 {
    max-width: 1100px;
    margin-inline: auto;
    color: #fff;
    font-size: clamp(3.8rem, 8vw, 8.5rem);
    font-weight: 300;
    letter-spacing: -.01em;
    line-height: .86;
}

.ewa-agency-home .agency-hero h1 em {
    color: #e0c27d;
}

.ewa-agency-home .agency-hero__button,
.ewa-agency-home .agency-call {
    border-radius: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.ewa-agency-home .agency-hero__button {
    background: var(--editorial-white);
    color: var(--editorial-black);
}

.ewa-agency-home .agency-hero__button:hover {
    background: #d2aa64;
    color: #fff;
}

.ewa-agency-home .agency-section {
    background: var(--editorial-paper);
}

.ewa-agency-home .agency-intro {
    padding-top: clamp(6rem, 11vw, 11rem);
    padding-bottom: clamp(6rem, 10vw, 10rem);
}

.ewa-agency-home .agency-section-kicker {
    color: #6e6b65;
    font-weight: 400;
    letter-spacing: .22em;
}

.ewa-agency-home .agency-section h2,
.ewa-agency-home .agency-access h2,
.ewa-agency-home .agency-compare h2 {
    color: var(--editorial-black);
    font-weight: 300;
}

.ewa-agency-home .agency-intro h2,
.ewa-agency-home .agency-compare h2 {
    font-size: clamp(3.1rem, 6vw, 6.4rem);
    line-height: .95;
}

.ewa-agency-home .agency-intro > .narrow > p:last-child,
.ewa-agency-home .agency-access p,
.ewa-agency-home .agency-feature-row span,
.ewa-agency-home .agency-compare-card p {
    color: var(--editorial-gray);
    font-weight: 300;
}

.ewa-agency-home .agency-feature-row article {
    min-height: 170px;
    border: 1px solid var(--editorial-line);
    border-radius: 0;
    background: transparent;
}

.ewa-agency-home .agency-access {
    background: var(--editorial-white);
}

.ewa-agency-home .agency-form,
.ewa-agency-home .access-card {
    border-radius: 0;
    background: var(--editorial-white);
    box-shadow: 0 22px 55px rgba(38, 34, 27, .08);
}

.ewa-agency-home .agency-form .form-control {
    font-weight: 300;
}

.ewa-agency-home .btn-dark-ewa,
.ewa-agency-home .btn-gold {
    border-radius: 0;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ewa-agency-home .agency-compare {
    padding-top: clamp(6rem, 10vw, 10rem);
    padding-bottom: clamp(7rem, 12vw, 12rem);
}

.ewa-agency-home .agency-compare-card {
    border-radius: 0;
    box-shadow: none;
}

.ewa-agency-home .agency-compare-card h3 {
    font-weight: 400;
    letter-spacing: .12em;
}

.ewa-agency-home .agency-compare-card--dark {
    background: #2b2927;
}

.ewa-agency-home .agency-compare-card--dark p,
.ewa-agency-home .agency-compare-card--dark h3 {
    color: rgba(255, 255, 255, .74);
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.ewa-agency-home .agency-my-events {
    padding: clamp(4rem, 7vw, 7rem) 0;
    border-top: 1px solid var(--editorial-line);
    border-bottom: 1px solid var(--editorial-line);
    background: #f5f3ed;
}

.ewa-agency-home .agency-contact {
    background: #fdfcf8;
}

.form-hint {
    margin-top: .35rem;
    color: var(--muted);
    font-size: .76rem;
    font-weight: 300;
    line-height: 1.45;
}

.form-recovery-link {
    display: block;
    margin-top: 1rem;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 400;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: .2em;
}

.form-recovery-link:hover {
    color: var(--gold-dark);
}

.auth-page {
    min-height: 100vh;
    background: var(--editorial-paper, #e9e7df);
}

.auth-shell {
    display: grid;
    min-height: calc(100vh - 170px);
    place-items: center;
    padding: 8rem 1rem 6rem;
}

.auth-card {
    width: min(100%, 560px);
    padding: clamp(2rem, 5vw, 4.5rem);
    border: 1px solid rgba(37, 36, 34, .12);
    background: #fdfcf8;
    box-shadow: 0 24px 70px rgba(38, 34, 27, .08);
}

.auth-card__back {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 3rem;
    color: var(--muted);
    font-size: .75rem;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.auth-card__back:hover {
    color: var(--gold-dark);
}

.auth-card h1 {
    margin: 0 0 1.25rem;
    color: var(--editorial-black, #252422);
    font-family: var(--display-font);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: .9;
}

.auth-card__intro {
    margin: 0 0 2rem;
    color: var(--editorial-gray, #85827b);
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.75;
}

.auth-card form {
    display: grid;
    gap: .55rem;
}

.auth-card form .form-label {
    margin-top: .6rem;
}

.auth-card form button {
    margin-top: 1.2rem;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.auth-card--otp {
    text-align: center;
}

.auth-card--otp .auth-card__back {
    align-self: flex-start;
}

.auth-card--otp .agency-section-kicker {
    margin-bottom: 1.5rem;
}

.auth-card--otp .auth-card__intro strong {
    color: var(--editorial-black, #252422);
    font-weight: 500;
    word-break: break-word;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: clamp(.55rem, 2vw, 1rem);
    margin: .75rem 0 1.2rem;
}

.otp-input {
    width: clamp(3.35rem, 13vw, 4.4rem);
    height: clamp(3.8rem, 14vw, 4.8rem);
    padding: 0;
    border: 1px solid rgba(37, 36, 34, .2);
    border-radius: 0;
    background: #fff;
    color: var(--editorial-black, #252422);
    font-family: var(--display-font);
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.otp-input:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 4px rgba(202, 162, 86, .14);
    transform: translateY(-2px);
}

.otp-resend-form {
    display: block !important;
    margin-top: .75rem;
}

.otp-resend {
    margin: 0 !important;
    padding: .75rem 0 !important;
    border: 0;
    color: var(--muted);
    background: transparent;
    font-size: .78rem;
    font-weight: 500 !important;
    letter-spacing: .06em !important;
    text-decoration: underline;
    text-underline-offset: .25em;
    text-transform: none !important;
}

.otp-resend:hover,
.otp-resend:focus {
    color: var(--gold-dark);
}

.ewa-agency-home .agency-contact h2 {
    margin: 0 0 1.5rem;
    color: var(--editorial-black);
    font-family: var(--display-font);
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 300;
    line-height: .85;
}

.ewa-agency-home .agency-contact .col-lg-5 > p:last-child {
    max-width: 430px;
    color: var(--editorial-gray);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

.ewa-agency-home .contact-form select.form-control {
    appearance: auto;
    padding: .65rem 0;
}

.ewa-agency-home .contact-form textarea.form-control {
    min-height: 150px;
    padding: 1rem;
    border: 1px solid var(--editorial-line);
    border-radius: 0;
}

.contact-form__honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.event-dynamic .event-couple-title,
.event-dynamic .event-couple-subtitle {
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .event-dynamic .event-couple-title,
    .event-dynamic .event-couple-subtitle {
        white-space: normal;
    }
}

.ewa-agency-home .editorial-image-band {
    position: relative;
    min-height: clamp(300px, 43vw, 650px);
    margin: 0;
    overflow: hidden;
    background: #2b2927;
}

.ewa-agency-home .editorial-image-band::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 22, 20, .18), transparent 50%, rgba(23, 22, 20, .2));
    content: '';
}

.ewa-agency-home .editorial-image-band img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.ewa-agency-home .agency-my-events__intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.ewa-agency-home .agency-my-events__intro h2 {
    margin: 0;
    color: var(--editorial-black);
    font-family: var(--display-font);
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 300;
    line-height: .9;
}

.ewa-agency-home .agency-my-events__intro > p {
    max-width: 360px;
    margin: 0;
    color: var(--editorial-gray);
    font-size: .95rem;
    font-weight: 300;
    line-height: 1.7;
}

.ewa-agency-home .agency-my-events__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.ewa-agency-home .agency-event-link {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    gap: 1rem;
    padding: 1.6rem;
    border: 1px solid var(--editorial-line);
    background: var(--editorial-white);
    color: var(--editorial-black);
    text-decoration: none;
    transition: background .35s ease, color .35s ease, transform .35s ease;
}

.ewa-agency-home .agency-event-link__open {
    display: grid;
    flex: 1;
    align-content: space-between;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
}

.ewa-agency-home .agency-event-link:hover {
    background: var(--editorial-black);
    color: #fff;
    transform: translateY(-5px);
}

.ewa-agency-home .agency-event-link__remove {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(37, 36, 34, .12);
}

.ewa-agency-home .agency-event-link__remove-button {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: 0;
    border: 0;
    color: #8c5d56;
    background: transparent;
    cursor: pointer;
    font-family: var(--body-font);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .25s ease, opacity .25s ease;
}

.ewa-agency-home .agency-event-link__remove-button:hover,
.ewa-agency-home .agency-event-link__remove-button:focus-visible {
    color: #d8a08f;
}

.ewa-agency-home .agency-event-link__remove-button:disabled {
    cursor: wait;
    opacity: .55;
}

.ewa-agency-home .agency-event-link__remove-message {
    color: #a23a34;
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: right;
}

.ewa-agency-home .agency-event-link__code,
.ewa-agency-home .agency-event-link__action {
    color: var(--gold-dark);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ewa-agency-home .agency-event-link strong {
    font-family: var(--display-font);
    font-size: 2rem;
    font-weight: 400;
}

.ewa-agency-home .agency-event-link__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ewa-agency-home .agency-event-link:hover .agency-event-link__code,
.ewa-agency-home .agency-event-link:hover .agency-event-link__action {
    color: #e0c27d;
}

.ewa-agency-home .agency-event-link:hover .agency-event-link__open {
    color: #fff;
}

.ewa-agency-home .agency-event-link:hover .agency-event-link__remove {
    border-top-color: rgba(255, 255, 255, .2);
}

@media (max-width: 767.98px) {
    .ewa-agency-home .agency-logo {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .ewa-agency-home .agency-logo span {
        font-size: 1.35rem;
    }

    .ewa-agency-home .agency-my-events__intro {
        align-items: flex-start;
        flex-direction: column;
    }
}

.ewa-agency-home .auth-panel {
    border-radius: 24px;
    background: var(--editorial-white);
}

@media (max-width: 991.98px) {
    .account-access-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767.98px) {
    .admin-home-panel__top {
        align-items: stretch;
        flex-direction: column;
        gap: 1.25rem;
    }

    .admin-home-panel__actions {
        justify-content: flex-start;
    }

    .admin-home-event-form__controls {
        grid-template-columns: 1fr;
    }

    .admin-home-event-form .btn {
        width: 100%;
    }

    .agency-account-logout {
        min-height: 38px;
        padding: .55rem .7rem;
        font-size: .62rem;
    }

    .account-access-panel {
        padding: 1.35rem;
        border-radius: 20px;
    }

    .auth-panel {
        padding: 1.35rem;
        border-radius: 18px;
    }

    .auth-panel__header {
        align-items: flex-start;
        margin-bottom: 1.4rem;
    }

    .auth-panel__header strong {
        font-size: 2.15rem;
    }

    .account-register-details summary,
    .event-register-details summary {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 1rem 0;
    }

    .account-register-details summary strong,
    .event-register-details summary strong {
        width: 100%;
        margin-left: 2.55rem;
    }
}
