/* Yaya Gingersnatch (ygh) site stylesheet — "Sunny Soda" direction.
 *
 * Warm cream pages, brass/copper accents (#c17a3f → #d9a441), rounded Fredoka
 * display over Nunito body, generous pill radii. Dresses both the four bespoke
 * ygh templates (home / galleries / videos / stories) AND the shared service
 * pages (login, cart, checkout, join, account, age gate, 404, info) purely via
 * CSS — those templates are never copied per-site. Fonts (Fredoka / Nunito /
 * Caveat) are loaded by base.html's site_head. Tokens come from the design
 * handoff README.
 *
 * orders.css loads AFTER this sheet, so on equal specificity it wins — service
 * rules here out-specify with tag+class / id where they must override it (see
 * `p.age-ccpa a` and `button.button`, mirroring dfx.css). */

/* ============================================================
   1. Tokens + body base
   ============================================================ */

:root {
    --ygh-brass: #c17a3f;          /* primary accent, active nav/links, wordmark 2 */
    --ygh-brass-hover: #b06d34;
    --ygh-accent: #d9a441;         /* gradient end, badges, filled stars */
    --ygh-ink: #3b2b2b;            /* primary text, footer bg */
    --ygh-body: #4a3a36;           /* article/body text */
    --ygh-ink-soft: #6d5c53;       /* secondary text, inactive nav */
    --ygh-meta: #8a7a72;           /* meta / muted */
    --ygh-faint: #a89a90;
    --ygh-caption: #a8917c;
    --ygh-disabled: #b8a99f;
    --ygh-disabled-bg: #efe3d4;
    --ygh-card: #fff8ee;           /* card / page base */
    --ygh-panel: #fffdf8;          /* top bar, inputs, footer-less panels */
    --ygh-wash: #f7ead3;           /* wash / active pill / soft cards */
    --ygh-soft2: #f0dcc4;
    --ygh-soft3: #f5e6cd;
    --ygh-field-border: #e7d3bd;
    --ygh-hairline: #f2e3d3;
    --ygh-footer-link: #e8c9bd;
    --ygh-footer-copy: #a68e83;
    --ygh-error: #b5675a;
    --ygh-error-border: #d98c7a;
    --ygh-error-bg: #fcefe9;
    --ygh-ok: #4e7038;
    --ygh-ok-border: #bcd9ac;
    --ygh-ok-bg: #eaf3e6;
    --ygh-warn: #9a7420;
    --ygh-warn-border: #ecd39a;
    --ygh-warn-bg: #fbf0dd;

    --ygh-brass-gradient: linear-gradient(135deg, #c17a3f, #d9a441);
    --ygh-shadow-card: 0 30px 70px rgba(120, 60, 40, .18);
    --ygh-shadow-btn: 0 12px 26px rgba(193, 122, 63, .4);
    --ygh-shadow-tile: 0 10px 24px rgba(120, 60, 40, .14);
}

body {
    background: var(--ygh-card);
    color: var(--ygh-ink);
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    margin: 0;
}

a { color: var(--ygh-brass); text-decoration: none; }
a:hover { color: var(--ygh-brass-hover); }

@keyframes yayaFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes yayaWiggle { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }

/* ============================================================
   2. Header chrome
   ============================================================ */

.ygh-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 18px 34px;
    background: var(--ygh-panel);
    border-bottom: 1px solid var(--ygh-hairline);
}

.ygh-wordmark {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    white-space: nowrap;
}
.ygh-wordmark-1 { color: var(--ygh-ink); }
.ygh-wordmark-2 { color: var(--ygh-brass); }
.ygh-wordmark:hover { color: inherit; }

/* Auth-server login card: LOGIN_STYLESHEETS layers this sheet over auth.css
   and LOGIN_BRANDING renders the site name as p#logo.auth-wordmark (ADR 0344).
   id+class, the same specificity the auth template's own reset rule uses. */
#logo.auth-wordmark {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    text-align: center;
    color: var(--ygh-brass);
}

/* Backstage injects its member-hub link here (logo_addition block). */
.backstage_logo { display: inline-block; margin-left: 12px; }
.backstage_logo a {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--ygh-brass);
}

.ygh-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.ygh-nav-link {
    font-weight: 800;
    font-size: 15px;
    color: var(--ygh-ink-soft);
}
.ygh-nav-link:hover { color: var(--ygh-brass); }
.ygh-nav-link.is-active { color: var(--ygh-brass); }

.ygh-nav-account { font-weight: 800; font-size: 15px; color: var(--ygh-ink-soft); }
.ygh-nav-account:hover { color: var(--ygh-brass); }
.ygh-nav-user { color: var(--ygh-brass); }

.ygh-nav-join {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background: var(--ygh-brass-gradient);
    padding: 9px 20px;
    border-radius: 999px;
    box-shadow: var(--ygh-shadow-btn);
}
.ygh-nav-join:hover { color: #fff; filter: brightness(1.05); }

/* ============================================================
   3. Shared page column wrapper
   ============================================================ */

.ygh-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 34px 64px;
    box-sizing: border-box;
}

.ygh-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin: 40px 0 18px;
}
.ygh-section-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--ygh-ink);
    margin: 0;
}
.ygh-section-link { font-weight: 800; font-size: 14px; color: var(--ygh-brass); }

.ygh-empty {
    color: var(--ygh-meta);
    font-size: 16px;
    background: var(--ygh-wash);
    border-radius: 18px;
    padding: 28px 26px;
    text-align: center;
}

/* Reusable gradient placeholder tile — stands in until production media lands. */
.ygh-ph {
    display: block;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 55%),
        linear-gradient(135deg, var(--ygh-wash), var(--ygh-soft2));
    position: relative;
}
.ygh-ph::after {
    content: "🧡";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    opacity: .5;
}

/* ============================================================
   4. Home — visitor hero, intro, peek, what's-inside, pricing;
      member greeting
   ============================================================ */

.ygh-hero {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* Left-dark overlay for white title, over a warm brass field (no photo). */
    background:
        linear-gradient(90deg, rgba(59, 43, 43, .72) 0%, rgba(59, 43, 43, .25) 46%, rgba(193, 122, 63, .15) 100%),
        radial-gradient(120% 130% at 82% 28%, #e6b657, #c17a3f 52%, #7a4a28 100%);
}
.ygh-hero-inner { padding: 0 44px 44px; max-width: 640px; }
.ygh-hero-eyebrow {
    font-weight: 900;
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    margin: 0 0 10px;
}
.ygh-hero-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 76px;
    line-height: .96;
    color: #fff;
    margin: 0 0 12px;
}
.ygh-hero-tagline { font-size: 20px; color: #fff; font-weight: 700; margin: 0 0 24px; }
.ygh-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Buttons — the brass-gradient pill primary + variants (controls ref 5e). */
.ygh-btn {
    display: inline-block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: var(--ygh-brass-gradient);
    border: none;
    border-radius: 999px;
    padding: 13px 28px;
    box-shadow: var(--ygh-shadow-btn);
    cursor: pointer;
}
.ygh-btn:hover { color: #fff; filter: brightness(1.05); }
.ygh-btn--glass {
    background: rgba(255, 255, 255, .18);
    color: #fff;
    box-shadow: none;
    border: 1.5px solid rgba(255, 255, 255, .6);
    backdrop-filter: blur(6px);
}
.ygh-btn--glass:hover { background: rgba(255, 255, 255, .28); filter: none; }
.ygh-btn--secondary {
    background: transparent;
    color: var(--ygh-brass);
    border: 2.5px solid var(--ygh-brass);
    box-shadow: none;
}
.ygh-btn--secondary:hover { background: var(--ygh-wash); color: var(--ygh-brass); filter: none; }
.ygh-btn--ghost { background: transparent; color: var(--ygh-meta); box-shadow: none; }
.ygh-btn--ghost:hover { background: transparent; color: var(--ygh-brass); filter: none; }
.ygh-btn--small { font-size: 14px; padding: 9px 20px; }
.ygh-btn--disabled,
.ygh-btn:disabled {
    background: var(--ygh-disabled-bg);
    color: var(--ygh-disabled);
    box-shadow: none;
    cursor: not-allowed;
}

/* Intro row */
.ygh-intro {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}
.ygh-intro-avatar {
    flex: 0 0 132px;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 5px var(--ygh-accent);
}
.ygh-intro-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--ygh-ink);
    margin: 0 0 8px;
}
.ygh-intro-copy { font-size: 16px; color: var(--ygh-body); line-height: 1.6; margin: 0; max-width: 560px; }

/* "A little peek" teaser grid */
.ygh-peek-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.ygh-peek-tile {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    background: var(--ygh-wash);
    box-shadow: var(--ygh-shadow-tile);
}
.ygh-peek-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ygh-peek-tile--locked img,
.ygh-peek-tile--locked .ygh-ph { filter: blur(14px); }
.ygh-peek-lock {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    background: rgba(59, 43, 43, .28);
}
.ygh-peek-lock span { font-size: 26px; }
.ygh-peek-free {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: var(--ygh-brass);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .04em;
    padding: 4px 10px;
    border-radius: 999px;
}

/* "What's inside" cards */
/* Four cards since #1296 (galleries / features / clips / stories). auto-fit,
   not a hard repeat(4, 1fr): the four tracks fit .ygh-page's 1100px column, and
   below that they wrap to two rather than squeezing to unreadable. */
.ygh-inside-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
}
.ygh-inside-card {
    border-radius: 22px;
    padding: 24px 24px 28px;
    background: var(--ygh-wash);
}
.ygh-inside-grid > .ygh-inside-card:nth-child(2) { background: var(--ygh-soft2); }
.ygh-inside-grid > .ygh-inside-card:nth-child(3) { background: var(--ygh-soft3); }
.ygh-inside-emoji { font-size: 30px; }
.ygh-inside-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--ygh-ink);
    margin: 12px 0 6px;
}
.ygh-inside-copy { font-size: 14.5px; color: var(--ygh-ink-soft); line-height: 1.5; margin: 0; }

/* Pricing band. Real plans/prices come from seeded offers on join — this band
   only merchandises and routes to the funnel, never quotes a fake price. */
.ygh-pricing {
    margin-top: 56px;
    padding: 44px 34px 52px;
    border-radius: 26px;
    background: var(--ygh-brass-gradient);
    text-align: center;
    color: #fff;
}
.ygh-pricing-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 34px;
    margin: 0 0 6px;
}
.ygh-pricing-sub { font-size: 16px; color: rgba(255, 255, 255, .9); margin: 0 0 30px; font-weight: 700; }
.ygh-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 820px;
    margin: 0 auto 28px;
    align-items: stretch;
}
.ygh-plan {
    background: #fff;
    border-radius: 20px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ygh-plan--featured { transform: scale(1.05); box-shadow: 0 18px 40px rgba(120, 60, 40, .3); }
.ygh-plan-badge {
    align-self: center;
    background: var(--ygh-accent);
    color: var(--ygh-ink);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .06em;
    padding: 4px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}
.ygh-plan-name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--ygh-ink);
    margin: 0;
}
.ygh-plan-copy { font-size: 14px; color: var(--ygh-ink-soft); line-height: 1.5; margin: 0; flex: 1; }
.ygh-plan .ygh-btn { align-self: stretch; text-align: center; margin-top: 6px; }
.ygh-plan--featured .ygh-plan-cta {
    background: var(--ygh-brass-gradient);
    color: #fff;
}
.ygh-plan-cta {
    background: transparent;
    color: var(--ygh-brass);
    border: 2.5px solid var(--ygh-brass);
    box-shadow: none;
}
.ygh-plan-cta:hover { filter: brightness(1.03); }
.ygh-pricing-note { font-size: 12.5px; color: rgba(255, 255, 255, .8); margin: 0; }

/* Member greeting band */
.ygh-greeting {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 30px;
    border-radius: 22px;
    background: linear-gradient(120deg, var(--ygh-wash), var(--ygh-soft2));
}
.ygh-greeting-avatar {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 4px var(--ygh-accent);
}
.ygh-greeting-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: var(--ygh-ink);
    margin: 0 0 4px;
}
.ygh-greeting-sub { font-size: 15px; color: var(--ygh-ink-soft); margin: 0; }

.ygh-next {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 18px;
    border: 1.5px dashed var(--ygh-field-border);
    background: var(--ygh-panel);
}
.ygh-next-emoji { font-size: 24px; }
.ygh-next-label { font-weight: 900; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ygh-brass); }
.ygh-next-title { font-weight: 800; color: var(--ygh-ink); }
.ygh-next-meta { color: var(--ygh-meta); font-size: 13px; }

/* ============================================================
   5. Content indexes — galleries / videos / stories
   ============================================================ */

.ygh-index-head { margin-bottom: 8px; }
.ygh-index-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--ygh-ink);
    margin: 0;
}
.ygh-index-count { font-weight: 800; font-size: 15px; color: var(--ygh-meta); margin: 4px 0 26px; }

/* Shared badges / lock (controls ref 5e) */
.ygh-badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ygh-brass);
    color: #fff;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
}
.ygh-badge-best {
    background: var(--ygh-accent);
    color: var(--ygh-ink);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 999px;
}
.ygh-badge-locked {
    background: var(--ygh-ink);
    color: #fff;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .05em;
    padding: 4px 10px;
    border-radius: 999px;
}
.ygh-lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background: rgba(59, 43, 43, .3);
    z-index: 2;
}

/* Galleries — 3-col of 3/4 cards */
.ygh-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.ygh-gal-card { display: block; }
.ygh-gal-thumb {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    background: var(--ygh-wash);
    box-shadow: var(--ygh-shadow-tile);
    margin-bottom: 12px;
}
.ygh-gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ygh-gal-card--locked .ygh-gal-thumb img,
.ygh-gal-card--locked .ygh-gal-thumb .ygh-ph { filter: blur(14px); }
.ygh-gal-title {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--ygh-ink);
}
.ygh-gal-meta { display: block; font-weight: 700; font-size: 13px; color: var(--ygh-meta); margin-top: 3px; }

/* Videos — 3-col of 16:9 cards */
.ygh-vid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.ygh-vid-card { display: block; }
.ygh-vid-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: var(--ygh-wash);
    box-shadow: var(--ygh-shadow-tile);
    margin-bottom: 12px;
}
.ygh-vid-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ygh-vid-card--locked .ygh-vid-thumb img,
.ygh-vid-card--locked .ygh-vid-thumb .ygh-ph { filter: blur(14px); }
.ygh-vid-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 253, 248, .92);
    color: var(--ygh-brass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
}
.ygh-vid-dur {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(59, 43, 43, .82);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 3px 9px;
    border-radius: 999px;
    z-index: 2;
}
.ygh-vid-title {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--ygh-ink);
}
.ygh-vid-meta { display: block; font-weight: 700; font-size: 13px; color: var(--ygh-meta); margin-top: 3px; }

/* Stories — stacked horizontal cards */
.ygh-story-list { display: flex; flex-direction: column; gap: 26px; }
.ygh-story-card {
    display: flex;
    gap: 28px;
    background: var(--ygh-panel);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--ygh-shadow-tile);
}
.ygh-story-thumb {
    position: relative;
    flex: 0 0 220px;
    align-self: stretch;
    min-height: 200px;
    overflow: hidden;
    background: var(--ygh-wash);
}
.ygh-story-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ygh-story-card--locked .ygh-story-thumb img,
.ygh-story-card--locked .ygh-story-thumb .ygh-ph { filter: blur(14px); }
.ygh-story-body { padding: 28px 30px 28px 0; align-self: center; }
.ygh-story-eyebrow {
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ygh-brass);
    margin: 0 0 8px;
}
.ygh-story-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--ygh-ink);
    margin: 0 0 8px;
}
.ygh-story-meta { font-weight: 700; font-size: 13px; color: var(--ygh-meta); margin: 0 0 12px; }
.ygh-story-excerpt { font-size: 16px; color: var(--ygh-body); line-height: 1.6; margin: 0; max-width: 640px; }

/* Rating stars (controls ref 5e) */
.ygh-stars { letter-spacing: 2px; font-size: 18px; color: var(--ygh-accent); }
.ygh-stars .ygh-star-empty { color: #e6d3b6; }

/* ============================================================
   5A. Features — teaser tiles, index modules, the feature page
   ============================================================

   ygh calls a movies.Movie a "feature" (#1296); the markup lives in ygh's own
   copies of movies.html / movie_module.html / movie.html, which shadow MCT's
   for this site alone. Two card families, deliberately distinct:

     .ygh-feat-card   — the 16:9 teaser TILE. An <a>, used by home.html's
                        "Latest features" grid and by the three rails at the
                        foot of the feature page (_feature_tile.html).
     .ygh-feat-mod    — the index MODULE. A <div>, because it carries cast and
                        buy links and an <a> may not contain another.

   Both borrow the .ygh-vid-* geometry rather than reusing those class names, so
   features and clips can diverge without one page's tweak moving the other's.
   ============================================================ */

/* Teaser tiles — same 3-col rhythm as galleries/clips. */
.ygh-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.ygh-feat-card { display: block; }
.ygh-feat-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: var(--ygh-wash);
    box-shadow: var(--ygh-shadow-tile);
    margin-bottom: 12px;
}
.ygh-feat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ygh-feat-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 253, 248, .92);
    color: var(--ygh-brass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
}
.ygh-feat-dur {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(59, 43, 43, .82);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 3px 9px;
    border-radius: 999px;
    z-index: 2;
}
.ygh-feat-title {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--ygh-ink);
}
.ygh-feat-meta { display: block; font-weight: 700; font-size: 13px; color: var(--ygh-meta); margin-top: 3px; }

/* Index modules — thumb left, everything else right (the .ygh-story-card shape,
   which is what a catalogue row with cast and prices needs). */
.ygh-feat-list { display: flex; flex-direction: column; gap: 26px; }
.ygh-feat-mod {
    display: flex;
    gap: 26px;
    background: var(--ygh-panel);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--ygh-shadow-tile);
}
.ygh-feat-mod-thumb {
    position: relative;
    flex: 0 0 300px;
    align-self: stretch;
    min-height: 170px;
    overflow: hidden;
    background: var(--ygh-wash);
}
.ygh-feat-mod-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ygh-feat-mod-body { padding: 24px 28px 24px 0; align-self: center; min-width: 0; }
.ygh-feat-mod-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--ygh-ink);
    margin: 0 0 8px;
}
.ygh-feat-mod-title a { color: var(--ygh-ink); }
.ygh-feat-mod-title a:hover { color: var(--ygh-brass); }
.ygh-feat-mod-rating { max-height: 14px; vertical-align: middle; margin-left: 6px; }
.ygh-feat-mod-blurb { font-size: 16px; color: var(--ygh-body); line-height: 1.6; }
.ygh-feat-mod-blurb p { margin: 0 0 8px; }
.ygh-feat-mod-cast { font-weight: 700; font-size: 14px; color: var(--ygh-ink-soft); margin-top: 8px; }
.ygh-feat-mod-buy { font-weight: 800; font-size: 15px; color: var(--ygh-ink-soft); margin-top: 10px; }
.ygh-feat-mod-earlybird { font-weight: 800; font-size: 14px; color: var(--ygh-error); margin: 10px 0 0; }
.ygh-feat-mod-note {
    font-size: 14px;
    color: var(--ygh-ink-soft);
    background: var(--ygh-wash);
    border-radius: 14px;
    padding: 10px 14px;
    margin: 12px 0 0;
}
.ygh-feat-mod-data { font-weight: 700; font-size: 13px; color: var(--ygh-meta); margin-top: 12px; }

/* Operator banner + category blurb on the index (both markdown-rendered). */
.ygh-banner {
    background: var(--ygh-wash);
    border-radius: 18px;
    padding: 16px 20px;
    margin-bottom: 22px;
    font-size: 16px;
    color: var(--ygh-body);
}
.ygh-banner p:last-child, .ygh-index-blurb p:last-child { margin-bottom: 0; }
.ygh-index-blurb { font-size: 16px; color: var(--ygh-body); line-height: 1.6; margin-bottom: 22px; }

/* ---- The feature page ---- */

.ygh-feature-head { margin-bottom: 22px; }
.ygh-feature-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: var(--ygh-ink);
    margin: 0;
}
.ygh-feature-flags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.ygh-feature-flag {
    background: var(--ygh-wash);
    color: var(--ygh-ink-soft);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .04em;
    padding: 4px 10px;
    border-radius: 999px;
}
.ygh-feature-slug { font-size: 17px; color: var(--ygh-body); line-height: 1.6; margin: 12px 0 0; }
.ygh-feature-rating { max-height: 18px; vertical-align: middle; margin-right: 8px; }

/* Player beside the action panel. The panel is a fixed track so the CTA does
   not reflow as the player's intrinsic size changes between titles. */
.ygh-feature-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}
.ygh-feature-stage { min-width: 0; }
.ygh-feature-player,
.ygh-feature-poster {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: var(--ygh-shadow-tile);
    background: var(--ygh-wash);
}
.ygh-feature-audio { width: 100%; margin-top: 16px; }
.ygh-feature-agegate {
    background: var(--ygh-error-bg);
    border: 2px solid var(--ygh-error-border);
    border-radius: 18px;
    padding: 18px 20px;
    color: var(--ygh-body);
    font-size: 16px;
    line-height: 1.6;
}

.ygh-feature-actions {
    background: var(--ygh-panel);
    border-radius: 22px;
    box-shadow: var(--ygh-shadow-tile);
    padding: 24px 24px 26px;
}
.ygh-feature-actions-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--ygh-ink);
    margin: 0 0 10px;
}
.ygh-feature-cta { display: block; text-align: center; margin-bottom: 12px; }
.ygh-feature-state {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--ygh-brass);
    margin: 0 0 8px;
}
.ygh-feature-fineprint { display: block; font-size: 13px; color: var(--ygh-meta); margin: 4px 0 0; }
.ygh-feature-earlybird { font-weight: 800; font-size: 14px; color: var(--ygh-error); margin: 0 0 10px; }
.ygh-feature-buys { list-style: none; margin: 0 0 6px; padding: 0; }
.ygh-feature-buys li { font-weight: 800; font-size: 15px; margin-bottom: 10px; }
.ygh-feature-was { display: block; font-weight: 700; font-size: 12.5px; color: var(--ygh-meta); font-style: italic; }
.ygh-feature-note {
    font-size: 14px;
    color: var(--ygh-ink-soft);
    background: var(--ygh-wash);
    border-radius: 14px;
    padding: 10px 14px;
    margin: 14px 0 0;
}

.ygh-feature-stills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.ygh-feature-stills img {
    height: 120px;
    width: auto;
    display: block;
    border-radius: 12px;
    box-shadow: var(--ygh-shadow-tile);
}

.ygh-feature-cast-line { font-weight: 700; font-size: 15px; color: var(--ygh-ink-soft); margin: 24px 0 0; }
.ygh-feature-role { font-weight: 600; font-size: 13px; color: var(--ygh-meta); font-style: italic; }

.ygh-feature-copy { font-size: 17px; color: var(--ygh-body); line-height: 1.7; margin-top: 22px; }
.ygh-feature-data { font-weight: 700; font-size: 13px; color: var(--ygh-meta); margin-top: 18px; }
.ygh-feature-reviews { margin-top: 26px; }

.ygh-feature-cast { display: flex; flex-wrap: wrap; gap: 22px; }
.ygh-feature-castcard { display: block; width: 180px; }
.ygh-feature-castshot {
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    background: var(--ygh-wash);
    box-shadow: var(--ygh-shadow-tile);
    margin-bottom: 10px;
}
.ygh-feature-castshot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ygh-feature-castname {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--ygh-ink);
}
.ygh-feature-castexcl { display: block; font-weight: 700; font-size: 12.5px; font-style: italic; color: var(--ygh-brass); }

/* ============================================================
   6. Footer chrome
   ============================================================ */

.ygh-footer {
    background: var(--ygh-ink);
    text-align: center;
    padding: 30px 34px 36px;
}
.ygh-footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 12px;
}
.ygh-footer-nav a { color: var(--ygh-footer-link); font-weight: 700; font-size: 13px; }
.ygh-footer-nav a:hover { color: #fff; }
.ygh-footer-copy { color: var(--ygh-footer-copy); font-weight: 600; font-size: 12px; line-height: 1.6; margin: 0; }

/* ============================================================
   7. Age gate (#age_page wrapper + .ygh-age-* card)
   ============================================================ */

#age_page {
    display: flex;
    justify-content: center;
    padding: 9vh 20px 0;
    min-height: 70vh;
    background: radial-gradient(120% 90% at 50% 20%, #f7ead3, #ffe7d6 60%, #ffdccb 100%);
}

.ygh-age-card { max-width: 480px; text-align: center; padding: 40px 32px; }
.ygh-age-medallion {
    width: 96px;
    height: 96px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--ygh-shadow-tile);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    animation: yayaFloat 4s ease-in-out infinite;
}
.ygh-age-eyebrow {
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ygh-brass);
    margin: 0 0 14px;
}
.ygh-age-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    color: var(--ygh-ink);
    margin: 0 0 18px;
}
.ygh-age-copy { font-size: 16px; color: var(--ygh-ink-soft); line-height: 1.6; max-width: 380px; margin: 0 auto 28px; }
.ygh-age-actions { max-width: 320px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.ygh-age-enter {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: var(--ygh-brass-gradient);
    border-radius: 999px;
    padding: 14px;
    box-shadow: var(--ygh-shadow-btn);
}
.ygh-age-enter:hover { color: #fff; filter: brightness(1.05); }
.ygh-age-leave { display: block; font-weight: 700; font-size: 14px; color: var(--ygh-meta); padding: 4px; }
.ygh-age-leave:hover { color: var(--ygh-brass); }
.ygh-age-fineprint { font-size: 12.5px; color: var(--ygh-caption); margin-top: 24px; }

/* Mandated CCPA link the shared age_page.html appends AFTER #age_page.
   p.age-ccpa a out-specifies orders.css's .age-ccpa a (loads later). */
.age-ccpa { text-align: center; margin: 22px auto 40px; }
p.age-ccpa a { font-size: 12.5px; color: var(--ygh-caption); font-weight: 600; }

/* ============================================================
   8. Shared service / info content wrappers
   #page_content (cart, account, generic service) and #info_content
   (legal pages) carry no site classes — without these they run full-bleed.
   ============================================================ */

#page_content,
#info_content {
    max-width: 940px;
    margin: 0 auto;
    padding: 40px 34px 56px;
    box-sizing: border-box;
    font-size: 16px;
    color: var(--ygh-body);
    line-height: 1.65;
}
#page_content h1,
#info_content h1 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: var(--ygh-ink);
}
#page_content h2,
#info_content h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--ygh-ink);
    margin-top: 30px;
}
#page_content a,
#info_content a { color: var(--ygh-brass); font-weight: 700; }
#page_content ul.messages { list-style: none; padding: 0; }
#page_content ul.messages li {
    background: var(--ygh-wash);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
}

/* ============================================================
   9. Forms + controls (login/register/reset, cart, checkout, join,
      and the 5e controls vocabulary). Generic selectors dress the shared
      templates; tag+class/id out-specify orders.css where needed.
   ============================================================ */

form label { font-weight: 800; font-size: 14px; color: var(--ygh-ink); }

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="search"],
form input[type="tel"],
form input[type="number"] {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    background: var(--ygh-panel);
    color: var(--ygh-ink);
    border: 2px solid var(--ygh-field-border);
    border-radius: 999px;
    padding: 13px 18px;
    box-sizing: border-box;
}
form input:focus,
form textarea:focus,
form select:focus { outline: none; border-color: var(--ygh-brass); }

form textarea {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background: var(--ygh-panel);
    color: var(--ygh-ink);
    border: 2px solid var(--ygh-field-border);
    border-radius: 18px;
    padding: 14px 18px;
    resize: vertical;
    box-sizing: border-box;
}

form select {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 15px;
    background: var(--ygh-panel);
    color: var(--ygh-ink);
    border: 2px solid var(--ygh-field-border);
    border-radius: 999px;
    padding: 12px 18px;
    accent-color: var(--ygh-brass);
}

/* Native controls all pick up the brass accent. */
input[type="checkbox"],
input[type="radio"],
input[type="range"],
select { accent-color: var(--ygh-brass); }
input[type="checkbox"],
input[type="radio"] { width: 17px; height: 17px; }

/* Error state (`.nope` is the shared error class on inputs and messages). */
form input.nope,
input.nope {
    border-color: var(--ygh-error-border);
    color: var(--ygh-error);
    background: var(--ygh-error-bg);
}
.nope { color: var(--ygh-error); font-weight: 800; }

/* Submit buttons on shared forms + the `.button` class orders.css also owns.
   Tag+class beats orders.css's bare `.button`. */
form button[type="submit"],
form input[type="submit"],
button.button,
a.button,
input.button {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background: var(--ygh-brass-gradient);
    border: none;
    border-radius: 999px;
    padding: 13px 28px;
    box-shadow: var(--ygh-shadow-btn);
    cursor: pointer;
}
form button[type="submit"]:hover,
form input[type="submit"]:hover,
button.button:hover,
a.button:hover,
input.button:hover { color: #fff; filter: brightness(1.05); }

/* Login / register / reset / checkout-login layout */
.checkout-login-page {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    padding: 24px 20px;
}
.login-register-form-container {
    max-width: 440px;
    margin: 34px auto;
    padding: 36px 34px 40px;
    background: var(--ygh-card);
    border-radius: 26px;
    box-shadow: var(--ygh-shadow-card);
}
.checkout-login-page .login-register-form-container { margin: 0; flex: 1 1 360px; }
.login-register-form-container h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--ygh-ink);
    margin: 0 0 20px;
}
.login-register-form > div { margin-bottom: 14px; }
.login-register-form input[type="text"],
.login-register-form input[type="email"],
.login-register-form input[type="password"] { width: 100%; }
.login-register-button-container { margin-top: 20px; }
.button.login-register-button { display: inline-block; }

/* Cart (#order + orderline table) */
#order { max-width: 940px; margin: 0 auto; padding: 24px 34px 0; box-sizing: border-box; }
#order table { width: 100%; border-collapse: collapse; }
td.orderline_description { padding: 14px 0; font-weight: 700; color: var(--ygh-ink); }
td.orderline_amount { padding: 14px 0; text-align: right; font-weight: 800; color: var(--ygh-ink); }
td.orderline_remove { text-align: right; padding-left: 12px; }
.remove_item { color: var(--ygh-error); font-weight: 800; }
tr.orderline_payment td { color: var(--ygh-ink-soft); }
.coupon-button { margin-left: 8px; }

/* Checkout billing panel */
#billing label { font-weight: 800; font-size: 14px; color: var(--ygh-ink); }
#billing input[type="text"],
#billing input[type="email"],
#billing input[type="password"],
#billing select {
    background: var(--ygh-panel);
    border: 2px solid var(--ygh-field-border);
    border-radius: 999px;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

/* Join / offer cards (view-supplied; dressed here) */
.offer-page { max-width: 940px; margin: 0 auto; padding: 40px 34px 56px; box-sizing: border-box; }
.offer-page-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: var(--ygh-ink);
    text-align: center;
    margin: 0 0 30px;
}
.offer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: stretch;
}
.offer-card {
    position: relative;
    display: block;
    background: linear-gradient(135deg, var(--ygh-wash), #fff8ee);
    border: 2.5px solid transparent;
    border-radius: 22px;
    padding: 26px 24px;
    cursor: pointer;
}
.offer-card-selected { border-color: var(--ygh-brass); box-shadow: var(--ygh-shadow-tile); }
.offer-card input[type="radio"] { position: absolute; top: 20px; right: 20px; }
.offer-badge {
    display: inline-block;
    background: var(--ygh-accent);
    color: var(--ygh-ink);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.offer-card-name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--ygh-ink);
    margin: 0 0 8px;
}
.offer-card-price {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--ygh-brass);
}
.offer-card-regular { font-size: 13px; color: var(--ygh-meta); text-decoration: line-through; }
.offer-card-sale-end { font-size: 12.5px; color: var(--ygh-caption); margin-top: 6px; }
.offer-card-description { font-size: 14px; color: var(--ygh-ink-soft); line-height: 1.5; margin-top: 12px; }

/* --- 5e controls vocabulary (class-based; available site-wide) --- */

/* Toggle switch */
.ygh-toggle { position: relative; display: inline-block; width: 48px; height: 28px; }
.ygh-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.ygh-toggle-track {
    position: absolute;
    inset: 0;
    background: #e0d2c2;
    border-radius: 999px;
    transition: background .15s;
}
.ygh-toggle-track::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    transition: transform .15s;
}
.ygh-toggle input:checked + .ygh-toggle-track { background: var(--ygh-brass); }
.ygh-toggle input:checked + .ygh-toggle-track::before { transform: translateX(20px); }

/* Segmented control */
.ygh-segmented {
    display: inline-flex;
    gap: 4px;
    background: var(--ygh-panel);
    border: 1px solid var(--ygh-field-border);
    border-radius: 14px;
    padding: 5px;
}
.ygh-segment {
    font-weight: 800;
    font-size: 14px;
    color: var(--ygh-caption);
    padding: 7px 16px;
    border-radius: 10px;
}
.ygh-segment.is-active { background: var(--ygh-wash); color: var(--ygh-ink); }

/* Search field */
.ygh-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--ygh-panel);
    border: 2px solid var(--ygh-field-border);
    border-radius: 999px;
    padding: 4px 16px;
}
.ygh-search svg { stroke: #b9a591; }
.ygh-search input { border: none; background: transparent; padding: 10px 0; font-family: 'Nunito', sans-serif; font-weight: 700; width: 100%; }
.ygh-search input:focus { outline: none; }

/* Chips / tags */
.ygh-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ygh-brass);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
}
.ygh-chip--soft { background: var(--ygh-wash); color: #8a5c34; }
.ygh-chip--add { background: transparent; color: var(--ygh-meta); border: 1.5px dashed var(--ygh-field-border); }

/* Stepper */
.ygh-stepper {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--ygh-panel);
    border: 1px solid var(--ygh-field-border);
    border-radius: 999px;
    padding: 4px;
}
.ygh-stepper button {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--ygh-brass);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    border-radius: 50%;
}
.ygh-stepper span { min-width: 28px; text-align: center; font-weight: 800; color: var(--ygh-ink); }

/* Pagination */
.ygh-page-nav { display: inline-flex; gap: 8px; align-items: center; }
.ygh-page-num {
    min-width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ygh-panel);
    border: 1px solid var(--ygh-field-border);
    border-radius: 10px;
    font-weight: 800;
    color: var(--ygh-ink-soft);
}
.ygh-page-num.is-active { background: var(--ygh-brass); color: #fff; border-color: var(--ygh-brass); }

/* Notices */
.ygh-notice { border-radius: 14px; padding: 14px 18px; font-weight: 700; font-size: 14.5px; border: 1px solid transparent; }
.ygh-notice--success { background: var(--ygh-ok-bg); border-color: var(--ygh-ok-border); color: var(--ygh-ok); }
.ygh-notice--warning { background: var(--ygh-warn-bg); border-color: var(--ygh-warn-border); color: var(--ygh-warn); }
.ygh-notice--error { background: var(--ygh-error-bg); border-color: var(--ygh-error-border); color: var(--ygh-error); }

/* ============================================================
   10. 404 (#error_page + .ygh-404-*)
   ============================================================ */

#error_page {
    text-align: center;
    padding: 12vh 20px;
    min-height: 60vh;
    background: radial-gradient(120% 90% at 50% 15%, #f7ead3, #fff8ee 65%);
}
.ygh-404-medallion {
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--ygh-shadow-tile);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    animation: yayaFloat 4s ease-in-out infinite;
}
.ygh-404-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 34px;
    color: var(--ygh-ink);
    margin: 0 0 10px;
}
.ygh-404-copy { font-size: 16px; color: var(--ygh-ink-soft); }
.ygh-404-copy a { font-weight: 800; }

/* ============================================================
   10b. Coming soon (pre-launch splash -- #coming_soon + .ygh-coming-*)
   ============================================================ */

#coming_soon {
    min-height: calc(100vh - 78px);   /* fill below the reduced header */
    display: flex;
    padding: 4vh 20px;
    background: radial-gradient(120% 90% at 80% 0%, #f7ead3, #fff8ee 65%);
}
.ygh-coming {
    margin: auto;
    width: min(1040px, 100%);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: var(--ygh-card);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--ygh-shadow-card);
}
.ygh-coming-visual {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    /* Sunny-Soda gradient placeholder until a brand photo lands. */
    background: linear-gradient(150deg, #d9a441 0%, #c17a3f 55%, #3b2b2b 130%);
}
.ygh-coming-wordmark {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 26px;
    text-shadow: 0 2px 12px rgba(59, 43, 43, .5);
}
.ygh-coming-wordmark .ygh-wordmark-1 { color: #fff; }
.ygh-coming-wordmark .ygh-wordmark-2 { color: #fbe6c9; }
.ygh-coming-panel {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ygh-coming-eyebrow {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--ygh-brass);
    margin: 0 0 12px;
}
.ygh-coming-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.02;
    color: var(--ygh-ink);
    margin: 0 0 18px;
}
.ygh-coming-copy {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ygh-ink-soft);
    margin: 0 0 26px;
}
.ygh-coming-form { display: flex; gap: 10px; margin: 0 0 16px; }
.ygh-coming-input {
    flex: 1;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    background: var(--ygh-panel);
    border: 2px solid var(--ygh-field-border);
    border-radius: 999px;
    padding: 13px 18px;
}
.ygh-coming-input:focus { outline: none; border-color: var(--ygh-brass); }
.ygh-coming-notify {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: #fff;
    background: var(--ygh-brass-gradient);
    border: none;
    border-radius: 999px;
    padding: 13px 26px;
    cursor: pointer;
    box-shadow: var(--ygh-shadow-btn);
}
.ygh-coming-notify:hover { filter: brightness(1.05); }
.ygh-coming-note { font-size: 13px; color: var(--ygh-meta); margin: 0; }

/* ============================================================
   11. Responsive
   ============================================================ */

@media (max-width: 768px) {
    .ygh-header { padding: 16px 18px; }
    .ygh-nav { gap: 14px; width: 100%; }
    .ygh-page { padding: 26px 18px 48px; }

    .ygh-hero { aspect-ratio: auto; min-height: 60vh; }
    .ygh-hero-inner { padding: 0 22px 30px; }
    .ygh-hero-title { font-size: 46px; }

    .ygh-intro { flex-direction: column; text-align: center; }
    .ygh-peek-grid { grid-template-columns: repeat(2, 1fr); }
    .ygh-inside-grid,
    .ygh-plans,
    .ygh-gal-grid,
    .ygh-feat-grid,
    .ygh-vid-grid { grid-template-columns: 1fr; }

    .ygh-feat-mod { flex-direction: column; }
    .ygh-feat-mod-thumb { flex-basis: auto; width: 100%; aspect-ratio: 16 / 9; min-height: 0; }
    .ygh-feat-mod-body { padding: 22px 24px; }

    .ygh-feature-main { grid-template-columns: 1fr; }
    .ygh-feature-title { font-size: 32px; }
    .ygh-plan--featured { transform: none; }

    .ygh-story-card { flex-direction: column; }
    .ygh-story-thumb { flex-basis: auto; width: 100%; aspect-ratio: 16 / 9; min-height: 0; }
    .ygh-story-body { padding: 22px 24px; }

    .ygh-index-title { font-size: 32px; }
    .ygh-age-title { font-size: 42px; }

    #page_content, #info_content, #order, .offer-page { padding-left: 18px; padding-right: 18px; }
    .checkout-login-page { flex-direction: column; }

    .ygh-coming { grid-template-columns: 1fr; }
    .ygh-coming-visual { min-height: 200px; }
    .ygh-coming-panel { padding: 36px 26px; }
    .ygh-coming-title { font-size: 44px; }
    .ygh-coming-form { flex-direction: column; }
}
