/* ============================================================
   MICHAL OREN — Main Stylesheet
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   Colors: Off-white #F4F5F7 | Blue #6B9AB4 | Dark #1A1C20 | No warm tones
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --cream:        #F4F5F7;
  --cream-dark:   #D8DDE5;
  --dark:         #1A1C20;
  --dark-mid:     #22262D;
  --blue-pale:    #D8E8F0;
  --blue-light:   #6B9AB4;
  --accent:       #4A7A96;
  --accent-light: #6B9AB4;
  --text:         #1A1C20;
  --text-muted:   #6A7382;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-height: 80px;
  --section-pad: clamp(2.7rem, 5.3vw, 4.7rem);
  --container:  1200px;
  --radius:     4px;
  --transition: 0.3s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1rem; line-height: 1.8; color: var(--text); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ─────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.section { padding-block: var(--section-pad); }

.section--dark {
  background-color: var(--dark);
  color: var(--cream);
}
.section--dark p,
.section--dark h2,
.section--dark h3 { color: var(--cream); }
.section--dark .eyebrow { color: var(--blue-light); }

.section--mid {
  background-color: #EBEBEC;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.btn--accent {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn--accent:hover { background: var(--dark-mid); border-color: var(--dark-mid); }

.btn--outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn--outline:hover { background: var(--text); color: var(--cream); }

.btn--outline-light {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn--outline-light:hover { background: var(--cream); color: var(--dark); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), transform 0.35s ease;
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav.scrolled {
  background: rgba(27, 30, 36, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav__inner {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 244, 248, 0.82);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav__links a:hover,
.nav__links a.active { color: var(--cream); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

/* ── About heading ──────────────────────────────────────────── */
.about__heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.about__heading em {
  font-style: italic;
  color: var(--accent);
}

/* ── Statement section ──────────────────────────────────────── */
.statement-section {
  background: var(--dark);
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  position: relative;
}

.statement-section::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.35;
  max-width: 960px;
  letter-spacing: 0.015em;
  padding-left: 3rem;
}

.statement-quote::before {
  content: '— ';
  color: var(--accent);
  font-style: normal;
}

/* ── News section header ────────────────────────────────────── */
.news-section {
  position: relative;
  overflow: hidden;
}


.news-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 0;
}

.news-header .eyebrow { grid-column: 1; grid-row: 1; }

.section-title-sm {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin: 0;
}

.news-header h2 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}

.news-header .divider { grid-column: 1; grid-row: 3; margin-top: -0.75rem; }
.about__text .divider { margin-top: -0.75rem; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 140vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark-mid);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27,30,36,0.1) 0%,
    rgba(27,30,36,0.3) 40%,
    rgba(27,30,36,0.88) 100%
  );
}

.hero__content {
  position: relative;
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  padding-bottom: 0;
  margin-top: 25vh;
  color: var(--cream);
}

.hero__content h1 {
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.hero__rule {
  width: 50px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(240,244,248,0.4);
  padding: 0.4rem 1rem;
  color: rgba(240,244,248,0.8);
  margin-top: 1.2rem;
}

/* ── Banner Strip ───────────────────────────────────────────── */
.banner-strip {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(107,154,180,0.2);
  padding: 0.6rem 0;
}

.banner-strip__inner {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.banner-strip__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.banner-strip__logo-wrap {
  display: flex;
  align-items: center;
}

.banner-strip__logo {
  height: 34px;
  width: auto;
}

.banner-strip__text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.banner-strip__sep {
  width: 1px;
  height: 28px;
  background: rgba(26,28,32,0.35);
}

.banner-strip__right a {
  display: flex;
  align-items: center;
  color: var(--dark);
  transition: color var(--transition), transform var(--transition);
}

.banner-strip__right a:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.banner-strip__right svg {
  width: 22px;
  height: 22px;
}

/* ── News Cards ─────────────────────────────────────────────── */
.news-grid {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  max-width: 780px;
  margin-inline: auto;
  width: 100%;
  position: relative;
}

.news-grid::before {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 62%;
  height: 52%;
  background: var(--cream-dark);
  opacity: 0.38;
  z-index: 0;
  pointer-events: none;
}

.news-grid::after {
  content: '';
  position: absolute;
  top: -1.4rem;
  right: -1.4rem;
  width: 36%;
  height: calc(50% + 1.4rem);
  background: transparent;
  border: 2px solid var(--blue-light);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.news-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  padding: 1.8rem 1.2rem;
  border-bottom: 1px solid var(--cream-dark);
  align-items: stretch;
  position: relative;
  z-index: 1;
  background: var(--white);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.news-card:first-child { border-top: 1px solid var(--cream-dark); }

.news-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.news-card:hover { background: var(--blue-pale); }
.news-card:hover::before { transform: scaleY(1); }

.news-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__logo img {
  height: 80px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card__logo img { transform: scale(1.08); }

.news-card__body {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 0.5rem;
}

.news-card__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

.news-card__date {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.news-card__link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  margin-top: auto;
  padding-top: 0.6rem;
  transition: gap 0.25s ease, letter-spacing 0.25s ease;
}

.news-card:hover .news-card__link { gap: 0.6em; }

.news-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
}

@media (max-width: 700px) {
  .news-card { grid-template-columns: 80px 1fr; gap: 1.2rem; }
}

@media (max-width: 460px) {
  .news-card { grid-template-columns: 1fr; }
  .news-card__logo { justify-content: flex-start; }
}

/* ── About Section (full-bleed split) ───────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 90vh;
}

.about-section__image {
  overflow: hidden;
  position: relative;
}

.about-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-section__text {
  padding: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
  background: var(--cream);
}

.about-section__text .btn { align-self: flex-start; }
.about-section__text p { color: var(--text); }

@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-section__image {
    aspect-ratio: 4/3;
    max-height: 55vh;
  }
}

/* ── Press / News list ──────────────────────────────────────── */
.press-section-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.press-list {
  border-top: 1px solid var(--cream-dark);
  margin-top: 1.5rem;
}

.press-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto auto;
  gap: 0 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

.press-item:hover { opacity: 0.55; }

.press-item:hover .press-item__arrow { transform: translateX(6px); }

.press-item__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.7;
}

.press-item__source {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.press-item__text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}

.press-item__date {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.press-item__arrow {
  font-size: 1rem;
  color: var(--accent);
  transition: transform var(--transition);
  padding-left: 0.5rem;
}

@media (max-width: 650px) {
  .press-item { grid-template-columns: 2rem 1fr auto; }
  .press-item__date { display: none; }
}

/* ── Performances list (homepage dark section) ──────────────── */
.perf-list {
  border-top: 1px solid rgba(240,244,248,0.12);
  margin-top: 2rem;
}

.perf-item {
  display: grid;
  grid-template-columns: 5rem 1fr auto auto;
  gap: 0 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(240,244,248,0.08);
  align-items: center;
  text-decoration: none;
  color: var(--cream);
  transition: opacity var(--transition);
}

.perf-item:hover { opacity: 0.55; }
.perf-item:hover .perf-item__arrow { transform: translateX(6px); }

.perf-item__date {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.perf-item__day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.perf-item__month {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,244,248,0.45);
  margin-top: 0.25rem;
}

.perf-item__title {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
}

.perf-item__venue {
  font-size: 0.78rem;
  color: rgba(240,244,248,0.45);
  white-space: nowrap;
}

.perf-item__arrow {
  color: var(--accent);
  transition: transform var(--transition);
  font-size: 0.9rem;
}

@media (max-width: 650px) {
  .perf-item { grid-template-columns: 4rem 1fr auto; }
  .perf-item__venue { display: none; }
}

/* ── Legacy About / Bio (kept for other pages) ──────────────── */
.about__image { position: relative; }
.about__image::before {
  content: '';
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 62%;
  height: 52%;
  background: var(--blue-light);
  opacity: 0.38;
  z-index: -1;
}
.about__image::after {
  content: '';
  position: absolute;
  top: -1.4rem;
  right: -1.4rem;
  width: 36%;
  height: 30%;
  border: 2px solid var(--dark);
  opacity: 0.1;
  z-index: -1;
}
.about__image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about__text-wrap { align-self: start; margin-top: -2rem; }
.about__text { display: flex; flex-direction: column; gap: 1.5rem; position: relative; background: var(--cream); padding-bottom: 2rem; }
.about__text p { color: var(--text); text-align: justify; }
.about__text > p:first-of-type { margin-top: -1.25rem; }
.about__text .btn { align-self: flex-start; }
.about__text::after {
  content: '';
  position: absolute;
  bottom: -1.4rem;
  right: -1.4rem;
  width: 90%;
  height: 85%;
  border: 2px solid var(--accent);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

/* ── Events / Schedule ──────────────────────────────────────── */
.event-list { display: flex; flex-direction: column; gap: 0; }

.event-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(240,244,248,0.12);
  transition: background var(--transition);
}

.section--dark .event-item { border-bottom-color: rgba(240,244,248,0.12); }
.section:not(.section--dark) .event-item { border-bottom-color: var(--cream-dark); }

.event-item:first-child { border-top: 1px solid rgba(240,244,248,0.12); }
.section:not(.section--dark) .event-item:first-child { border-top-color: var(--cream-dark); }

.event-date {
  text-align: center;
  font-family: var(--font-display);
  position: relative;
}

.event-date::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--accent);
  opacity: 0.1;
}

.event-date .day {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  position: relative;
}

.event-date .month {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
}

.section--dark .event-date .month { color: rgba(240,244,248,0.6); }

.event-info h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.event-info .venue {
  font-size: 1rem;
  color: var(--text-muted);
}

.section--dark .event-info .venue { color: rgba(240,244,248,0.55); }

.event-cta { flex-shrink: 0; }

/* Past Events Table */
.events-table { width: 100%; border-collapse: collapse; }

.events-table th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.events-table td {
  padding: 1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--cream-dark);
  vertical-align: top;
}

.events-table tr:last-child td { border-bottom: none; }
.events-table tr:hover td { background: var(--cream-dark); }

/* ── Media / Gallery ────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery__item {
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gallery__item.landscape { aspect-ratio: 4/3; }
.gallery__item.wide      { aspect-ratio: 16/9; grid-column: span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.video-frame-wrap {
  position: relative;
  isolation: isolate;
}
.video-frame-wrap::after {
  content: '';
  position: absolute;
  top: -1.4rem;
  right: -1.4rem;
  width: 90%;
  height: 85%;
  border: 2px solid var(--accent);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--dark);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--cream);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox__close:hover { opacity: 1; }

/* ── Contact Form ───────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107,154,180,0.15);
}

.form-group textarea { resize: vertical; min-height: 160px; }

.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(107,154,180,0.1);
  border: 1px solid var(--accent);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  text-align: left;
  isolation: isolate;
}

.page-hero + .section {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}


.page-hero__rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.2rem;
}

.page-hero h1 {
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.page-hero__title {
  display: inline-block;
  position: relative;
  background: var(--cream);
  padding: 0.4rem 1rem;
}

.page-hero__title::before {
  content: '';
  position: absolute;
  top: -0.3rem;
  left: -0.3rem;
  width: 14%;
  height: 38%;
  border: 2px solid var(--dark);
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

.page-hero__title::after {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  right: -0.6rem;
  width: 48%;
  height: 65%;
  background: var(--blue-light);
  opacity: 0.32;
  z-index: -1;
  pointer-events: none;
}

.page-hero .eyebrow {
  justify-content: flex-start;
  display: flex;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(107,154,180,0.2);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}


.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(240,244,248,0.7);
  transition: color var(--transition);
}

.footer__col ul a:hover { color: var(--cream); }

.footer__col a[href^="mailto"] { display: none; }
.footer__col li:has(a[href^="mailto"]) { display: none; }

.footer__bottom {
  border-top: 1px solid rgba(240,244,248,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(240,244,248,0.4);
}

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}

/* ── Section Header ─────────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.news-header { margin-bottom: 0.4rem; }

.section-header.centered { text-align: center; }
.section-header.centered .divider { margin-inline: auto; }

/* ── Placeholder ─────────────────────────────────────────────── */
.placeholder-box {
  background: var(--cream-dark);
  border: 2px dashed var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 2rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 2rem) 2.5rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
    box-shadow: -4px 0 30px rgba(0,0,0,0.4);
  }

  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1rem; letter-spacing: 0.1em; }
  .nav__toggle { display: flex; z-index: 101; }

  .nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  .about__image::before,
  .about__image::after { display: none; }

  .event-item {
    grid-template-columns: 70px 1fr;
    gap: 0.75rem 1rem;
  }
  .event-cta { grid-column: 2; padding-bottom: 0.5rem; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .gallery__item.wide { grid-column: span 1; aspect-ratio: 3/4; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .events-table { font-size: 0.82rem; }
  .events-table th, .events-table td { padding: 0.6rem 0.5rem; }

  .video-grid { grid-template-columns: 1fr; }

  /* ── Gentle tap feedback (touch has no :hover) ─────────────── */
  .btn { transition: background var(--transition), color var(--transition), transform 0.15s ease; }
  .btn:active { transform: scale(0.96); }

  .news-card { transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease; }
  .news-card:active { background: var(--blue-pale); transform: scale(0.98); }
  .news-card:active::before { transform: scaleY(1); }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .hero__content { padding-bottom: 3.5rem; margin-top: 40vh; }
  .hero { height: 100vh; }
  .hero__bg { object-position: 72% 15%; }
}

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social a {
  display: flex;
  color: rgba(240,244,248,0.5);
  transition: color var(--transition);
}

.footer__social a:hover { color: var(--accent-light); }

.footer__social svg { width: 26px; height: 26px; }
.footer__col .footer__social { margin-top: 1.2rem; }
