/* ============================================================================
   Wildest Wish — design tokens
   Ported from the original Rails app's wwish/_tokens.scss. Palette is built
   around the brand orange from the wings logo (#F57D20/#F78F38) with a warm
   neutral scale and a deep charcoal "ink" for contrast.
   ============================================================================ */
:root {
    --ww-orange-50:  #FFF6EF;
    --ww-orange-100: #FFEADB;
    --ww-orange-200: #FFD3B3;
    --ww-orange-300: #FCBF95;
    --ww-orange-400: #F9A25C;
    --ww-orange-500: #F57D20;
    --ww-orange-600: #E4570F;
    --ww-orange-700: #C2410C;
    --ww-orange-800: #9A3412;

    --ww-ink:      #1C1410;
    --ww-gray-800: #3D332C;
    --ww-gray-600: #6E6259;
    --ww-gray-500: #8A7D73;
    --ww-gray-300: #D8D0C9;
    --ww-gray-200: #EAE4DE;
    --ww-gray-100: #F4F0EC;
    --ww-cream:    #FBF8F5;
    --ww-white:    #FFFFFF;

    --ww-teal:       #0E7A6E;
    --ww-teal-light: #E0F2EF;
    --ww-gold:       #B45309;
    --ww-gold-light: #FEF3C7;
    --ww-red:        #C0392B;
    --ww-red-light:  #FDEBE9;

    --ww-radius-sm: 8px;
    --ww-radius:    12px;
    --ww-radius-lg: 18px;
    --ww-shadow-sm: 0 1px 2px rgba(28, 20, 16, 0.06), 0 1px 3px rgba(28, 20, 16, 0.08);
    --ww-shadow-md: 0 2px 4px rgba(28, 20, 16, 0.05), 0 8px 20px rgba(28, 20, 16, 0.08);
    --ww-shadow-lg: 0 4px 8px rgba(28, 20, 16, 0.06), 0 18px 40px rgba(28, 20, 16, 0.12);
    --ww-shadow-primary: 0 6px 16px rgba(228, 87, 15, 0.28);

    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ============================================================================
   Base
   ============================================================================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--ww-cream);
    color: var(--ww-gray-800);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection { background: var(--ww-orange-200); color: var(--ww-ink); }

h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--ww-ink);
    letter-spacing: -0.015em;
    text-wrap: balance;
    margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a {
    color: var(--ww-orange-700);
    text-decoration: none;
}
a:hover { color: var(--ww-orange-800); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--ww-orange-600);
    outline-offset: 2px;
    border-radius: 4px;
}

hr {
    background-color: var(--ww-gray-200);
    border: none;
    height: 1px;
    margin: 1.5rem 0;
}

.container-960 {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-1080 {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main { display: block; padding-bottom: 6rem; }
main:not(.home-page):not(.no-container) { max-width: 960px; margin: 0 auto; padding: 0 1.5rem 6rem; }

/* ============================================================================
   Flash messages
   ============================================================================ */
.flash {
    max-width: 960px;
    margin: 1.5rem auto 0;
    padding: 0.85rem 1.25rem;
    border-radius: var(--ww-radius);
    font-weight: 500;
}
.flash-notice { background: var(--ww-teal-light); color: var(--ww-teal); }
.flash-error  { background: var(--ww-red-light); color: var(--ww-red); }

/* ============================================================================
   Nav
   ============================================================================ */
.site-nav {
    background: rgba(251, 248, 245, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ww-gray-200);
    position: sticky;
    top: 0;
    z-index: 40;
}
.site-nav__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 4.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.site-nav__brand { display: flex; align-items: center; }
.site-nav__brand img { height: 38px; display: block; }
.site-nav__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.site-nav__links a {
    color: var(--ww-gray-800);
    font-weight: 500;
    font-size: 0.95rem;
}
.site-nav__links a:hover { color: var(--ww-orange-700); }
.site-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* ============================================================================
   Buttons
   ============================================================================ */
button, .button-link, .btn, .button-light, .button-success, .button-danger {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    padding: 0.65em 1.3em;
    border-radius: var(--ww-radius-sm);
    border: 1px solid var(--ww-gray-300);
    background: var(--ww-white);
    color: var(--ww-ink);
    cursor: pointer;
    text-decoration: none;
    transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, border-color 120ms ease;
}
button:hover, .button-link:hover, .btn:hover {
    border-color: var(--ww-gray-500);
    color: var(--ww-ink);
}

/* Primary = default submit buttons across the app */
button[type="submit"], .button-link, .button-success {
    background: var(--ww-orange-600);
    border-color: var(--ww-orange-600);
    color: var(--ww-white);
    box-shadow: var(--ww-shadow-primary);
}
button[type="submit"]:hover, .button-link:hover, .button-success:hover {
    background: var(--ww-orange-700);
    border-color: var(--ww-orange-700);
    color: var(--ww-white);
    transform: translateY(-1px);
}

.button-danger {
    background: var(--ww-white);
    border-color: var(--ww-red);
    color: var(--ww-red);
    box-shadow: none;
}
.button-danger:hover { background: var(--ww-red-light); color: var(--ww-red); }

/* Secondary / light actions (logout, cancel, admin row actions) */
.button-light {
    background: var(--ww-white);
    border-color: var(--ww-gray-300);
    color: var(--ww-gray-800);
    box-shadow: none;
}

/* Full-width provider sign-in buttons (auth pages) */
.button-block { width: 100%; margin-top: 0.75rem; }
.button-block svg { flex-shrink: 0; }

/* ============================================================================
   Forms
   ============================================================================ */
form { display: flex; flex-direction: column; }

label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ww-ink);
    margin: 1.1rem 0 0.35rem;
}
label:first-child { margin-top: 0; }

input[type="text"], input[type="email"], input[type="password"], input[type="tel"],
input[type="number"], input[type="url"], input[type="date"], input[type="datetime-local"],
textarea, select {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ww-ink);
    background: var(--ww-white);
    border: 1px solid var(--ww-gray-300);
    border-radius: var(--ww-radius-sm);
    padding: 0.65em 0.85em;
    transition: border-color 150ms ease, box-shadow 150ms ease;
    width: 100%;
}
input:hover, textarea:hover, select:hover { border-color: var(--ww-gray-500); }
input:focus, textarea:focus, select:focus {
    border-color: var(--ww-orange-500);
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 125, 32, 0.20);
}
input::placeholder, textarea::placeholder { color: var(--ww-gray-500); }

textarea { resize: vertical; font-family: var(--font-sans); }

.checkbox-label {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    color: var(--ww-gray-800);
}
.checkbox-label input[type="checkbox"] { width: auto; accent-color: var(--ww-orange-600); }

.field-help {
    font-size: 0.8rem;
    color: var(--ww-gray-500);
    margin: 0.3rem 0 0;
}

.current-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--ww-radius);
    box-shadow: var(--ww-shadow-sm);
}

input[type="file"] {
    border: 1px dashed var(--ww-gray-300);
    background: var(--ww-gray-100);
    padding: 0.65em 0.85em;
    border-radius: var(--ww-radius-sm);
    font-size: 0.9rem;
}

form button[type="submit"] { margin-top: 1.5rem; align-self: flex-start; }

/* Auth pages: narrower forms, centered card feel */
.auth-page { max-width: 420px; margin: 3rem auto; }
.auth-page h1 { margin-bottom: 0.3em; }
.auth-page > p { color: var(--ww-gray-600); margin-bottom: 1.5rem; }
.auth-page form {
    background: var(--ww-white);
    border: 1px solid var(--ww-gray-200);
    border-radius: var(--ww-radius-lg);
    box-shadow: var(--ww-shadow-md);
    padding: 1.75rem;
}
.auth-page p:not(:first-child) { margin-top: 1rem; font-size: 0.95rem; }

.wish-list-page { max-width: 720px; margin: 0 auto; }
.wish-form-page, .wish-show-page { max-width: 960px; margin: 0 auto; }
.wish-form-page > form {
    background: var(--ww-white);
    border: 1px solid var(--ww-gray-200);
    border-radius: var(--ww-radius-lg);
    box-shadow: var(--ww-shadow-md);
    padding: 1.75rem;
    max-width: 560px;
}
.celeb-context-layout form {
    background: var(--ww-white);
    border: 1px solid var(--ww-gray-200);
    border-radius: var(--ww-radius-lg);
    box-shadow: var(--ww-shadow-md);
    padding: 1.75rem;
}

/* ============================================================================
   Celeb context sidebar (wish/booking new + show pages)
   ============================================================================ */
.celeb-context-layout {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 2fr;
    gap: 2rem;
    align-items: start;
}
.celeb-sidebar {
    background: var(--ww-white);
    border: 1px solid var(--ww-gray-200);
    border-radius: var(--ww-radius-lg);
    box-shadow: var(--ww-shadow-sm);
    overflow: hidden;
}
.celeb-sidebar__image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; background: var(--ww-gray-100); }
.celeb-sidebar__content { padding: 1.1rem 1.25rem 1.35rem; }
.celeb-sidebar__content h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 0.5rem; }
.celeb-sidebar__desc { color: var(--ww-gray-600); line-height: 1.55; font-size: 0.92rem; margin: 0.75rem 0 0; }
.celeb-sidebar__crosslink { display: inline-block; margin-top: 1rem; font-size: 0.88rem; font-weight: 600; }
.form-help { color: var(--ww-gray-600); font-size: 0.88rem; margin: 0.5rem 0; }

@media (max-width: 700px) {
    .celeb-context-layout { grid-template-columns: 1fr; }
}

/* ============================================================================
   Page headers (inner pages)
   ============================================================================ */
.ww-page-header { padding: 3rem 0 0.5rem; }
.ww-page-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--ww-ink);
}
.ww-page-subtitle { margin-top: 0.4rem; color: var(--ww-gray-600); font-size: 1.05rem; }

.wish-form-page h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    padding-top: 1rem;
}

/* ============================================================================
   Homepage — hero
   ============================================================================ */
.home-hero {
    position: relative;
    text-align: center;
    padding: clamp(4rem, 9vw, 6rem) 1.5rem;
    background:
        radial-gradient(ellipse 80% 60% at 85% 10%, rgba(252, 191, 149, 0.35), transparent 60%),
        radial-gradient(ellipse 70% 55% at 10% 90%, rgba(228, 87, 15, 0.55), transparent 65%),
        linear-gradient(135deg, #F57D20 0%, #E4570F 55%, #C2410C 100%);
    overflow: hidden;
}
.home-hero::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -25%;
    width: 34rem;
    height: 34rem;
    background-image: url("../img/logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.09;
    transform: rotate(-8deg);
    pointer-events: none;
}
.home-hero > * { position: relative; z-index: 1; }
.home-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 600;
    line-height: 1.08;
    color: #fff;
    max-width: 16em;
    margin: 0 auto 0.5em;
    text-shadow: 0 2px 24px rgba(154, 52, 18, 0.35);
}
.home-hero p {
    max-width: 32em;
    margin: 0 auto 1.75rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255, 251, 247, 0.94);
}
.home-hero .celeb-cta { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.home-hero .celeb-cta .button-link:first-child {
    background: var(--ww-white);
    border-color: var(--ww-white);
    color: var(--ww-orange-700);
    box-shadow: 0 10px 26px rgba(154, 52, 18, 0.35);
}
.home-hero .celeb-cta .button-link:first-child:hover { background: var(--ww-orange-50); color: var(--ww-orange-800); }
.home-hero .celeb-cta .button-link:last-child {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    box-shadow: none;
}
.home-hero .celeb-cta .button-link:last-child:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.4em 1em;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}
.home-hero__proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.75rem;
    margin: 2.5rem auto 0;
    color: rgba(255, 251, 247, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================================================
   Homepage sections (For fans/For celebs, How it works, CTA)
   ============================================================================ */
.home-section-header {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
    text-align: center;
}
.home-featured {
    max-width: 1120px;
    margin: clamp(3rem, 6vw, 5rem) auto 0;
    padding: 0 1.5rem;
}
.home-featured .home-section-header { padding: 0; margin-bottom: 0; }

.ww-section-kicker {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ww-orange-700);
    margin-bottom: 0.6rem;
}
.ww-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--ww-ink);
    line-height: 1.15;
}
.ww-section-lede {
    max-width: 34em;
    margin: 0.75rem auto 0;
    color: var(--ww-gray-600);
    font-size: 1.05rem;
    line-height: 1.6;
}

.home-mvp {
    max-width: 1120px;
    margin: clamp(3rem, 7vw, 5.5rem) auto 0;
    padding: 0 1.5rem;
}
.home-mvp__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.home-mvp__row--reverse .home-mvp__image { order: -1; }
.home-mvp__text p { color: var(--ww-gray-600); line-height: 1.6; margin: 1rem 0 1.5rem; }
.home-mvp__image img {
    width: 100%;
    display: block;
    border-radius: var(--ww-radius-lg);
    box-shadow: var(--ww-shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-how-it-works { max-width: 720px; margin: clamp(2rem, 5vw, 4rem) auto 0; padding: 0 1.5rem; }
.home-how-it-works__steps { display: grid; gap: 0.75rem; margin-top: 2rem; }
.home-how-it-works__step {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    background: var(--ww-white);
    border: 1px solid var(--ww-gray-200);
    border-radius: var(--ww-radius);
    padding: 1.25rem 1.4rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}
.home-how-it-works__step:hover { border-color: var(--ww-orange-300); box-shadow: var(--ww-shadow-sm); }
.home-how-it-works__number {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: var(--ww-orange-100);
    color: var(--ww-orange-700);
    font-weight: 700;
}
.home-how-it-works__step h3 { font-size: 1.1rem; font-weight: 700; color: var(--ww-ink); margin-bottom: 0.2em; }
.home-how-it-works__step p { color: var(--ww-gray-600); line-height: 1.55; }

.home-cta {
    position: relative;
    max-width: 1120px;
    margin: clamp(3rem, 7vw, 5rem) 1.5rem 4rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 90% at 85% 15%, rgba(249, 162, 92, 0.5), transparent 60%),
        linear-gradient(120deg, #2A1C12 0%, #48280F 60%, #7C3A0D 100%);
    padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
    border-radius: var(--ww-radius-lg);
    overflow: hidden;
}
.home-cta h2 { font-family: var(--font-serif); font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 600; color: #fff; }
.home-cta p { max-width: 36em; margin: 0.9rem auto 1.75rem; color: rgba(255, 244, 235, 0.85); font-size: 1.02rem; line-height: 1.6; }

@media (max-width: 700px) {
    .home-mvp__row { grid-template-columns: 1fr; }
    .home-mvp__row--reverse .home-mvp__image { order: 0; }
}

/* ============================================================================
   Celeb cards & grid
   ============================================================================ */
.celeb-list-page { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem 4rem; }

.celeb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 1.5rem;
}
@media (max-width: 900px) { .celeb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .celeb-grid { grid-template-columns: 1fr; } }

.celeb-card {
    display: flex;
    flex-direction: column;
    background: var(--ww-white);
    border-radius: var(--ww-radius-lg);
    box-shadow: var(--ww-shadow-sm);
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.celeb-card:hover { box-shadow: var(--ww-shadow-lg); transform: translateY(-4px); }
.celeb-card__image { display: block; background: var(--ww-gray-100); overflow: hidden; }
.celeb-card__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 350ms ease;
}
.celeb-card:hover .celeb-card__image img { transform: scale(1.04); }
.celeb-card__content { display: flex; flex-direction: column; flex-grow: 1; padding: 1.1rem 1.25rem 1.35rem; }
.celeb-card__content h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.3rem; }
.celeb-card__content h3 a { color: inherit; text-decoration: none; }
.celeb-card__desc { color: var(--ww-gray-600); line-height: 1.55; font-size: 0.92rem; margin: 0.6rem 0 1rem; }
.celeb-card__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: auto; padding-top: 0.4rem; }
.celeb-card__actions .button-link, .celeb-card__actions .button-light { padding: 0.5em 1em; font-size: 0.88rem; }

.celeb-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3em;
    background: var(--ww-gold-light);
    color: var(--ww-gold);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.25em 0.9em;
    font-size: 0.9rem;
    align-self: flex-start;
}
.celeb-badge {
    margin: -0.5rem 1.25rem 1rem;
    font-size: 0.8rem;
    color: var(--ww-teal);
    font-weight: 600;
}
.celeb-list-footer { text-align: center; margin-top: 2.5rem; color: var(--ww-gray-600); }

/* Celeb profile (show) page */
.celeb-profile { max-width: 720px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.celeb-profile__header { display: flex; gap: 1.75rem; align-items: flex-start; padding-top: 2.5rem; flex-wrap: wrap; }
.celeb-profile__header img {
    width: 160px;
    height: 160px;
    border-radius: var(--ww-radius-lg);
    object-fit: cover;
    box-shadow: var(--ww-shadow-md);
}
.celeb-profile__header h1 { padding-top: 0; margin-bottom: 0.2em; }
.celeb-profile__desc { color: var(--ww-gray-600); line-height: 1.6; font-size: 1.02rem; margin-top: 0.9rem; max-width: 38em; }
.celeb-profile__actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }

.ww-social-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.ww-social-links__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.6rem;
    border-radius: var(--ww-radius-sm);
    background: var(--ww-gray-100);
    color: var(--ww-gray-600);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.ww-social-links__icon:hover { background: var(--ww-orange-100); color: var(--ww-orange-700); }

/* ============================================================================
   Price chip (standalone, used in detail views)
   ============================================================================ */
.ww-price-chip {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3em;
    background: var(--ww-gold-light);
    color: var(--ww-gold);
    font-weight: 700;
    border-radius: 999px;
    padding: 0.25em 0.9em;
    font-size: 0.95rem;
}
.ww-price-chip__currency { font-size: 0.75em; font-weight: 600; letter-spacing: 0.03em; }

/* ============================================================================
   Card (record show pages, wraps detail lists)
   ============================================================================ */
.ww-card {
    background: var(--ww-white);
    border: 1px solid var(--ww-gray-200);
    border-radius: var(--ww-radius-lg);
    box-shadow: var(--ww-shadow-md);
    padding: 1.75rem;
    margin-top: 1.5rem;
}
.ww-card h2 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin: 1.75rem 0 0.5rem;
}
.ww-card h2:first-child { margin-top: 0; }

/* ============================================================================
   Detail lists (invitations, record show pages)
   ============================================================================ */
.ww-static-value {
    padding: 0.5em 0.75em;
    background: var(--ww-gray-100);
    border: 1px solid var(--ww-gray-200);
    border-radius: var(--ww-radius-sm);
    color: var(--ww-gray-600);
    font-size: 0.95rem;
    margin: 0;
}
.ww-detail-list { margin: 0; }
.ww-detail-list__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--ww-gray-200);
}
.ww-detail-list__row:last-child { border-bottom: none; }
.ww-detail-list dt {
    flex: 0 0 auto;
    width: 8rem;
    color: var(--ww-gray-600);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.ww-detail-list dd { flex: 1; margin: 0; text-align: right; color: var(--ww-ink); word-break: break-word; }

/* ============================================================================
   Tables — wish/booking lists, admin lists
   ============================================================================ */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    background: var(--ww-white);
    border-radius: var(--ww-radius);
    overflow: hidden;
    box-shadow: var(--ww-shadow-sm);
}
th, td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--ww-gray-200);
}
th {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ww-gray-600);
    background: var(--ww-gray-100);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--ww-orange-50); }

.inline-form { display: inline-flex; margin: 0 0.4rem 0 0; }
td .inline-form button, td .inline-form .button-link { margin-top: 0; padding: 0.35em 0.8em; font-size: 0.82rem; box-shadow: none; }

/* ============================================================================
   Wish/booking action rows
   ============================================================================ */
.wish-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

/* ============================================================================
   Admin
   ============================================================================ */
.admin-nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--ww-gray-200);
}
.admin-nav a { font-weight: 600; font-size: 0.9rem; color: var(--ww-gray-600); }
.admin-nav a:hover { color: var(--ww-orange-700); }

.admin-filter-links { display: flex; gap: 1.25rem; margin: 0 0 0.5rem; flex-wrap: wrap; }
.admin-filter-links a { color: var(--ww-gray-600); font-weight: 500; font-size: 0.9rem; }
.admin-filter-active { color: var(--ww-orange-700) !important; font-weight: 700; }

.admin-raw-response {
    background: var(--ww-gray-100);
    border: 1px solid var(--ww-gray-200);
    padding: 1rem;
    border-radius: var(--ww-radius);
    overflow-x: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.8rem;
    white-space: pre-wrap;
    word-break: break-word;
    color: var(--ww-gray-800);
}

/* ============================================================================
   Footer
   ============================================================================ */
.site-footer {
    margin-top: 4rem;
    padding: 2.5rem 1.5rem;
    background: var(--ww-white);
    border-top: 1px solid var(--ww-gray-200);
    text-align: center;
}
.site-footer__brand {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ww-ink);
}
.site-footer__fineprint { color: var(--ww-gray-500); font-size: 0.85rem; margin-top: 0.5rem; }

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 640px) {
    .site-nav__inner { flex-wrap: wrap; height: auto; padding: 0.85rem 1.25rem; }
    .site-nav__links { gap: 1rem; order: 3; width: 100%; padding-top: 0.5rem; border-top: 1px solid var(--ww-gray-200); margin-top: 0.5rem; }
    .celeb-profile__header { flex-direction: column; align-items: center; text-align: center; }
    .ww-detail-list__row { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
    .ww-detail-list dd { text-align: left; }
    table, thead, tbody, th, td, tr { display: block; }
    thead { display: none; }
    tr { border-bottom: 1px solid var(--ww-gray-200); padding: 0.5rem 0; }
    td { border: none; padding: 0.35rem 1rem; }
    td:before { content: attr(data-label); display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--ww-gray-500); }
}
