/*
Theme Name:  Irish House Concerts
Theme URI:   https://irishhouseconcerts.com
Description: Custom WordPress theme for Irish House Concerts — Wheat Ridge, Colorado.
Version:     1.0.0
Author:      Irish House Concerts
Text Domain: ihc
*/

/* ─── RESET ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── FONTS ──────────────────────────────────────────────────────────────── */
/* Loaded via wp_enqueue_style in functions.php */

/* ─── BASE ───────────────────────────────────────────────────────────────── */
body {
  background: #f5f0e8;
  color: #2a2218;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes chalkScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 56px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  box-shadow: none;
  transition: background 0.45s ease, box-shadow 0.45s ease;
}
.site-nav.scrolled {
  background: #f5f0e8;
  box-shadow: 0 2px 28px rgba(0,0,0,0.09);
}

/* Logo badge */
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #582c1f;
  border: 2px solid rgba(255,255,255,0.72);
  border-radius: 2px;
  padding: 8px 16px 7px;
}
.nav-logo__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}
.nav-logo__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  transition: color 0.3s;
  opacity: 0.9;
}
.site-nav.scrolled .nav-links a {
  color: #2a2218;
}
.nav-links .nav-cta {
  padding: 9px 22px;
  border: 1.5px solid rgba(255,255,255,0.42);
  border-radius: 3px;
  font-weight: 600;
  transition: all 0.3s;
}
.site-nav.scrolled .nav-links .nav-cta {
  border-color: #1a3820;
}

/* ─── HERO SLIDER ────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 42vh;
  min-height: 280px;
  overflow: hidden;
  background: #f5f0e8;
}
.hero-viewport {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-track {
  width: 70%;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, transparent 40%, rgba(0,0,0,0.52) 100%);
}
.hero-fade-left {
  position: absolute; top: 0; left: 0; bottom: 0; width: 14%;
  background: linear-gradient(to right, #f5f0e8 0%, transparent 100%);
  z-index: 5; pointer-events: none;
}
.hero-fade-right {
  position: absolute; top: 0; right: 0; bottom: 0; width: 14%;
  background: linear-gradient(to left, #f5f0e8 0%, transparent 100%);
  z-index: 5; pointer-events: none;
}
.hero-text {
  position: absolute;
  bottom: 52px; left: 16%; right: 16%;
  text-align: center; z-index: 3;
  animation: fadeUp 1.1s 0.25s both;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: #c8892a; margin-bottom: 8px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px; font-weight: 300;
  color: #fff; line-height: 1.0;
  letter-spacing: -0.01em; margin-bottom: 8px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.32);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.82); letter-spacing: 0.02em;
}
.hero-controls {
  position: absolute; bottom: 14px; left: 16%; right: 16%;
  display: flex; justify-content: center; align-items: center;
  z-index: 3; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.32);
  border: none; padding: 0; cursor: pointer;
  transition: all 0.38s cubic-bezier(0.4,0,0.2,1);
}
.hero-dot.active {
  width: 30px;
  background: #c8892a;
}
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s; z-index: 10;
}
.hero-arrow:hover { background: rgba(255,255,255,0.28); }
.hero-arrow.prev { left: 17%; }
.hero-arrow.next { right: 17%; }

/* ─── SECTIONS ───────────────────────────────────────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #c8892a; margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px; font-weight: 400;
  color: #1c1915; line-height: 1.04;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 72px;
}

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-section { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 88px;
  align-items: start;
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 400;
  color: #1c1915; line-height: 1.08;
  margin-bottom: 32px; letter-spacing: -0.01em;
}
.about-body { font-size: 16px; color: #3a342c; line-height: 1.82; margin-bottom: 18px; text-wrap: pretty; }
.past-performers {
  border-top: 1px solid #ddd7cb;
  padding-top: 28px; margin-top: 22px;
}
.past-performers__list {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: #5a4e44; line-height: 2.0;
}
.about-photos {
  display: flex; flex-direction: column; gap: 16px; padding-top: 8px;
}
.about-photo {
  aspect-ratio: 1/1; border-radius: 4px; overflow: hidden;
  box-shadow: 10px 10px 0 #ede8dc, 11px 11px 0 rgba(200,137,42,0.25);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

/* ─── CHALK STRIP ────────────────────────────────────────────────────────── */
.chalk-strip-label {
  text-align: center; padding: 12px 0 8px;
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(200,137,42,0.7);
}
.chalk-strip-wrap {
  height: 196px; overflow: hidden;
  background: #f5f0e8; margin: 10px 0;
  position: relative;
}
.chalk-strip-fade-left {
  position: absolute; left: 0; top: 0; bottom: 0; width: 80px;
  background: linear-gradient(to right, #f5f0e8, transparent);
  z-index: 2; pointer-events: none;
}
.chalk-strip-fade-right {
  position: absolute; right: 0; top: 0; bottom: 0; width: 80px;
  background: linear-gradient(to left, #f5f0e8, transparent);
  z-index: 2; pointer-events: none;
}
.chalk-strip-inner {
  display: flex;
  animation: chalkScroll 52s linear infinite;
  width: max-content;
}
.chalk-strip-inner img {
  height: 196px; width: 196px;
  object-fit: cover; object-position: center;
  display: block; flex-shrink: 0;
}

/* ─── DIVIDER ────────────────────────────────────────────────────────────── */
.ornament-divider {
  display: flex; align-items: center; gap: 24px;
  max-width: 760px; margin: 0 auto; padding: 0 72px;
}
.ornament-divider__line-left {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, #cec8bc);
}
.ornament-divider__line-right {
  flex: 1; height: 1px;
  background: linear-gradient(to left, transparent, #cec8bc);
}

/* ─── EVENTS ─────────────────────────────────────────────────────────────── */
.events-section { padding: 80px 0 108px; }
.events-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.events-subscribe-link {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; color: #1e3d22; text-decoration: none;
  border-bottom: 1.5px solid #c8892a; padding-bottom: 2px; white-space: nowrap;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.events-empty {
  background: #fdfaf5; border: 1px solid #e8e2d8; border-radius: 8px;
  padding: 52px 48px; text-align: center; margin-bottom: 64px;
}
.events-empty__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; background: #f0ebe1; margin-bottom: 16px;
}
.events-empty__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; font-style: italic;
  color: #3a342c; margin-bottom: 10px;
}
.events-empty__body {
  font-size: 15px; color: #7a6e62; margin-bottom: 24px;
  max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  background: #1e3d22; padding: 13px 30px;
  border-radius: 4px; display: inline-block;
  border: none; cursor: pointer;
}

/* ─── EVENT CARD ─────────────────────────────────────────────────────────── */
.event-card {
  background: #fdfaf5; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(30,61,34,0.12);
  box-shadow: 0 4px 26px rgba(0,0,0,0.07);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.32s cubic-bezier(0.4,0,0.2,1);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(0,0,0,0.14);
}
.event-card--workshop { border-color: rgba(200,137,42,0.18); }
.event-card__image {
  height: 206px; position: relative; overflow: hidden;
  flex-shrink: 0; background: #1a1610;
}
.event-card__image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
  transition: transform 0.6s ease;
}
.event-card:hover .event-card__image img { transform: scale(1.04); }
.event-card__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.32) 100%);
}
.event-card__badge {
  position: absolute; top: 14px; left: 14px;
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; padding: 4px 11px; border-radius: 3px;
}
.event-card__badge--concert { background: #1a3820; }
.event-card__badge--workshop { background: #c8892a; }
.event-card__body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 9px; flex: 1;
}
.event-card__meta {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.event-card__meta--concert { color: #1a3820; }
.event-card__meta--workshop { color: #c8892a; }
.event-card__artist {
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px; font-weight: 500; color: #1c1915; line-height: 1.08;
}
.event-card__subtitle {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: #7a6e62; font-style: italic; line-height: 1.4;
}
.event-card__desc {
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: #3a342c; line-height: 1.72; flex: 1;
}
.event-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; margin-top: 6px;
  border-top: 1px solid #ede8dc;
}
.event-card__location { font-size: 13px; color: #a09488; }
.event-card__btn {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: 4px; cursor: pointer;
  letter-spacing: 0.03em; transition: all 0.2s; text-decoration: none;
}
.event-card__btn--concert {
  background: #1a3820; color: #fff; border: 2px solid #1a3820;
}
.event-card__btn--workshop {
  background: transparent; color: #c8892a; border: 2px solid #c8892a;
}

/* ─── NEWSLETTER SECTION ─────────────────────────────────────────────────── */
.newsletter-section {
  background: #1a3820; padding: 92px 72px;
}
.newsletter-inner {
  max-width: 580px; margin: 0 auto; text-align: center;
}
.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px; font-weight: 300; color: #f5f0e8;
  line-height: 1.08; margin-bottom: 16px;
}
.newsletter-body {
  font-size: 15px; color: rgba(245,240,232,0.65);
  line-height: 1.75; margin-bottom: 40px;
}
.newsletter-privacy {
  font-size: 12px; color: rgba(245,240,232,0.35);
  line-height: 1.65; margin-top: 4px;
}
/* MailPoet overrides — scope to newsletter section */
.newsletter-section .mailpoet_form input[type="text"],
.newsletter-section .mailpoet_form input[type="email"] {
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  padding: 14px 16px;
  background: rgba(245,240,232,0.08) !important;
  border: 1px solid rgba(245,240,232,0.18) !important;
  border-radius: 4px; color: #f5f0e8;
}
.newsletter-section .mailpoet_form button[type="submit"] {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #1a3820; background: #c8892a; border: none;
  padding: 16px; border-radius: 4px; cursor: pointer; width: 100%;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: #111009; padding: 56px 72px 36px;
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding-bottom: 44px; margin-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #c8892a; margin-bottom: 8px;
}
.footer-brand__sub {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 20px;
}
.footer-brand__desc {
  font-size: 14px; color: rgba(255,255,255,0.4);
  line-height: 1.8; max-width: 300px;
}
.footer-col__heading {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 18px;
}
.footer-links {
  display: flex; flex-direction: column; gap: 12px; list-style: none;
}
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-types { display: flex; flex-direction: column; gap: 14px; }
.footer-type {
  display: flex; align-items: center; gap: 10px;
}
.footer-type__dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.footer-type__dot--concert { background: #4a8c5c; }
.footer-type__dot--workshop { background: #c8892a; }
.footer-type__label { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: 14px;
  font-style: italic; color: rgba(255,255,255,0.18);
}

/* ─── EVENT DETAIL PAGE ──────────────────────────────────────────────────── */
.event-hero {
  position: relative; height: 52vh; min-height: 420px; overflow: hidden;
}
.event-hero__bg {
  position: absolute; inset: 0;
}
.event-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.event-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.72) 100%);
}
.event-hero__breadcrumb {
  position: absolute; top: 96px; left: 56px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.03em; transition: color 0.2s;
}
.event-hero__info {
  position: absolute; bottom: 44px; left: 56px; right: 56px;
  animation: fadeUp 0.8s 0.1s both;
}
.event-hero__badges {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.event-hero__type-badge {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; padding: 4px 12px; border-radius: 3px;
}
.event-hero__type-badge--concert { background: #1a3820; }
.event-hero__type-badge--workshop { background: #c8892a; }
.event-hero__date {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: rgba(255,255,255,0.65); letter-spacing: 0.04em;
}
.event-hero__sep { color: rgba(255,255,255,0.3); }
.event-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px; font-weight: 400; color: #fff;
  line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 10px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.22);
}
.event-hero__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; color: rgba(255,255,255,0.78);
}

/* Metadata strip */
.event-meta-strip {
  display: flex; gap: 0; margin-bottom: 48px;
  border: 1px solid #e8e2d8; border-radius: 8px;
  overflow: hidden; background: #fdfaf5;
}
.event-meta-strip__cell {
  flex: 1; padding: 20px 24px;
  border-right: 1px solid #e8e2d8;
}
.event-meta-strip__cell:last-child { border-right: none; }
.event-meta-strip__label {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: #a09488; margin-bottom: 6px;
}
.event-meta-strip__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 500; color: #1c1915;
}

/* Main 2-col layout */
.event-layout {
  max-width: 1160px; margin: 0 auto; padding: 56px 56px 100px;
  display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start;
}
.event-sidebar { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 20px; }

/* Sidebar cards */
.sidebar-card {
  background: #fdfaf5; border-radius: 10px; border: 1px solid #e8e2d8;
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.sidebar-card__header {
  padding: 20px 24px;
}
.sidebar-card__header--concert { background: #1a3820; }
.sidebar-card__header--workshop { background: #c8892a; }
.sidebar-card__header-label {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 4px;
}
.sidebar-card__header-title {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 500; color: #fff;
}
.sidebar-card__body { padding: 24px; }

/* Spots bar */
.spots-bar-card {
  background: #fdfaf5; border: 1px solid rgba(200,137,42,0.22);
  border-radius: 8px; padding: 18px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.spots-bar__track {
  height: 6px; background: #ede8dc; border-radius: 3px; overflow: hidden;
}
.spots-bar__fill {
  height: 100%;
  background: linear-gradient(to right, #c8892a, #e5a840);
  border-radius: 3px; transition: width 0.6s ease;
}

/* Details card */
.details-card {
  background: #fdfaf5; border-radius: 10px; border: 1px solid #e8e2d8;
  padding: 22px 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.details-card__heading {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: #a09488; margin-bottom: 16px;
}
.details-card__rows { display: flex; flex-direction: column; gap: 12px; }
.details-card__row { display: flex; gap: 12px; align-items: flex-start; }
.details-card__icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.details-card__label { font-size: 13px; font-weight: 500; color: #2a2218; }
.details-card__sub { font-size: 12px; color: #8a7e72; }

/* Video placeholder */
.video-wrap {
  aspect-ratio: 16/9; border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14); margin-bottom: 48px;
}
.video-wrap iframe,
.video-wrap .wp-block-embed__wrapper { width: 100%; height: 100%; border: none; }

/* Photo gallery */
.event-gallery {
  display: grid; gap: 10px;
}
.event-gallery--concert { grid-template-columns: repeat(3, 1fr); }
.event-gallery--workshop { grid-template-columns: repeat(2, 1fr); }
.event-gallery__item {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 5px; cursor: pointer;
}
.event-gallery__item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
}
.event-gallery__item:hover img { transform: scale(1.06); }

/* ─── FORMS ──────────────────────────────────────────────────────────────── */
.ihc-form { display: flex; flex-direction: column; gap: 14px; }
.ihc-form label.field-label {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #7a6e62;
  display: block; margin-bottom: 6px;
}
.ihc-form input[type="text"],
.ihc-form input[type="email"],
.ihc-form textarea,
.ihc-form select {
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 11px 14px; background: #f5f0e8;
  border: 1px solid #ddd7cb; border-radius: 4px;
  color: #2a2218; outline: none; width: 100%;
}
.ihc-form textarea { resize: none; line-height: 1.6; }
.ihc-form .checkbox-row {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 10px 14px; background: #f5f0e8;
  border-radius: 4px; border: 1px solid #ddd7cb;
  font-size: 14px; color: #3a342c;
}
.ihc-form button[type="submit"] {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; padding: 14px; border-radius: 4px; cursor: pointer;
  transition: opacity 0.2s; width: 100%;
}
.ihc-form button.submit--concert { background: #1a3820; color: #fff; }
.ihc-form button.submit--workshop { background: #c8892a; color: #fff; }
.ihc-form .form-success {
  text-align: center; padding: 20px 0; animation: fadeIn 0.5s both;
}
.ihc-form .form-success__icon { font-size: 32px; margin-bottom: 12px; }
.ihc-form .form-success__title {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-style: italic; color: #1c1915; margin-bottom: 8px;
}
.ihc-form .form-success__body { font-size: 13px; color: #7a6e62; line-height: 1.7; }

/* ─── ABOUT CONTENT LABELS ───────────────────────────────────────────────── */
.content-label {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 16px;
}
.content-label--concert { color: #1a3820; }
.content-label--workshop { color: #c8892a; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photos { flex-direction: row; }
  .about-photo { flex: 1; }
  .events-grid { grid-template-columns: 1fr; }
  .event-layout { grid-template-columns: 1fr; padding: 40px 40px 80px; }
  .event-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { padding: 0 32px; }
  .newsletter-section { padding: 72px 40px; }
}
@media (max-width: 680px) {
  .site-nav { padding: 0 20px; }
  .site-nav .nav-links { gap: 16px; }
  .site-nav .nav-links .nav-cta { display: none; }
  .hero-title { font-size: 36px; }
  .section-title { font-size: 38px; }
  .about-title { font-size: 38px; }
  .container { padding: 0 20px; }
  .about-section { padding: 64px 0; }
  .about-photos { flex-direction: column; }
  .events-section { padding: 56px 0 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 40px 20px 28px; }
  .event-layout { padding: 28px 20px 60px; gap: 32px; }
  .event-hero__title { font-size: 38px; }
  .event-meta-strip { flex-wrap: wrap; }
  .event-meta-strip__cell { flex: none; width: 50%; }
  .newsletter-section { padding: 60px 20px; }
  .newsletter-title { font-size: 38px; }
}
