/* =========================
   JOSAN DEBUT PORTAL
   Main Styles
========================= */

/* ---------- Reset & Theme ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f6eeef;
    --card: rgba(255, 253, 252, 0.94);
    --primary: #c997aa;
    --primary-dark: #c58da3;
    --accent: #d7c2a7;
    --text: #5b4b49;
    --muted: #8b7b79;
    --border: #eadcdd;
}

body {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(210, 161, 178, 0.24), transparent 34%),
        radial-gradient(circle at bottom right, rgba(217, 194, 167, 0.24), transparent 38%),
        linear-gradient(160deg, #f9f4f3 0%, #f2e6e9 100%);
}

/* =========================
   SHARED ELEMENTS
========================= */

.ornamental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 30px auto 24px;
}

.ornamental-divider span:not(.divider-mark) {
    width: 62px;
    height: 1px;
    background: var(--accent);
}

.divider-mark {
    color: var(--primary);
    font-size: 14px;
}

.footer-label {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-style: italic;
    color: var(--primary);
}

/* =========================
   WELCOME PAGE
========================= */

.welcome-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.welcome-shell {
    width: 100%;
    max-width: 460px;
}

.welcome-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 56px 32px;
    text-align: center;
    background: var(--card);
    border: 1px solid rgba(234, 220, 221, 0.9);
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(91, 75, 73, 0.14);
}

.welcome-card::before,
.welcome-card::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.22;
    pointer-events: none;
}

.welcome-card::before {
    top: -90px;
    left: -75px;
    background: radial-gradient(circle, #ddb7c4 0%, transparent 70%);
}

.welcome-card::after {
    right: -85px;
    bottom: -100px;
    background: radial-gradient(circle, #d9c2a5 0%, transparent 70%);
}

.welcome-card > * {
    position: relative;
    z-index: 1;
}

.welcome-kicker {
    margin-bottom: 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.welcome-name {
    margin-bottom: 16px;
    font-family: "Great Vibes", cursive;
    font-size: clamp(54px, 15vw, 76px);
    line-height: 0.95;
    font-weight: 400;
    color: var(--primary);
}

.welcome-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    letter-spacing: 0.08em;
    color: var(--text);
}

.welcome-date {
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 600;
}

.welcome-venue {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

.welcome-message {
    max-width: 300px;
    margin: 0 auto 30px;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    line-height: 1.55;
    font-style: italic;
}

.primary-button {
    display: block;
    width: 100%;
    padding: 17px 20px;
    border-radius: 16px;
    text-decoration: none;
    background: linear-gradient(180deg, #d3a6b6 0%, var(--primary-dark) 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(197, 141, 163, 0.25);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(197, 141, 163, 0.35);
}

.primary-button:active {
    transform: translateY(0);
    opacity: 0.9;
}

.welcome-footer {
    margin-top: 34px;
    color: var(--muted);
}

/* =========================
   EVENT GUIDE
========================= */

.guide-page {
    min-height: 100vh;
    padding: 20px;
}

.guide-shell {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.guide-card {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 40px);
    padding: 44px 24px 32px;
    background: var(--card);
    border: 1px solid rgba(234, 220, 221, 0.9);
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(91, 75, 73, 0.14);
}

.guide-card::before,
.guide-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}

.guide-card::before {
    top: -100px;
    right: -85px;
    background: radial-gradient(circle, #ddb7c4 0%, transparent 70%);
}

.guide-card::after {
    bottom: -100px;
    left: -85px;
    background: radial-gradient(circle, #d9c2a5 0%, transparent 70%);
}

.guide-card > * {
    position: relative;
    z-index: 1;
}

.guide-header {
    text-align: center;
}

.guide-kicker {
    margin-bottom: 8px;
    font-family: "Great Vibes", cursive;
    font-size: 33px;
    color: var(--primary);
}

.guide-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--text);
}

.guide-description {
    max-width: 310px;
    margin: 14px auto 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: var(--muted);
}

.guide-group + .guide-group {
    margin-top: 30px;
}

.guide-section-label {
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.guide-menu {
    display: grid;
    gap: 12px;
}

.guide-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 14px;
    min-height: 84px;
    padding: 15px 16px;
    color: var(--text);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(91, 75, 73, 0.06);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.guide-item:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 151, 170, 0.7);
    box-shadow: 0 12px 28px rgba(91, 75, 73, 0.1);
}

.guide-item:active {
    transform: translateY(0);
}

.guide-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--primary);
    background: rgba(201, 151, 170, 0.12);
    border-radius: 15px;
}

.guide-icon svg {
    width: 21px;
    height: 21px;
    stroke-width: 1.5;
}

.guide-item-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.guide-item-copy strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 600;
}

.guide-item-copy small {
    font-size: 11px;
    line-height: 1.45;
    color: var(--muted);
}

.guide-arrow {
    width: 18px;
    height: 18px;
    align-self: center;
    justify-self: end;
    flex-shrink: 0;
    color: var(--accent);
    stroke-width: 1.5;
}

.guide-footer {
    margin-top: 30px;
    text-align: center;
    color: var(--muted);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 380px) {
    .welcome-card {
        padding: 44px 22px 32px;
    }

    .welcome-name {
        font-size: 52px;
    }

    .welcome-subtitle {
        font-size: 21px;
    }

    .guide-card {
        padding: 38px 18px 28px;
    }

    .guide-item {
        grid-template-columns: 42px minmax(0, 1fr) 18px;
        gap: 11px;
        padding: 13px;
    }

    .guide-icon {
        width: 42px;
        height: 42px;
    }

    .guide-item-copy strong {
        font-size: 19px;
    }
}

@media (min-width: 768px) {
    .welcome-card {
        padding: 62px 42px 42px;
    }

    .guide-card {
        min-height: auto;
        padding: 52px 34px 36px;
    }
}

/* =========================
   FIND MY SEAT
========================= */

.seat-page {
    min-height: 100vh;
    padding: 20px;
}

.seat-shell {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.seat-card {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 40px);
    padding: 32px 24px;
    text-align: center;
    background: var(--card);
    border: 1px solid rgba(234, 220, 221, 0.9);
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(91, 75, 73, 0.14);
}

.seat-card::before,
.seat-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}

.seat-card::before {
    top: -100px;
    right: -85px;
    background: radial-gradient(circle, #ddb7c4 0%, transparent 70%);
}

.seat-card::after {
    bottom: -100px;
    left: -85px;
    background: radial-gradient(circle, #d9c2a5 0%, transparent 70%);
}

.seat-card > * {
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-right: auto;
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
}

.back-link svg {
    width: 17px;
    height: 17px;
    stroke-width: 1.6;
}

.seat-header {
    margin-top: 40px;
}

.seat-kicker {
    margin-bottom: 8px;
    font-family: "Great Vibes", cursive;
    font-size: 33px;
    color: var(--primary);
}

.seat-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.05;
    font-weight: 600;
}

.seat-description {
    max-width: 320px;
    margin: 14px auto 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: var(--muted);
}

.seat-form {
    margin-top: 10px;
    text-align: left;
}

.input-label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.input-wrap:focus-within {
    border-color: rgba(201, 151, 170, 0.8);
    box-shadow: 0 0 0 4px rgba(201, 151, 170, 0.1);
}

.input-wrap svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    color: var(--primary);
    stroke-width: 1.6;
}

.input-wrap input {
    width: 100%;
    min-width: 0;
    padding: 17px 0;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: 15px;
    color: var(--text);
}

.input-wrap input::placeholder {
    color: #aa9b99;
}

.primary-action-button,
.secondary-action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 16px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.primary-action-button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(
        180deg,
        #d3a6b6 0%,
        var(--primary-dark) 100%
    );
    box-shadow: 0 12px 30px rgba(197, 141, 163, 0.25);
}

.secondary-action-button {
    border: 1px solid var(--border);
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.72);
}

.seat-message {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
}

.seat-message.error {
    padding: 14px;
    color: #8d5e67;
    background: rgba(201, 151, 170, 0.11);
    border: 1px solid rgba(201, 151, 170, 0.25);
    border-radius: 14px;
}

.seat-result-view[hidden] {
    display: none;
}

.seat-result-name {
    font-family: "Great Vibes", cursive;
    font-size: clamp(48px, 13vw, 66px);
    line-height: 1;
    font-weight: 400;
    color: var(--primary);
}

.seat-assignment {
    margin-top: 8px;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(91, 75, 73, 0.06);
}

.seat-assignment-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.seat-table-number {
    margin-top: 5px;
    font-family: "Cormorant Garamond", serif;
    font-size: 88px;
    line-height: 0.95;
    font-weight: 600;
    color: var(--text);
}

.seat-number {
    margin-top: 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    color: var(--primary-dark);
}

.seat-group {
    margin-top: 7px;
    font-size: 12px;
    color: var(--muted);
}

.seat-result-message {
    margin-top: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-style: italic;
}

.seat-result-actions {
    margin-top: 22px;
}

.page-footer {
    margin-top: 36px;
    text-align: center;
    color: var(--muted);
}

@media (max-width: 380px) {
    .seat-card {
        padding: 28px 18px;
    }

    .seat-header {
        margin-top: 34px;
    }

    .seat-table-number {
        font-size: 78px;
    }
}

@media (min-width: 768px) {
    .seat-card {
        min-height: auto;
        padding: 40px 34px 36px;
    }
}

/* Multiple guest matches */

.match-heading {
    margin-bottom: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    color: var(--text);
}

.match-list {
    display: grid;
    gap: 9px;
}

.match-button {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    cursor: pointer;
}

.match-button:hover {
    border-color: rgba(201, 151, 170, 0.75);
    background: rgba(249, 236, 241, 0.8);
}

/* =========================
   EVENT TIMELINE
========================= */

.timeline-page {
    min-height: 100vh;
    padding: 20px;
}

.timeline-shell {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.timeline-card {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 40px);
    padding: 32px 24px;
    background: var(--card);
    border: 1px solid rgba(234, 220, 221, 0.9);
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(91, 75, 73, 0.14);
}

.timeline-card::before,
.timeline-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}

.timeline-card::before {
    top: -100px;
    right: -85px;
    background: radial-gradient(
        circle,
        #ddb7c4 0%,
        transparent 70%
    );
}

.timeline-card::after {
    bottom: -100px;
    left: -85px;
    background: radial-gradient(
        circle,
        #d9c2a5 0%,
        transparent 70%
    );
}

.timeline-card > * {
    position: relative;
    z-index: 1;
}

.timeline-header {
    margin-top: 40px;
    text-align: center;
}

.timeline-kicker {
    margin-bottom: 8px;
    font-family: "Great Vibes", cursive;
    font-size: 33px;
    color: var(--primary);
}

.timeline-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--text);
}

.timeline-description {
    max-width: 320px;
    margin: 14px auto 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: var(--muted);
}

.timeline-list {
    display: grid;
    margin-top: 4px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 16px;
    min-height: 112px;
}

.timeline-marker {
    position: relative;
    display: flex;
    justify-content: center;
}

.timeline-marker::after {
    content: "";
    position: absolute;
    top: 18px;
    bottom: -4px;
    width: 1px;
    background: var(--border);
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.timeline-dot {
    position: relative;
    z-index: 1;
    width: 11px;
    height: 11px;
    margin-top: 5px;
    border: 3px solid #fffdfc;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 1px rgba(201, 151, 170, 0.45);
}

.timeline-content {
    padding: 0 0 30px;
}

.timeline-time {
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.timeline-event-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--text);
}

.timeline-event-description {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
}

.timeline-message {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

@media (max-width: 380px) {
    .timeline-card {
        padding: 28px 18px;
    }

    .timeline-header {
        margin-top: 34px;
    }

    .timeline-item {
        gap: 13px;
    }

    .timeline-event-title {
        font-size: 22px;
    }
}

@media (min-width: 768px) {
    .timeline-card {
        min-height: auto;
        padding: 40px 34px 36px;
    }
}

/* =========================
   RECEPTION MENU
========================= */

.menu-page{
    min-height:100vh;
    padding:20px;
}

.menu-shell{
    width:100%;
    max-width:500px;
    margin:auto;
}

.menu-card{
    position:relative;
    overflow:hidden;
    min-height:calc(100vh - 40px);
    padding:32px 24px;
    background:var(--card);
    border:1px solid rgba(234,220,221,.9);
    border-radius:30px;
    box-shadow:0 22px 60px rgba(91,75,73,.14);
}

.menu-header{
    margin-top:40px;
    text-align:center;
}

.menu-kicker{
    margin-bottom:8px;
    font-family:"Great Vibes",cursive;
    font-size:33px;
    color:var(--primary);
}

.menu-title{
    font-family:"Cormorant Garamond",serif;
    font-size:42px;
    font-weight:600;
    color:var(--text);
}

.menu-description{
    max-width:320px;
    margin:14px auto 0;
    font-family:"Cormorant Garamond",serif;
    font-size:18px;
    font-style:italic;
    color:var(--muted);
}

.menu-list{
    margin-top:32px;
    display:grid;
    gap:28px;
}

.menu-section{
    text-align:center;
}

.menu-category{
    font-family:"Cormorant Garamond",serif;
    font-size:30px;
    color:var(--primary-dark);
}

.menu-category-divider{
    width:70px;
    height:1px;
    background:var(--border);
    margin:12px auto 18px;
}

.menu-items{
    list-style:none;
    padding:0;
    margin:0;
}

.menu-items li{
    padding:6px 0;
    font-size:15px;
    color:var(--text);
}

.menu-message{
    text-align:center;
    color:var(--muted);
}

/* =========================
   EVENT EXPERIENCES
========================= */

.experiences-page {
    min-height: 100vh;
    padding: 20px;
}

.experiences-shell {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.experiences-card {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 40px);
    padding: 32px 24px;
    background: var(--card);
    border: 1px solid rgba(234, 220, 221, 0.9);
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(91, 75, 73, 0.14);
}

.experiences-card::before,
.experiences-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}

.experiences-card::before {
    top: -100px;
    right: -85px;
    background: radial-gradient(
        circle,
        #ddb7c4 0%,
        transparent 70%
    );
}

.experiences-card::after {
    bottom: -100px;
    left: -85px;
    background: radial-gradient(
        circle,
        #d9c2a5 0%,
        transparent 70%
    );
}

.experiences-card > * {
    position: relative;
    z-index: 1;
}

.experiences-header {
    margin-top: 40px;
    text-align: center;
}

.experiences-kicker {
    margin-bottom: 8px;
    font-family: "Great Vibes", cursive;
    font-size: 33px;
    color: var(--primary);
}

.experiences-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--text);
}

.experiences-description {
    max-width: 320px;
    margin: 14px auto 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: var(--muted);
}

.experiences-list {
    display: grid;
    gap: 30px;
    margin-top: 8px;
}

.experience-section-label {
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.experience-grid {
    display: grid;
    gap: 14px;
}

.experience-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(91, 75, 73, 0.06);
}

.experience-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--primary);
    background: rgba(201, 151, 170, 0.12);
    border-radius: 15px;
}

.experience-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.experience-copy {
    min-width: 0;
}

.experience-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.experience-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--text);
}

.experience-status {
    flex-shrink: 0;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(201, 151, 170, 0.12);
    border: 1px solid rgba(201, 151, 170, 0.22);
}

.experience-description {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--muted);
}

.experience-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--primary-dark);
}

.experience-location svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.6;
}

.experience-claim-note {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.experiences-message {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

@media (max-width: 380px) {
    .experiences-card {
        padding: 28px 18px;
    }

    .experiences-header {
        margin-top: 34px;
    }

    .experience-card {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .experience-icon {
        width: 44px;
        height: 44px;
    }

    .experience-heading h2 {
        font-size: 21px;
    }
}

@media (min-width: 768px) {
    .experiences-card {
        min-height: auto;
        padding: 40px 34px 36px;
    }
}

/* =========================
   PHOTO GALLERY
========================= */

.gallery-page {
    min-height: 100vh;
    padding: 20px;
}

.gallery-shell {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 40px);
    padding: 32px 24px;
    background: var(--card);
    border: 1px solid rgba(234, 220, 221, 0.9);
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(91, 75, 73, 0.14);
}

.gallery-card::before,
.gallery-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}

.gallery-card::before {
    top: -100px;
    right: -85px;
    background: radial-gradient(
        circle,
        #ddb7c4 0%,
        transparent 70%
    );
}

.gallery-card::after {
    bottom: -100px;
    left: -85px;
    background: radial-gradient(
        circle,
        #d9c2a5 0%,
        transparent 70%
    );
}

.gallery-card > * {
    position: relative;
    z-index: 1;
}

.gallery-header {
    margin-top: 40px;
    text-align: center;
}

.gallery-kicker {
    margin-bottom: 8px;
    font-family: "Great Vibes", cursive;
    font-size: 33px;
    color: var(--primary);
}

.gallery-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--text);
}

.gallery-description {
    max-width: 320px;
    margin: 14px auto 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.gallery-photo {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 22px rgba(91, 75, 73, 0.06);
    cursor: pointer;
}

.gallery-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-photo:hover img {
    transform: scale(1.03);
}

.gallery-empty {
    margin-top: 8px;
    padding: 34px 22px;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 22px;
}

.gallery-empty[hidden] {
    display: none;
}

.gallery-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    color: var(--primary);
    background: rgba(201, 151, 170, 0.12);
    border-radius: 18px;
}

.gallery-empty-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}

.gallery-empty h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
}

.gallery-empty p {
    max-width: 280px;
    margin: 8px auto 0;
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
}

.gallery-message {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

@media (max-width: 380px) {
    .gallery-card {
        padding: 28px 18px;
    }

    .gallery-header {
        margin-top: 34px;
    }

    .gallery-grid {
        gap: 10px;
    }
}

@media (min-width: 768px) {
    .gallery-card {
        min-height: auto;
        padding: 40px 34px 36px;
    }
}

/* =========================
   GALLERY UPLOAD
========================= */

.gallery-actions {
    margin-top: 8px;
    text-align: center;
}

.gallery-actions .primary-action-button {
    gap: 9px;
}

.gallery-actions .primary-action-button svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
}

.gallery-upload-note {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.55;
    color: var(--muted);
}

.gallery-preview {
    margin-top: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 8px 22px rgba(91, 75, 73, 0.06);
}

.gallery-preview[hidden] {
    display: none;
}

.gallery-preview-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.gallery-preview-header h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--text);
}

.gallery-preview-header p {
    margin-top: 4px;
    font-size: 11px;
    color: var(--muted);
}

.gallery-clear-button {
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary-dark);
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    cursor: pointer;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.gallery-preview-item {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 13px;
    background: var(--border);
}

.gallery-preview-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-preview .primary-action-button {
    gap: 9px;
    margin-top: 16px;
}

.gallery-preview .primary-action-button svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
}

.gallery-upload-status {
    margin-top: 10px;
    text-align: center;
    font-size: 10px;
    line-height: 1.5;
    color: var(--muted);
}

@media (max-width: 380px) {
    .gallery-preview {
        padding: 15px;
    }

    .gallery-preview-grid {
        gap: 7px;
    }
}

.gallery-contributor-fields {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.gallery-field {
    display: grid;
    gap: 6px;
}

.gallery-field span {
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-dark);
}

.gallery-field input,
.gallery-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,.85);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: var(--text);
    outline: none;
    transition: .2s ease;
    resize: vertical;
}

.gallery-field input:focus,
.gallery-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,151,170,.15);
}

/* =========================
   CANDID MEMORIES
========================= */

.memories-page {
    min-height: 100vh;
    padding: 20px;
}

.memories-shell {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.memories-card {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 40px);
    padding: 32px 24px;
    background: var(--card);
    border: 1px solid rgba(234, 220, 221, 0.9);
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(91, 75, 73, 0.14);
}

.memories-card::before,
.memories-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}

.memories-card::before {
    top: -100px;
    right: -85px;
    background: radial-gradient(
        circle,
        #ddb7c4 0%,
        transparent 70%
    );
}

.memories-card::after {
    bottom: -100px;
    left: -85px;
    background: radial-gradient(
        circle,
        #d9c2a5 0%,
        transparent 70%
    );
}

.memories-card > * {
    position: relative;
    z-index: 1;
}

.memories-header {
    margin-top: 40px;
    text-align: center;
}

.memories-kicker {
    margin-bottom: 8px;
    font-family: "Great Vibes", cursive;
    font-size: 33px;
    color: var(--primary);
}

.memories-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--text);
}

.memories-description {
    max-width: 320px;
    margin: 14px auto 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: var(--muted);
}

.memories-tips {
    margin-top: 24px;
}

.memories-privacy {
    margin-top: 30px;
}

.memories-tips h2,
.memories-privacy h2 {
    margin-bottom: 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text);
}

.memories-tip-list {
    display: grid;
    gap: 7px;
}

.memory-tip {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    gap: 10px;

    min-height: 46px;
    padding: 8px 11px;

    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border);
    border-radius: 13px;
}

.memory-tip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    color: var(--primary);
    background: rgba(201, 151, 170, 0.1);
    border-radius: 10px;
}

.memory-tip-icon svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.6;
}

.memory-tip > span:last-child {
    font-size: 11px;
    line-height: 1.4;
    color: var(--muted);
}

.memories-privacy-options {
    display: grid;
    gap: 12px;
}

.privacy-choice {

    display: grid;
    grid-template-columns: 42px minmax(0,1fr) 22px;
    align-items: center;
    gap: 14px;

    width: 100%;

    padding: 14px 16px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: rgba(255,255,255,.65);

    transition: all .25s ease;

    cursor: pointer;

}

.privacy-choice:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 151, 170, 0.6);
}

.privacy-choice.selected {
    border-color: var(--primary);
    background: rgba(201, 151, 170, 0.1);
    box-shadow: 0 10px 24px rgba(201, 151, 170, 0.12);
}

.privacy-choice-icon{

    display:flex;
    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    border-radius:12px;

    background:rgba(201,151,170,.10);

    color:var(--primary);

}

.privacy-choice-icon svg{

    width:20px;
    height:20px;

}

.privacy-choice-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.privacy-choice-copy strong{

    display:block;

    font-size:20px;

    font-family:"Cormorant Garamond",serif;

    font-weight:600;

    color:var(--text);

    margin-bottom:2px;

}

.privacy-choice-copy small{

    display:block;

    font-size:11px;

    line-height:1.35;

    color:var(--muted);

}

.privacy-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: transparent;
    background: rgba(255, 255, 255, 0.9);
}

.privacy-check svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.privacy-choice.selected .privacy-check {
    border-color: var(--primary);
    color: #ffffff;
    background: var(--primary);
}

.memories-record-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 90%;
    margin: 20px auto 0;

    gap: 10px;
}

.memories-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: 18px;

    font-size: 12px;
    color: var(--muted);
}

.memories-duration svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}

.memories-record-button svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
}

.memories-record-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    box-shadow: none;
}

.memories-note {
    margin-top: 24px;

    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    color: var(--muted);
    opacity: 0.72;
}

.record-review-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin-top: 7px;

    font-size: 12px;
    color: var(--muted);
    text-align: center;
}

.record-review-note svg {
    width: 16px;
    height: 16px;
    color: #7BAE7F;
}

@media (max-width: 380px) {
    .memories-card {
        padding: 28px 18px;
    }

    .memories-header {
        margin-top: 34px;
    }

    .privacy-choice {
        grid-template-columns: 40px minmax(0, 1fr) 22px;
        gap: 11px;
        padding: 14px;
    }

    .privacy-choice-icon {
        width: 40px;
        height: 40px;
    }

    .privacy-choice-copy strong {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .memories-card {
        min-height: auto;
        padding: 40px 34px 36px;
    }
}

/* =========================
   CANDID MEMORIES STEPS
========================= */


.memories-steps h2 {
    margin-bottom: 14px;
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text);
}

/* Candid Memories help */

.memories-help {
    margin-top: 26px;
}

.memories-help-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--primary-dark);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.memories-help-toggle svg {
    width: 17px;
    height: 17px;
    transition: transform 0.2s ease;
}

.memories-help-content {
    margin-top: 10px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.58);
}

.memories-help-content[hidden] {
    display: none;
}

.memories-help-content ol {
    display: grid;
    gap: 8px;
    padding-left: 18px;
}

.memories-help-content li {
    font-size: 11px;
    line-height: 1.55;
    color: var(--muted);
}

.memory-step div {
    display: grid;
    gap: 3px;
}

.memory-step strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
}

.memory-step small {
    font-size: 11px;
    line-height: 1.5;
    color: var(--muted);
}

/* ======================================
   CANDID MEMORIES HUB
====================================== */

.memories-actions {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.memory-action-card {
    display: grid;
    grid-template-columns: 64px 1fr 24px;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 22px;
    border: 1px solid rgba(223, 210, 212, 0.9);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 10px 26px rgba(91,75,73,.06);
    cursor: pointer;
    transition: all .25s ease;
}

.memory-action-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 18px 42px rgba(201,151,170,.16);
}

.memory-action-card:active {
    transform: scale(.98);
}

.memory-action-icon {
    display:flex;
    align-items:center;
    justify-content:center;

    width:64px;
    height:64px;

    border-radius:18px;

    background:rgba(201,151,170,.12);

    color:var(--primary);
}

.memory-action-icon svg{
    width:28px;
    height:28px;
    stroke-width:1.6;
}

.memory-action-copy{
    display:grid;
    gap:6px;
    text-align:left;
}

.memory-action-copy strong{

    font-family:"Cormorant Garamond",serif;
    font-size:28px;
    font-weight:600;
    color:var(--text);

}

.memory-action-copy small{

    font-size:12px;
    line-height:1.6;
    color:var(--muted);

}

.memory-action-arrow{

    width:22px;
    height:22px;

    color:var(--primary);

}

@media(max-width:480px){

.memory-action-card{

grid-template-columns:56px 1fr 18px;

padding:18px;

gap:14px;

}

.memory-action-icon{

width:56px;
height:56px;

}

.memory-action-copy strong{

font-size:24px;

}

}

/* Ensure hidden workflow screens stay hidden */

[hidden] {
    display: none !important;
}

/* =========================
   REUSABLE SUCCESS MODAL
========================= */

.success-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(248, 244, 243, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.success-overlay[hidden] {
    display: none !important;
}

.success-modal {
    width: min(100%, 340px);
    padding: 34px 26px 28px;

    text-align: center;

    background: rgba(255, 253, 252, 0.97);
    border: 1px solid var(--border);
    border-radius: 26px;

    box-shadow:
        0 26px 70px rgba(91, 75, 73, 0.2);

    animation: successModalIn 0.28s ease;
}

.success-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-bottom: 18px;

    border-radius: 50%;

    color: var(--primary);
    background: rgba(201, 151, 170, 0.12);
}

.success-modal-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 1.6;
}

.success-modal h2 {
    margin-bottom: 10px;

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;

    color: var(--text);
}

.success-modal p {
    max-width: 270px;
    margin: 0 auto;

    font-size: 12px;
    line-height: 1.7;

    color: var(--muted);
}

.success-modal-button {
    width: 100%;
    margin-top: 24px;
}

@keyframes successModalIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

body.modal-open { overflow: hidden; }

.shared-message-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.75);
}

.shared-message-meta { display: flex; justify-content: space-between; gap: 12px; }
.shared-message-meta strong { font-family: "Cormorant Garamond", serif; font-size: 22px; }
.shared-message-meta span { color: var(--muted); font-size: 12px; }
.shared-message-card video { width: 100%; border-radius: 14px; background: #181414; }

.admin-page { min-height: 100vh; padding: 24px; background: var(--background); }
.admin-shell { width: min(100%, 980px); margin: 0 auto; }
.admin-header { margin-bottom: 24px; }
.admin-header h1 { font-family: "Cormorant Garamond", serif; font-size: clamp(36px, 7vw, 56px); }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 18px; }
.admin-card { padding: 22px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,255,255,.82); }
.admin-card h2 { font-family: "Cormorant Garamond", serif; font-size: 28px; margin-bottom: 14px; }
.admin-field { display: grid; gap: 7px; margin-bottom: 14px; font-size: 12px; color: var(--muted); }
.admin-field input,.admin-field select,.admin-field textarea { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 12px; background: white; color: var(--text); font:inherit; }
.admin-field textarea { resize:vertical; line-height:1.55; }.admin-field small { font-size:10px; line-height:1.5; }
.admin-status { margin-top: 12px; font-size: 12px; line-height: 1.6; }
.admin-login-card { width: min(100%, 430px); margin: 40px auto; }
.admin-toolbar,.admin-section-heading,.admin-media-item { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.admin-toolbar { margin-bottom:18px; padding:14px 18px; border:1px solid var(--border); border-radius:18px; background:rgba(255,255,255,.75); }
.admin-toolbar div { display:grid; gap:3px; }.admin-toolbar span { font-size:11px; color:var(--muted); }
.admin-wide-card { grid-column:1/-1; }.admin-check { display:flex; align-items:center; gap:10px; margin:12px 0; font-size:13px; }
.admin-media-list { display:grid; gap:10px; margin-top:16px; }.admin-media-item { padding:14px; border:1px solid var(--border); border-radius:15px; }
.admin-media-item>div:first-child { display:grid; gap:3px; }.admin-media-item span,.admin-media-item small { font-size:11px; color:var(--muted); }
.admin-media-actions { display:flex; gap:8px; }.admin-danger-button { padding:10px 14px; border:1px solid #d9a1a1; border-radius:12px; background:#fff7f7; color:#9a3e3e; cursor:pointer; }
.admin-content-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
@media(max-width:800px){.admin-content-grid{grid-template-columns:1fr}}
@media(max-width:560px){.admin-toolbar,.admin-section-heading,.admin-media-item{align-items:stretch;flex-direction:column}.admin-media-actions>*{flex:1}}

.request-page{min-height:100vh;padding:24px;background:linear-gradient(180deg,#fffafa 0%,#fff 62%,#f9eef2 100%)}
.request-shell{width:min(100%,760px);margin:0 auto}.request-header{text-align:center;margin:18px 0 28px}.request-header h1{font-family:"Cormorant Garamond",serif;font-size:clamp(40px,8vw,64px);line-height:1}.request-header p{max-width:570px;margin:10px auto 0;color:var(--muted);line-height:1.65}
.request-logo{display:block;width:min(240px,70vw);height:112px;margin:0 auto 8px;object-fit:cover;object-position:center}
.request-card{padding:clamp(22px,5vw,38px);border:1px solid var(--border);border-radius:26px;background:rgba(255,255,255,.92);box-shadow:0 18px 50px rgba(105,74,80,.08)}
.request-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 16px}.request-wide{grid-column:1/-1}.request-note{padding:14px;border-radius:14px;background:#fff7f9;font-size:12px;line-height:1.6;color:var(--muted)}
.request-actions{display:grid;gap:10px;margin-top:18px}
.request-options{margin:4px 0 16px;padding:14px;border:1px solid var(--border);border-radius:14px}.request-options legend{padding:0 7px;font-size:12px;color:var(--muted)}
.qr-preview{display:grid;place-items:center;min-height:250px;margin:16px 0;padding:18px;border:1px dashed var(--border);border-radius:18px;background:#fff}.qr-preview canvas{max-width:100%;height:auto}
.request-success{text-align:center;padding:35px 10px}.request-success h2{font-family:"Cormorant Garamond",serif;font-size:38px;margin-bottom:10px}.request-success p{line-height:1.7;color:var(--muted)}
.request-success a{display:inline-flex;margin-top:14px;color:var(--accent);font-weight:600;text-decoration:underline;text-underline-offset:4px}
.admin-submission-list{display:grid;gap:12px;margin-top:16px}.admin-submission{padding:16px;border:1px solid var(--border);border-radius:16px}.admin-submission-head{display:flex;justify-content:space-between;gap:14px}.admin-submission-meta{display:grid;gap:4px;margin:10px 0;font-size:12px;color:var(--muted)}
@media(max-width:620px){.request-page{padding:16px}.request-grid{grid-template-columns:1fr}.request-wide{grid-column:auto}.admin-submission-head{flex-direction:column}}
