:root {
  --navy: #2b3a67;
  --navy-dark: #1e2a4a;
  --cream: #f5f2ec;
  --cream-deep: #ece7dc;
  --black: #111;
  --ink: #1a1a1a;
  --gray: #777;
  --gray-soft: #9b9890;
  --gray-light: #e8e6e1;
  --line: #e3dfd5;
  --white: #fff;
  --surface: #fbf8f2;
  --accent: var(--navy);
  --accent-dark: var(--navy-dark);
  --bg: var(--cream);
  --fg: var(--ink);
  --muted: var(--gray);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.5rem;
  --radius-pill: 3rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s, background 0.2s, transform 0.2s;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

button {
  font: inherit;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  color: var(--white);
  background: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

/* Navigation */

.top-nav {
  position: sticky;
  top: 1rem;
  z-index: 50;
  padding-block: 1rem 0.5rem;
}

.top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.brand img,
.logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.logo {
  width: 48px;
  height: 48px;
}

.nav-links,
.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.nav-links a,
.site-nav a,
.language-switcher {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.site-nav a:hover,
.language-switcher a:hover {
  color: var(--fg);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.language-switcher .is-active-language {
  color: var(--accent);
  font-weight: 600;
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  color: var(--white) !important;
  background: var(--accent);
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
}

.nav-cta:hover {
  color: var(--white) !important;
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Home */

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-inner {
  max-width: 920px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.4rem 0.85rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
  }

  50% {
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 6%, transparent);
  }
}

.hero-title,
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-title {
  margin-bottom: 1.5rem;
}

h1 {
  margin-bottom: 1rem;
}

.hero-title em,
h1 em,
.section-head h2 em,
.quote em {
  color: var(--accent);
  font-style: italic;
}

.hero-sub,
.tagline {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.hero-sub {
  margin-bottom: 2.25rem;
}

.tagline {
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
}

.btn-primary,
.cta {
  color: var(--white);
  background: var(--accent);
}

.btn-primary:hover,
.cta:hover {
  color: var(--white);
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--fg);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--fg);
}

.city-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.city-label,
.kicker,
.events-kicker,
.event-location,
.e-tag,
.contact-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cities span {
  padding: 0.45rem 0.8rem;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.block,
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
}

.section {
  padding-inline: 3rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2,
.section-title {
  max-width: 720px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
}

.kicker {
  margin-bottom: 0.9rem;
  color: var(--accent);
}

.head-meta,
.events-intro p:not(.events-kicker) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.pillar {
  min-height: 280px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.pillar-num {
  display: block;
  margin-bottom: 3rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
}

.pillar h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.pillar p {
  max-width: 280px;
  color: var(--muted);
  line-height: 1.65;
}

.stats-block {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stat {
  min-height: 180px;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-num {
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5rem);
  line-height: 0.95;
}

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

.stat-label {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Events */

.events-block {
  background: color-mix(in srgb, var(--surface) 46%, var(--bg));
}

.events-list,
.events-rows {
  display: flex;
  flex-direction: column;
}

.event {
  display: grid;
  grid-template-columns: auto minmax(130px, 0.25fr) minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.event:last-child {
  border-bottom: 1px solid var(--line);
}

.e-date,
.event-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.e-date span,
.event-month {
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.event-day {
  font-size: 2rem;
  font-weight: 400;
}

.e-body h3,
.event-info h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 650;
  letter-spacing: 0;
}

.e-body p,
.event-info p:not(.event-location) {
  color: var(--muted);
  line-height: 1.5;
}

.e-rsvp,
.event-form-link,
.event-form-pending {
  justify-self: end;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.e-rsvp:hover,
.event-form-link:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.e-rsvp.is-soon,
.event-form-pending {
  color: var(--muted);
  background: transparent;
}

.events-empty {
  padding: 2rem 0;
  color: var(--muted);
}

/* Quote and Instagram */

.quote-block {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.quote {
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1.05;
}

.attribution {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.ig-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ig-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

.ig-link {
  color: var(--accent);
  font-weight: 700;
}

.ig-link:hover {
  color: var(--accent-dark);
}

.grid,
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.grid-item,
.tile {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
}

.grid-item img,
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.grid-item:hover img,
.tile:hover img {
  transform: scale(1.04);
}

.closing {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.cta-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 2rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius-lg);
}

.cta-block h2 {
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
}

.cta-right p {
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--white) 78%, transparent);
  line-height: 1.65;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  color: var(--accent);
  background: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-1px);
}

/* Footer */

footer.site {
  display: block;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(140px, 0.7fr));
  gap: 2rem;
}

.footer-brand p,
.footer-col li,
.footer-bottom {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 1rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--fg);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col li + li {
  margin-top: 0.45rem;
}

.footer-col a:hover {
  color: var(--fg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* Legacy/static pages */

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3rem;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.scroll-cue:hover {
  color: var(--accent);
}

.scroll-cue-arrow {
  color: var(--accent);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  50% {
    transform: translateY(0.25rem);
    opacity: 1;
  }
}

.approach-lead,
.contact-sub {
  max-width: 480px;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.approach-body {
  max-width: 580px;
}

.approach-body p {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.approach-body strong {
  color: var(--fg);
  font-weight: 650;
}

.approach-pull {
  max-width: 520px;
  margin-top: 2rem;
  padding-top: 2rem;
  color: var(--accent);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.35;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.contact-card:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-label {
  min-width: 5rem;
}

.contact-value {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-value:hover {
  color: var(--accent-dark);
}

.copy-btn {
  margin-left: auto;
  padding: 0.5rem 1rem;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.copy-btn:hover {
  background: var(--surface);
  border-color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 900px) {
  .top-nav {
    top: 0;
    padding-top: 0.75rem;
  }

  .top-nav-inner {
    align-items: flex-start;
    border-radius: var(--radius-lg);
  }

  .nav-links {
    justify-content: flex-end;
    gap: 0.75rem 1rem;
  }

  .section-head,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .pillars,
  .numbers {
    grid-template-columns: 1fr 1fr;
  }

  .pillar:nth-child(2n),
  .stat:nth-child(2n) {
    border-right: 0;
  }

  .pillar:nth-child(n + 3),
  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .event {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .e-tag,
  .event-location {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 0.25rem;
  }

  .e-body,
  .event-info {
    grid-column: 2;
  }

  .e-body {
    margin-top: 1.2rem;
  }

  .e-rsvp,
  .event-form-link,
  .event-form-pending {
    grid-column: 2;
    justify-self: start;
  }

  .grid,
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 640px) {
  .wrap {
    padding-inline: 1.25rem;
  }

  .top-nav-inner {
    padding: 0.8rem;
    border-radius: var(--radius-md);
  }

  .brand span {
    display: none;
  }

  .nav-links {
    gap: 0.55rem 0.85rem;
  }

  .nav-links a:not(.nav-cta),
  .language-switcher {
    font-size: 0.8rem;
  }

  .nav-cta {
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem !important;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-title,
  h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-ctas {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .cta {
    width: 100%;
  }

  .block,
  .section {
    padding: 3.5rem 0;
  }

  .section {
    padding-inline: 1.5rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .pillars,
  .numbers {
    grid-template-columns: 1fr;
  }

  .pillar,
  .stat,
  .pillar:nth-child(2n),
  .stat:nth-child(2n) {
    min-height: auto;
    border-right: 0;
  }

  .pillar + .pillar,
  .stat + .stat {
    border-top: 1px solid var(--line);
  }

  .pillar-num {
    margin-bottom: 1.5rem;
  }

  .event {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }

  .e-date,
  .event-date {
    width: 4.25rem;
    min-width: 4.25rem;
    height: 4.25rem;
    font-size: 1.65rem;
  }

  .event-day {
    font-size: 1.65rem;
  }

  .e-body,
  .event-info {
    margin-top: 1.15rem;
  }

  .ig-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .page-shell {
    padding: 2rem 1.5rem;
  }

  .page-header {
    align-items: flex-start;
    gap: 1rem;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .copy-btn {
    margin-left: 0;
  }
}
