@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap");

:root {
    --bg: #f2f6fa;
    --panel: #ffffff;
    --panel-soft: #f8fbff;
    --text: #1b2938;
    --muted: #5f7185;
    --line: #d7e0ec;
    --primary: #0f4c81;
    --primary-strong: #083a66;
    --success: #1f8f4a;
    --danger: #b42318;
    --warning: #b16a00;
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 0% 0%, #e6f0fb 0%, transparent 35%),
        radial-gradient(circle at 100% 0%, #eaf4ff 0%, transparent 38%),
        linear-gradient(180deg, #f4f8fc 0%, #f8fbff 52%, #ffffff 100%);
    font-family: "Manrope", "Segoe UI", sans-serif;
}

.page-shell {
    min-height: 100vh;
}

.container {
    width: min(1160px, 94%);
    margin: 24px auto 52px;
}

.topbar {
    position: sticky;
    top: 10px;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: min(1240px, 96%);
    margin: 12px auto 0;
    padding: 11px 14px;
    border: 1px solid #d5dfeb;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(18, 50, 82, 0.1);
}

.brand {
    text-decoration: none;
    color: #0a3f71;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 1.14rem;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.nav-links a {
    text-decoration: none;
    color: #23394f;
    background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
    border: 1px solid #d3deec;
    padding: 8px 11px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 180ms ease;
}

.nav-links a:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #ffffff 0%, #e7f1fb 100%);
    border-color: #b8cae0;
    box-shadow: 0 6px 16px rgba(20, 60, 99, 0.12);
}

.nav-links a.is-active {
    border-color: #a8bfd9;
    background: linear-gradient(180deg, #ffffff 0%, #e3eefb 100%);
    color: #163a5c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page-intro h1 {
    margin: 0 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.page-intro p {
    margin: 0 0 18px;
    color: var(--muted);
}

.landing-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    background: linear-gradient(138deg, #0d3f6c 0%, #0f4c81 45%, #2f78b2 100%);
    border-radius: 18px;
    padding: 34px 30px;
    color: #f8fbff;
    margin-bottom: 14px;
    border: 1px solid rgba(153, 205, 247, 0.38);
    box-shadow: 0 20px 45px rgba(9, 56, 97, 0.3);
}

.landing-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    right: -74px;
    top: -86px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.landing-hero-content {
    position: relative;
    z-index: 1;
}

.landing-kicker {
    margin: 0 0 10px;
    font-size: 0.75rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    color: #cfe7fb;
}

.landing-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.15;
    max-width: 17ch;
}

.landing-lead {
    margin: 0;
    max-width: 60ch;
    line-height: 1.65;
    color: #e8f3ff;
}

.landing-cta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-proof {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    align-self: end;
}

.landing-proof-item {
    border: 1px solid rgba(207, 231, 251, 0.35);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    backdrop-filter: blur(3px);
}

.landing-proof-item strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 2px;
    color: #ffffff;
}

.landing-proof-item span {
    display: block;
    color: #d9ebfb;
    font-size: 0.84rem;
}

.landing-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.landing-nav a {
    text-decoration: none;
    background: #fff;
    border: 1px solid #d4deea;
    color: #1b3b57;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all 180ms ease;
}

.landing-nav a:hover {
    transform: translateY(-1px);
    background: #edf5ff;
    border-color: #bed0e3;
}

.landing-section h2 {
    margin: 0 0 6px;
    font-size: 1.25rem;
}

.landing-section > p {
    margin: 0 0 14px;
    color: var(--muted);
}

.landing-grid {
    display: grid;
    gap: 12px;
}

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

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

.landing-card {
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
    border: 1px solid #d7e1ee;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(16, 53, 85, 0.05);
}

.landing-step {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #165c97;
    letter-spacing: 0.06em;
}

.landing-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.landing-card p {
    margin: 0;
    color: #4f6176;
    line-height: 1.55;
    font-size: 0.92rem;
}

.landing-chip {
    display: inline-flex;
    margin-top: 10px;
    border-radius: 999px;
    border: 1px solid #c5d7ea;
    background: #edf5ff;
    color: #194a77;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 9px;
}

.landing-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: #334a62;
}

.landing-final {
    text-align: center;
}

.landing-final .landing-cta {
    justify-content: center;
}

.panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 18px 19px;
    margin-bottom: 16px;
    box-shadow: 0 12px 28px rgba(16, 58, 97, 0.08);
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.panel h2 {
    margin: 0;
    font-size: 1.08rem;
    font-family: "Space Grotesk", sans-serif;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    text-align: left;
    padding: 11px 10px;
    border-bottom: 1px solid #e7edf6;
    vertical-align: top;
    font-size: 0.92rem;
}

th {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.stat-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
}

.stat-card h3 {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card p {
    margin: 10px 0 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-strong);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    text-decoration: none;
    background: linear-gradient(180deg, #1262a5 0%, #0d4d82 100%);
    color: #fff;
    border-radius: 11px;
    padding: 10px 15px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #0f5b98 0%, #083f6c 100%);
    box-shadow: 0 8px 20px rgba(9, 55, 95, 0.24);
}

.btn-secondary {
    background: linear-gradient(180deg, #ffffff 0%, #f1f6fc 100%);
    color: #214366;
    border: 1px solid #cfdceb;
    box-shadow: none;
}

.btn-secondary:hover {
    background: linear-gradient(180deg, #ffffff 0%, #e9f2fb 100%);
    border-color: #b8cae0;
    box-shadow: 0 6px 16px rgba(20, 60, 99, 0.12);
}

.btn-small {
    font-size: 0.8rem;
    padding: 7px 9px;
}

.btn-row-inline {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.form-grid {
    display: grid;
    gap: 10px;
    max-width: 860px;
}

.form-grid.compact {
    max-width: 620px;
}

.form-section-title {
    margin: 10px 0 2px;
    font-size: 0.95rem;
    color: #1f3350;
    letter-spacing: 0.01em;
}

.form-section-note {
    margin: 0 0 6px;
    font-size: 0.83rem;
    color: #5d6f85;
}

.form-grid label {
    font-size: 0.84rem;
    color: #3f5168;
    font-weight: 600;
}

input,
textarea,
select {
    border: 1px solid #cad8ea;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.95rem;
    width: 100%;
    background: #fff;
    color: var(--text);
}

textarea {
    resize: vertical;
}

.html-editor {
    width: 100%;
    border: 1px solid #d8e2ef;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.html-editor-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    background: #f7faff;
    border-bottom: 1px solid #e2eaf4;
}

.html-editor-modes {
    display: inline-flex;
    border: 1px solid #d3deec;
    border-radius: 9px;
    overflow: hidden;
}

.html-editor-mode {
    border: 0;
    background: #eef4fb;
    color: #3f5168;
    padding: 6px 10px;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
}

.html-editor-mode.is-active {
    background: #ffffff;
    color: #1e3450;
}

.html-editor-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.html-editor-btn {
    border: 1px solid #cfdbea;
    border-radius: 8px;
    background: #fff;
    color: #31465d;
    padding: 5px 8px;
    min-width: 34px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.html-editor-btn:hover {
    background: #f4f8fc;
    border-color: #b8cae0;
}

.html-editor-visual {
    min-height: 180px;
    padding: 12px;
    outline: none;
    line-height: 1.55;
    color: #2f4055;
}

.html-editor-visual:focus {
    box-shadow: inset 0 0 0 2px rgba(15, 76, 129, 0.15);
}

.html-editor-visual h1,
.html-editor-visual h2,
.html-editor-visual h3,
.html-editor-visual h4,
.html-editor-visual h5,
.html-editor-visual h6,
.html-editor-visual p {
    margin-top: 0;
}

.html-editor-source {
    border: 0;
    border-radius: 0;
    padding: 12px;
    min-height: 220px;
    resize: vertical;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: 0.84rem;
    line-height: 1.5;
}

.html-editor.is-html-mode .html-editor-toolbar {
    opacity: 0.55;
    pointer-events: none;
}

.form-inline {
    display: flex;
    gap: 8px;
    align-items: center;
}

.inline-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.switch-field {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    font-size: 0.82rem;
}

.switch-field span {
    line-height: 1.35;
}

.switch-field input[type="checkbox"],
.switch-field input[type="radio"] {
    width: auto;
    margin: 0;
    flex: 0 0 auto;
    accent-color: #b89f84;
}

.slug-status {
    margin: -2px 0 2px;
    min-height: 18px;
    font-size: 0.82rem;
    color: #6d7f93;
}

.slug-status.ok {
    color: #1f7b45;
}

.slug-status.busy {
    color: #9d251d;
}

.slug-status.neutral {
    color: #7b6c5b;
}

.slug-suggest-btn {
    justify-self: start;
}

.custom-fields-box {
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid #d8e2ef;
    border-radius: 12px;
    background: #f7faff;
}

.custom-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 8px;
    align-items: center;
}

.custom-field-row .btn {
    white-space: nowrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.78rem;
    border: 1px solid transparent;
}

.badge-success {
    color: #18663a;
    background: #def4e5;
    border-color: #b8e5c8;
}

.badge-danger {
    color: #8e1d16;
    background: #fde9e8;
    border-color: #f6c9c6;
}

.badge-muted {
    color: #556070;
    background: #edf2f7;
    border-color: #d7dfea;
}

.alert {
    border-radius: 11px;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid transparent;
    font-size: 0.92rem;
}

.alert.success {
    color: #18663a;
    background: #e5f8ec;
    border-color: #c5ebd5;
}

.alert.error {
    color: #8e1d16;
    background: #fdf0ef;
    border-color: #f6d0cc;
}

.alert.warning {
    color: #7a4a00;
    background: #fff3df;
    border-color: #f7dfb9;
}

.form-errors {
    border: 1px solid #f0c2bc;
    border-radius: 10px;
    background: #fff4f2;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.form-errors p {
    margin: 4px 0;
    color: #9d241b;
    font-size: 0.9rem;
}

.auth-wrapper {
    min-height: calc(100vh - 230px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: min(460px, 100%);
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 15px 35px rgba(15, 76, 129, 0.08);
}

.auth-card h1 {
    margin-top: 0;
    margin-bottom: 8px;
}

.auth-card p {
    margin-top: 0;
    color: var(--muted);
}

.auth-switch {
    margin: 14px 0 0;
    font-size: 0.9rem;
}

.auth-switch a {
    color: var(--primary-strong);
}

.cover-preview {
    margin: 4px 0 6px;
    border: 1px solid #d9e2ef;
    border-radius: 12px;
    padding: 10px;
    background: #f8fbff;
    width: min(100%, 380px);
}

.cover-preview-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d4dfef;
    background: #edf3fb;
}

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

.cover-preview figcaption {
    margin-top: 8px;
    font-size: 0.82rem;
    color: #596a80;
}

.guest-photo-qr-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid #e2d5c4;
    border-radius: 14px;
    background: linear-gradient(180deg, #fffdf9 0%, #f8f2e9 100%);
    padding: 12px;
}

.guest-photo-qr-img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    border: 1px solid #dbc9b4;
    background: #fff;
    padding: 5px;
}

.guest-photo-qr-meta {
    min-width: 0;
}

.guest-photo-copy {
    margin: 0 0 8px;
    color: #5f4e3e;
    font-size: 0.9rem;
    line-height: 1.5;
}

.guest-photo-link {
    display: block;
    color: #6b563f;
    font-size: 0.82rem;
    text-decoration: none;
    word-break: break-all;
}

.guest-photo-link:hover {
    text-decoration: underline;
}

.guest-photo-count {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #d9cab7;
    background: #f8efe5;
    color: #5a4735;
    font-size: 0.8rem;
    font-weight: 700;
}

.guest-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}

.guest-photo-card {
    border: 1px solid #e4d6c5;
    border-radius: 14px;
    background: #fffdf9;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(95, 72, 49, 0.08);
}

.guest-photo-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f2e9dd;
    overflow: hidden;
}

.guest-photo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guest-photo-body {
    padding: 10px;
    display: grid;
    gap: 6px;
}

.guest-photo-name {
    margin: 0;
    font-size: 0.88rem;
    color: #483829;
    font-weight: 700;
}

.guest-photo-time {
    margin: 0;
    font-size: 0.79rem;
    color: #7b6752;
}

.inline-delete-form {
    display: inline-flex;
    margin-top: 2px;
}

code {
    padding: 2px 5px;
    border-radius: 6px;
    background: #f0f4fa;
    border: 1px solid #d9e2ef;
}

body.admin-ui {
    color: #2b2d33;
    background:
        radial-gradient(circle at 12% -12%, #f8f3ec 0%, rgba(248, 243, 236, 0) 42%),
        radial-gradient(circle at 92% 0%, #f3ece3 0%, rgba(243, 236, 227, 0) 40%),
        linear-gradient(180deg, #f9f6f2 0%, #f5f1eb 100%);
}

body.admin-ui .page-shell {
    padding-bottom: 24px;
}

body.admin-ui .container {
    width: min(1320px, 96%);
    margin-top: 18px;
}

body.admin-ui .topbar {
    top: 12px;
    width: min(1330px, 96%);
    gap: 14px;
    padding: 12px 14px;
    border-color: #4f3e2f;
    background: linear-gradient(180deg, rgba(54, 41, 31, 0.95) 0%, rgba(44, 34, 26, 0.96) 100%);
    box-shadow: 0 16px 34px rgba(40, 29, 21, 0.33);
    backdrop-filter: blur(8px);
}

body.admin-ui .brand {
    color: #f4e9dd;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.85rem;
    line-height: 1;
}

body.admin-ui .nav-links {
    gap: 7px;
}

body.admin-ui .nav-links a {
    color: #f3e4d3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(244, 223, 198, 0.24);
    border-radius: 12px;
    padding: 8px 11px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

body.admin-ui .nav-links a:hover {
    color: #ffffff;
    border-color: rgba(245, 222, 194, 0.48);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.09) 100%);
    box-shadow: 0 8px 16px rgba(9, 5, 2, 0.24);
}

body.admin-ui .nav-links a.is-active {
    color: #2f2115;
    border-color: rgba(249, 224, 195, 0.82);
    background: linear-gradient(180deg, #f5dec0 0%, #e6c79f 100%);
    box-shadow: 0 8px 16px rgba(28, 16, 8, 0.2);
}

body.admin-ui .nav-links a:last-child {
    color: #ffd3d0;
    border-color: rgba(255, 175, 168, 0.34);
    background: linear-gradient(180deg, rgba(194, 67, 57, 0.42) 0%, rgba(154, 45, 38, 0.42) 100%);
}

body.admin-ui .nav-links a:last-child:hover {
    color: #ffe7e5;
    border-color: rgba(255, 191, 186, 0.6);
    background: linear-gradient(180deg, rgba(204, 74, 64, 0.55) 0%, rgba(163, 50, 42, 0.55) 100%);
}

body.admin-ui .page-intro {
    margin: 0 0 16px;
    padding: 20px 22px;
    border: 1px solid #eadfce;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdfa 0%, #f9f4ec 100%);
    box-shadow: 0 10px 24px rgba(93, 72, 49, 0.08);
}

body.admin-ui .page-intro h1 {
    margin-bottom: 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.6vw, 2.7rem);
    color: #352b22;
    letter-spacing: 0.01em;
}

body.admin-ui .page-intro p {
    margin-bottom: 0;
    color: #6c5a47;
    font-size: 0.96rem;
}

body.admin-ui .stats-grid {
    margin-bottom: 14px;
    gap: 14px;
}

body.admin-ui .stat-card {
    position: relative;
    overflow: hidden;
    border-color: #e8dac8;
    border-radius: 16px;
    padding: 18px;
    background: linear-gradient(180deg, #fffdfb 0%, #f7efe6 100%);
    box-shadow: 0 12px 24px rgba(99, 75, 52, 0.12);
}

body.admin-ui .stat-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -34px;
    top: -45px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(206, 182, 152, 0.34) 0%, rgba(206, 182, 152, 0) 72%);
}

body.admin-ui .stat-card h3 {
    color: #7a6652;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

body.admin-ui .stat-card p {
    color: #2f271e;
    font-size: 2rem;
}

.admin-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.admin-quick-card {
    text-decoration: none;
    border: 1px solid #e8dac8;
    border-radius: 16px;
    padding: 16px;
    background: linear-gradient(180deg, #fffdfb 0%, #f8f2e9 100%);
    box-shadow: 0 10px 22px rgba(97, 73, 49, 0.1);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-quick-card:hover {
    transform: translateY(-2px);
    border-color: #d9c3ab;
    box-shadow: 0 14px 28px rgba(89, 67, 45, 0.16);
}

.admin-quick-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.71rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9a8168;
}

.admin-quick-card h3 {
    margin: 0 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    color: #3e3328;
}

.admin-quick-card p {
    margin: 0;
    color: #6a5b4a;
    line-height: 1.5;
    font-size: 0.88rem;
}

body.admin-ui .panel {
    border-color: #e9dccb;
    border-radius: 18px;
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f2ea 100%);
    box-shadow: 0 12px 28px rgba(98, 75, 53, 0.09);
}

body.admin-ui .panel h2 {
    color: #3b2f24;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    letter-spacing: 0.01em;
}

body.admin-ui .panel-head {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ecdfcf;
}

body.admin-ui .btn {
    background: linear-gradient(180deg, #cdb79e 0%, #b79f84 100%);
    border-color: #b59d82;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(144, 116, 87, 0.24);
}

body.admin-ui .btn:hover {
    background: linear-gradient(180deg, #d6c1a8 0%, #bea88e 100%);
    box-shadow: 0 10px 22px rgba(135, 106, 76, 0.26);
}

body.admin-ui .btn-secondary {
    color: #4e3f31;
    border-color: #d0bca7;
    background: linear-gradient(180deg, #ffffff 0%, #f7eee4 100%);
    box-shadow: none;
}

body.admin-ui .btn-secondary:hover {
    border-color: #c0a88f;
    background: linear-gradient(180deg, #ffffff 0%, #f3e8db 100%);
    box-shadow: 0 6px 14px rgba(108, 84, 60, 0.11);
}

body.admin-ui .table-wrap {
    border: 1px solid #ebdfcf;
    border-radius: 14px;
    background: #fffdfb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.admin-ui table {
    min-width: 920px;
}

body.admin-ui th {
    color: #745e48;
    border-bottom-color: #e4d5c3;
    background: #f9f3ea;
    font-size: 0.73rem;
    letter-spacing: 0.09em;
}

body.admin-ui td {
    border-bottom-color: #eee4d7;
    color: #3f352c;
}

body.admin-ui tbody tr:hover {
    background: #fbf5ed;
}

body.admin-ui td a {
    color: #7e5836;
    font-weight: 700;
    text-decoration: none;
}

body.admin-ui td a:hover {
    color: #5c3e24;
    text-decoration: underline;
}

body.admin-ui input,
body.admin-ui textarea,
body.admin-ui select {
    border-color: #d8c9b8;
    border-radius: 12px;
    background: #fffcf8;
    color: #2f271f;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.admin-ui input[type="checkbox"],
body.admin-ui input[type="radio"] {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.admin-ui input:focus,
body.admin-ui textarea:focus,
body.admin-ui select:focus {
    outline: none;
    border-color: #b69d80;
    box-shadow: 0 0 0 3px rgba(189, 160, 128, 0.18);
}

body.admin-ui .form-section-title {
    margin-top: 14px;
    color: #4a3b2d;
    font-size: 1.06rem;
}

body.admin-ui .form-section-note {
    color: #6d5b48;
    font-size: 0.87rem;
}

body.admin-ui .form-grid label {
    color: #5b4b3a;
}

body.admin-ui .switch-field {
    gap: 8px;
    padding: 9px 10px;
    border-radius: 12px;
    border: 1px solid #e3d3c2;
    background: #faf4ec;
    color: #5b4a39;
}

body.admin-ui .switch-field input[type="checkbox"] {
    width: auto;
    margin: 0;
}

body.admin-ui .custom-fields-box {
    border-color: #e5d6c5;
    border-radius: 14px;
    background: linear-gradient(180deg, #fffdf9 0%, #f8f2e8 100%);
}

body.admin-ui .badge-success {
    color: #165a36;
    background: #e3f6e9;
    border-color: #bfe3ca;
}

body.admin-ui .badge-danger {
    color: #87221b;
    background: #fdebea;
    border-color: #f2cbc8;
}

body.admin-ui .badge-muted {
    color: #5f5d58;
    background: #f2eee8;
    border-color: #e2dacc;
}

body.admin-ui .alert.success {
    color: #1f5f3d;
    background: #eaf8ef;
    border-color: #cde9d6;
}

body.admin-ui .alert.error {
    color: #8e241d;
    background: #fff1ef;
    border-color: #f0cbc6;
}

body.admin-ui .alert.warning {
    color: #7f530f;
    background: #fff4e1;
    border-color: #f2ddba;
}

body.admin-ui code {
    background: #f8f1e7;
    border-color: #e5d7c5;
    color: #5b4c3c;
}

body.admin-ui .cover-preview {
    border-color: #e4d5c4;
    border-radius: 14px;
    background: #fdf8f1;
}

body.admin-ui .cover-preview-media {
    border-color: #dccab6;
    background: #f4e9dd;
}

body.admin-ui.admin-users-page .users-add-panel,
body.admin-ui.admin-users-page .users-list-panel {
    background: linear-gradient(180deg, #fffdfa 0%, #f7f0e7 100%);
}

.users-create-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

.users-field {
    display: grid;
    gap: 6px;
}

.users-form-actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 2px;
}

body.admin-ui .users-switch {
    margin: 0;
    width: fit-content;
}

.users-manage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 12px;
}

.user-manage-card {
    border: 1px solid #e5d7c6;
    border-radius: 16px;
    background: linear-gradient(180deg, #fffefc 0%, #f8f1e8 100%);
    box-shadow: 0 10px 20px rgba(95, 72, 49, 0.08);
    padding: 14px;
    display: grid;
    gap: 10px;
}

.user-manage-head {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: flex-start;
}

.user-main-info {
    min-width: 0;
}

.user-name {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.02rem;
    color: #34291f;
    word-break: break-word;
}

.user-email {
    margin: 2px 0 0;
    color: #6f5d4b;
    font-size: 0.9rem;
    word-break: break-word;
}

.user-meta-badges {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.user-created {
    margin: 0;
    color: #7d6852;
    font-size: 0.8rem;
}

.user-manage-form {
    display: grid;
    gap: 10px;
}

body.admin-ui .user-manage-form .btn {
    justify-self: start;
}

body.user-ui {
    color: #2f312f;
    background:
        radial-gradient(circle at 10% -15%, #f8f2ea 0%, rgba(248, 242, 234, 0) 45%),
        linear-gradient(180deg, #f9f6f2 0%, #f5f0e8 100%);
}

body.user-ui .container {
    width: min(1200px, 95%);
    margin-top: 18px;
}

body.user-ui .topbar {
    top: 12px;
    border-color: #e5d8c9;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(101, 78, 54, 0.12);
}

body.user-ui .brand {
    color: #3b2f23;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
}

body.user-ui .nav-links a {
    color: #4e3f31;
    border-color: #d9c8b4;
    background: linear-gradient(180deg, #ffffff 0%, #f7efe4 100%);
    font-weight: 700;
}

body.user-ui .nav-links a:hover {
    color: #2f241a;
    border-color: #c3ab8f;
    background: linear-gradient(180deg, #ffffff 0%, #f3e7d9 100%);
}

body.user-ui .nav-links a.is-active {
    color: #2f2115;
    border-color: #c8b094;
    background: linear-gradient(180deg, #f7e4ca 0%, #ebd0ae 100%);
}

body.user-ui .page-intro {
    margin: 0 0 14px;
    padding: 20px 22px;
    border: 1px solid #e8dac8;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdfa 0%, #f8f2e8 100%);
    box-shadow: 0 10px 24px rgba(96, 73, 50, 0.08);
}

body.user-ui .page-intro h1 {
    margin-bottom: 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: #352b22;
}

body.user-ui .page-intro p {
    margin-bottom: 0;
    color: #6f5d4a;
}

body.user-ui .panel {
    border-color: #e8dac8;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f1e8 100%);
    box-shadow: 0 12px 26px rgba(98, 75, 52, 0.08);
}

body.user-ui .panel h2 {
    font-family: "Cormorant Garamond", serif;
    color: #3a2f24;
    font-size: 1.6rem;
}

body.user-ui .panel-head {
    border-bottom: 1px solid #eadccb;
    margin-bottom: 14px;
    padding-bottom: 10px;
}

body.user-ui .btn {
    background: linear-gradient(180deg, #cdb79f 0%, #b8a085 100%);
    border-color: #b49c82;
    box-shadow: 0 8px 18px rgba(142, 114, 84, 0.22);
}

body.user-ui .btn:hover {
    background: linear-gradient(180deg, #d4bea5 0%, #c0a88f 100%);
}

body.user-ui .btn-secondary {
    color: #4c3d31;
    border-color: #d0bda9;
    background: linear-gradient(180deg, #ffffff 0%, #f7eee3 100%);
    box-shadow: none;
}

body.user-ui .btn-secondary:hover {
    border-color: #bda388;
    background: linear-gradient(180deg, #ffffff 0%, #f3e8db 100%);
}

body.user-ui .table-wrap {
    border: 1px solid #eaddcc;
    border-radius: 14px;
    background: #fffdfb;
}

body.user-ui th {
    color: #735f4a;
    background: #faf4eb;
    border-bottom-color: #e4d6c4;
}

body.user-ui td {
    border-bottom-color: #eee4d7;
    color: #3f342a;
}

body.user-ui input,
body.user-ui textarea,
body.user-ui select {
    border-color: #d8c9b8;
    border-radius: 12px;
    background: #fffdf9;
    color: #2f271f;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.user-ui input[type="checkbox"],
body.user-ui input[type="radio"] {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.user-ui input:focus,
body.user-ui textarea:focus,
body.user-ui select:focus {
    outline: none;
    border-color: #b79e81;
    box-shadow: 0 0 0 3px rgba(186, 159, 127, 0.18);
}

body.user-ui .form-grid {
    max-width: 980px;
    gap: 12px;
}

body.user-ui .form-grid label {
    color: #5a4a39;
    font-size: 0.86rem;
}

body.user-ui .switch-field {
    border: 1px solid #e4d4c3;
    border-radius: 12px;
    background: #faf4ec;
    padding: 10px;
}

body.user-ui .cover-preview {
    border-color: #e5d7c5;
    background: #fdf8f1;
}

@media (max-width: 1180px) {
    body.admin-ui .topbar {
        position: static;
    }
    body.admin-ui .nav-links {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 860px) {
    .topbar {
        position: static;
        width: min(1240px, 96%);
        margin: 10px auto 0;
        padding: 10px;
    }
    .container {
        width: min(1200px, 96%);
        margin-top: 14px;
    }
    .nav-links {
        justify-content: flex-start;
    }
    .custom-field-row {
        grid-template-columns: 1fr;
    }
    .users-create-form {
        grid-template-columns: 1fr;
    }
    .users-form-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .guest-photo-qr-wrap {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    .guest-photo-qr-img {
        width: 176px;
        height: 176px;
    }
    .btn-row-inline {
        width: 100%;
    }
    .landing-grid-3,
    .landing-grid-2 {
        grid-template-columns: 1fr;
    }
    .landing-hero {
        grid-template-columns: 1fr;
        padding: 24px 18px;
        gap: 14px;
    }
    .landing-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .brand {
        font-size: 1rem;
    }
    .nav-links {
        width: 100%;
        gap: 6px;
    }
    .nav-links a {
        font-size: 0.78rem;
        padding: 7px 9px;
    }
    .landing-hero h1 {
        font-size: 1.65rem;
    }
    .landing-lead {
        font-size: 0.92rem;
    }
}

body.landing-page {
    background: #fefefe;
}

body.landing-page .page-shell {
    padding-bottom: 22px;
}

body.landing-page .topbar {
    top: 12px;
    width: min(1240px, 95%);
    padding: 13px 16px;
    border-color: #e7dccf;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(120, 96, 70, 0.11);
}

body.landing-page .brand {
    color: #2f2a25;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
}

body.landing-page .nav-links {
    gap: 8px;
    align-items: center;
}

body.landing-page .topbar-nav-link {
    text-decoration: none;
    color: #6e6255;
    border-radius: 10px;
    padding: 7px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: all 180ms ease;
}

body.landing-page .topbar-nav-link:hover {
    color: #473d32;
    border-color: #decfbe;
    background: #faf5ef;
}

body.landing-page .topbar-separator {
    width: 1px;
    height: 22px;
    background: #e5d9cb;
    margin: 0 2px;
}

body.landing-page .topbar-auth-btn {
    text-decoration: none;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: all 180ms ease;
}

body.landing-page .topbar-auth-login {
    color: #4d4338;
    border-color: #dac8b4;
    background: linear-gradient(180deg, #ffffff 0%, #f8f1e9 100%);
}

body.landing-page .topbar-auth-login:hover {
    border-color: #cbb49a;
    background: linear-gradient(180deg, #ffffff 0%, #f5ece2 100%);
}

body.landing-page .topbar-auth-register {
    color: #fff;
    border-color: #b59d83;
    background: linear-gradient(180deg, #ccb59d 0%, #b79f86 100%);
    box-shadow: 0 8px 16px rgba(145, 117, 87, 0.24);
}

body.landing-page .topbar-auth-register:hover {
    background: linear-gradient(180deg, #d2bca3 0%, #bea78e 100%);
}

body.landing-page .container {
    width: min(1140px, 94%);
    margin-top: 26px;
}

.lp-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.lp-hero-main,
.lp-hero-side {
    animation: lpRise 460ms ease both;
}

.lp-hero-side {
    display: flex;
    align-items: stretch;
}

.lp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid #e9ddd1;
    background: #f3ece6;
    color: #6e6155;
    font-size: 1.02rem;
    letter-spacing: 0;
    font-weight: 700;
}

.lp-hero h1 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.7rem, 6vw, 4.75rem);
    line-height: 0.95;
    color: #232327;
    max-width: none;
    width: 100%;
}

.lp-lead {
    margin: 0;
    color: #3d3c41;
    line-height: 1.62;
    font-size: 1.03rem;
    max-width: 66ch;
}

.lp-lead-strong {
    margin-bottom: 10px;
    font-size: clamp(1.62rem, 2.9vw, 2.1rem);
    line-height: 1.2;
    font-weight: 700;
    color: #2b2b2f;
}

.lp-lead-muted {
    color: #4f4f56;
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.lp-bullets {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    color: #36363d;
    font-size: 1.05rem;
}

.lp-bullets li {
    position: relative;
    padding-left: 44px;
    line-height: 1.42;
    font-weight: 600;
}

.lp-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(180deg, #c7b29b 0%, #bca68f 100%);
    box-shadow: 0 3px 10px rgba(114, 96, 77, 0.2);
}

.lp-cta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

body.landing-page .lp-cta .btn {
    min-width: 200px;
    padding: 14px 22px;
    border-radius: 14px;
    background: linear-gradient(180deg, #cdb79f 0%, #baa289 100%);
    border-color: #b8a086;
    color: #fff;
    box-shadow: 0 10px 22px rgba(171, 146, 120, 0.24);
    font-size: 1.04rem;
    font-weight: 700;
}

body.landing-page .lp-cta .btn:hover {
    background: linear-gradient(180deg, #d4bda4 0%, #c0a98f 100%);
}

.lp-hero .lp-cta .btn::before {
    content: "◉";
    margin-right: 10px;
    font-size: 0.72rem;
    opacity: 0.88;
}

body.landing-page .lp-cta .btn-secondary {
    color: #403a34;
    border-color: #c8b49c;
    background: #ffffff;
    box-shadow: none;
}

body.landing-page .lp-cta .btn-secondary:hover {
    border-color: #b9a186;
    background: #fefcf9;
}

.lp-hero .lp-cta .btn-secondary::before {
    content: "↗";
    margin-right: 10px;
    font-size: 0.9rem;
}

.lp-hero-visual {
    margin: 0;
    width: 100%;
    min-height: 0;
    border-radius: 0;
    border: 0;
    overflow: visible;
    background: transparent;
    display: block;
}

.lp-hero-visual img {
    width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
}

.lp-trust-strip {
    margin: 14px 0 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.lp-logo-placeholder {
    min-height: 58px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px dashed #decfbe;
    background: linear-gradient(180deg, #fdf9f4 0%, #f8f0e7 100%);
    color: #7f6f5f;
    font-size: 0.78rem;
    font-weight: 700;
}

.lp-section {
    margin-top: 14px;
    border-color: #eadfce;
    box-shadow: 0 12px 28px rgba(103, 84, 63, 0.08);
    padding: 22px;
}

.lp-section-head h2,
.lp-final h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    line-height: 1.04;
    color: #3a3129;
}

.lp-section-head p {
    margin: 8px 0 0;
    color: #786a5b;
}

.lp-section-kicker {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: #9a846d;
}

.lp-grid {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

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

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

.lp-card {
    border: 1px solid #eadfce;
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
}

.lp-work-media {
    margin: 0 0 12px;
    border-radius: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    height: auto;
    display: block;
}

.lp-work-media img {
    width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
}

.lp-media-placeholder {
    width: 100%;
    height: 124px;
    border-radius: 10px;
    border: 1px dashed #ddcdbc;
    background:
        linear-gradient(120deg, #f6ede4 0%, #fffaf4 50%, #f6ede4 100%);
    margin-bottom: 10px;
}

.lp-inline-placeholder {
    width: 58px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c6ac8f 0%, #e5d6c7 100%);
    margin-bottom: 8px;
}

.lp-icon-placeholder {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #ddccbb;
    background: linear-gradient(145deg, #fbf4eb 0%, #f4e8db 100%);
    margin-bottom: 9px;
}

.lp-card h3 {
    margin: 0 0 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    color: #3e3328;
}

.lp-card p {
    margin: 0;
    color: #6a5d50;
    line-height: 1.58;
    font-size: 0.9rem;
}

.lp-step {
    display: inline-flex;
    margin-bottom: 7px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    color: #9b876f;
}

.lp-tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lp-tags span {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid #ddcfbe;
    background: #f9f2ea;
    color: #6d5f51;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
}

.lp-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: #695d52;
}

.lp-section-flow {
    background: linear-gradient(180deg, #fffdfa 0%, #f9f3ec 100%);
}

.lp-section-flow .lp-section-head {
    text-align: center;
}

.lp-section-flow .lp-section-head h2 {
    font-size: clamp(2rem, 3.2vw, 2.9rem);
}

.lp-section-flow .lp-grid {
    gap: 18px;
}

.lp-section-flow .lp-flow-card {
    position: relative;
    border-color: #e3d5c4;
    border-radius: 34px;
    background: linear-gradient(180deg, #fffdf9 0%, #f5ece2 100%);
    box-shadow: 0 20px 34px rgba(115, 92, 69, 0.15);
    text-align: center;
    overflow: hidden;
    padding: 0 22px 28px;
}

.lp-section-flow .lp-flow-card::before {
    content: "";
    position: absolute;
    top: 190px;
    left: 50%;
    width: 240px;
    height: 240px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(215, 191, 164, 0.34) 0%, rgba(215, 191, 164, 0) 72%);
    pointer-events: none;
}

.lp-section-flow .lp-work-media,
.lp-section-flow .lp-step,
.lp-section-flow .lp-flow-content {
    position: relative;
    z-index: 1;
}

.lp-section-flow .lp-work-media {
    margin: 20px auto 8px;
    max-width: 420px;
}

.lp-section-flow .lp-work-media img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 20px rgba(61, 44, 26, 0.22));
    transform: none;
}

.lp-section-flow .lp-step {
    width: 74px;
    height: 62px;
    margin: 6px auto 14px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    font-size: 2rem;
    letter-spacing: 0;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(180deg, #ccb59d 0%, #b89f84 100%);
    box-shadow: 0 8px 16px rgba(139, 112, 82, 0.3);
}

.lp-section-flow .lp-flow-content h3 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 0.98;
    color: #30271f;
}

.lp-section-flow .lp-flow-content p {
    margin: 0 auto;
    max-width: 28ch;
    font-size: 1.05rem;
    line-height: 1.46;
    color: #4f4338;
}

.lp-final {
    text-align: center;
}

.lp-cta-center {
    justify-content: center;
}

@keyframes lpRise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1020px) {
    body.landing-page .topbar {
        width: min(1240px, 96%);
        position: static;
    }
    .lp-hero {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .lp-grid-3,
    .lp-grid-2 {
        grid-template-columns: 1fr;
    }
    .lp-section-flow .lp-flow-card {
        max-width: 620px;
        margin: 0 auto;
    }
    .lp-section-flow .lp-flow-card::before {
        top: 140px;
    }
    .lp-trust-strip {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    body.landing-page .brand {
        font-size: 1.72rem;
    }
    body.landing-page .nav-links {
        width: 100%;
        justify-content: flex-start;
        gap: 6px;
    }
    body.landing-page .topbar-nav-link {
        font-size: 0.76rem;
        padding: 6px 8px;
    }
    body.landing-page .topbar-auth-btn {
        font-size: 0.76rem;
        padding: 7px 10px;
    }
    body.landing-page .topbar-separator {
        display: none;
    }
    .lp-hero h1 {
        max-width: none;
        font-size: clamp(2.45rem, 12vw, 3.1rem);
    }
    .lp-kicker {
        font-size: 0.96rem;
        padding: 10px 15px;
    }
    .lp-lead-strong {
        font-size: 1.95rem;
    }
    .lp-section-flow .lp-flow-card {
        border-radius: 24px;
        padding: 0 16px 20px;
    }
    .lp-section-flow .lp-work-media {
        margin-top: 14px;
    }
    .lp-section-flow .lp-step {
        width: 62px;
        height: 52px;
        border-radius: 16px;
        font-size: 1.7rem;
    }
    .lp-section-flow .lp-flow-content h3 {
        font-size: 2.15rem;
    }
    .lp-section-flow .lp-flow-content p {
        font-size: 1rem;
    }
    .lp-trust-strip {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Landing Redesign (April 2026)
   ========================================== */
body.landing-page {
    background:
        radial-gradient(circle at 0% 0%, #fbf7f2 0%, transparent 36%),
        radial-gradient(circle at 100% 0%, #f3ece2 0%, transparent 28%),
        #f7f3ee;
    color: #2f2923;
    font-family: "Manrope", "Segoe UI", sans-serif;
}

body.landing-page .container {
    width: min(1260px, 95%);
    margin-top: 22px;
}

body.landing-page .topbar {
    top: 10px;
    border-radius: 16px;
    border: 1px solid #e5dacd;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(118, 95, 73, 0.1);
}

body.landing-page .brand {
    color: #24211d;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.56rem;
    letter-spacing: 0.01em;
}

body.landing-page .nav-links {
    gap: 7px;
}

body.landing-page .topbar-nav-link {
    color: #62594d;
    font-size: 0.85rem;
    font-weight: 700;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 8px 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

body.landing-page .topbar-nav-link:hover {
    border-color: #e6d7c7;
    background: #faf6f1;
    color: #42392f;
}

body.landing-page .topbar-separator {
    width: 1px;
    height: 22px;
    background: #e8ddcf;
}

body.landing-page .topbar-auth-btn {
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 700;
}

body.landing-page .topbar-auth-login {
    color: #4f463a;
    border-color: #dac9b4;
    background: linear-gradient(180deg, #ffffff 0%, #f8f1e7 100%);
}

body.landing-page .topbar-auth-register {
    color: #fff;
    border-color: #2d2a27;
    background: linear-gradient(180deg, #2b2a28 0%, #171716 100%);
    box-shadow: 0 8px 16px rgba(36, 34, 30, 0.22);
}

body.landing-page .btn {
    border-radius: 12px;
    border: 1px solid #1f1d1b;
    padding: 12px 18px;
    background: linear-gradient(180deg, #292825 0%, #151514 100%);
    color: #fff;
    font-weight: 700;
}

body.landing-page .btn:hover {
    background: linear-gradient(180deg, #353431 0%, #1f1f1d 100%);
    transform: translateY(-1px);
}

.olp-hero {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 22px;
    align-items: center;
    padding: 14px 8px 8px;
}

.olp-hero-copy {
    padding-left: 10px;
}

.olp-chip {
    margin: 0 0 18px;
    display: inline-flex;
    border: 1px solid #ddd0c0;
    background: #f4ece2;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #65594c;
}

.olp-hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5.1vw, 5.1rem);
    line-height: 0.92;
    color: #201f1d;
}

.olp-hero h1 span {
    display: block;
    margin-top: 8px;
    font-size: 0.69em;
    font-style: italic;
    font-weight: 500;
    color: #ab8f6f;
}

.olp-subtitle {
    margin: 16px 0 8px;
    font-size: 1.16rem;
    font-weight: 700;
    color: #3b342d;
}

.olp-description {
    margin: 0;
    max-width: 54ch;
    line-height: 1.6;
    color: #61574d;
}

.olp-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.olp-link-btn {
    text-decoration: none;
    color: #393128;
    font-weight: 700;
    font-size: 0.88rem;
    border-bottom: 1px solid #c6b49e;
    padding-bottom: 2px;
}

.olp-hero-media {
    border-radius: 30px;
    overflow: hidden;
    min-height: 460px;
    border: 1px solid #e7dccf;
    background: #f7f1e8;
    box-shadow: 0 22px 36px rgba(90, 70, 49, 0.15);
}

.olp-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.olp-stat-row {
    margin: 18px 8px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.olp-stat {
    border: 1px solid #e6dacc;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f2e9 100%);
    padding: 14px 16px;
    display: grid;
    gap: 4px;
}

.olp-stat strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.26rem;
    color: #2d271f;
}

.olp-stat span {
    color: #756758;
    font-size: 0.83rem;
}

.olp-feature-row {
    margin: 16px 8px 0;
    border: 1px solid #e8dccf;
    border-radius: 18px;
    background: #fff;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
}

.olp-feature-card {
    border-right: 1px solid #efe5da;
    padding: 12px 10px;
}

.olp-feature-card:last-child {
    border-right: 0;
}

.olp-feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e7d9c8;
    background: #f8f1e8;
    color: #b18d64;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.olp-feature-card h3 {
    margin: 0 0 4px;
    font-size: 0.88rem;
    color: #2c2721;
}

.olp-feature-card p {
    margin: 0;
    font-size: 0.8rem;
    color: #786d60;
}

.olp-section {
    margin: 22px 8px 0;
    border: 1px solid #eadfce;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(105, 84, 61, 0.08);
    padding: 24px 22px;
}

.olp-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 800;
    font-size: 0.72rem;
    color: #9b8369;
}

.olp-section-head h2 {
    margin: 7px 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    color: #28231f;
}

.olp-section-head p {
    margin: 0;
    color: #6f6254;
}

.olp-section-head.centered {
    text-align: center;
}

.olp-section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.olp-inline-link {
    text-decoration: none;
    color: #514437;
    font-size: 0.88rem;
    font-weight: 700;
}

.olp-template-grid {
    margin-top: 16px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.olp-template-card {
    border: 1px solid #eadfce;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.olp-template-art {
    min-height: 220px;
    padding: 14px 12px;
    display: grid;
    align-content: end;
    gap: 6px;
    background: linear-gradient(145deg, #231f1d 0%, #312a25 55%, #5f4f41 100%);
    color: #fff;
}

.olp-template-kicker {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

.olp-template-art h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.52rem;
    line-height: 1;
}

.olp-template-art p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
}

.olp-template-meta {
    padding: 11px 10px 12px;
}

.olp-template-meta strong {
    display: block;
    margin: 0 0 5px;
    color: #2e2720;
    font-size: 0.84rem;
}

.olp-template-meta p {
    margin: 0;
    color: #6f6254;
    font-size: 0.78rem;
    line-height: 1.4;
}

.olp-tone-elegance .olp-template-art {
    background: linear-gradient(145deg, #ece6de 0%, #d6c7b5 100%);
    color: #3c332a;
}

.olp-tone-elegance .olp-template-art p {
    color: #605446;
}

.olp-tone-botanical .olp-template-art {
    background: linear-gradient(145deg, #203228 0%, #4e7054 100%);
}

.olp-tone-birthday-splash .olp-template-art,
.olp-tone-first-birthday .olp-template-art {
    background: linear-gradient(145deg, #f4b4cb 0%, #df7ea3 100%);
}

.olp-workflow {
    display: grid;
    grid-template-columns: 1fr 0.98fr;
    gap: 16px;
    align-items: center;
}

.olp-workflow-copy > p {
    margin: 0 0 10px;
    color: #6e6152;
}

.olp-steps {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.olp-steps article {
    border: 1px solid #eadfce;
    border-radius: 14px;
    padding: 12px;
    background: linear-gradient(180deg, #fffdf9 0%, #f9f2ea 100%);
}

.olp-steps span {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f2e7da;
    color: #8f6f4b;
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 8px;
}

.olp-steps h3 {
    margin: 0 0 4px;
    font-size: 0.97rem;
}

.olp-steps p {
    margin: 0;
    font-size: 0.84rem;
    color: #6f6254;
}

.olp-dashboard-card {
    border: 1px solid #eadfce;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f2ea 100%);
    padding: 14px;
}

.olp-dashboard-card header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.olp-dashboard-card h3 {
    margin: 0;
    font-size: 1rem;
    color: #302922;
}

.olp-dashboard-card header span {
    font-size: 0.74rem;
    color: #8f7a64;
}

.olp-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.olp-metric-grid div {
    border: 1px solid #e6d9cb;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
}

.olp-metric-grid strong {
    font-size: 1.18rem;
    color: #2f2922;
}

.olp-metric-grid p {
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: #786b5d;
}

.olp-mini-list {
    margin-top: 10px;
    border-top: 1px solid #e5d8ca;
    padding-top: 8px;
}

.olp-mini-list p {
    margin: 4px 0;
    font-size: 0.83rem;
    color: #695c4f;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    display: inline-block;
    margin-right: 6px;
}

.dot.ok { background: #4bab67; }
.dot.no { background: #d97777; }
.dot.wait { background: #bca17f; }

.olp-price-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
}

.olp-price-card {
    border: 1px solid #e8dccf;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
}

.olp-price-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.olp-price {
    margin: 0 0 6px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    color: #2f2922;
}

.olp-price-card p {
    margin: 0;
    color: #726659;
    font-size: 0.86rem;
}

.olp-price-featured {
    background: linear-gradient(180deg, #f8f2ea 0%, #f2e5d7 100%);
    border-color: #dcc8b0;
}

.olp-blog-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.olp-blog-card {
    border: 1px solid #e8dccf;
    border-radius: 12px;
    background: #fff;
    padding: 13px;
}

.olp-blog-card h3 {
    margin: 0 0 5px;
    font-size: 0.96rem;
    color: #2f2922;
}

.olp-blog-card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: #736659;
}

.olp-testimonial-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.olp-testimonial-grid article {
    border: 1px solid #eadfce;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
}

.olp-testimonial-grid p {
    margin: 0 0 10px;
    color: #55483d;
    line-height: 1.55;
    font-size: 0.88rem;
}

.olp-testimonial-grid strong {
    display: block;
    color: #2e2720;
    font-size: 0.86rem;
}

.olp-testimonial-grid span {
    color: #8d7a66;
    font-size: 0.78rem;
}

.olp-cta-band {
    margin: 20px 8px 0;
    border: 1px solid #dfc7aa;
    border-radius: 18px;
    background: linear-gradient(135deg, #f0dfc5 0%, #e9d3b1 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
}

.olp-cta-copy h2 {
    margin: 0 0 5px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #2d241b;
}

.olp-cta-copy p {
    margin: 0;
    color: #5f513f;
}

.olp-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.olp-cta-actions ul {
    margin: 0;
    padding-left: 16px;
    color: #5f513f;
    font-size: 0.82rem;
    line-height: 1.5;
}

.olp-footer {
    margin: 20px 8px 0;
    border-top: 1px solid #e5d8c9;
    padding: 20px 0 8px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 16px;
}

.olp-footer h3 {
    margin: 0 0 8px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.16rem;
}

.olp-footer-brand p {
    margin: 0;
    color: #756a5e;
    line-height: 1.6;
    max-width: 35ch;
    font-size: 0.86rem;
}

.olp-footer h4 {
    margin: 0 0 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #816f5d;
}

.olp-footer a {
    display: block;
    text-decoration: none;
    color: #5d5247;
    margin-bottom: 6px;
    font-size: 0.84rem;
}

.olp-footer a:hover {
    color: #352d25;
}

@media (max-width: 1200px) {
    .olp-template-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .olp-feature-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .olp-feature-card:nth-child(3),
    .olp-feature-card:nth-child(4) {
        border-right: 0;
    }

    .olp-workflow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    body.landing-page .topbar {
        position: static;
        width: min(1240px, 96%);
    }

    body.landing-page .brand {
        font-size: 1.28rem;
    }

    body.landing-page .nav-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .olp-hero {
        grid-template-columns: 1fr;
        padding: 6px 0;
    }

    .olp-hero-copy {
        padding-left: 0;
    }

    .olp-hero-media {
        min-height: 320px;
    }

    .olp-stat-row,
    .olp-feature-row,
    .olp-template-grid,
    .olp-price-grid,
    .olp-blog-grid,
    .olp-testimonial-grid,
    .olp-footer {
        grid-template-columns: 1fr;
    }

    .olp-feature-card {
        border-right: 0;
        border-bottom: 1px solid #efe5da;
    }

    .olp-feature-card:last-child {
        border-bottom: 0;
    }

    .olp-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================
   Landing v4 (Premium Beige)
   ========================================== */
body.landing-page {
    background:
        radial-gradient(circle at 0% 0%, #fdf8f2 0%, transparent 35%),
        radial-gradient(circle at 100% 0%, #f5ede3 0%, transparent 30%),
        #f6f2ec;
    color: #2f2821;
}

body.landing-page .container {
    width: min(1280px, 95%);
    margin-top: 20px;
}

body.landing-page .topbar {
    top: 10px;
    width: min(1320px, 96%);
    border: 1px solid #e8ddcf;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 34px rgba(116, 92, 67, 0.1);
}

body.landing-page .brand {
    color: #201d1a;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.46rem;
    letter-spacing: 0.01em;
}

body.landing-page .topbar-nav-link {
    color: #655a4c;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 160ms ease;
}

body.landing-page .topbar-nav-link:hover {
    border-color: #e3d5c5;
    background: #fbf6ef;
    color: #43392e;
}

body.landing-page .topbar-separator {
    width: 1px;
    height: 22px;
    background: #eaddcf;
}

body.landing-page .topbar-auth-btn {
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
}

body.landing-page .topbar-auth-login {
    color: #4f453a;
    border-color: #dac9b3;
    background: linear-gradient(180deg, #ffffff 0%, #f7efe5 100%);
}

body.landing-page .topbar-auth-register {
    color: #fff;
    border-color: #242321;
    background: linear-gradient(180deg, #2b2a27 0%, #171715 100%);
    box-shadow: 0 8px 18px rgba(30, 30, 28, 0.24);
}

body.landing-page .btn {
    border-radius: 12px;
    border: 1px solid #252321;
    background: linear-gradient(180deg, #2f2d2a 0%, #171715 100%);
    color: #fff;
    padding: 12px 18px;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(38, 35, 31, 0.2);
}

body.landing-page .btn:hover {
    background: linear-gradient(180deg, #3d3b38 0%, #232220 100%);
}

.xlp-hero {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 22px;
    align-items: center;
    margin: 4px 6px 0;
}

.xlp-pill {
    margin: 0 0 16px;
    display: inline-flex;
    border: 1px solid #dfd1bf;
    background: #f3ebe1;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #6a5d4e;
}

.xlp-hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    line-height: 0.92;
    color: #201f1c;
}

.xlp-hero h1 span {
    display: block;
    margin-top: 8px;
    font-size: 0.7em;
    font-style: italic;
    font-weight: 500;
    color: #a38a6f;
}

.xlp-subtitle {
    margin: 14px 0 8px;
    font-size: 1.18rem;
    font-weight: 700;
    color: #3c352e;
}

.xlp-lead {
    margin: 0;
    max-width: 58ch;
    line-height: 1.6;
    color: #665b4e;
    font-size: 0.97rem;
}

.xlp-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.xlp-ghost-link {
    color: #3d342c;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    border-bottom: 1px solid #c8b7a4;
    padding-bottom: 1px;
}

.xlp-hero-visual {
    position: relative;
    min-height: 510px;
}

.xlp-card-shot {
    margin: 0;
    position: absolute;
    top: 0;
    right: 48px;
    width: min(72%, 470px);
    border-radius: 26px;
    border: 1px solid #e8ddcf;
    background: #fbf6ee;
    box-shadow: 0 22px 36px rgba(105, 84, 60, 0.16);
    overflow: hidden;
}

.xlp-card-shot img {
    width: 100%;
    height: auto;
    display: block;
}

.xlp-card-shot figcaption {
    padding: 9px 12px;
    font-size: 0.72rem;
    color: #7e6d5c;
    border-top: 1px solid #ece0d2;
    background: #fff;
}

.xlp-phone-shot {
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 4px;
    width: min(34%, 220px);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #e6dacd;
    box-shadow: 0 20px 30px rgba(88, 69, 48, 0.2);
    background: #f5ece1;
}

.xlp-phone-shot img {
    width: 100%;
    height: auto;
    display: block;
}

.xlp-stats {
    margin: 14px 6px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.xlp-stats article {
    border: 1px solid #e8dccd;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f9f3ea 100%);
    padding: 13px 14px;
    display: grid;
    gap: 3px;
}

.xlp-stats strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    color: #2f2922;
}

.xlp-stats span {
    color: #786a5b;
    font-size: 0.82rem;
}

.xlp-features {
    margin: 14px 6px 0;
    border: 1px solid #e8ddcf;
    border-radius: 18px;
    background: #fff;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.xlp-features article {
    border-right: 1px solid #f0e7de;
    padding: 10px;
}

.xlp-features article:last-child {
    border-right: 0;
}

.xlp-features span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #e8d9c8;
    background: #f8f1e8;
    color: #af8f68;
    display: grid;
    place-items: center;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.xlp-features h3 {
    margin: 0 0 4px;
    font-size: 0.86rem;
    color: #312b24;
}

.xlp-features p {
    margin: 0;
    color: #7b6f62;
    font-size: 0.79rem;
}

.xlp-section {
    margin: 20px 6px 0;
    border: 1px solid #ebdfd1;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(105, 83, 58, 0.08);
    padding: 22px;
}

.xlp-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.71rem;
    font-weight: 800;
    color: #9e8770;
}

.xlp-section-head h2 {
    margin: 7px 0 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1;
    color: #29231d;
}

.xlp-section-head p {
    margin: 0;
    color: #74675a;
}

.xlp-head-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: baseline;
}

.xlp-head-row a {
    text-decoration: none;
    color: #4a3e32;
    font-size: 0.86rem;
    font-weight: 700;
}

.xlp-template-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.xlp-template-card {
    border: 1px solid #ebdfd1;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.xlp-template-art {
    margin: 0;
    position: relative;
    min-height: 220px;
    overflow: hidden;
    background: #f4ece2;
}

.xlp-template-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.xlp-template-art figcaption {
    position: absolute;
    left: 9px;
    top: 9px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(20, 18, 16, 0.65);
    color: #fdf8f1;
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    font-weight: 700;
}

.xlp-template-meta {
    padding: 10px 10px 11px;
}

.xlp-template-meta strong {
    display: block;
    margin-bottom: 4px;
    color: #2f2922;
    font-size: 0.84rem;
}

.xlp-template-meta p {
    margin: 0;
    color: #736658;
    font-size: 0.77rem;
    line-height: 1.4;
}

.xlp-workflow {
    display: grid;
    grid-template-columns: 1fr 0.96fr;
    gap: 14px;
    align-items: center;
}

.xlp-workflow-copy > p {
    margin: 0;
    color: #746658;
}

.xlp-steps {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.xlp-steps article {
    border: 1px solid #ebdfd1;
    border-radius: 12px;
    background: linear-gradient(180deg, #fffefb 0%, #f9f2e9 100%);
    padding: 11px;
}

.xlp-steps span {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: #f2e6d9;
    color: #947556;
    margin-bottom: 7px;
}

.xlp-steps h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
}

.xlp-steps p {
    margin: 0;
    font-size: 0.83rem;
    color: #74675a;
}

.xlp-dashboard {
    border: 1px solid #ebdfd1;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f1e8 100%);
    padding: 12px;
}

.xlp-dashboard header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 9px;
}

.xlp-dashboard h3 {
    margin: 0;
    font-size: 0.98rem;
    color: #312a24;
}

.xlp-dashboard header span {
    font-size: 0.73rem;
    color: #907d69;
}

.xlp-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.xlp-metrics div {
    border: 1px solid #e6d9cb;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}

.xlp-metrics strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
}

.xlp-metrics p {
    margin: 2px 0 0;
    font-size: 0.76rem;
    color: #76695b;
}

.xlp-price-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.xlp-price-grid article {
    border: 1px solid #ebdfd1;
    border-radius: 13px;
    background: #fff;
    padding: 13px;
}

.xlp-price-grid article.is-featured {
    background: linear-gradient(180deg, #f8f2e9 0%, #f3e5d5 100%);
    border-color: #dfcab0;
}

.xlp-price-grid h3 {
    margin: 0 0 5px;
    font-size: 0.98rem;
}

.xlp-price {
    margin: 0 0 5px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.26rem;
    color: #2f2922;
}

.xlp-price-grid p {
    margin: 0;
    color: #75685b;
    font-size: 0.83rem;
}

.xlp-blog-grid,
.xlp-testimonial-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.xlp-blog-grid article,
.xlp-testimonial-grid article {
    border: 1px solid #ebdfd1;
    border-radius: 13px;
    background: #fff;
    padding: 13px;
}

.xlp-blog-grid h3 {
    margin: 0 0 5px;
    font-size: 0.94rem;
}

.xlp-blog-grid p,
.xlp-testimonial-grid p {
    margin: 0;
    color: #75685b;
    font-size: 0.84rem;
    line-height: 1.5;
}

.xlp-section-head.centered {
    text-align: center;
}

.xlp-testimonial-grid strong {
    display: block;
    margin-top: 8px;
    color: #322b24;
    font-size: 0.84rem;
}

.xlp-testimonial-grid span {
    color: #93806d;
    font-size: 0.77rem;
}

.xlp-cta-band {
    margin: 20px 6px 0;
    border: 1px solid #dfc8ac;
    border-radius: 18px;
    background: linear-gradient(135deg, #efdebf 0%, #e6ceab 100%);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.xlp-cta-band h2 {
    margin: 0 0 4px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #2f261d;
}

.xlp-cta-band p {
    margin: 0;
    color: #5f503f;
}

.xlp-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.xlp-cta-actions ul {
    margin: 0;
    padding-left: 16px;
    color: #625344;
    font-size: 0.81rem;
    line-height: 1.45;
}

.xlp-footer {
    margin: 20px 6px 0;
    border-top: 1px solid #e6d9ca;
    padding: 18px 0 8px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 14px;
}

.xlp-footer h3 {
    margin: 0 0 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
}

.xlp-footer-brand p {
    margin: 0;
    color: #786b5d;
    line-height: 1.6;
    max-width: 34ch;
    font-size: 0.84rem;
}

.xlp-footer h4 {
    margin: 0 0 7px;
    font-size: 0.81rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #836f5d;
}

.xlp-footer a {
    display: block;
    text-decoration: none;
    color: #605447;
    margin-bottom: 6px;
    font-size: 0.82rem;
}

.xlp-footer a:hover {
    color: #3a3128;
}

@media (max-width: 1180px) {
    .xlp-template-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .xlp-features article {
        border-right: 0;
        border-bottom: 1px solid #f0e7de;
    }

    .xlp-features article:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .xlp-workflow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    body.landing-page .topbar {
        position: static;
        width: min(1320px, 96%);
    }

    body.landing-page .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .xlp-hero {
        grid-template-columns: 1fr;
    }

    .xlp-hero-visual {
        min-height: 380px;
    }

    .xlp-card-shot {
        width: min(84%, 460px);
        right: auto;
        left: 0;
    }

    .xlp-phone-shot {
        width: min(38%, 210px);
        right: 0;
        bottom: -2px;
    }

    .xlp-stats,
    .xlp-template-grid,
    .xlp-price-grid,
    .xlp-blog-grid,
    .xlp-testimonial-grid,
    .xlp-footer {
        grid-template-columns: 1fr;
    }

    .xlp-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}
