/**
 * Red House Design Tokens
 * Source of truth: _visual-spec/VISUAL-SPEC.md
 * Do NOT edit values without updating spec.
 */

:root {
  /* === FONT — single family === */
  --rh-font: 'Lora', Georgia, 'Times New Roman', serif;

  /* === TYPE SCALE — restrained, max 4rem except hero === */
  --rh-text-xs:   0.75rem;    /* 12px */
  --rh-text-sm:   0.875rem;   /* 14px */
  --rh-text-base: 1rem;       /* 16px */
  --rh-text-md:   1.125rem;   /* 18px */
  --rh-text-lg:   1.375rem;   /* 22px */
  --rh-text-xl:   1.625rem;   /* 26px */
  --rh-text-2xl:  2rem;       /* 32px */
  --rh-text-3xl:  2.5rem;     /* 40px */
  --rh-text-hero: 3.25rem;    /* 52px — homepage hero only */

  /* Mobile variants */
  --rh-text-2xl-mobile:  1.5rem;    /* 24px */
  --rh-text-3xl-mobile:  1.875rem;  /* 30px */
  --rh-text-hero-mobile: 2.25rem;   /* 36px */

  /* Line heights */
  --rh-leading-tight:   1.2;
  --rh-leading-snug:    1.3;
  --rh-leading-normal:  1.5;
  --rh-leading-relaxed: 1.7;

  /* === COLORS — cream palette === */
  --rh-cream-50:  #FAF6F0;
  --rh-cream-100: #F5EFE5;
  --rh-cream-200: #EAE0CF;
  --rh-cream-300: #D4C5A8;

  --rh-card-bg:      #FFFFFF;
  --rh-card-bg-tint: #FAF6F0;
  --rh-card-bg-dark: #1A1818;

  --rh-red-50:  #FBE9E7;
  --rh-red-100: #F5C6C2;
  --rh-red-500: #C8342A;
  --rh-red-600: #A82920;
  --rh-red-700: #871F19;

  --rh-black:       #1A1818;
  --rh-text:        #2D2A28;
  --rh-text-muted:  #6B6460;
  --rh-text-subtle: #9C9489;
  --rh-text-on-dark:#F5EFE5;

  --rh-success: #2D7A3E;
  --rh-warning: #B8761E;
  --rh-error:   #B12018;

  /* === SPACING === */
  --rh-space-1:  0.25rem;  /* 4px  */
  --rh-space-2:  0.5rem;   /* 8px  */
  --rh-space-3:  0.75rem;  /* 12px */
  --rh-space-4:  1rem;     /* 16px */
  --rh-space-5:  1.5rem;   /* 24px */
  --rh-space-6:  2rem;     /* 32px */
  --rh-space-7:  3rem;     /* 48px */
  --rh-space-8:  4rem;     /* 64px */
  --rh-space-9:  5rem;     /* 80px */
  --rh-space-10: 6.5rem;   /* 104px */

  /* === RADIUS === */
  --rh-radius-sm:   4px;
  --rh-radius:      6px;
  --rh-radius-md:   8px;
  --rh-radius-lg:   12px;
  --rh-radius-full: 9999px;

  /* === SHADOWS === */
  --rh-shadow-xs: 0 1px 2px rgba(26, 24, 24, 0.04);
  --rh-shadow-sm: 0 2px 4px rgba(26, 24, 24, 0.05),
                  0 1px 2px rgba(26, 24, 24, 0.04);
  --rh-shadow-md: 0 4px 8px rgba(26, 24, 24, 0.06),
                  0 2px 4px rgba(26, 24, 24, 0.04);
  --rh-shadow-lg: 0 12px 24px rgba(26, 24, 24, 0.08),
                  0 4px 8px rgba(26, 24, 24, 0.05);

  /* === TRANSITIONS === */
  --rh-transition-fast: 150ms ease-out;
  --rh-transition:      250ms ease-out;
  --rh-transition-slow: 400ms ease-out;

  /* === LAYOUT === */
  --rh-container-max:     1280px;
  --rh-container-narrow:  760px;
  --rh-container-padding: var(--rh-space-5);

  /* === LEGACY ALIASES — existing CSS uses these; keep for backward compat === */
  /* All resolve to Lora via --rh-font */
  --font-display: var(--rh-font);
  --font-serif:   var(--rh-font);
  --font-body:    var(--rh-font);
  --font-mono:    var(--rh-font);

  /* Spacing aliases (old CSS uses --sp-*) */
  --sp-1:  var(--rh-space-1);
  --sp-2:  var(--rh-space-2);
  --sp-3:  var(--rh-space-3);
  --sp-4:  var(--rh-space-4);
  --sp-5:  var(--rh-space-5);
  --sp-6:  var(--rh-space-6);
  --sp-7:  var(--rh-space-7);
  --sp-8:  var(--rh-space-8);
  --sp-9:  var(--rh-space-9);
  --sp-10: var(--rh-space-10);

  /* Radius aliases */
  --radius-sm:   var(--rh-radius-sm);
  --radius:      var(--rh-radius);
  --radius-md:   var(--rh-radius-md);
  --radius-lg:   var(--rh-radius-lg);
  --radius-full: var(--rh-radius-full);

  /* Shadow aliases */
  --shadow-sm: var(--rh-shadow-sm);
  --shadow-md: var(--rh-shadow-md);
  --shadow-lg: var(--rh-shadow-lg);

  /* Transition aliases */
  --t-fast: var(--rh-transition-fast);
  --t:      var(--rh-transition);
  --t-slow: var(--rh-transition-slow);
}

@media (min-width: 768px) {
  :root {
    --rh-container-padding: var(--rh-space-6);
  }
}

/**
 * Red House Typography
 * Per VISUAL-SPEC.md sections 1.1–1.6
 * Single font: Lora. Scale capped at --rh-text-3xl (2.5rem / 40px).
 * Exception: .rh-hero__title uses --rh-text-hero (3.25rem / 52px).
 */

html {
  font-family: var(--rh-font);
  font-size: 16px;
  line-height: var(--rh-leading-normal);
  color: var(--rh-text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--rh-font);
  font-weight: 400;
  background: var(--rh-cream-50);
  color: var(--rh-text);
}

/* Headings — all use Lora, all capped at 3xl */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--rh-font);
  font-weight: 600;
  line-height: var(--rh-leading-tight);
  margin: 0 0 var(--rh-space-4) 0;
  color: var(--rh-black);
}

h1 { font-size: var(--rh-text-3xl); }
h2 { font-size: var(--rh-text-2xl); }
h3 { font-size: var(--rh-text-xl); }
h4 { font-size: var(--rh-text-lg); }
h5 { font-size: var(--rh-text-base); font-weight: 700; }
h6 { font-size: var(--rh-text-sm);   font-weight: 700; }

/* Body */
p {
  margin: 0 0 var(--rh-space-4) 0;
  line-height: var(--rh-leading-relaxed);
}

p.rh-lead { font-size: var(--rh-text-md); }

/* Eyebrow labels */
.rh-eyebrow {
  font-family: var(--rh-font);
  font-size: var(--rh-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rh-red-500);
  font-style: normal;
}

/* Meta / caption text */
.rh-meta {
  font-size: var(--rh-text-sm);
  color: var(--rh-text-muted);
  line-height: 1.5;
}

/* Numbers — use Lora's lining numerals */
.rh-number,
.rh-price,
time,
.rh-date {
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-variant-numeric: lining-nums tabular-nums;
}

/* Form elements */
input, textarea, select, button {
  font-family: var(--rh-font);
}

/* Mobile sizes */
@media (max-width: 768px) {
  h1 { font-size: var(--rh-text-3xl-mobile); }
  h2 { font-size: var(--rh-text-2xl-mobile); }
  h3 { font-size: var(--rh-text-xl); }
}

/* WP block editor compatibility */
.wp-block-heading {
  font-family: var(--rh-font);
  font-weight: 600;
}

.wp-block-paragraph,
.wp-block-list,
.wp-block-quote {
  font-family: inherit;
}

/* Override ALL WP preset font-family utility classes → Lora */
.has-display-font-family,
.has-body-font-family,
.has-mono-font-family,
.has-serif-font-family {
  font-family: var(--rh-font) !important;
}

/*
Theme Name: Red House Studio
Theme URI: https://redhousestudio.bg
Author: Red House Studio
Description: Официалната тема на Червената Къща — пространство за култура, изкуство и смислени разговори.
Version: 1.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: redhouse
*/

/* ══════════════════════════════════════════════════
   DESIGN TOKENS — Light theme as default
   Dark theme optionally via [data-theme="dark"]
   ══════════════════════════════════════════════════ */

:root {
  /* ── Font vars: aliases live in _tokens.css → all resolve to Lora ── */
  --nav-h: 72px;

  /* ── Backgrounds (light default) ── */
  --bg-primary:    #f5f1ea;
  --bg-surface:    #ffffff;
  --bg-elevated:   #fafaf7;
  --bg-hover:      rgba(26,26,26,0.04);

  /* ── Text ── */
  --text-primary:   #1a1a1a;
  --text-secondary: #4a4845;
  --text-muted:     #7a7770;
  --text-inverse:   #f5f1ea;

  /* ── Borders ── */
  --border-subtle:  rgba(26,26,26,0.08);
  --border-default: rgba(26,26,26,0.15);
  --border-strong:  rgba(26,26,26,0.30);

  /* ── Brand ── */
  --brand-red:       #c62828;
  --brand-red-hover: #a51d1d;
  --brand-gold:      #b88b5a;
  --brand-gold-hover:#9a6f42;

  /* ── Semantic ── */
  --success: #2e7d32;
  --warning: #e65100;
  --danger:  #c62828;

  /* ── Overlays ── */
  --overlay-dark: rgba(26,26,26,0.6);
  --scrim:        rgba(245,241,234,0.95);

  color-scheme: light;

  /* ── Legacy aliases (existing CSS uses these names) ── */
  --red:        #C8102E;
  --red-dark:   #8B0A1E;
  --black:      var(--bg-primary);
  --black2:     var(--bg-surface);
  --black3:     var(--bg-elevated);
  --white:      var(--text-primary);
  --white-dim:  rgba(26,26,26,.60);
  --white-faint:rgba(26,26,26,.06);
  --gold:       var(--brand-gold);

  /* ── Nav vars ── */
  --nav-bg-rest:     rgba(245,241,234,0);
  --nav-bg-scrolled: rgba(245,241,234,.96);
  --mobile-overlay:  rgba(26,26,26,.60);
  --panel-border:    rgba(200,16,46,.15);
  --bar-bg:          rgba(245,241,234,.97);
}

/* ══════════════════════════════════════════════════
   DARK THEME OVERRIDES (opt-in via data-theme="dark")
   ══════════════════════════════════════════════════ */

[data-theme="dark"] {
  --bg-primary:    #0b0a09;
  --bg-surface:    #151311;
  --bg-elevated:   #1f1c1a;
  --bg-hover:      rgba(255,255,255,0.04);

  --text-primary:   #f5f1ea;
  --text-secondary: #c4bdb3;
  --text-muted:     #8a8379;
  --text-inverse:   #1a1a1a;

  --border-subtle:  rgba(245,241,234,0.08);
  --border-default: rgba(245,241,234,0.15);
  --border-strong:  rgba(245,241,234,0.30);

  --brand-red:       #c62828;
  --brand-red-hover: #a51d1d;
  --brand-gold:      #d4a574;
  --brand-gold-hover:#b88b5a;

  --success: #4caf50;
  --warning: #ff9800;
  --danger:  #e53935;

  --overlay-dark: rgba(0,0,0,0.7);
  --scrim:        rgba(11,10,9,0.95);

  color-scheme: dark;

  --red:        #C8102E;
  --red-dark:   #8B0A1E;
  --black:      var(--bg-primary);
  --black2:     var(--bg-surface);
  --black3:     var(--bg-elevated);
  --white:      var(--text-primary);
  --white-dim:  rgba(245,241,234,.55);
  --white-faint:rgba(245,241,234,.06);
  --gold:       var(--brand-gold);

  --nav-bg-rest:     rgba(11,10,9,0);
  --nav-bg-scrolled: rgba(11,10,9,.96);
  --mobile-overlay:  rgba(11,10,9,.72);
  --panel-border:    rgba(200,16,46,.12);
  --bar-bg:          rgba(11,10,9,.97);
}

/* ── Smooth theme transition ── */
body,
.rh-nav,
.rh-mobile-panel,
.rh-ep-bar,
.rh-about,
.rh-services,
.rh-contact,
.rh-footer {
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

/* ══════════════════════════════════════════════════
   RESET
   ══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Form elements must inherit theme fonts, not browser/WP defaults */
input, textarea, select, button { font-family: var(--font-body); }

/* Headings always use display font — overrides WP block editor defaults */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }

/* WP block editor utility class overrides — point to our fonts, not old presets */
.has-display-font-family { font-family: var(--font-display) !important; }
.has-body-font-family    { font-family: var(--font-body) !important; }
.has-mono-font-family    { font-family: var(--font-mono) !important; }
/* Legacy WP preset slug "serif" now maps to Fraunces */
.has-serif-font-family   { font-family: var(--font-display) !important; }

/* ── Icon system ── */
.rh-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.rh-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

/* ── Custom cursor ── */
.rh-cursor {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.rh-cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(200,16,46,.35);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
.rh-cursor-ring.hovered { width: 52px; height: 52px; border-color: var(--red); }

/* ══════════════════════════════════════════════════
   BUTTONS — unified system
   Base: btn-red (filled red) | btn-ghost (underline)
   Sizes: --sm (nav) | default | --lg (hero CTAs)
   ══════════════════════════════════════════════════ */

.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  color: #f5f1ea; background: var(--rh-red-500);
  padding: 14px 32px; border: none; cursor: none;
  transition: background .2s; text-decoration: none;
  white-space: nowrap; border-radius: var(--rh-radius-sm);
}
.btn-red:hover { background: var(--rh-red-600); color: #f5f1ea; }

/* Size variants */
.btn-red--sm { padding: 9px 20px; font-size: 10px; }
.btn-red--lg { padding: 16px 40px; font-size: 12px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  color: var(--rh-text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--rh-cream-300);
  background: none; cursor: none;
  transition: color .2s, border-color .2s; text-decoration: none;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--rh-black); border-color: var(--rh-black); }

/* Dark-context ghost (hero overlay) */
.btn-ghost--light {
  color: rgba(245,241,234,.80);
  border-color: rgba(245,241,234,.40);
}
.btn-ghost--light:hover { color: #f5f1ea; border-color: #f5f1ea; }

/* ══════════════════════════════════════════════════
   SECTION LABELS + TITLES
   ══════════════════════════════════════════════════ */

.section-label {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: .38em; text-transform: uppercase; font-weight: 600;
  color: var(--red); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block;
  width: 22px; height: 1px; background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--rh-text-3xl);
  line-height: 1.05; letter-spacing: -.01em; font-weight: 600;
  color: var(--text-primary);
}

/* Archive header — standard section opener for archive pages */
.rh-archive-header {
  padding: calc(var(--nav-h) + 48px) 48px 40px;
}
.rh-archive-header .section-title {
  font-size: var(--rh-text-2xl);
  margin-bottom: 12px;
}
.rh-archive-header p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════════ */

.rh-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.rh-reveal.visible { opacity: 1; transform: translateY(0); }
.rh-reveal.d1 { transition-delay: .15s; }
.rh-reveal.d2 { transition-delay: .30s; }
.rh-reveal.d3 { transition-delay: .45s; }

/* ══════════════════════════════════════════════════
   FAB — floating action button
   ══════════════════════════════════════════════════ */

.rh-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 150;
  background: var(--red); color: #f5f1ea;
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: .28em; text-transform: uppercase; font-weight: 500;
  padding: 13px 24px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(200,16,46,.30);
  transition: background .2s, box-shadow .2s, transform .2s;
  cursor: none;
}
.rh-fab:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 32px rgba(200,16,46,.45);
  transform: translateY(-2px);
  color: #f5f1ea;
}
.rh-fab__dot {
  width: 5px; height: 5px;
  background: #f5f1ea; border-radius: 50%;
  animation: rh-pulse 2s infinite;
}

/* ══════════════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════════════ */

@keyframes rh-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rh-fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes rh-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes rh-gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes rh-scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(.6); opacity: .4; }
}
@keyframes rh-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .6; }
}
@keyframes rh-spin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — 960px
   ══════════════════════════════════════════════════ */

@media (max-width: 960px) {
  .rh-archive-header { padding: calc(var(--nav-h) + 32px) 24px 28px; }
  .rh-fab { padding: 11px 18px; font-size: 9px; bottom: 20px; right: 20px; }
}

/* ════════════════════════════════
   NAV
   ════════════════════════════════ */
.rh-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; height: var(--nav-h);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: var(--nav-bg-rest);
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.rh-nav.scrolled {
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(20px);
  border-color: var(--panel-border);
}
.rh-nav__logo {
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: .06em;
  color: var(--text-primary); text-decoration: none;
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  transition: color .2s;
}
.rh-nav__logo-img {
  flex-shrink: 0;
  filter: brightness(0);
  opacity: .85;
  transition: opacity .2s;
}
.rh-nav__logo:hover .rh-nav__logo-img { opacity: 1; }


.rh-nav__links {
  display: flex; gap: 32px; list-style: none;
  align-items: center; flex: 1; justify-content: center;
}
.rh-nav__links a {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: color .2s; white-space: nowrap; position: relative;
}
.rh-nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.rh-nav__links a:hover { color: var(--text-primary); }
.rh-nav__links a:hover::after { transform: scaleX(1); }
.rh-nav__links li.current-menu-item > a { color: var(--text-primary); }
.rh-nav__links li.current-menu-item > a::after { transform: scaleX(1); }

.rh-nav__cta {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: var(--text-primary); text-decoration: none;
  border: 1px solid var(--border-default); padding: 9px 20px;
  white-space: nowrap; transition: background .2s, border-color .2s, color .2s; flex-shrink: 0;
}
.rh-nav__cta:hover { background: var(--red); border-color: var(--red); color: #f5f1ea; }

/* ── Overlay state: nav sitting over a dark hero image ─────
   JS adds .is-overlay when body.has-hero-image + not scrolled.
   Removed when user scrolls past threshold (scroll ≥ 60px).  ── */
.rh-nav.is-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,.52) 0%, rgba(0,0,0,0) 100%);
  backdrop-filter: none;
  border-color: transparent;
}
.rh-nav.is-overlay .rh-nav__logo         { color: rgba(245,241,234,.92); }
.rh-nav.is-overlay .rh-nav__logo-img      { filter: brightness(0) invert(1); opacity: .88; }
.rh-nav.is-overlay .rh-nav__links a       { color: #f5f1ea; text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.35); }
.rh-nav.is-overlay .rh-nav__links a:hover,
.rh-nav.is-overlay .rh-nav__links li.current-menu-item > a { color: #f5f1ea; }
.rh-nav.is-overlay .rh-nav__cta           { color: rgba(245,241,234,.88); border-color: rgba(245,241,234,.35); }
.rh-nav.is-overlay .rh-nav__cta:hover     { background: var(--red); border-color: var(--red); color: #f5f1ea; }

/* ── Scrolled: always cream bg, always dark text (wins over overlay) ── */
.rh-nav.scrolled .rh-nav__logo            { color: var(--text-primary); }
.rh-nav.scrolled .rh-nav__logo-img        { filter: brightness(0); opacity: .85; }
.rh-nav.scrolled .rh-nav__links a         { color: var(--text-muted); text-shadow: none; }
.rh-nav.scrolled .rh-nav__links a:hover,
.rh-nav.scrolled .rh-nav__links li.current-menu-item > a { color: var(--text-primary); }
.rh-nav.scrolled .rh-nav__cta             { color: var(--text-primary); border-color: var(--border-default); }

/* ── Dark theme overrides ── */
[data-theme="dark"] .rh-nav__logo { color: var(--text-primary); }
[data-theme="dark"] .rh-nav__links a { color: var(--white-dim); }
[data-theme="dark"] .rh-nav__links a:hover,
[data-theme="dark"] .rh-nav__links li.current-menu-item > a { color: var(--white); }
[data-theme="dark"] .rh-nav__cta { color: var(--white); border-color: var(--red); }
[data-theme="dark"] .rh-nav__logo-img { filter: brightness(0) invert(1); opacity: .9; }

/* ── Custom logo from WP media library ─────────────────────────────────
   Chained-class selectors give specificity 0,3,0 (state) / 0,2,0 (base),
   always beating the base .rh-nav__logo-img rules above.
   Logo renders in natural colours — no brightness filter.            ── */
.rh-nav__logo-img.rh-nav__logo-img--custom {
  height: 40px;
  width: auto;
  max-width: 180px;
  filter: none;
  opacity: 1;
}
.rh-nav__logo:hover .rh-nav__logo-img.rh-nav__logo-img--custom { opacity: .8; }
.rh-nav.is-overlay .rh-nav__logo-img.rh-nav__logo-img--custom  { filter: none; opacity: 1; }
.rh-nav.scrolled   .rh-nav__logo-img.rh-nav__logo-img--custom  { filter: none; opacity: 1; }
[data-theme="dark"] .rh-nav__logo-img.rh-nav__logo-img--custom { filter: none; opacity: .9; }


/* ════════════════════════════════
   HERO
   ════════════════════════════════ */
.rh-hero {
  min-height: 70vh; max-height: 720px; position: relative;
  display: flex; align-items: flex-end;
  padding: 0 var(--rh-space-7) var(--rh-space-9); overflow: hidden;
}
.rh-hero__bg {
  position: absolute; inset: 0;
  background: url('https://redhousestudio.bg/_next/image?url=%2Fsites%2Fdefault%2Ffiles%2Fstyles%2Fwide%2Fpublic%2F2025-06%2FRedHouse_FacadeRed2%2520%25281%2529.jpg&w=3840&q=75') center top / cover;
  filter: brightness(.32) saturate(.8);
  will-change: transform;
}
.rh-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.92) 0%, transparent 55%, rgba(8,8,8,.20) 100%);
}
.rh-hero__grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}
.rh-hero__vline {
  position: absolute; left: 48px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--red) 30%, var(--red) 70%, transparent);
  opacity: .3;
}
.rh-hero__content { position: relative; z-index: 2; max-width: 720px; }
.rh-hero__eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--red);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: rh-fade-up .8s .3s forwards;
  font-family: var(--font-body); font-weight: 500;
}
.rh-hero__eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--red); }
.rh-hero__title {
  font-family: var(--rh-font);
  font-size: var(--rh-text-hero); line-height: var(--rh-leading-tight); letter-spacing: -.01em; font-weight: 700;
  color: #f5f1ea;
  margin-bottom: var(--rh-space-5); opacity: 0; animation: rh-fade-up .8s .5s forwards;
}
.rh-hero__title span { color: var(--rh-red-500); display: block; font-style: italic; }
.rh-hero__sub {
  font-family: var(--font-body); font-size: var(--rh-text-md); font-weight: 400;
  color: rgba(245,241,234,.72); margin-bottom: var(--rh-space-6);
  opacity: 0; animation: rh-fade-up .8s .7s forwards;
  max-width: 520px; line-height: var(--rh-leading-relaxed);
}
.rh-hero__actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: rh-fade-up .8s .9s forwards;
}
.rh-hero__scroll {
  position: absolute; bottom: 40px; right: 48px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: rh-fade-in 1s 1.2s forwards;
}
.rh-hero__scroll span {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(245,241,234,.55); writing-mode: vertical-rl;
}
.rh-hero__scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: rh-scroll-line 2s infinite;
}


/* ════════════════════════════════
   TICKER
   ════════════════════════════════ */
.rh-ticker { background: var(--red); overflow: hidden; padding: 10px 0; }
.rh-ticker__track {
  display: flex; width: max-content;
  animation: rh-ticker 28s linear infinite;
}
.rh-ticker__item {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 0 32px; color: #f5f1ea;
  display: flex; align-items: center; gap: 32px; white-space: nowrap;
}
.rh-ticker__item::after { content: '◆'; font-size: 6px; opacity: .5; }


/* Events section styles live in assets/css/events.css (Micro 6 kinematograf cards) */


/* ════════════════════════════════
   MOBILE BURGER + SLIDE-IN PANEL
   ════════════════════════════════ */

.rh-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: none; padding: 8px; flex-shrink: 0;
}
.rh-nav__burger span {
  display: block; height: 1px;
  background: var(--text-primary);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
/* Over dark hero — keep burger lines white */
.rh-nav.is-overlay .rh-nav__burger span { background: rgba(245,241,234,.85); }
.rh-nav.scrolled   .rh-nav__burger span { background: var(--text-primary); }

.rh-nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.rh-nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rh-nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.rh-mobile-overlay {
  position: fixed; inset: 0;
  background: var(--mobile-overlay);
  backdrop-filter: blur(4px);
  z-index: 299;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.rh-mobile-overlay.active { opacity: 1; pointer-events: auto; visibility: visible; }

.rh-mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--bg-surface);
  border-left: 1px solid var(--panel-border);
  z-index: 300;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.23,1,.32,1), visibility .4s;
  display: flex; flex-direction: column;
}
.rh-mobile-panel.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.rh-mobile-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: var(--nav-h);
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.rh-mobile-panel__close {
  background: none; border: none;
  color: var(--text-muted); font-size: 18px;
  cursor: none; padding: 8px;
  transition: color .2s;
}
.rh-mobile-panel__close:hover { color: var(--red); }

.rh-mobile-panel__nav {
  display: flex; flex-direction: column;
  padding: 24px 28px 40px;
  flex: 1; overflow-y: auto;
}
.rh-mobile-panel__nav ul { list-style: none; display: contents; }
.rh-mobile-panel__nav li { display: contents; }
.rh-mobile-panel__nav a {
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color .2s, padding-left .2s;
  display: block;
}
.rh-mobile-panel__nav a:hover { color: var(--text-primary); padding-left: 6px; }
.rh-mobile-panel__cta {
  margin-top: 28px;
  text-align: center !important;
  display: block !important;
  padding: 14px 24px !important;
  border-bottom: none !important;
}
.rh-mobile-panel__cta:hover { padding-left: 0 !important; }

/* Footer nav */
.rh-footer__nav ul { list-style: none; display: contents; }
.rh-footer__nav li { display: contents; }

@media (max-width: 960px) {
  .rh-nav { padding: 0 24px; }
  .rh-nav__links { display: none; }
  .rh-nav__cta   { display: none; }
  .rh-nav__burger { display: flex; }

  .rh-hero { padding: 0 var(--rh-space-5) var(--rh-space-8); max-height: none; }
  .rh-hero__vline { left: var(--rh-space-5); }
  .rh-hero__title { font-size: var(--rh-text-hero-mobile); line-height: var(--rh-leading-tight); }
  .rh-hero__sub { font-size: var(--rh-text-base); }
  .rh-hero__actions { flex-wrap: wrap; }
  .rh-hero__scroll  { right: var(--rh-space-5); }
}

@media (max-width: 480px) {
  .rh-hero { padding: 0 var(--rh-space-4) var(--rh-space-7); }
  .rh-hero__title { font-size: var(--rh-text-hero-mobile); word-break: break-word; }
  .rh-hero__eyebrow { font-size: var(--rh-text-xs); }
}

/**
 * Event Card — kinematograf-style pattern
 * Per VISUAL-SPEC section 6.2
 * Also covers: homepage events section, event archive grid
 */

/* ─── Card shell ──────────────────────────────────────────── */
.rh-event-card {
  position: relative;
  display: block;
  background: var(--rh-card-bg);
  border-radius: var(--rh-radius-lg);
  overflow: hidden;
  transition: transform var(--rh-transition), box-shadow var(--rh-transition);
  box-shadow: var(--rh-shadow-sm);
}
.rh-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rh-shadow-lg);
}
.rh-event-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ─── Dark band ───────────────────────────────────────────── */
.rh-event-card__band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--rh-space-3) var(--rh-space-4);
  background: var(--rh-card-bg-dark);
  color: var(--rh-text-on-dark);
  min-height: 56px;
}
.rh-event-card__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.rh-event-card__day {
  font-family: var(--rh-font);
  font-size: var(--rh-text-2xl);
  font-weight: 700;
  color: var(--rh-red-500);
  font-feature-settings: "lnum" 1;
  line-height: 1;
}
.rh-event-card__month {
  font-size: var(--rh-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rh-text-on-dark);
  margin-top: 4px;
  line-height: 1;
}
.rh-event-card__brand {
  display: flex;
  align-items: center;
  gap: var(--rh-space-2);
  font-size: var(--rh-text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rh-red-500);
}
.rh-event-card__brand .rh-icon {
  color: var(--rh-red-500);
  flex-shrink: 0;
}

/* ─── Poster image ────────────────────────────────────────── */
.rh-event-card__image {
  position: relative;
  overflow: hidden;
  background: var(--rh-cream-100);
  /* No aspect-ratio — poster preserves natural proportions */
}
.rh-event-card__img,
.rh-event-card__image img {
  width: 100%;
  height: auto;          /* Natural aspect ratio — no cropping */
  display: block;
  transition: transform var(--rh-transition-slow);
}
.rh-event-card:hover .rh-event-card__img,
.rh-event-card:hover .rh-event-card__image img {
  transform: scale(1.03);
}
.rh-event-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--rh-cream-200);
  color: var(--rh-text-subtle);
}
.rh-event-card__venue-label {
  position: absolute;
  bottom: var(--rh-space-3);
  right: var(--rh-space-3);
  padding: var(--rh-space-1) var(--rh-space-3);
  background: var(--rh-red-500);
  color: #ffffff;
  font-size: var(--rh-text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--rh-radius-sm);
}

/* ─── Card body ───────────────────────────────────────────── */
.rh-event-card__body {
  padding: var(--rh-space-5);
  background: var(--rh-card-bg);
}
.rh-event-card__eyebrow {
  display: inline-block;
  margin-bottom: var(--rh-space-2);
}
.rh-event-card__title {
  font-size: var(--rh-text-lg);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 var(--rh-space-3);
  color: var(--rh-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rh-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rh-space-4);
  margin-top: var(--rh-space-3);
}
.rh-event-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--rh-space-2);
  font-size: var(--rh-text-sm);
  color: var(--rh-text-muted);
}
.rh-event-card__meta-item .rh-icon {
  color: var(--rh-text-muted);
  flex-shrink: 0;
}
.rh-event-card__meta-item .rh-price {
  font-weight: 600;
  color: var(--rh-black);
}

/* ─── Events grid (homepage + archive) ───────────────────── */
/* CSS columns masonry — cards vary in height per poster ratio */
.rh-events-grid {
  column-count: 3;
  column-gap: var(--rh-space-5);
}
.rh-event-card {
  break-inside: avoid;
  margin-bottom: var(--rh-space-5);
}
@media (max-width: 1024px) {
  .rh-events-grid { column-count: 2; }
}
@media (max-width: 600px) {
  .rh-events-grid { column-count: 1; }
}

/* ─── Homepage events section ─────────────────────────────── */
.rh-events-section {
  padding: var(--rh-space-9) 0;
}
.rh-events-section .rh-container {
  width: 100%;
  max-width: var(--rh-container-max);
  margin: 0 auto;
  padding-left: var(--rh-container-padding);
  padding-right: var(--rh-container-padding);
}
.rh-events-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--rh-space-7);
  gap: var(--rh-space-5);
}
.rh-events-section__header-left { display: flex; flex-direction: column; gap: var(--rh-space-2); }
.rh-events-section__title {
  font-size: var(--rh-text-2xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--rh-black);
  margin: 0;
}
.rh-events-section__link {
  font-size: var(--rh-text-sm);
  font-weight: 500;
  color: var(--rh-text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--rh-transition);
  flex-shrink: 0;
}
.rh-events-section__link:hover { color: var(--rh-red-500); }
.rh-events-section__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--rh-space-7);
  color: var(--rh-text-muted);
  font-style: italic;
}

/* ─── Archive page ────────────────────────────────────────── */
.rh-events-archive {
  padding-top: var(--rh-space-7);
  padding-bottom: var(--rh-space-9);
}
.rh-events-archive .rh-container {
  width: 100%;
  max-width: var(--rh-container-max);
  margin: 0 auto;
  padding-left: var(--rh-container-padding);
  padding-right: var(--rh-container-padding);
}
.rh-archive-filters {
  display: flex;
  gap: var(--rh-space-3);
  margin-bottom: var(--rh-space-7);
  border-bottom: 1px solid var(--rh-cream-200);
  padding-bottom: var(--rh-space-4);
  flex-wrap: wrap;
}
.rh-archive-filters__item {
  font-size: var(--rh-text-sm);
  font-weight: 500;
  color: var(--rh-text-muted);
  text-decoration: none;
  padding: var(--rh-space-2) var(--rh-space-4);
  border-radius: var(--rh-radius-full);
  border: 1px solid transparent;
  transition: all var(--rh-transition);
}
.rh-archive-filters__item:hover {
  color: var(--rh-black);
  border-color: var(--rh-cream-300);
}
.rh-archive-filters__item--active {
  color: var(--rh-black);
  background: var(--rh-cream-100);
  border-color: var(--rh-cream-300);
}
.rh-archive-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--rh-space-7);
  color: var(--rh-text-muted);
  font-style: italic;
}
.rh-archive-pagination {
  margin-top: var(--rh-space-7);
  display: flex;
  justify-content: center;
  gap: var(--rh-space-3);
}
.rh-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  font-size: var(--rh-text-sm);
  font-weight: 500;
  color: var(--rh-text-muted);
  text-decoration: none;
  border: 1px solid var(--rh-cream-200);
  border-radius: var(--rh-radius);
  transition: all var(--rh-transition);
}
.rh-archive-pagination .page-numbers:hover,
.rh-archive-pagination .page-numbers.current {
  background: var(--rh-black);
  color: var(--rh-text-on-dark);
  border-color: var(--rh-black);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .rh-events-section { padding: var(--rh-space-7) 0; }
  .rh-events-section__header { flex-direction: column; align-items: flex-start; }
  .rh-events-archive { padding-top: var(--rh-space-5); }
}
@media (max-width: 480px) {
  .rh-event-card__day { font-size: var(--rh-text-xl); }
}

/* ════════════════════════════════
   EVENT PAGE — split layout
   ════════════════════════════════ */
/* Spacer — reserves space for BOTH fixed nav AND fixed event bar */
.rh-ep-nav-spacer {
  height: calc(var(--nav-h, 72px) + 64px);  /* fallback 72px if JS hasn't run yet */
  display: block;
  width: 100%;
}

.rh-ep-bar {
  position: fixed;
  top: var(--nav-h, 72px);  /* fallback 72px for FOUC / JS-disabled */
  left: 0; right: 0;
  z-index: 150;              /* below rh-nav (200), above all content */
  height: 64px; background: var(--bar-bg);
  border-bottom: 1px solid rgba(200,16,46,.15);
  backdrop-filter: blur(16px);
  display: flex; align-items: center;
  padding: 0 40px; gap: 20px;
}
.rh-ep-bar__back {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none;
  transition: color .2s; flex-shrink: 0; display: flex; align-items: center; gap: 6px;
}
.rh-ep-bar__back:hover { color: var(--white); }
.rh-ep-bar__sep { width: 1px; height: 28px; background: var(--border-default); flex-shrink: 0; }
.rh-ep-bar__title {
  font-family: var(--font-display); font-size: 17px; letter-spacing: .06em;
  flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rh-ep-bar__meta {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--white-dim); flex-shrink: 0; white-space: nowrap;
}
.rh-ep-bar__price {
  font-family: var(--font-display); font-size: 20px; color: var(--gold);
  flex-shrink: 0; letter-spacing: .04em;
}

/* Split body — below both fixed bars */
.rh-ep-body {
  display: grid; grid-template-columns: 1fr 440px;
  min-height: calc(100vh - var(--nav-h, 72px) - 64px);
}

/* Left — info */
.rh-ep-info {
  padding: 48px 52px 80px;
  border-right: 1px solid var(--border-subtle);
  overflow-y: auto;
}
/* Hero grid: portrait image | event meta side by side */
.rh-ep-hero {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 40px;
}
.rh-ep-hero__info { display: flex; flex-direction: column; }

/* Portrait image pane */
.rh-ep-poster {
  width: 100%; aspect-ratio: 4/5;
  background-color: #1a0a0a;
  background-size: cover; background-position: center center;
  background-repeat: no-repeat;
  filter: none;
}
.rh-ep-datetime {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.rh-ep-title {
  font-family: var(--font-display); font-size: clamp(28px,4vw,52px);
  letter-spacing: .03em; line-height: 1; margin-bottom: 20px;
}
.rh-ep-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.rh-ep-tag {
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--red); border: 1px solid rgba(200,16,46,.35); padding: 4px 10px;
}
.rh-ep-tag--gold { color: var(--gold); border-color: rgba(201,169,110,.35); }
.rh-ep-pills { display: flex; gap: 2px; margin-bottom: 32px; }
.rh-ep-pill {
  padding: 12px 16px; background: var(--black2); flex: 1; text-align: center;
}
.rh-ep-pill__label {
  font-size: 8px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 4px;
}
.rh-ep-pill__value { font-family: var(--font-display); font-size: 16px; letter-spacing: .04em; }
.rh-ep-desc {
  font-family: var(--font-serif); font-size: 18px; line-height: 1.85;
  color: var(--text-secondary); margin-bottom: 36px;
}
.rh-ep-desc p + p { margin-top: 16px; }

/* Gallery */
.rh-ep-gallery__label {
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.rh-ep-gallery__label::before { content: ''; display: block; width: 16px; height: 1px; background: var(--red); }
.rh-ep-gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.rh-ep-gallery__item {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  filter: brightness(.75); transition: filter .3s;
}
.rh-ep-gallery__item:hover { filter: brightness(1); }

/* Right — ticket */
.rh-ep-ticket {
  background: var(--black2);
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(200,16,46,.08);
  position: sticky; top: calc(var(--nav-h, 72px) + 64px);
  height: calc(100vh - var(--nav-h, 72px) - 64px);
  overflow-y: auto;
}
.rh-ep-ticket__hd {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border-subtle); flex-shrink: 0;
}
.rh-ep-ticket__label {
  font-size: 9px; letter-spacing: .35em; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.rh-ep-ticket__label::before { content: ''; display: block; width: 16px; height: 1px; background: var(--red); }
.rh-ep-ticket__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
}
.rh-ep-ticket__name { font-family: var(--font-display); font-size: 19px; letter-spacing: .04em; }
.rh-ep-ticket__price { font-family: var(--font-mono); font-size: 21px; color: var(--gold); }

/* Qty */
.rh-ep-ticket__qty-wrap {
  padding: 20px 32px; border-bottom: 1px solid var(--border-subtle);
}
.rh-ep-ticket__qty-label {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--white-dim); margin-bottom: 12px;
}
.rh-ep-ticket__qty-row { display: flex; align-items: center; margin-bottom: 16px; }
.rh-ep-ticket__qty-btn {
  width: 44px; height: 44px; background: var(--black3);
  border: 1px solid var(--border-default); color: var(--white);
  font-size: 20px; cursor: none; transition: background .2s, border-color .2s; line-height: 1;
}
.rh-ep-ticket__qty-btn:hover { background: var(--red); border-color: var(--red); }
.rh-ep-ticket__qty-num {
  width: 60px; height: 44px; background: var(--black);
  border: 1px solid var(--border-default); border-left: none; border-right: none;
  color: var(--white); font-family: var(--font-display); font-size: 24px;
  text-align: center; outline: none;
}
.rh-ep-ticket__total-row { display: flex; justify-content: space-between; align-items: baseline; }
.rh-ep-ticket__total-label { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--white-dim); }
.rh-ep-ticket__total-val { font-family: var(--font-mono); font-size: 32px; }

/* Quantity input (number spinner in ticket form) */
.rh-ep-ticket__qty {
  width: 72px; padding: 10px 8px;
  background: var(--black); border: 1px solid var(--border-default);
  color: var(--white); font-family: var(--font-display); font-size: 18px;
  text-align: center; outline: none; transition: border-color .2s;
}
.rh-ep-ticket__qty:focus { border-color: var(--red); }

/* Form */
.rh-ep-ticket__form { padding: 20px 32px; display: flex; flex-direction: column; gap: 14px; }
.rh-ep-ticket__field { display: flex; flex-direction: column; gap: 6px; }
.rh-ep-ticket__field-label {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--white-dim);
}
.rh-ep-ticket__field-optional { font-size: 9px; opacity: .4; text-transform: none; letter-spacing: 0; }
.rh-ep-ticket__input {
  background: var(--black); border: 1px solid var(--border-default);
  color: var(--white); padding: 13px 14px;
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color .2s; width: 100%;
}
.rh-ep-ticket__input:focus { border-color: var(--red); }
.rh-ep-ticket__input::placeholder { color: var(--text-muted); }
.rh-ep-ticket__input.error { border-color: #f87171; }
.rh-ep-ticket__field-error { font-size: 11px; color: #f87171; }
.rh-ep-ticket__email {
  background: var(--black); border: 1px solid var(--border-default);
  color: var(--white); padding: 13px 14px;
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color .2s; width: 100%;
}
.rh-ep-ticket__email::placeholder { color: var(--text-muted); }
.rh-ep-ticket__email:focus { border-color: var(--red); }
.rh-ep-ticket__email:invalid:not(:placeholder-shown) { border-color: #f87171; }

/* Promo */
.rh-ep-ticket__promo-row { display: flex; }
.rh-ep-ticket__promo-input {
  flex: 1; background: var(--black);
  border: 1px solid var(--border-default); border-right: none;
  color: var(--white); padding: 12px 14px;
  font-family: var(--font-body); font-size: 13px; outline: none;
  transition: border-color .2s; text-transform: uppercase; letter-spacing: .1em;
}
.rh-ep-ticket__promo-input:focus { border-color: var(--red); }
.rh-ep-ticket__promo-input::placeholder { text-transform: none; letter-spacing: 0; color: var(--text-muted); }
.rh-ep-ticket__promo-btn {
  background: var(--black3); border: 1px solid var(--border-default);
  color: var(--white); padding: 12px 18px;
  font-family: var(--font-body); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  cursor: none; white-space: nowrap; transition: background .2s;
}
.rh-ep-ticket__promo-btn:hover { background: var(--red); border-color: var(--red); }
.rh-ep-ticket__promo-msg { font-size: 11px; min-height: 16px; padding: 2px 0; }
.rh-ep-ticket__promo-msg--ok  { color: #4ade80; }
.rh-ep-ticket__promo-msg--err { color: #f87171; }

/* Discount */
.rh-ep-ticket__discount {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 4px 0; color: var(--white-dim);
}
.rh-ep-ticket__discount-val { color: #4ade80; font-family: var(--font-mono); font-size: 15px; }

/* Buy */
.rh-ep-ticket__buy-wrap { padding: 0 32px 28px; }
.rh-ep-ticket__buy {
  width: 100%; background: var(--red); color: var(--white); border: none;
  padding: 17px; font-family: var(--font-body); font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase; cursor: none;
  transition: background .2s; margin-bottom: 10px;
}
.rh-ep-ticket__buy:hover { background: var(--red-dark); }
.rh-ep-ticket__buy:disabled { background: var(--black3); color: var(--text-muted); cursor: not-allowed; }
.rh-ep-ticket__buy--external { display: block; text-decoration: none; text-align: center; cursor: pointer; }
.rh-ep-ticket__buy--external:hover { background: var(--red-dark); color: var(--white); }
.rh-ep-ticket__note {
  font-size: 10px; color: var(--text-muted); text-align: center;
  line-height: 1.7; letter-spacing: .06em;
}

/* Seat note */
.rh-ep-ticket__seat-note {
  margin: 0 32px 20px; padding: 16px;
  background: var(--black3); border-left: 2px solid var(--red);
}
.rh-ep-ticket__seat-note p {
  font-family: var(--font-serif); font-size: 15px; color: var(--white-dim); line-height: 1.6;
}

/* Seat map overlay */
.rh-seat-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: var(--black); display: flex; flex-direction: column;
}
.rh-seat-overlay[hidden] { display: none; }
.rh-seat-overlay__bar {
  flex-shrink: 0; height: 56px;
  background: rgba(8,8,8,.97); border-bottom: 1px solid rgba(200,16,46,.15);
  display: flex; align-items: center; padding: 0 32px; gap: 20px;
}
.rh-seat-overlay__close {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--white-dim); background: none; border: none; cursor: none;
  transition: color .2s;
}
.rh-seat-overlay__close:hover { color: var(--red); }
.rh-seat-overlay__title {
  font-family: var(--font-display); font-size: 16px; letter-spacing: .06em;
  flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rh-seat-overlay__iframe { flex: 1; width: 100%; border: none; }

/* Success */
.rh-ep-success {
  position: fixed; inset: 0; z-index: 500;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; text-align: center; padding: 40px;
}
.rh-ep-success[hidden] { display: none; }
.rh-ep-success__icon {
  width: 72px; height: 72px; border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  animation: rh-fade-in .5s .2s both;
}
.rh-ep-success__title {
  font-family: var(--rh-font); font-size: var(--rh-text-2xl); letter-spacing: 0;
  animation: rh-fade-up .7s .3s both;
}
.rh-ep-success__msg {
  font-family: var(--font-serif); font-size: 20px; font-style: italic;
  color: var(--white-dim); max-width: 420px; line-height: 1.7;
  animation: rh-fade-up .7s .45s both;
}


/* ════════════════════════════════
   ABOUT / SERVICES / GALLERY / CONTACT
   ════════════════════════════════ */
.rh-about {
  padding: var(--rh-space-10) var(--rh-space-7);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--rh-space-9); align-items: center;
  position: relative; overflow: hidden;
}
.rh-about::before {
  content: 'ЗА НАС'; font-family: var(--rh-font); font-size: 8rem; opacity: .04;
  color: var(--white-faint); position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%); pointer-events: none; line-height: 1;
}
.rh-about__body { margin-top: 28px; }
.rh-about__body p {
  font-family: var(--font-serif); font-size: 19px; line-height: 1.85;
  color: var(--text-secondary);
}
.rh-about__body p + p { margin-top: 16px; }
.rh-about__images { position: relative; height: 480px; }
.rh-about__img { position: absolute; background-size: cover; background-position: center; }
.rh-about__img--main {
  top: 0; left: 0; width: 75%; height: 83%;
  background-image: url('https://redhousestudio.bg/_next/image?url=%2Fsites%2Fdefault%2Ffiles%2Fstyles%2Fwide%2Fpublic%2F2025-06%2F4_1_1000x_1.webp&w=3840&q=75');
}
.rh-about__img--secondary {
  bottom: 0; right: 0; width: 53%; height: 52%;
  background-image: url('https://redhousestudio.bg/_next/image?url=%2Fsites%2Fdefault%2Ffiles%2Fstyles%2Fwide%2Fpublic%2F2025-06%2F111112_1.jpg&w=3840&q=75');
  border: 4px solid var(--black);
}
.rh-about__accent {
  position: absolute; top: 18px; right: 18px;
  width: 72px; height: 72px; background: var(--red); z-index: 3;
  display: flex; align-items: center; justify-content: center;
}

/* Services */
.rh-services {
  padding: var(--rh-space-10) var(--rh-space-7); background: var(--black2);
  position: relative; overflow: hidden;
}
.rh-services__bg-text {
  position: absolute; bottom: -30px; right: -10px;
  font-family: var(--rh-font); font-size: 12rem;
  color: var(--white-faint); pointer-events: none; line-height: 1; white-space: nowrap;
}
.rh-services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(200,16,46,.07); margin-top: var(--rh-space-7);
}
.rh-service {
  background: var(--black2); padding: var(--rh-space-8) var(--rh-space-7);
  position: relative; overflow: hidden; transition: background .3s; cursor: none;
}
.rh-service::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.rh-service:hover::after { transform: scaleX(1); }
.rh-service:hover { background: var(--black3); }
.rh-service__num {
  font-family: var(--rh-font); font-size: var(--rh-text-3xl);
  color: var(--white-faint); position: absolute; top: var(--rh-space-5); right: var(--rh-space-5); line-height: 1;
}
.rh-service__title { font-family: var(--font-display); font-size: var(--rh-text-xl); letter-spacing: .04em; margin-bottom: var(--rh-space-4); }
.rh-service__desc {
  font-family: var(--font-serif); font-size: var(--rh-text-base); line-height: var(--rh-leading-relaxed); color: var(--text-secondary);
}
.rh-service__link {
  display: inline-block; margin-top: var(--rh-space-5); font-size: var(--rh-text-xs); letter-spacing: .22em;
  text-transform: uppercase; color: var(--red); text-decoration: none;
  border-bottom: 1px solid rgba(200,16,46,.3); padding-bottom: 3px;
}

/* Gallery */
.rh-gallery { padding: var(--rh-space-10) 0; overflow: hidden; }
.rh-gallery__header { padding: 0 var(--rh-space-7); margin-bottom: var(--rh-space-7); }
.rh-gallery__track {
  display: flex; gap: 2px; width: max-content;
  animation: rh-gallery-scroll 22s linear infinite;
}
.rh-gallery__track:hover { animation-play-state: paused; }
.rh-gallery__item {
  width: 360px; height: 264px; flex-shrink: 0;
  background-size: cover; background-position: center;
  filter: grayscale(35%) brightness(.65); transition: filter .4s;
}
.rh-gallery__item:hover { filter: grayscale(0%) brightness(1); }

/* Contact */
.rh-contact {
  padding: var(--rh-space-10) var(--rh-space-7);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--rh-space-9);
  background: var(--black2);
}
.rh-contact__detail { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; }
.rh-contact__icon { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: var(--rh-red-500); flex-shrink: 0; margin-top: 3px; }
.rh-contact__detail-label {
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--red); margin-bottom: 5px;
}
.rh-contact__detail-text {
  font-family: var(--font-serif); font-size: 17px; line-height: 1.7; color: var(--text-secondary);
}
.rh-contact-form { display: flex; flex-direction: column; gap: 14px; }
.rh-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rh-contact-form__field { display: flex; flex-direction: column; gap: 7px; }
.rh-contact-form__field label {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--white-dim);
}
.rh-contact-form__field input,
.rh-contact-form__field select,
.rh-contact-form__field textarea {
  background: var(--black); border: 1px solid var(--border-default);
  color: var(--white); padding: 13px 14px;
  font-family: var(--font-body); font-size: 14px; outline: none;
  transition: border-color .2s; width: 100%;
}
.rh-contact-form__field input:focus,
.rh-contact-form__field select:focus,
.rh-contact-form__field textarea:focus { border-color: var(--red); }
.rh-contact-form__field textarea { resize: vertical; min-height: 110px; }
.rh-contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C8102E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.rh-contact-form__field select option { background: var(--black2); }
.rh-contact-form__feedback { font-size: 13px; padding: 8px 0; }
.rh-contact-form__feedback--ok  { color: #4ade80; }
.rh-contact-form__feedback--err { color: #f87171; }


/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.rh-footer {
  padding: var(--rh-space-8) var(--rh-space-7) var(--rh-space-6);
  border-top: 1px solid rgba(200,16,46,.12);
  display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--rh-space-6); align-items: start;
}
.rh-footer__logo-mark {
  font-family: var(--font-display); font-size: 24px; letter-spacing: .1em;
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.rh-footer__diamond { width: 18px; height: 18px; background: var(--red); transform: rotate(45deg); flex-shrink: 0; }
.rh-footer__tagline { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: var(--white-dim); }
.rh-footer__nav { display: flex; flex-direction: column; gap: 11px; align-items: center; }
.rh-footer__nav a {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none; transition: color .2s;
}
.rh-footer__nav a:hover { color: var(--red); }
.rh-footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.rh-footer__copy { font-size: 11px; color: var(--text-muted); letter-spacing: .08em; text-align: right; line-height: 1.7; }
.rh-footer__powered { font-size: 11px; color: var(--text-muted); }
.rh-footer__powered a { color: var(--red); text-decoration: none; }


/* ════════════════════════════════
   RESPONSIVE — 960px
   Event page + homepage sections
   ════════════════════════════════ */
@media (max-width: 960px) {

  /* ── Event topbar (fixed) ────────────────────── */
  .rh-ep-bar {
    height: 56px; padding: 0 16px; gap: 8px;
  }
  .rh-ep-nav-spacer { height: calc(var(--nav-h, 72px) + 56px); }
  .rh-ep-bar__title { font-size: 14px; }
  .rh-ep-bar__meta  { display: none; }          /* date shown in content below */
  .rh-ep-bar__sep   { display: none; }
  .rh-ep-bar__price { font-size: 16px; }
  .rh-ep-bar__back  { font-size: 0; }           /* hide label, keep arrow icon */
  .rh-ep-bar__back::before { content: '←'; font-size: 16px; }

  /* ── Event body — stack columns ─────────────── */
  .rh-ep-body {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .rh-ep-info {
    padding: 28px 20px 48px;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    overflow-y: visible;
  }
  .rh-ep-hero { grid-template-columns: 1fr; gap: 20px; }
  .rh-ep-poster { max-width: 320px; margin: 0 auto; }
  .rh-ep-gallery__grid { grid-template-columns: 1fr 1fr; }

  .rh-ep-ticket {
    position: static;
    height: auto;
    overflow-y: visible;
    border-left: none;
    border-top: 1px solid rgba(200,16,46,.08);
  }
  .rh-ep-ticket__qty-num { font-size: 20px; }

  /* ── Input font-size ≥ 16px (prevent iOS auto-zoom) ── */
  .rh-ep-ticket__input,
  .rh-ep-ticket__promo-input,
  .rh-ep-ticket__qty-num { font-size: 16px; }

  /* ── Seat overlay ───────────────────────────── */
  .rh-seat-overlay__bar { padding: 0 16px; gap: 12px; }

  /* ── About — stack ──────────────────────────── */
  .rh-about {
    grid-template-columns: 1fr;
    gap: var(--rh-space-7);
    padding: var(--rh-space-8) var(--rh-space-5);
  }
  .rh-about::before { font-size: 5rem; }
  .rh-about__images { height: 280px; }
  .rh-about__img--main  { width: 82%; height: 80%; }
  .rh-about__img--secondary { width: 55%; height: 50%; }

  /* ── Services — stack ───────────────────────── */
  .rh-services { padding: var(--rh-space-8) var(--rh-space-5); }
  .rh-services__grid { grid-template-columns: 1fr; }
  .rh-service { padding: var(--rh-space-6) var(--rh-space-5); }

  /* ── Gallery strip — tighten ────────────────── */
  .rh-gallery { padding: var(--rh-space-8) 0; }
  .rh-gallery__header { padding: 0 var(--rh-space-5); }
  .rh-gallery__item { width: 260px; height: 192px; }

  /* ── Contact — stack ────────────────────────── */
  .rh-contact {
    grid-template-columns: 1fr;
    gap: var(--rh-space-7);
    padding: var(--rh-space-8) var(--rh-space-5);
  }
  .rh-contact-form__row { grid-template-columns: 1fr; }

  /* ── Events section (homepage) ──────────────── */
  .rh-events { padding: 72px 24px; }
  .rh-events__grid {
    grid-template-columns: 1fr;
  }
  .rh-events__strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .rh-events__strip { grid-template-columns: 1fr; }

  /* Contact form single column already at 960px */
}

/* ── iOS zoom prevention — all form inputs site-wide ── */
/* Status messages */
.rh-ep-ticket__status { min-height: 20px; padding: 0 32px 4px; font-size: 13px; line-height: 1.4; }
.rh-ep-ticket__status--ok    { color: #4ade80; }
.rh-ep-ticket__status--error {
  color: #f87171;
  padding: 8px 32px;
  background: rgba(248, 113, 113, 0.08);
  border-left: 2px solid rgba(248, 113, 113, 0.5);
}

/* Manual availability refresh */
.rh-ep-ticket__refresh {
  display: block; width: calc(100% - 64px); margin: 0 32px 20px;
  padding: 8px 12px; background: transparent;
  border: 1px solid var(--border-default); color: var(--text-muted);
  font-size: 11px; letter-spacing: .1em; text-align: center;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.rh-ep-ticket__refresh:hover { border-color: var(--red); color: var(--white); }
.rh-ep-ticket__refresh.is-loading { opacity: .55; pointer-events: none; }

@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ════════════════════════════════
   SECTIONS — responsive overrides + events empty state
   Desktop styles live in event-page.css (not touched)
   ════════════════════════════════ */

/* ── Events empty state ─────────────────────── */
.rh-events-empty {
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.rh-events-empty__icon {
  font-size: var(--rh-text-3xl);
  color: var(--red);
  opacity: .4;
  line-height: 1;
}
.rh-events-empty__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: .04em;
  line-height: 1;
}
.rh-events-empty__text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white-dim);
  max-width: 440px;
  line-height: 1.7;
}


/* ── Checkout result (page-thank-you.php) ───────── */
.rh-checkout-result {
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 24px;
  padding-right: 24px;
  gap: 20px;
}
.rh-checkout-result__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: .4;
}
.rh-checkout-result__icon--ok  { color: var(--success); opacity: 1; }
.rh-checkout-result__icon--err { color: var(--red);     opacity: .85; }
.rh-checkout-result__title { margin-top: 8px; }
.rh-checkout-result__text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 480px;
}
.rh-checkout-result__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}


/* ════════════════════════════════
   RESPONSIVE — 960px breakpoint
   ════════════════════════════════ */
@media (max-width: 960px) {

  /* Nav padding correction */
  .rh-hero  { padding: 0 24px 60px; }
  .rh-hero__vline { display: none; }
  .rh-hero__scroll { right: 24px; }

  /* Ticker — already overflow hidden, no change needed */

  /* Events section */
  .rh-events { padding: 72px 24px; }
  .rh-events__grid { grid-template-columns: 1fr; }
  .rh-events__strip { grid-template-columns: 1fr 1fr; }
  .rh-events-empty { padding: 60px 24px; }

  /* About */
  .rh-about {
    grid-template-columns: 1fr;
    padding: var(--rh-space-8) var(--rh-space-5);
    gap: var(--rh-space-7);
  }
  .rh-about::before { font-size: 5rem; opacity: .03; }
  .rh-about__images { height: 320px; }

  /* Services */
  .rh-services { padding: var(--rh-space-8) var(--rh-space-5); }
  .rh-services__grid { grid-template-columns: 1fr; }
  .rh-services__bg-text { font-size: 6rem; }
  .rh-service { padding: var(--rh-space-6) var(--rh-space-5); }

  /* Gallery */
  .rh-gallery { padding: var(--rh-space-8) 0; }
  .rh-gallery__header { padding: 0 var(--rh-space-5); }
  .rh-gallery__item { width: 260px; height: 190px; }

  /* Contact */
  .rh-contact {
    grid-template-columns: 1fr;
    padding: var(--rh-space-8) var(--rh-space-5);
    gap: var(--rh-space-7);
  }
  .rh-contact-form__row { grid-template-columns: 1fr; }

  /* Event page */
  .rh-ep-bar { padding: 0 16px; gap: 12px; }
  .rh-ep-bar__meta { display: none; }
  .rh-ep-body { grid-template-columns: 1fr; }
  .rh-ep-info { padding: 32px 20px 48px; border-right: none; }
  .rh-ep-ticket {
    position: static;
    height: auto;
    border-left: none;
    border-top: 1px solid rgba(200,16,46,.08);
  }
  .rh-ep-gallery__grid { grid-template-columns: 1fr; }

  /* Strip — single column on very small */
  @media (max-width: 520px) {
    .rh-events__strip { grid-template-columns: 1fr; }
  }
}

/* ════════════════════════════════
   FOOTER — responsive overrides
   Desktop styles live in event-page.css (not touched)
   ════════════════════════════════ */

@media (max-width: 960px) {
  .rh-footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px 28px;
    gap: 36px;
  }
  .rh-footer__logo-mark { justify-content: center; }
  .rh-footer__tagline   { text-align: center; }
  .rh-footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
  .rh-footer__right { align-items: center; }
  .rh-footer__copy  { text-align: center; }

  .rh-fab {
    padding: 12px 20px;
    font-size: 9px;
    bottom: 20px;
    right: 20px;
    gap: 7px;
  }
}

/* ── Legal links ── */
.rh-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rh-space-2);
  align-items: center;
  justify-content: center;
  font-size: var(--rh-text-xs, 11px);
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--rh-space-4);
  padding-top: var(--rh-space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.rh-footer__legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.rh-footer__legal a:hover { color: #fff; }

.rh-footer__legal-sep { color: rgba(255, 255, 255, 0.25); }

/* ── Policy notice on payment forms ── */
.rh-form-policy-notice {
  font-size: var(--rh-text-xs, 11px);
  color: var(--rh-text-muted, rgba(0,0,0,0.5));
  text-align: center;
  margin: var(--rh-space-3) 0 0;
  line-height: 1.6;
}

.rh-form-policy-notice a {
  color: var(--rh-text, #1a1a1a);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ════════════════════════════════
   ARCHIVE — Artworks, Events, Filter bar
   All values use --rh-* design tokens
   ════════════════════════════════ */


/* ── Archive header ─────────────────────────── */
.rh-archive-header {
  padding: calc(var(--nav-h) + var(--rh-space-8)) var(--rh-space-6) var(--rh-space-6);
}
.rh-archive-header .section-label { margin-bottom: var(--rh-space-3); }
.rh-archive-header .section-title { line-height: 1; }
.rh-archive-count {
  margin-top: var(--rh-space-3);
  font-size: var(--rh-text-xs);
  letter-spacing: 0.08em;
  color: var(--rh-text-muted);
}


/* ── Filter bar ─────────────────────────────── */
.rh-filter-bar {
  padding: var(--rh-space-4) var(--rh-space-6);
  border-bottom: 1px solid var(--rh-cream-200);
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
}
.rh-filter-form {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--rh-space-4);
}
.rh-filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-1);
  min-width: 150px;
}
.rh-filter-group--sort {
  margin-left: auto;
  min-width: 140px;
}
.rh-filter-label {
  font-size: var(--rh-text-xs);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  font-weight: 600;
}
.rh-filter-select {
  background: var(--rh-card-bg);
  border: 1px solid var(--rh-cream-300);
  color: var(--rh-black);
  padding: var(--rh-space-2) var(--rh-space-8) var(--rh-space-2) var(--rh-space-3);
  font-size: var(--rh-text-sm);
  font-family: var(--rh-font);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b6460' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border-radius: var(--rh-radius-full);
  transition: border-color var(--rh-transition);
}
.rh-filter-select:hover { border-color: var(--rh-black); }
.rh-filter-select:focus { outline: none; border-color: var(--rh-black); box-shadow: 0 0 0 3px var(--rh-cream-200); }
.rh-filter-select option { background: #fff; color: var(--rh-black); }

.rh-filter-clear {
  align-self: flex-end;
  font-size: var(--rh-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  text-decoration: none;
  padding: var(--rh-space-2) 0;
  transition: color var(--rh-transition);
  white-space: nowrap;
}
.rh-filter-clear:hover { color: var(--rh-red-500); }

/* Active filter badges */
.rh-filter-active {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rh-space-2);
  margin-top: var(--rh-space-3);
}
.rh-filter-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--rh-space-2);
  font-size: var(--rh-text-xs);
  letter-spacing: 0.08em;
  background: var(--rh-red-50);
  border: 1px solid var(--rh-red-100);
  color: var(--rh-red-500);
  padding: var(--rh-space-1) var(--rh-space-3);
  border-radius: var(--rh-radius-sm);
}
.rh-filter-badge__remove {
  color: var(--rh-red-500);
  text-decoration: none;
  line-height: 1;
  transition: opacity var(--rh-transition-fast);
  opacity: 0.6;
}
.rh-filter-badge__remove:hover { opacity: 1; }

/* Empty state */
.rh-archive-empty {
  padding: var(--rh-space-9) var(--rh-space-6);
  text-align: center;
  font-style: italic;
  font-size: var(--rh-text-md);
  color: var(--rh-text-muted);
}
.rh-archive-empty .rh-filter-reset-link {
  display: inline-block;
  margin-top: var(--rh-space-4);
  font-size: var(--rh-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rh-red-500);
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
}


/* ════════════════════════════════
   ARTWORKS — MASONRY GRID
   CSS columns preserve original aspect ratios
   ════════════════════════════════ */

.rh-artwork-masonry {
  column-count: 4;
  column-gap: 3px;
  padding: var(--rh-space-6) var(--rh-space-6) var(--rh-space-9);
}
@media (min-width: 1400px) { .rh-artwork-masonry { column-count: 5; } }
@media (max-width: 1200px) { .rh-artwork-masonry { column-count: 3; } }
@media (max-width: 768px)  { .rh-artwork-masonry { column-count: 2; column-gap: 2px; padding: var(--rh-space-5) var(--rh-space-5) var(--rh-space-7); } }
@media (max-width: 480px)  { .rh-artwork-masonry { column-count: 1; } }


/* ── Artwork card (masonry) ─────────────────── */
.rh-artwork-card {
  break-inside: avoid;
  margin-bottom: 3px;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--rh-card-bg);
  cursor: none;
}
.rh-artwork-card__image {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--rh-cream-100);
  position: relative;
}
.rh-artwork-card__image img {
  width: 100%;
  height: auto;       /* Preserve natural aspect ratio — no cropping */
  display: block;
  transition: transform var(--rh-transition-slow);
}
.rh-artwork-card:hover .rh-artwork-card__image img { transform: scale(1.03); }

.rh-artwork-card__sold-badge {
  position: absolute;
  top: var(--rh-space-3);
  right: var(--rh-space-3);
  font-size: var(--rh-text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-text-on-dark);
  background: rgba(26, 24, 24, 0.80);
  padding: var(--rh-space-1) var(--rh-space-3);
  font-weight: 500;
  border-radius: var(--rh-radius-sm);
}

.rh-artwork-card__content {
  padding: var(--rh-space-3) var(--rh-space-4) var(--rh-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-1);
}
.rh-artwork-card__title {
  font-size: var(--rh-text-base);
  font-weight: 500;
  line-height: 1.3;
  color: var(--rh-black);
}
.rh-artwork-card__artist {
  font-size: var(--rh-text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  font-weight: 500;
}
.rh-artwork-card__price {
  font-size: var(--rh-text-sm);
  font-weight: 600;
  color: var(--rh-text);
  margin-top: var(--rh-space-1);
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.rh-artwork-card__sold-text {
  font-size: var(--rh-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
}


/* ── Pagination ─────────────────────────────── */
.rh-archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--rh-space-2);
  padding: 0 var(--rh-space-6) var(--rh-space-9);
}
.rh-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 var(--rh-space-3);
  font-size: var(--rh-text-xs);
  letter-spacing: 0.08em;
  color: var(--rh-text-muted);
  border: 1px solid var(--rh-cream-200);
  text-decoration: none;
  transition: background var(--rh-transition), border-color var(--rh-transition), color var(--rh-transition);
  border-radius: var(--rh-radius-sm);
}
.rh-archive-pagination .page-numbers:hover {
  border-color: var(--rh-cream-300);
  color: var(--rh-black);
}
.rh-archive-pagination .page-numbers.current {
  background: var(--rh-red-500);
  border-color: var(--rh-red-500);
  color: var(--rh-text-on-dark);
}
.rh-archive-pagination .page-numbers.dots {
  border: none;
  background: none;
  pointer-events: none;
}


/* ════════════════════════════════
   ARTWORK SINGLE — 2-col layout
   ════════════════════════════════ */

.rh-artwork-single {
  display: grid;
  grid-template-columns: 1fr 440px;
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
}
.rh-artwork-single__image {
  position: relative;
  background: var(--rh-cream-50);
  display: flex;
  flex-direction: column;     /* Stack main image above thumbnails */
  align-items: center;
  padding: var(--rh-space-6);
  min-height: 60vh;
}
.rh-artwork-single__img {
  width: 100%;            /* Fill column width — artwork dominates */
  height: auto;           /* Natural aspect ratio */
  max-height: 85vh;       /* Don't overflow viewport on very tall paintings */
  object-fit: contain;
  display: block;
  box-shadow: var(--rh-shadow-md);
}
.rh-artwork-single__img-placeholder {
  width: 100%;
  height: 60vh;
  background: var(--rh-cream-100);
}
.rh-artwork-single__sold-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rh-font);
  font-size: var(--rh-text-2xl);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rh-cream-300);
  pointer-events: none;
}

.rh-artwork-single__info {
  padding: var(--rh-space-7) var(--rh-space-6) var(--rh-space-8);
  border-left: 1px solid var(--rh-cream-200);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.rh-artwork-single__back {
  font-size: var(--rh-text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  text-decoration: none;
  transition: color var(--rh-transition);
  margin-bottom: var(--rh-space-6);
  display: inline-flex;
  align-items: center;
  gap: var(--rh-space-2);
  font-weight: 500;
}
.rh-artwork-single__back:hover { color: var(--rh-red-500); }

.rh-artwork-single__artist {
  font-size: var(--rh-text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  font-weight: 500;
  margin-bottom: var(--rh-space-2);
}
.rh-artwork-single__title {
  font-size: var(--rh-text-3xl);
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-weight: 700;
  color: var(--rh-black);
  margin-bottom: var(--rh-space-3);
}

/* Metadata rows */
.rh-artwork-single__meta-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--rh-space-1) var(--rh-space-3);
  font-size: var(--rh-text-sm);
  padding: var(--rh-space-3) 0;
  border-bottom: 1px solid var(--rh-cream-200);
  align-items: baseline;
}
.rh-artwork-single__meta-row:first-of-type { border-top: 1px solid var(--rh-cream-200); }
.rh-artwork-single__meta-key {
  font-size: var(--rh-text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  font-weight: 600;
}
.rh-artwork-single__meta-val { color: var(--rh-text); }

.rh-artwork-single__desc {
  font-size: var(--rh-text-base);
  line-height: 1.8;
  color: var(--rh-text);
  margin: var(--rh-space-5) 0;
  font-style: italic;
}

.rh-artwork-single__price {
  font-size: var(--rh-text-2xl);
  font-weight: 700;
  color: var(--rh-black);
  margin: var(--rh-space-2) 0 var(--rh-space-5);
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.rh-artwork-single__buy { align-self: flex-start; margin-bottom: var(--rh-space-3); }
.rh-artwork-single__note {
  font-size: var(--rh-text-xs);
  color: var(--rh-text-muted);
  letter-spacing: 0.04em;
}
.rh-artwork-single__sold-badge {
  font-size: var(--rh-text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  border: 1px solid var(--rh-cream-200);
  padding: var(--rh-space-3) var(--rh-space-5);
  align-self: flex-start;
}

/* Artwork buy form */
.rh-artwork-buy-form { margin-top: var(--rh-space-2); }
.rh-artwork-buy-form__success {
  font-size: var(--rh-text-sm);
  color: var(--rh-success);
  margin-bottom: var(--rh-space-5);
  padding: var(--rh-space-3) var(--rh-space-4);
  border: 1px solid rgba(46, 122, 62, 0.20);
  background: rgba(46, 122, 62, 0.06);
  border-radius: var(--rh-radius-md);
}
.rh-artwork-buy-form__field {
  display: flex;
  flex-direction: column;
  gap: var(--rh-space-2);
  margin-bottom: var(--rh-space-4);
}
.rh-artwork-buy-form__field label {
  font-size: var(--rh-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  font-weight: 600;
}
.rh-artwork-buy-form__field input,
.rh-artwork-buy-form__field textarea {
  background: var(--rh-card-bg);
  border: 1px solid var(--rh-cream-300);
  color: var(--rh-black);
  padding: var(--rh-space-3) var(--rh-space-4);
  font-family: var(--rh-font);
  font-size: var(--rh-text-sm);
  width: 100%;
  transition: border-color var(--rh-transition);
  border-radius: var(--rh-radius-md);
}
.rh-artwork-buy-form__field textarea { resize: vertical; min-height: 64px; }
.rh-artwork-buy-form__field input:focus,
.rh-artwork-buy-form__field textarea:focus {
  border-color: var(--rh-black);
  box-shadow: 0 0 0 3px var(--rh-cream-200);
  outline: none;
}
.rh-artwork-buy-form__field input::placeholder,
.rh-artwork-buy-form__field textarea::placeholder { color: var(--rh-text-subtle); }
.rh-artwork-buy-form__error {
  font-size: var(--rh-text-sm);
  color: var(--rh-error);
  margin-bottom: var(--rh-space-4);
  padding: var(--rh-space-3) var(--rh-space-4);
  border: 1px solid rgba(177, 32, 24, 0.20);
  background: rgba(177, 32, 24, 0.05);
  border-radius: var(--rh-radius-md);
}

/* Gallery strip on single — horizontal strip BELOW main image */
.rh-artwork-single__gallery {
  width: 100%;
  margin-top: var(--rh-space-4);
}
.rh-artwork-single__gallery-label {
  font-size: var(--rh-text-xs);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rh-text-muted);
  margin-bottom: var(--rh-space-2);
  font-weight: 600;
}
.rh-artwork-single__gallery-grid {
  display: flex;
  flex-direction: row;
  gap: var(--rh-space-2);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--rh-cream-300) transparent;
  padding-bottom: var(--rh-space-1);
}
.rh-artwork-single__gallery-grid::-webkit-scrollbar { height: 4px; }
.rh-artwork-single__gallery-grid::-webkit-scrollbar-thumb {
  background: var(--rh-cream-300);
  border-radius: var(--rh-radius-full);
}
.rh-artwork-single__gallery-item {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--rh-cream-100);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  transition: border-color var(--rh-transition), transform var(--rh-transition);
  border-radius: var(--rh-radius-sm);
}
.rh-artwork-single__gallery-item:hover { transform: translateY(-2px); }
.rh-artwork-single__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity var(--rh-transition);
}
.rh-artwork-single__gallery-item:hover img,
.rh-artwork-single__gallery-item.active img { opacity: 1; }
.rh-artwork-single__gallery-item.active { border-color: var(--rh-red-500); }


/* ── Related artworks section ───────────────── */
.rh-artwork-related {
  padding: var(--rh-space-9) var(--rh-space-6) var(--rh-space-9);
  border-top: 1px solid var(--rh-cream-200);
  background: var(--rh-cream-50);
}
.rh-artwork-related__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--rh-space-6);
}
.rh-artwork-related__title {
  font-size: var(--rh-text-2xl);
  font-weight: 600;
  line-height: 1.1;
  color: var(--rh-black);
  margin: 0;
}
.rh-artwork-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}


/* ── Generic page ───────────────────────────── */
.rh-page {
  padding: calc(var(--nav-h) + var(--rh-space-8)) var(--rh-space-6) var(--rh-space-10);
  max-width: 760px;
  margin: 0 auto;
}
.rh-page__header { margin-bottom: var(--rh-space-7); }
.rh-page__content {
  font-size: var(--rh-text-md);
  line-height: 1.85;
  color: var(--rh-text);
}
.rh-page__content p + p { margin-top: var(--rh-space-4); }
.rh-page__content h2 {
  font-size: var(--rh-text-xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: var(--rh-space-7) 0 var(--rh-space-4);
  color: var(--rh-black);
}
.rh-page__content a { color: var(--rh-red-500); border-bottom: 1px solid rgba(200, 16, 46, 0.25); }
.rh-page__content a:hover { border-color: var(--rh-red-500); }


/* ── 404 ────────────────────────────────────── */
.rh-404 {
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: var(--rh-space-5);
  padding-right: var(--rh-space-5);
  gap: var(--rh-space-4);
}
.rh-404__num {
  font-family: var(--rh-font);
  font-size: var(--rh-text-3xl);
  line-height: 1;
  color: var(--rh-cream-200);
  letter-spacing: 0.04em;
  font-weight: 700;
  user-select: none;
}
.rh-404__title {
  font-size: var(--rh-text-2xl);
  margin-top: calc(-1 * var(--rh-space-4));
  font-weight: 600;
  color: var(--rh-black);
}
.rh-404__text {
  font-size: var(--rh-text-base);
  font-style: italic;
  color: var(--rh-text-muted);
  max-width: 380px;
  line-height: 1.65;
}
.rh-404__actions {
  display: flex;
  gap: var(--rh-space-5);
  align-items: center;
  margin-top: var(--rh-space-3);
  flex-wrap: wrap;
  justify-content: center;
}


/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 960px) {
  .rh-archive-header { padding: calc(var(--nav-h) + var(--rh-space-7)) var(--rh-space-5) var(--rh-space-5); }
  .rh-filter-bar { padding: var(--rh-space-3) var(--rh-space-5); position: static; }
  .rh-filter-form { gap: var(--rh-space-3); }
  .rh-filter-group { min-width: 130px; }

  .rh-archive-pagination { padding: 0 var(--rh-space-5) var(--rh-space-7); flex-wrap: wrap; }

  /* Artwork single */
  .rh-artwork-single { grid-template-columns: 1fr; padding-top: var(--nav-h); }
  .rh-artwork-single__image { padding: var(--rh-space-6) var(--rh-space-5); min-height: auto; }
  .rh-artwork-single__img { max-height: 90vw; }
  .rh-artwork-single__info {
    padding: var(--rh-space-6) var(--rh-space-5) var(--rh-space-8);
    border-left: none;
    border-top: 1px solid var(--rh-cream-200);
  }
  .rh-artwork-single__title { font-size: var(--rh-text-2xl); }

  .rh-artwork-related { padding: var(--rh-space-7) var(--rh-space-5) var(--rh-space-8); }
  .rh-artwork-related__grid { grid-template-columns: repeat(2, 1fr); }

  .rh-page { padding: calc(var(--nav-h) + var(--rh-space-7)) var(--rh-space-5) var(--rh-space-8); }
  .rh-404__num { font-size: var(--rh-text-3xl-mobile); }
}

@media (max-width: 520px) {
  .rh-artwork-related__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .rh-filter-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--rh-space-3);
  }
  .rh-filter-group,
  .rh-filter-group--sort {
    min-width: 0;
    margin-left: 0; /* reset the desktop "push to right" on sort */
    width: 100%;
  }
  .rh-filter-select { width: 100%; }
  .rh-filter-label { font-size: var(--rh-text-xs); }
  .rh-filter-clear { display: none; } /* collapsed on narrow; active badges still show */
}

@media (max-width: 480px) {
  .rh-filter-form { grid-template-columns: 1fr; gap: var(--rh-space-2); }
}

/* ════════════════════════════════
   HOMEPAGE — extra sections
   Light theme is the default; dark theme overrides via [data-theme="dark"]
   ════════════════════════════════ */

/* ── Your Event section ─────────────────────────── */
.rh-your-event {
  padding: var(--rh-space-9) var(--rh-space-7);
  border-top: 1px solid var(--border-subtle);
}
.rh-your-event__inner { max-width: 720px; }
.rh-your-event__body {
  margin-top: var(--rh-space-5);
  font-family: var(--font-serif);
  font-size: var(--rh-text-md);
  line-height: var(--rh-leading-relaxed);
  color: var(--text-secondary);
  font-style: italic;
}
.rh-your-event__body p + p { margin-top: var(--rh-space-4); }

/* ── Service icons ──────────────────────────────── */
.rh-service__icon {
  display: block;
  color: var(--rh-red-500);
  margin-bottom: var(--rh-space-3);
}
.rh-service__svg { width: 24px; height: 24px; }

/* ── Ticker stays brand red ── */
.rh-ticker { background: var(--rh-red-500); }

/* ── Section titles on light bg ── */
.section-title { color: var(--text-primary); }

/* ── About / Services / Your Event backgrounds ── */
.rh-about,
.rh-services,
.rh-your-event { background: var(--bg-primary); }

/* ── Hero text stays readable on dark photo overlay ── */
.rh-hero__title,
.rh-hero__eyebrow,
.rh-hero__sub { color: #f5f1ea; }
.rh-hero__actions .btn-ghost {
  color: rgba(245,241,234,.75);
  border-color: rgba(245,241,234,.30);
}
.rh-hero__actions .btn-ghost:hover { color: #f5f1ea; border-color: #f5f1ea; }
.rh-hero__scroll span { color: rgba(245,241,234,.6); }

/* ── Contact form light styling ── */
.rh-contact-form input,
.rh-contact-form textarea,
.rh-contact-form select {
  background: var(--bg-surface);
  border-color: var(--border-default);
  color: var(--text-primary);
}

/* ── Page content ── */
.rh-page__content { color: var(--text-secondary); }
.rh-page__content h2 { color: var(--text-primary); }

/* ── 404 ── */
.rh-404__num { color: var(--border-subtle); }

/* ── Artwork single info panel ── */
.rh-artwork-single__info { border-color: var(--border-subtle); }

/* ── Artwork buy form ── */
.rh-artwork-buy-form__field input,
.rh-artwork-buy-form__field textarea {
  background: var(--bg-surface);
  border-color: var(--border-default);
  color: var(--text-primary);
}

/* ── FAB always brand red ── */
.rh-fab,
.rh-fab:hover { color: #f5f1ea; }

/* ── Dark theme overrides ── */
[data-theme="dark"] .rh-about,
[data-theme="dark"] .rh-services,
[data-theme="dark"] .rh-your-event { background: var(--bg-primary); }

/* ── About CTA + Contact heading spacing ── */
.rh-about__cta { margin-top: var(--rh-space-7); }
.rh-contact__heading { margin-bottom: var(--rh-space-7); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .rh-your-event { padding: var(--rh-space-8) var(--rh-space-5); }
}

