/*
 * EpicDadDays — style.css v2.0
 * Three colour palette: Royal Blue / Gold / White
 * Energetic, bold, built for dads
 */

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    /* — Blues — */
    --blue-deepest:  #050e1f;
    --blue-deep:     #091e4a;
    --blue-mid:      #0d2d6b;
    --blue-bright:   #1a3f8f;
    --blue-light:    #2952b3;

    /* — Gold — */
    --gold:          #f5a623;
    --gold-light:    #fdc96a;
    --gold-dark:     #c97f0a;
    --gold-glow:     rgba(245,166,35,0.18);
    --gold-subtle:   rgba(245,166,35,0.08);
    --gold-border:   rgba(245,166,35,0.3);

    /* — White / Type — */
    --white:         #ffffff;
    --body-text:     #e8edf5;
    --secondary:     rgba(255,255,255,0.62);
    --tertiary:      rgba(255,255,255,0.35);

    /* — Surfaces — */
    --surface-1:     rgba(255,255,255,0.06);
    --surface-2:     rgba(255,255,255,0.10);
    --surface-3:     rgba(255,255,255,0.14);
    --border:        rgba(255,255,255,0.10);
    --border-gold:   rgba(245,166,35,0.28);

    /* — Status — */
    --green:   #4ade80;
    --yellow:  #fbbf24;
    --red:     #f87171;

    /* — Type — */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
    --font-mono:    'DM Mono', 'Courier New', monospace;

    /* — Shape — */
    --radius:    14px;
    --radius-sm:  7px;
    --radius-xs:  4px;

    /* — Shadow — */
    --shadow:      0 4px 24px rgba(5,14,31,0.5);
    --shadow-lg:   0 12px 48px rgba(5,14,31,0.7);
    --shadow-gold: 0 4px 32px rgba(245,166,35,0.25);

    /* — Layout — */
    --max-width: 1200px;
    --gutter:    clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background-color: var(--blue-mid);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245,166,35,0.07) 0%, transparent 60%),
        linear-gradient(180deg, var(--blue-deepest) 0%, var(--blue-mid) 30%, var(--blue-bright) 100%);
    background-attachment: fixed;
    color: var(--body-text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* ============================================================
   TYPE SCALE
   ============================================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.05;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(3rem, 10vw, 6rem); }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; color: var(--white); }

p { color: var(--body-text); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--white); font-weight: 600; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section    { padding: clamp(3.5rem, 9vw, 7rem) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: rgba(5,14,31,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem var(--gutter);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.9rem;
    letter-spacing: 0.06em;
    display: flex;
    gap: 0.15em;
}
.logo-epic { color: var(--white); }
.logo-dad  { color: var(--gold-light); }
.logo-days { color: var(--gold); }

.site-nav { display: flex; gap: 2rem; align-items: center; }
.site-nav a {
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    transition: color 0.2s;
}
.site-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO (activity pages)
   ============================================================ */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.28) saturate(0.7);
    transform: scale(1.06);
    transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--blue-deepest) 0%,
        rgba(9,30,74,0.82) 40%,
        rgba(13,45,107,0.2) 100%
    );
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem var(--gutter);
    width: 100%;
}

.hero-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 24px rgba(5,14,31,0.95);
}

.hero-desc { font-size: 1.1rem; max-width: 600px; color: var(--body-text); line-height: 1.6; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.8rem;
    border-radius: 100px;
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.badge-region        { background: var(--gold-glow);                  color: var(--gold);    border: 1px solid var(--border-gold); }
.badge-energy-high   { background: rgba(248,113,113,0.15);             color: var(--red);     border: 1px solid rgba(248,113,113,0.3); }
.badge-energy-medium { background: rgba(251,191,36,0.15);              color: var(--yellow);  border: 1px solid rgba(251,191,36,0.3); }
.badge-energy-low    { background: rgba(74,222,128,0.15);              color: var(--green);   border: 1px solid rgba(74,222,128,0.3); }
.badge-weather       { background: var(--surface-1);                   color: var(--secondary); border: 1px solid var(--border); }
.badge-booking       { background: var(--gold-subtle);                 color: var(--gold-light); border: 1px solid var(--border-gold); }

.tag {
    display: inline-block;
    padding: 0.22rem 0.65rem;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.74rem;
    color: var(--secondary);
    font-family: var(--font-body); font-weight: 500;
    transition: all 0.2s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--blue-deepest);
    font-weight: 700;
    box-shadow: 0 2px 16px rgba(245,166,35,0.35);
}
.btn-primary:hover {
    background: var(--gold-light);
    color: var(--blue-deepest);
    box-shadow: 0 4px 24px rgba(245,166,35,0.55);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--border-gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--blue-deepest);
    border-color: var(--gold);
}

/* ============================================================
   DETAIL CARDS
   ============================================================ */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 3rem 0;
}

.detail-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
    backdrop-filter: blur(8px);
}
.detail-card:hover {
    border-color: var(--border-gold);
    background: var(--surface-2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.detail-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}
.detail-card:hover::before { opacity: 1; }

.detail-icon  { font-size: 1.8rem; margin-bottom: 0.75rem; display: block; }
.detail-label {
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.detail-value { font-size: 1rem; color: var(--white); line-height: 1.5; }

/* ============================================================
   DAD SPOTLIGHT CARDS
   ============================================================ */
.dad-spotlight {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin: 1.25rem 0;
    backdrop-filter: blur(6px);
    transition: border-color 0.2s, background 0.2s;
}
.dad-spotlight:hover { background: var(--surface-2); }

.dad-spotlight .spotlight-label {
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.6rem;
    display: block;
}
.dad-spotlight p { font-size: 1.05rem; color: var(--body-text); margin: 0; line-height: 1.65; }

/* ============================================================
   MEMORY MOMENT
   ============================================================ */
.memory-moment {
    text-align: center;
    padding: 3.5rem 2rem;
    background: var(--gold-subtle);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}
.memory-moment::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245,166,35,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.memory-moment .memory-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.memory-moment blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    color: var(--gold-light);
    letter-spacing: 0.03em;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

/* ============================================================
   COMBO IDEA
   ============================================================ */
.combo-idea {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.25rem 0;
    transition: border-color 0.2s;
}
.combo-idea:hover { border-color: var(--border-gold); }
.combo-idea .combo-icon { font-size: 2rem; flex-shrink: 0; }
.combo-idea .combo-text { color: var(--body-text); font-size: 0.95rem; }
.combo-idea .combo-text strong {
    display: block;
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

/* ============================================================
   ADDRESS STRIP
   ============================================================ */
.address-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 1.5rem 0;
}
.address-strip .address-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ============================================================
   ACTIVITY CARDS — the main grid
   ============================================================ */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.activity-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.25s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
}
.activity-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(5,14,31,0.6), 0 0 0 1px rgba(245,166,35,0.12);
}

/* Tall images — lead with the visual */
.activity-card-img {
    height: 240px;
    background: var(--blue-deep);
    position: relative;
    overflow: hidden;
}
.activity-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.8) saturate(1.1);
}
.activity-card:hover .activity-card-img img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.2);
}

/* Gold shimmer on hover */
.activity-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,14,31,0.7) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.activity-card-week {
    position: absolute;
    top: 0.85rem; left: 0.85rem;
    background: var(--gold);
    color: var(--blue-deepest);
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.22rem 0.7rem;
    border-radius: var(--radius-xs);
    letter-spacing: 0.06em;
    z-index: 1;
}

.activity-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.activity-card-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; align-items: center; }

.activity-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.activity-card-desc { font-size: 0.9rem; color: var(--secondary); flex: 1; margin-bottom: 1rem; line-height: 1.55; }

.activity-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    gap: 0.75rem;
}

.cost-label {
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* ============================================================
   REGION BANNER
   ============================================================ */
.region-banner {
    padding: 5rem var(--gutter) 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--blue-deepest) 0%, var(--blue-mid) 100%);
    border-bottom: 1px solid var(--border-gold);
}

.region-banner::before {
    content: '';
    position: absolute;
    bottom: -40px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 200px;
    background: radial-gradient(ellipse, rgba(245,166,35,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Large decorative region initial */
.region-banner::after {
    content: attr(data-region);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 22vw;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.02em;
}

.region-banner h1 { margin-bottom: 0.75rem; }
.region-banner p  { font-size: 1.1rem; max-width: 520px; margin: 0 auto; color: var(--body-text); }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
    background: rgba(5,14,31,0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem var(--gutter);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    position: sticky;
    top: 61px;
    z-index: 90;
}

.filter-label {
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--tertiary);
    flex-shrink: 0;
}

.filter-btn {
    padding: 0.32rem 0.9rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--secondary);
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-subtle);
}

/* ============================================================
   GIVE ME A DAY
   ============================================================ */
.give-me-a-day {
    padding: clamp(3.5rem, 9vw, 6rem) var(--gutter);
    position: relative;
    overflow: hidden;
    background: var(--blue-deepest);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border);
}

/* Diagonal gold stripe — energy */
.give-me-a-day::before {
    content: '';
    position: absolute;
    top: -2px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
}

.gmad-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.gmad-header h2 { margin-bottom: 0.4rem; }
.gmad-header p  { color: var(--body-text); }

.gmad-filters {
    max-width: 820px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gmad-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.gmad-btn {
    padding: 0.42rem 1.05rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--secondary);
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.gmad-btn:hover, .gmad-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-subtle);
}

.gmad-results { max-width: 960px; margin: 0 auto; }
.gmad-results-header { margin-bottom: 1.5rem; text-align: center; }

.gmad-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gmad-card {
    background: var(--surface-1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.35s ease forwards;
    backdrop-filter: blur(8px);
}

.gmad-card-top { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }
.gmad-card-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; line-height: 1.15; }
.gmad-card-desc  { font-size: 0.88rem; color: var(--secondary); flex: 1; margin-bottom: 1rem; line-height: 1.55; }

.gmad-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    margin-bottom: 1rem;
}
.gmad-stat { font-family: var(--font-body); font-weight: 500; font-size: 0.8rem; color: var(--gold); letter-spacing: 0.04em; }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.reviews-header { margin-bottom: 2rem; }
.reviews-header h3 { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.25rem; }

.review-count {
    background: var(--gold);
    color: var(--blue-deepest);
    font-family: var(--font-body); font-weight: 500;
    font-size: 0.72rem;
    padding: 0.15rem 0.6rem;
    border-radius: 100px;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--border-gold); }

.review-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.review-avatar { font-size: 1.8rem; flex-shrink: 0; }
.review-meta strong { display: block; color: var(--white); font-size: 0.95rem; }
.review-kid-age { font-family: var(--font-body); font-weight: 500; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--secondary); }

.review-stars { margin-left: auto; display: flex; gap: 0.1rem; }
.review-stars .star       { color: var(--border); font-size: 1rem; }
.review-stars .star.active { color: var(--gold); }

.review-label { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.3rem; }
.review-dad-says { margin-bottom: 1rem; }
.review-dad-says p { color: var(--body-text); font-size: 0.95rem; margin: 0; }
.review-kid-says { background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 0.75rem; margin-bottom: 0.75rem; }
.review-kid-says p { color: var(--secondary); font-size: 0.9rem; font-style: italic; margin: 0; }
.review-season { font-family: var(--font-body); font-weight: 500; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--tertiary); }

/* Review form */
.review-form-wrap {
    background: var(--surface-1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 600px;
    backdrop-filter: blur(8px);
}
.review-form-header { margin-bottom: 1.75rem; }
.review-form-header h3 { margin-bottom: 0.25rem; }

.form-row { margin-bottom: 1.25rem; }
.form-label { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.5rem; }

.form-input {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.form-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.1); }
.form-input::placeholder { color: var(--tertiary); }
.form-select option { background: var(--blue-deepest); color: var(--white); }
.form-textarea { resize: vertical; min-height: 80px; }

.star-picker { display: flex; gap: 0.35rem; margin-bottom: 0.25rem; }
.star-pick { font-size: 1.8rem; color: var(--border); cursor: pointer; transition: color 0.15s, transform 0.15s; }
.star-pick:hover, .star-pick.selected { color: var(--gold); transform: scale(1.15); }

.review-thanks { text-align: center; padding: 2rem; }
.review-thanks h4 { margin: 0.75rem 0 0.25rem; color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--blue-deepest);
    border-top: 1px solid var(--border-gold);
    padding: 4rem var(--gutter);
    text-align: center;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.site-footer .footer-logo { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 0.06em; margin-bottom: 0.75rem; display: flex; justify-content: center; gap: 0.15em; }
.site-footer p { font-size: 0.88rem; color: var(--secondary); }
.site-footer a { color: var(--secondary); }
.site-footer a:hover { color: var(--gold); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.hamburger { display: none; }

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,14,31,0.98);
    backdrop-filter: blur(20px);
    z-index: 200;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); letter-spacing: 0.08em; }
.mobile-nav a:hover { color: var(--gold); }
.nav-close { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 1.8rem; color: var(--secondary); cursor: pointer; background: none; border: none; line-height: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
}

/* High energy badge gets a pulse */
.badge-energy-high { animation: pulse 2.5s infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .site-nav { display: none; }
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.4rem;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
    .detail-grid { grid-template-columns: 1fr; }
    .activity-grid { grid-template-columns: 1fr; }
    .filter-bar { top: 57px; }
    .region-banner { padding: 3rem var(--gutter) 2.5rem; }
    .activity-card-footer { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .gmad-results-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero { min-height: 55vh; }
    .hero-content { padding: 2rem 1rem; }
    .memory-moment { padding: 2rem 1.25rem; }
}

/* ============================================================
   FONT OVERRIDE — mono only for data/numbers
   ============================================================ */
.badge,
.cost-label,
.gmad-stat,
.gmad-step-num,
.review-count,
.activity-card-week,
.detail-label {
    font-family: var(--font-mono) !important;
}
