/*
Theme Name: The Pearl District
Theme URI: https://thepearldistrict.ca
Description: Custom luxury theme for The Pearl District — premium mobile beverage experience. Child theme of Kadence. v2.0 matches the refined design system.
Author: The Pearl District
Template: kadence
Version: 2.0.0
Text Domain: pearl-district
*/

/* =========================================================
   THE PEARL DISTRICT — DESIGN SYSTEM v2.0
   Adopted from home-preview-refined design reference
   ========================================================= */

:root {
    /* BLACKS */
    --pd-obsidian:    #0D0B08;
    --pd-rich-black:  #1A1510;
    --pd-warm-mist:   #2A2218;
    --pd-charcoal:    #3D3020;

    /* GOLDS */
    --pd-gold-deep:   #9A7A2E;
    --pd-gold:        #C9A84C;
    --pd-gold-warm:   #E2C16A;
    --pd-gold-pale:   #F0D98A;

    /* CREAMS */
    --pd-pearl-white: #E8D9B8;
    --pd-pearl-cream: #F0E6C8;
    --pd-ivory:       #FAF6EE;

    /* SEMANTIC */
    --pd-bg-primary:        var(--pd-obsidian);
    --pd-bg-secondary:      var(--pd-rich-black);
    --pd-bg-surface:        var(--pd-warm-mist);
    --pd-bg-surface-raised: var(--pd-charcoal);
    --pd-fg-primary:        var(--pd-pearl-cream);
    --pd-fg-secondary:      var(--pd-pearl-white);
    --pd-fg-muted:          rgba(232, 217, 184, 0.62);
    --pd-fg-faint:          rgba(232, 217, 184, 0.38);
    --pd-accent:            var(--pd-gold);
    --pd-accent-bright:     var(--pd-gold-warm);
    --pd-border-subtle:     rgba(201, 168, 76, 0.18);
    --pd-border-faint:      rgba(240, 230, 200, 0.08);

    /* SHADOWS */
    --pd-shadow-sm:   0 2px 12px rgba(201, 168, 76, 0.06);
    --pd-shadow-md:   0 4px 24px rgba(201, 168, 76, 0.10);
    --pd-shadow-lg:   0 8px 48px rgba(201, 168, 76, 0.14);
    --pd-shadow-glow: 0 0 20px rgba(226, 193, 106, 0.22);

    /* TYPOGRAPHY */
    --pd-serif:         'Cormorant Garamond', Georgia, serif;
    --pd-sans:          'Montserrat', -apple-system, sans-serif;
    --pd-tracking-wide: 0.28em;
    --pd-tracking-mid:  0.16em;

    /* SPACING */
    --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px; --space-5: 24px;
    --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 80px; --space-10: 120px;

    /* RADII */
    --r-sm: 2px; --r-md: 4px; --r-lg: 8px; --r-pill: 999px;

    /* MOTION */
    --pd-ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --pd-ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body, body.wp-singular {
    background: var(--pd-bg-primary);
    color: var(--pd-fg-primary);
    font-family: var(--pd-sans);
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.site, .content-area, .entry-content { background: var(--pd-bg-primary); }

h1, h2, h3, h4, h5, h6, .pd-display {
    font-family: var(--pd-serif);
    font-weight: 400;
    color: var(--pd-fg-primary);
    line-height: 1.12;
    letter-spacing: 0.005em;
}

p { color: var(--pd-fg-muted); line-height: 1.75; }

/* ---- EYEBROW ---- */
.pd-eyebrow {
    font-family: var(--pd-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: var(--pd-tracking-wide);
    text-transform: uppercase;
    color: var(--pd-accent);
}

.pd-italic { font-style: italic; color: var(--pd-gold-warm); font-weight: 400; }

/* ---- DIVIDERS ---- */
.pd-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; margin: 20px auto;
}
.pd-divider::before, .pd-divider::after {
    content: ''; width: 56px; height: 1px;
    background: var(--pd-accent); opacity: 0.6;
}
.pd-divider-dot { width: 3px; height: 3px; background: var(--pd-accent); border-radius: 50%; }

.pd-divider-emdash {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin: 16px auto;
    color: var(--pd-accent);
    font-family: var(--pd-serif);
    font-size: 18px;
}

/* ---- BUTTONS ---- */
.wp-block-button__link, .pd-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px;
    font-family: var(--pd-sans);
    font-size: 11px; font-weight: 500;
    letter-spacing: var(--pd-tracking-wide);
    text-transform: uppercase;
    border-radius: var(--r-pill);
    transition: all 0.4s var(--pd-ease);
    cursor: pointer; text-decoration: none;
    border: 1px solid var(--pd-accent);
}
.pd-btn--primary, .wp-block-button.is-style-primary .wp-block-button__link {
    background: var(--pd-accent); color: var(--pd-obsidian);
    box-shadow: var(--pd-shadow-sm);
}
.pd-btn--primary:hover, .wp-block-button.is-style-primary .wp-block-button__link:hover {
    background: var(--pd-gold-warm);
    box-shadow: var(--pd-shadow-lg);
    transform: translateY(-1px);
}
.pd-btn--ghost, .wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent; color: var(--pd-accent);
}
.pd-btn--ghost:hover, .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: rgba(201, 168, 76, 0.06);
    color: var(--pd-gold-warm);
    border-color: var(--pd-gold-warm);
}
.pd-btn--link {
    background: none; border: none; padding: 8px 0;
    color: var(--pd-accent);
    border-bottom: 1px solid var(--pd-accent);
    border-radius: 0; font-size: 10px;
}
.pd-btn--link:hover { color: var(--pd-gold-warm); border-color: var(--pd-gold-warm); }

/* ---- HEADER ---- */
.site-header, .site-header-inner-wrap {
    background: rgba(13, 11, 8, 0.88) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--pd-border-faint);
}
.site-header-main-section-left .site-branding .site-title {
    font-family: var(--pd-serif);
    color: var(--pd-fg-secondary);
    font-size: 14px; letter-spacing: var(--pd-tracking-mid); font-weight: 400;
}
.header-navigation .menu > li > a,
.main-navigation .menu > li > a {
    font-family: var(--pd-sans);
    font-size: 10px; font-weight: 500;
    letter-spacing: var(--pd-tracking-wide);
    text-transform: uppercase;
    color: var(--pd-fg-muted) !important;
    transition: color 0.3s var(--pd-ease);
    padding: 0 16px;
}
.header-navigation .menu > li > a:hover,
.main-navigation .menu > li > a:hover,
.header-navigation .menu > .current-menu-item > a { color: var(--pd-accent) !important; }

/* ---- HERO ---- */
.pd-hero {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 24px 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 50% 90%, rgba(154, 122, 46, 0.04) 0%, transparent 60%),
        var(--pd-obsidian);
}
.pd-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 75%, rgba(201, 168, 76, 0.035) 0%, transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(240, 217, 138, 0.025) 0%, transparent 45%);
    pointer-events: none;
}
.pd-hero > * { position: relative; z-index: 1; }

.pd-hero__logo {
    width: clamp(90px, 10vw, 130px); height: auto;
    margin: 0 auto 32px;
    filter: drop-shadow(0 0 40px rgba(226, 193, 106, 0.28));
    animation: pd-fadeUp 1.4s var(--pd-ease-slow) 0.1s both;
}

/* The wordmark (multi-line luxury treatment) */
.pd-hero__wordmark {
    font-family: var(--pd-serif);
    font-weight: 400;
    color: var(--pd-accent-bright);
    letter-spacing: 0.02em;
    margin: 0 0 8px;
    animation: pd-fadeUp 1.4s var(--pd-ease-slow) 0.22s both;
}
.pd-hero__wordmark-the {
    display: block;
    font-size: 14px; letter-spacing: var(--pd-tracking-wide);
    color: var(--pd-accent);
    margin-bottom: 8px;
    font-weight: 500;
    font-family: var(--pd-sans);
    text-transform: uppercase;
}
.pd-hero__wordmark-main {
    display: block;
    font-family: var(--pd-serif);
    font-size: clamp(56px, 9vw, 88px);
    font-weight: 400;
    color: var(--pd-accent);
    line-height: 0.95;
}
.pd-hero__wordmark-district {
    display: block;
    font-family: var(--pd-serif);
    font-size: clamp(16px, 2vw, 22px);
    letter-spacing: 0.42em;
    color: var(--pd-accent);
    margin-top: 12px;
    padding-left: 0.42em;
    font-weight: 400;
}

/* Gold gradient rule under wordmark */
.pd-hero__rule {
    width: 120px; height: 1px;
    background: linear-gradient(to right, transparent, var(--pd-accent) 30%, var(--pd-accent) 70%, transparent);
    margin: 40px auto;
    animation: pd-fadeUp 1.4s var(--pd-ease-slow) 0.45s both;
}

.pd-hero__eyebrow { margin-bottom: 28px; animation: pd-fadeUp 1.4s var(--pd-ease-slow) 0.55s both; }
.pd-hero__tagline {
    font-family: var(--pd-serif);
    font-size: clamp(32px, 5vw, 52px);
    color: var(--pd-fg-secondary); font-weight: 400;
    margin: 0 0 4px;
    letter-spacing: 0;
    animation: pd-fadeUp 1.4s var(--pd-ease-slow) 0.7s both;
}
.pd-hero__description {
    max-width: 520px; margin: 32px auto 44px;
    color: var(--pd-fg-muted);
    font-family: var(--pd-serif);
    font-size: 18px; font-weight: 300;
    line-height: 1.65;
    animation: pd-fadeUp 1.4s var(--pd-ease-slow) 0.85s both;
}
.pd-hero__ctas {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    animation: pd-fadeUp 1.4s var(--pd-ease-slow) 1s both;
}

@keyframes pd-fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.pd-hero__scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    color: var(--pd-fg-faint);
    font-family: var(--pd-sans);
    font-size: 9px; letter-spacing: var(--pd-tracking-wide); text-transform: uppercase;
    animation: pd-pulse 2.8s ease-in-out infinite;
}
@keyframes pd-pulse { 0%, 100% { opacity: 0.3; transform: translate(-50%, 0); } 50% { opacity: 0.8; transform: translate(-50%, 8px); } }

/* ---- SECTION ---- */
.pd-section { padding: clamp(80px, 10vw, 120px) 24px; position: relative; scroll-margin-top: 80px; }
.pd-section--alt { background: var(--pd-bg-secondary); }
.pd-section__inner { max-width: 1200px; margin: 0 auto; }
.pd-section__header { text-align: center; margin-bottom: clamp(48px, 6vw, 72px); }
.pd-section__title {
    font-family: var(--pd-serif);
    font-size: clamp(36px, 5vw, 56px);
    color: var(--pd-fg-secondary);
    margin: 12px 0 0; font-weight: 400; letter-spacing: 0;
}
.pd-section__subtitle {
    max-width: 520px; margin: 20px auto 0;
    font-family: var(--pd-serif); font-style: italic;
    font-size: 17px; color: var(--pd-fg-muted); line-height: 1.65;
}

/* ---- VIDEO SECTION (The Pour) ---- */
.pd-video-section {
    position: relative;
    background: var(--pd-obsidian);
    padding: 0; overflow: hidden;
}
.pd-video-section__inner {
    position: relative;
    max-width: 1400px; margin: 0 auto;
    padding: clamp(80px, 10vw, 120px) 24px;
}
.pd-video-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--pd-rich-black);
    overflow: hidden;
    border-radius: var(--r-md);
    box-shadow: var(--pd-shadow-lg);
    border: 1px solid var(--pd-border-subtle);
}
.pd-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.pd-video-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background:
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(226, 193, 106, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, #1A1510 0%, #0D0B08 50%, #2A2218 100%);
    color: var(--pd-accent); gap: 16px;
}
.pd-video-play {
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 1.5px solid var(--pd-accent);
    display: flex; align-items: center; justify-content: center;
    color: var(--pd-accent);
    background: rgba(201, 168, 76, 0.05);
    backdrop-filter: blur(4px);
    transition: all 0.4s var(--pd-ease);
}
.pd-video-wrap:hover .pd-video-play {
    transform: scale(1.08);
    background: rgba(201, 168, 76, 0.15);
    box-shadow: var(--pd-shadow-glow);
}
.pd-video-play svg { width: 24px; height: 24px; fill: var(--pd-accent); margin-left: 4px; }
.pd-video-label {
    font-family: var(--pd-sans);
    font-size: 11px; font-weight: 400;
    letter-spacing: var(--pd-tracking-wide); text-transform: uppercase;
    color: var(--pd-accent); margin-top: 8px;
}
.pd-video-note {
    position: absolute; top: 16px; right: 16px;
    background: rgba(13, 11, 8, 0.75);
    color: rgba(232, 217, 184, 0.5);
    font-family: var(--pd-sans);
    font-size: 9px; padding: 5px 10px;
    border-radius: var(--r-sm);
    letter-spacing: var(--pd-tracking-wide); text-transform: uppercase;
    border: 1px solid var(--pd-border-faint);
}
@media (max-width: 640px) {
    .pd-video-wrap { aspect-ratio: 9 / 14; }
    .pd-video-play { width: 64px; height: 64px; }
}

/* ---- AVAILABLE FOR (with titles) ---- */
.pd-available {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1px; background: var(--pd-border-subtle);
    border: 1px solid var(--pd-border-subtle);
}
.pd-available__item {
    background: var(--pd-bg-primary);
    padding: clamp(32px, 4vw, 56px);
    transition: all 0.5s var(--pd-ease);
    position: relative;
}
.pd-available__item:hover { background: var(--pd-bg-surface); }
.pd-available__label {
    font-family: var(--pd-sans);
    font-size: 10px; font-weight: 500;
    letter-spacing: var(--pd-tracking-wide); text-transform: uppercase;
    color: var(--pd-accent); margin-bottom: 14px;
}
.pd-available__title {
    font-family: var(--pd-serif);
    font-size: 26px; font-weight: 400;
    color: var(--pd-fg-secondary);
    margin-bottom: 12px;
}
.pd-available__desc {
    font-family: var(--pd-sans); font-size: 13.5px;
    line-height: 1.75; color: var(--pd-fg-muted);
    margin: 0; font-weight: 300;
}
@media (max-width: 640px) { .pd-available { grid-template-columns: 1fr; } }

/* ---- DRINKS GRID ---- */
.pd-drinks { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pd-drink {
    position: relative; aspect-ratio: 2 / 3;
    overflow: hidden; border-radius: var(--r-md);
    background: var(--pd-bg-surface); cursor: pointer;
    border: 1px solid var(--pd-border-faint);
    transition: border-color 0.4s var(--pd-ease), box-shadow 0.5s var(--pd-ease);
}
.pd-drink:hover { border-color: var(--pd-border-subtle); box-shadow: var(--pd-shadow-md); }
.pd-drink img, .pd-drink__img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--pd-ease-slow), filter 0.5s;
    filter: brightness(0.82);
}
.pd-drink:hover img, .pd-drink:hover .pd-drink__img { transform: scale(1.05); filter: brightness(1); }
.pd-drink__label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 14px 16px;
    background: linear-gradient(to top, rgba(13, 11, 8, 0.92) 0%, rgba(13, 11, 8, 0.5) 50%, transparent 100%);
    color: var(--pd-fg-secondary);
    font-family: var(--pd-serif);
    font-size: 16px; font-weight: 400;
    text-align: center; letter-spacing: 0.015em;
}
@media (max-width: 1024px) { .pd-drinks { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .pd-drinks { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

.pd-drinks__caption {
    text-align: center; margin-top: 48px;
    font-family: var(--pd-serif); font-style: italic;
    color: var(--pd-pearl-white); font-size: 19px;
}
.pd-drinks__note {
    display: block; margin-top: 16px;
    font-family: var(--pd-sans); font-style: normal;
    font-size: 10px; letter-spacing: var(--pd-tracking-wide);
    text-transform: uppercase; color: var(--pd-accent); font-weight: 400;
}

/* ---- MENU (with featured cards) ---- */
.pd-menu { max-width: 820px; margin: 0 auto; }
.pd-menu__category {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin: 56px 0 24px;
    font-family: var(--pd-sans);
    font-size: 10px;
    letter-spacing: var(--pd-tracking-wide); text-transform: uppercase;
    color: var(--pd-accent); font-weight: 500;
}
.pd-menu__category::before, .pd-menu__category::after {
    content: ''; flex: 1; height: 1px;
    background: var(--pd-border-subtle); max-width: 240px;
}
.pd-menu__item {
    display: grid; grid-template-columns: 1fr auto;
    gap: 24px; padding: 18px 0;
    border-bottom: 1px solid var(--pd-border-faint);
}
.pd-menu__item-name {
    font-family: var(--pd-serif); font-size: 20px;
    color: var(--pd-fg-secondary); margin: 0 0 4px;
    font-weight: 400; letter-spacing: 0.01em;
}
.pd-menu__item-desc {
    font-family: var(--pd-sans); font-size: 12px;
    color: var(--pd-fg-muted); margin: 0; line-height: 1.5; font-weight: 300;
}
.pd-menu__item-price {
    font-family: var(--pd-serif); font-size: 19px;
    color: var(--pd-accent); align-self: start; font-weight: 400;
}

/* Featured drink cards */
.pd-featured-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 72px;
}
.pd-fcard {
    position: relative;
    background: var(--pd-bg-secondary);
    border: 1px solid var(--pd-border-faint);
    border-radius: var(--r-md);
    padding: 32px 28px;
    transition: all 0.5s var(--pd-ease);
}
.pd-fcard:hover {
    background: var(--pd-bg-surface);
    border-color: var(--pd-border-subtle);
    box-shadow: var(--pd-shadow-md);
    transform: translateY(-2px);
}
.pd-fcard--featured {
    border-color: var(--pd-accent);
    box-shadow: var(--pd-shadow-glow);
    background: linear-gradient(180deg, var(--pd-bg-secondary) 0%, var(--pd-bg-surface) 100%);
}
.pd-fcard__eyebrow {
    font-family: var(--pd-sans);
    font-size: 9px;
    letter-spacing: var(--pd-tracking-wide); text-transform: uppercase;
    color: var(--pd-accent); margin-bottom: 16px; font-weight: 500;
}
.pd-fcard__name {
    font-family: var(--pd-serif); font-size: 24px;
    color: var(--pd-fg-secondary); font-weight: 400;
    margin-bottom: 14px; letter-spacing: 0.01em;
}
.pd-fcard__desc {
    font-family: var(--pd-sans); font-size: 13px;
    line-height: 1.65; color: var(--pd-fg-muted);
    margin-bottom: 20px; font-weight: 300;
}
.pd-fcard__price {
    font-family: var(--pd-serif); font-size: 16px;
    color: var(--pd-accent); font-style: italic; font-weight: 400;
}
@media (max-width: 768px) { .pd-featured-cards { grid-template-columns: 1fr; } }

/* ---- MAILING ---- */
.pd-mailing {
    background: var(--pd-bg-surface);
    border: 1px solid var(--pd-border-subtle);
    padding: clamp(40px, 5vw, 64px);
    text-align: center;
    max-width: 720px; margin: 0 auto;
    border-radius: var(--r-md);
    box-shadow: var(--pd-shadow-sm);
}
.pd-mailing__title {
    font-family: var(--pd-serif); font-size: 32px;
    color: var(--pd-fg-secondary); margin: 12px 0 10px;
    font-weight: 400; letter-spacing: 0.01em;
}
.pd-mailing__sub {
    font-family: var(--pd-sans); font-size: 13px;
    color: var(--pd-fg-muted); font-weight: 300;
}
.pd-mailing__form {
    display: flex; gap: 12px; margin-top: 24px;
    flex-wrap: wrap; justify-content: center;
}
.pd-mailing__input {
    flex: 1; min-width: 240px;
    padding: 14px 18px;
    background: var(--pd-bg-primary); border: 1px solid var(--pd-border-subtle);
    color: var(--pd-fg-primary);
    font-family: var(--pd-sans); font-size: 13px; font-weight: 300;
    border-radius: var(--r-md); letter-spacing: 0.01em;
}
.pd-mailing__input::placeholder { color: var(--pd-fg-faint); }
.pd-mailing__input:focus { outline: none; border-color: var(--pd-accent); box-shadow: var(--pd-shadow-sm); }

/* ---- FOOTER (three-column) ---- */
.site-footer {
    background: var(--pd-bg-primary) !important;
    border-top: 1px solid var(--pd-border-faint);
    padding: 72px 24px 32px !important;
}
.pd-footer, .site-footer .footer-wrap {
    background: var(--pd-bg-primary);
    border-top: 1px solid var(--pd-border-faint);
    padding: 72px 24px 32px;
}
.pd-footer__inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
}
.pd-footer__brand {
    font-family: var(--pd-serif); font-size: 22px;
    color: var(--pd-accent); margin-bottom: 12px;
    letter-spacing: var(--pd-tracking-mid); font-weight: 400;
}
.pd-footer__tagline {
    font-family: var(--pd-sans); font-size: 13px;
    color: var(--pd-fg-muted); line-height: 1.7;
    max-width: 300px; font-weight: 300;
}
.pd-footer__social { display: flex; gap: 12px; margin-top: 20px; }
.pd-footer__social a {
    width: 36px; height: 36px;
    border: 1px solid var(--pd-border-subtle);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--pd-accent) !important;
    text-decoration: none;
    transition: all 0.3s; font-size: 14px;
}
.pd-footer__social a:hover { background: var(--pd-accent); color: var(--pd-obsidian) !important; border-color: var(--pd-accent); }
.pd-footer__col-title {
    font-family: var(--pd-sans);
    font-size: 10px; letter-spacing: var(--pd-tracking-wide); text-transform: uppercase;
    color: var(--pd-accent); margin-bottom: 16px; font-weight: 500;
}
.pd-footer__col a {
    display: block;
    font-family: var(--pd-serif);
    font-size: 16px; color: var(--pd-fg-secondary) !important;
    text-decoration: none; padding: 6px 0;
    transition: color 0.3s; font-weight: 400;
}
.pd-footer__col a:hover { color: var(--pd-accent) !important; }
.pd-footer__bottom {
    max-width: 1200px; margin: 56px auto 0;
    padding-top: 24px; border-top: 1px solid var(--pd-border-faint);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-family: var(--pd-sans);
    font-size: 11px; color: var(--pd-fg-faint); font-weight: 300;
}
.pd-footer__bottom em {
    color: var(--pd-accent); font-style: italic; font-family: var(--pd-serif);
}
@media (max-width: 768px) { .pd-footer__inner { grid-template-columns: 1fr; gap: 32px; } }

/* ---- FLUENT FORMS ---- */
.fluentform .ff-el-input--label label,
.fluentform label {
    font-family: var(--pd-sans) !important;
    font-size: 10px !important; font-weight: 500 !important;
    letter-spacing: var(--pd-tracking-wide) !important;
    text-transform: uppercase !important;
    color: var(--pd-accent) !important;
}
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="number"],
.fluentform input[type="date"],
.fluentform input[type="time"],
.fluentform textarea, .fluentform select {
    background: var(--pd-bg-surface) !important;
    border: 1px solid var(--pd-border-subtle) !important;
    color: var(--pd-fg-primary) !important;
    padding: 14px 18px !important;
    font-family: var(--pd-sans) !important;
    font-size: 14px !important; font-weight: 300 !important;
    border-radius: var(--r-md) !important;
}
.fluentform input:focus, .fluentform textarea:focus, .fluentform select:focus {
    border-color: var(--pd-accent) !important; outline: none !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12) !important;
}
.fluentform .ff-btn-submit {
    background: var(--pd-accent) !important;
    color: var(--pd-obsidian) !important;
    padding: 14px 48px !important;
    font-family: var(--pd-sans) !important;
    font-size: 11px !important; font-weight: 500 !important;
    letter-spacing: var(--pd-tracking-wide) !important;
    text-transform: uppercase !important;
    border: none !important; border-radius: var(--r-pill) !important;
    cursor: pointer !important; transition: all 0.3s var(--pd-ease) !important;
}
.fluentform .ff-btn-submit:hover {
    background: var(--pd-gold-warm) !important;
    transform: translateY(-1px) !important;
    box-shadow: var(--pd-shadow-glow) !important;
}
.fluentform .ff-el-form-check-inline .ff-el-form-check-label,
.fluentform .ff-el-form-check .ff-el-form-check-label {
    padding: 10px 20px;
    border: 1px solid var(--pd-border-subtle);
    border-radius: var(--r-pill);
    color: var(--pd-fg-primary) !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    font-size: 13px !important; font-weight: 300 !important;
    margin-right: 8px; margin-bottom: 8px;
    cursor: pointer; transition: all 0.3s var(--pd-ease);
    background: transparent;
}
.fluentform .ff-el-form-check input:checked + .ff-el-form-check-label {
    background: var(--pd-accent); color: var(--pd-obsidian) !important; border-color: var(--pd-accent);
}

/* ---- MOBILE STICKY CTA ---- */
.pd-sticky-cta { display: none; }
@media (max-width: 768px) {
    .pd-sticky-cta {
        display: flex; position: fixed;
        bottom: 16px; left: 16px; right: 16px;
        z-index: 100;
        background: var(--pd-accent); color: var(--pd-obsidian);
        padding: 14px;
        justify-content: center; align-items: center;
        font-family: var(--pd-sans);
        font-size: 11px; font-weight: 500;
        letter-spacing: var(--pd-tracking-wide);
        text-transform: uppercase;
        border-radius: var(--r-pill);
        box-shadow: var(--pd-shadow-lg);
        text-decoration: none;
        transition: transform 0.3s var(--pd-ease);
    }
    .pd-sticky-cta:hover { transform: translateY(-2px); color: var(--pd-obsidian); }
}

/* ---- GALLERY ---- */
.pd-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pd-gallery__item {
    aspect-ratio: 4 / 5; overflow: hidden;
    background: var(--pd-bg-surface);
    border-radius: var(--r-md);
    border: 1px solid var(--pd-border-faint);
    transition: border-color 0.4s var(--pd-ease), box-shadow 0.5s var(--pd-ease);
}
.pd-gallery__item:hover { border-color: var(--pd-border-subtle); box-shadow: var(--pd-shadow-md); }
.pd-gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s var(--pd-ease-slow);
}
.pd-gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 768px) { .pd-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ---- ABOUT ---- */
.pd-about-intro { max-width: 680px; margin: 0 auto; text-align: center; }
.pd-about-intro p {
    font-family: var(--pd-serif);
    font-size: 20px; line-height: 1.6;
    color: var(--pd-fg-secondary); font-style: italic;
}
.pd-pillars {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 48px; margin-top: 64px;
}
.pd-pillar { text-align: center; padding: 24px 16px; }
.pd-pillar__num {
    font-family: var(--pd-serif); font-size: 44px;
    color: var(--pd-accent); opacity: 0.5;
    margin-bottom: 12px; font-style: italic;
}
.pd-pillar__title {
    font-family: var(--pd-serif); font-size: 22px;
    color: var(--pd-fg-secondary); margin: 0 0 16px; font-weight: 400;
}
.pd-pillar__body {
    font-size: 14px; color: var(--pd-fg-muted);
    line-height: 1.75; font-weight: 300;
}
@media (max-width: 768px) { .pd-pillars { grid-template-columns: 1fr; gap: 24px; } }

/* ---- EVENTS ---- */
.pd-event-type {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--pd-border-faint);
}
.pd-event-type:last-child { border-bottom: 0; }
.pd-event-type:nth-child(even) .pd-event-type__content { order: 2; }
.pd-event-type__image {
    aspect-ratio: 4 / 5;
    background: var(--pd-bg-surface);
    overflow: hidden;
    border-radius: var(--r-md);
    border: 1px solid var(--pd-border-subtle);
    box-shadow: var(--pd-shadow-md);
}
.pd-event-type__image img { width: 100%; height: 100%; object-fit: cover; }
.pd-event-type__eyebrow { margin-bottom: 16px; }
.pd-event-type__title {
    font-family: var(--pd-serif);
    font-size: clamp(28px, 3.5vw, 36px);
    color: var(--pd-fg-secondary);
    margin: 0 0 16px; font-weight: 400; line-height: 1.15;
}
.pd-event-type__desc {
    font-size: 15px; color: var(--pd-fg-muted);
    line-height: 1.75; margin-bottom: 24px; font-weight: 300;
}
.pd-event-type__list { list-style: none; padding: 0; margin: 0 0 24px; }
.pd-event-type__list li {
    padding: 10px 0 10px 20px;
    position: relative;
    font-size: 13.5px; color: var(--pd-fg-muted);
    border-bottom: 1px solid var(--pd-border-faint); font-weight: 300;
}
.pd-event-type__list li::before {
    content: ''; position: absolute; left: 0; top: 17px;
    width: 5px; height: 5px;
    background: var(--pd-accent); border-radius: 50%;
}
@media (max-width: 900px) {
    .pd-event-type { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
    .pd-event-type:nth-child(even) .pd-event-type__content { order: unset; }
}

/* ---- ACCESSIBILITY ---- */
::selection { background: var(--pd-accent); color: var(--pd-obsidian); }
*:focus-visible { outline: 2px solid var(--pd-accent); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
