
:root {
  --aubergine: #24112e;
  --aubergine-2: #30143d;
  --cream: #f5ecdf;
  --cream-2: #fbf7f0;
  --gold: #b98b2f;
  --lilac: #c8b6d7;
  --ink: #1d1520;
  --white: #ffffff;
  --muted: #746d76;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-2);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed; top: 0; left: 0;
  transform: translateY(-120%);
  background: var(--white); color: var(--ink);
  padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,240,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36,17,46,.08);
}
.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: .85rem; min-width: 0; }
.brand-logo { display: flex; align-items: center; flex: 0 0 auto; }
.brand-logo .custom-logo-link { display: flex; align-items: center; }
.brand-logo .custom-logo { width: auto; height: auto; max-height: 64px; max-width: 220px; object-fit: contain; }
.brand-fallback { display: inline-flex; }
.brand-mark {
  width: 54px; height: 54px;
  border: 1px solid var(--aubergine);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: -.06em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 600; }
.brand-meta { font-size: .72rem; color: var(--muted); margin-top: .35rem; text-transform: uppercase; letter-spacing: .12em; }

.desktop-nav { display: flex; gap: 1.5rem; font-size: .92rem; }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -.35rem;
  height: 1px; background: var(--gold);
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: .6rem; }
.icon-button, .menu-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.icon-button {
  width: 40px; height: 40px; border: 1px solid rgba(36,17,46,.15);
  font-size: 1.4rem;
}
.menu-button { display: none; align-items: center; gap: .7rem; }
.menu-lines {
  width: 22px; height: 12px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.mobile-menu {
  display: none;
  padding: 0 2rem 1.5rem;
  background: var(--cream-2);
}
.mobile-menu.open { display: grid; gap: .75rem; }

.hero {
  background: var(--aubergine);
  color: var(--white);
}
.hero-media {
  max-width: 1500px;
  margin: 0 auto;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(260px, .65fr);
}
.hero-photo {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(13,7,16,.75), rgba(13,7,16,.06) 52%),
    url('assets/instagram-grid-2.png') center 68% / cover no-repeat;
}
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(36,17,46,.22), transparent 45%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4.5vw, 5.5rem);
  max-width: 830px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.eyebrow.dark { color: var(--aubergine); }
.hero h1,
.quick-intro h2,
.section-heading h2,
.feature-copy h2,
.sixth-panel h2,
.join-inner h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.04em;
  margin: 0;
}
.hero h1 {
  font-size: clamp(4.3rem, 9vw, 9.8rem);
  line-height: .88;
  max-width: 7ch;
}
.hero-copy p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  max-width: 28ch;
  margin: 1.5rem 0 2rem;
}
.hero-cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 600;
}
.button-light { background: var(--cream); color: var(--aubergine); }
.button-outline { border-color: var(--cream); color: var(--cream); }
.text-link { display: inline-flex; gap: .45rem; align-items: center; }
.dark-link { color: var(--aubergine); }

.hero-side {
  display: grid;
  grid-template-rows: 1fr auto;
  border-left: 1px solid rgba(255,255,255,.14);
}
.hero-statement {
  align-self: center;
  padding: 2.5rem;
  font-family: var(--serif);
  font-size: 1.5rem;
}
.gold-line {
  width: 54px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-number {
  padding: 2.2rem 2.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-direction: column;
}
.number {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5vw, 5rem);
  line-height: .9;
}
.number-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--lilac);
  margin-top: .7rem;
  font-size: .74rem;
}

.quick-links {
  background: var(--cream);
  padding: 4.5rem 2rem;
}
.quick-links-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 2.1fr;
  gap: 5rem;
}
.quick-intro h2 { font-size: clamp(3rem, 5vw, 5.8rem); line-height: .9; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(36,17,46,.18);
  border-left: 1px solid rgba(36,17,46,.18);
}
.quick-grid a {
  min-height: 112px;
  padding: 1.25rem;
  border-right: 1px solid rgba(36,17,46,.18);
  border-bottom: 1px solid rgba(36,17,46,.18);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transition: background .2s ease, color .2s ease;
}
.quick-grid a:hover { background: var(--aubergine); color: var(--cream); }

.editorial-section,
.events-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 7rem 2rem;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.section-heading h2 { font-size: clamp(3rem, 6vw, 6.5rem); line-height: .92; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 290px;
  gap: 1rem;
}
.story-card { position: relative; overflow: hidden; }
.story-a { grid-column: span 5; grid-row: span 2; }
.cream-card { grid-column: span 3; grid-row: span 2; }
.story-b { grid-column: span 4; grid-row: span 2; }
.purple-card { grid-column: span 4; }
.story-c { grid-column: span 4; }
.story-d { grid-column: span 4; }

.image-card {
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.image-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(19,10,25,.78), rgba(19,10,25,.03) 65%);
}
.story-a { background-image: url('assets/instagram-grid-2.png'); background-position: 88% 92%; }
.story-b { background-image: url('assets/instagram-grid-1.png'); background-position: 18% 16%; }
.story-c { background-image: url('assets/instagram-grid-1.png'); background-position: 85% 50%; }
.story-d { background-image: url('assets/instagram-grid-2.png'); background-position: 21% 75%; }
.story-content {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem;
}
.story-tag, .small-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  font-weight: 700;
}
.story-content h3,
.graphic-card h3 {
  font-family: var(--serif);
  margin: .5rem 0 .3rem;
  font-weight: 500;
  line-height: .96;
}
.story-content h3 { font-size: clamp(2rem, 3vw, 3rem); }
.story-content p { margin: 0; max-width: 34ch; }

.graphic-card {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cream-card { background: var(--cream); color: var(--aubergine); }
.purple-card { background: var(--aubergine); color: var(--cream); }
.graphic-card h3 { font-size: clamp(2.7rem, 4vw, 4.8rem); }
.gold-dot, .gold { color: var(--gold); }
.graphic-card p { max-width: 27ch; }
.graphic-card a { font-size: .9rem; font-weight: 700; }

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 650px;
  background: var(--aubergine);
  color: var(--cream);
}
.feature-copy {
  padding: clamp(3rem, 7vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-copy h2 { font-size: clamp(4rem, 7vw, 7rem); line-height: .9; max-width: 8ch; }
.feature-copy p { max-width: 46ch; font-size: 1.12rem; margin: 1.6rem 0 2rem; }
.feature-image {
  position: relative;
  min-height: 650px;
  background:
    linear-gradient(0deg, rgba(36,17,46,.25), rgba(36,17,46,.15)),
    url('assets/instagram-grid-2.png') center 70% / cover no-repeat;
}
.feature-quote {
  position: absolute;
  right: 2.5rem;
  bottom: 2rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  color: white;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .94;
}

.sixth-section {
  min-height: 620px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  background: var(--cream);
}
.sixth-panel {
  padding: clamp(3rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.sixth-panel h2 { font-size: clamp(3.8rem, 6vw, 6.7rem); line-height: .9; }
.sixth-panel p { max-width: 36ch; font-size: 1.1rem; margin: 1.5rem 0 2rem; }
.sixth-panel .button-light { background: var(--aubergine); color: var(--cream); align-self: flex-start; }
.sixth-image {
  position: relative;
  background:
    linear-gradient(0deg, rgba(22,9,29,.25), rgba(22,9,29,.03)),
    url('assets/instagram-grid-2.png') 84% 84% / cover no-repeat;
}
.sixth-image-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .67rem;
}

.events-section { background: var(--cream-2); }
.events-list { border-top: 1px solid rgba(36,17,46,.16); }
.event-row {
  min-height: 118px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid rgba(36,17,46,.16);
  transition: background .2s ease;
}
.event-row:hover { background: var(--cream); }
.event-date {
  width: 78px; height: 78px;
  border: 1px solid rgba(36,17,46,.25);
  display: grid; place-items: center;
  align-content: center;
}
.event-date span { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.event-date small { text-transform: uppercase; letter-spacing: .12em; }
.event-title { display: flex; flex-direction: column; gap: .2rem; }
.event-type { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.event-title strong { font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.event-action { color: var(--muted); padding-right: 1rem; }

.join-section {
  background: var(--aubergine);
  color: var(--cream);
  padding: 7rem 2rem;
}
.join-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.join-inner h2 { font-size: clamp(4rem, 6vw, 7rem); line-height: .9; }
.join-actions { border-top: 1px solid rgba(255,255,255,.17); }
.join-card {
  min-height: 118px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.join-card span { color: var(--lilac); }
.join-card strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; text-align: right; }

.site-footer {
  background: #170d1d;
  color: var(--cream);
  padding: 4rem 2rem 1.5rem;
}
.footer-top {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { font-family: var(--serif); font-size: 3rem; }
.footer-contact, .footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-bottom {
  max-width: 1380px;
  margin: 3rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #bcb1c0;
  font-size: .8rem;
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-actions { justify-self: end; }
  .hero-media { grid-template-columns: 1fr; }
  .hero-photo { min-height: 680px; }
  .hero-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .hero-number { border-top: 0; border-left: 1px solid rgba(255,255,255,.14); }
  .quick-links-inner, .join-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 330px; }
  .story-a, .cream-card, .story-b, .purple-card, .story-c, .story-d { grid-column: auto; grid-row: auto; }
  .feature-section, .sixth-section { grid-template-columns: 1fr; }
  .feature-image, .sixth-image { min-height: 520px; }
}

@media (max-width: 760px) {
  .header-inner { padding: .85rem 1rem; }
  .brand-meta { display: none; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-logo .custom-logo { max-height: 48px; max-width: 150px; }
  .icon-button { display: none; }
  .hero-photo { min-height: 610px; }
  .hero-copy { padding: 2rem 1.25rem 2.5rem; }
  .hero h1 { font-size: clamp(4rem, 19vw, 6rem); }
  .hero-side { grid-template-columns: 1fr; }
  .hero-number { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .quick-links { padding: 3.2rem 1rem; }
  .quick-links-inner { gap: 2rem; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid a { min-height: 88px; }
  .editorial-section, .events-section { padding: 4.5rem 1rem; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .story-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .feature-copy, .sixth-panel { padding: 4rem 1.25rem; }
  .feature-image, .sixth-image { min-height: 450px; }
  .event-row {
    grid-template-columns: 78px 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }
  .event-action { display: none; }
  .event-title strong { font-size: 1.5rem; }
  .join-section { padding: 4.5rem 1rem; }
  .join-card { align-items: flex-start; flex-direction: column; justify-content: center; gap: .3rem; }
  .join-card strong { text-align: left; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}


/* Expanded curriculum section */
.curriculum-section {
  background: var(--aubergine);
  color: var(--cream);
}
.curriculum-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 610px;
}
.curriculum-copy {
  padding: clamp(3rem, 7vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.curriculum-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.04em;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .9;
  max-width: 8ch;
  margin: 0;
}
.curriculum-copy p {
  max-width: 49ch;
  font-size: 1.12rem;
  margin: 1.6rem 0 2rem;
}
.curriculum-visual {
  position: relative;
  min-height: 610px;
  background:
    linear-gradient(0deg, rgba(36,17,46,.35), rgba(36,17,46,.12)),
    url('assets/instagram-grid-2.png') center 72% / cover no-repeat;
}
.curriculum-quote {
  position: absolute;
  right: 2.5rem;
  bottom: 2.2rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  color: white;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: .94;
}
.curriculum-routes {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
}
.curriculum-route {
  min-height: 215px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 1.25rem;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .2s ease, color .2s ease;
}
.curriculum-route:nth-child(2n) { border-right: 0; }
.curriculum-route:hover {
  background: var(--cream);
  color: var(--aubergine);
}
.route-number {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .14em;
}
.route-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .67rem;
  font-weight: 700;
  margin-bottom: .55rem;
  opacity: .75;
}
.curriculum-route h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: .95;
  margin: 0 0 .7rem;
}
.curriculum-route p {
  margin: 0;
  max-width: 42ch;
  color: inherit;
  opacity: .78;
}
.route-arrow {
  align-self: start;
  font-size: 1.2rem;
}

@media (max-width: 1100px) {
  .curriculum-intro { grid-template-columns: 1fr; }
  .curriculum-visual { min-height: 500px; }
}

@media (max-width: 760px) {
  .curriculum-copy { padding: 4rem 1.25rem; }
  .curriculum-visual { min-height: 420px; }
  .curriculum-routes {
    grid-template-columns: 1fr;
    padding: 0 1rem 3.5rem;
  }
  .curriculum-route {
    grid-template-columns: 42px 1fr auto;
    border-right: 0;
    padding: 1.5rem .75rem;
  }
}

/* WordPress theme additions */
.primary-menu, .mobile-primary-menu, .footer-menu { list-style:none; margin:0; padding:0; }
.primary-menu { display:flex; gap:1.5rem; }
.primary-menu a { position:relative; }
.mobile-primary-menu { display:grid; gap:.75rem; }
.footer-menu { display:flex; flex-direction:column; gap:.5rem; }
.site-search { max-width:1500px; margin:0 auto; padding:0 2rem 1rem; }
.site-search form { display:flex; gap:.5rem; }
.site-search input[type="search"] { width:100%; padding:1rem; border:1px solid rgba(36,17,46,.2); background:white; font:inherit; }
.site-search input[type="submit"] { padding:0 1.25rem; border:0; background:var(--aubergine); color:white; font:inherit; font-weight:600; }
.content-shell, .single-shell { max-width:1380px; margin:0 auto; padding:6rem 2rem; }
.archive-header { margin-bottom:3rem; }
.archive-header h1, .single-header h1 { font-family:var(--serif); font-weight:500; font-size:clamp(3.4rem,7vw,7rem); line-height:.92; letter-spacing:-.04em; margin:0; }
.content-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.content-card { background:var(--cream); }
.content-card img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.content-card-body { padding:1.5rem; }
.content-card-body h2 { font-family:var(--serif); font-size:2rem; font-weight:500; line-height:1; }
.content-meta { text-transform:uppercase; letter-spacing:.12em; font-size:.7rem; color:var(--muted); }
.single-header { max-width:980px; margin-bottom:3rem; }
.single-excerpt { font-family:var(--serif); font-size:clamp(1.4rem,2.2vw,2.1rem); max-width:32ch; }
.single-hero img { width:100%; max-height:720px; object-fit:cover; }
.single-content { max-width:780px; margin:4rem auto 0; font-size:1.08rem; }
.single-content h2, .single-content h3 { font-family:var(--serif); font-weight:500; }
.button-dark { background:var(--aubergine); color:var(--cream); }
@media (max-width: 900px) { .content-grid { grid-template-columns:1fr 1fr; } }
@media (max-width: 760px) { .content-grid { grid-template-columns:1fr; } .content-shell, .single-shell { padding:4rem 1rem; } }
