/* ============================================================
   UNLOCKED — Global Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --white: #f7f7f5;
  --off-white: #efefec;
  --mid: #888888;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --header-h: 72px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  /* Shared container widths — keep consistent across the site */
  --container: 1400px;   /* full page width */
  --reading: 1100px;     /* prose / article reading column */
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.light-page {
  background: var(--white);
  color: var(--black);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
}

.body-md {
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 400;
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

/* Compact once scrolled */
.site-header.scrolled {
  height: var(--header-h);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-dark);
}

.site-header.light-header.scrolled {
  background: rgba(247, 247, 245, 0.96);
  border-bottom-color: var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: block;
  height: 28px;
  transition: height 0.4s var(--ease);
}

/* Shrink to fit the menu bar once scrolled */
.site-header.scrolled .logo {
  height: 22px;
}

.logo img {
  display: block;
  width: auto;
  height: 100%;
  /* SVG ships black — invert to white on dark pages */
  filter: invert(1);
  transition: filter 0.3s;
}

/* Light pages keep the logo black */
.light-header .logo img { filter: none; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  margin-right: 24px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(247, 247, 245, 0.7);
  padding: 8px 10px;
  border-radius: 0;
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link:hover { color: var(--white); }

.light-header .nav-link { color: rgba(10, 10, 10, 0.6); }
.light-header .nav-link:hover { color: var(--black); }

.nav-link .arrow {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.2s;
  display: inline-block;
}

.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  margin-top: 10px;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark);
  border-radius: 0;
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

/* Invisible bridge so the cursor can travel from link to dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.light-header .dropdown {
  background: rgba(247, 247, 245, 0.98);
  border-color: var(--border-light);
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: rgba(247, 247, 245, 0.8);
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.light-header .dropdown-item { color: rgba(10, 10, 10, 0.7); }
.light-header .dropdown-item:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--black);
}

.dropdown-divider {
  height: 1px;
  background: var(--border-dark);
  margin: 4px 0;
}

.light-header .dropdown-divider { background: var(--border-light); }

.dropdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 6px 12px 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hire {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  border-radius: 0;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-hire:hover {
  background: rgba(247, 247, 245, 0.85);
  transform: translateY(-1px);
}

.light-header .btn-hire {
  background: var(--black);
  color: var(--white);
}

.light-header .btn-hire:hover { background: var(--off-black); }

/* Login — same size as Hire Now, transparent with a thin white border */
.btn-login {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(247, 247, 245, 0.6);
  border-radius: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-login:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-1px);
}

.light-header .btn-login {
  color: var(--black);
  border-color: rgba(10, 10, 10, 0.55);
}
.light-header .btn-login:hover { background: var(--black); color: var(--white); }

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.light-header .hamburger span { background: var(--black); }

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

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0; right: 0; bottom: 0;
  background: var(--off-black);
  z-index: 999;
  padding: calc(var(--header-h) + 40px) 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  color: var(--white);
  letter-spacing: -0.01em;
}

.mobile-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 16px;
}

.mobile-sub a {
  font-size: 0.9rem;
  color: rgba(247, 247, 245, 0.6);
  padding: 6px 0;
  transition: color 0.2s;
}

.mobile-sub a:hover { color: var(--white); }

.mobile-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.mobile-cta .btn-hire {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-size: 0.78rem;
  padding: 9px 18px;
}


/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 40px) 40px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Tint over the video so white text + grid stay legible */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.35) 35%,
    rgba(10, 10, 10, 0.55) 100%
  );
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10, 10, 10, 0.6) 70%,
    var(--black) 100%
  );
}

/* Noise texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 19ch;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-desc {
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(247, 247, 245, 0.65);
  font-weight: 300;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(247, 247, 245, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  /* Push flush to the right edge of the hero, offsetting the 40px hero padding */
  margin-right: -40px;
  transition: color 0.3s var(--ease);
}

.hero-scroll:hover { color: var(--white); }
.hero-scroll:hover .scroll-line { width: 56px; background: var(--white); }

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(247, 247, 245, 0.2);
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

/* Animated grid lines behind hero */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  pointer-events: none;
  /* Horizontal grid lines, square cells matching the 6 vertical columns */
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent calc(100vw / 6 - 1px),
    rgba(255, 255, 255, 0.08) calc(100vw / 6 - 1px),
    rgba(255, 255, 255, 0.08) calc(100vw / 6)
  );
}

.hero-grid-line {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}


/* ============================================================
   SECTION LAYOUT
   ============================================================ */

.section {
  padding: 120px 40px;
}

.section-sm { padding: 80px 40px; }

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 40px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.section-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.section-link:hover { color: var(--white); gap: 12px; }
.light-page .section-link:hover { color: var(--black); }


/* ============================================================
   VENUE CARDS — HOMEPAGE
   ============================================================ */

.venues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.venue-card {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  cursor: pointer;
}

.venue-card-bg {
  position: absolute;
  inset: 0;
  background: var(--off-black);
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(35%) brightness(0.78);
}

/* Photographic backgrounds per venue */
.venue-card--shoreditch .venue-card-bg {
  background-image: url("images/shoreditch_bg.webp");
}

.venue-card--sacred .venue-card-bg {
  background-image: url("images/sacred_bg.webp");
}

.venue-card--wynwood .venue-card-bg {
  background-image: url("images/studio1_main.jpg");
}

/* Full-width venue card (Wynwood spans the whole grid row) */
.venue-card--wide {
  grid-column: 1 / -1;
  height: 56vh;
  min-height: 420px;
}

/* Dark tint so the grid + white text stay crisp over imagery */
.venue-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.25) 100%);
}

/* Decorative grid pattern for venue cards */
.venue-card-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  transition: opacity 0.6s;
  mix-blend-mode: overlay;
}

.venue-card:hover .venue-card-pattern { opacity: 0.28; }
.venue-card:hover .venue-card-bg {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(0.9);
}

.venue-card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
}

.venue-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.4);
  margin-bottom: 12px;
}

.venue-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.venue-card-desc {
  font-size: 0.875rem;
  color: rgba(247, 247, 245, 0.55);
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 28px;
}

.venue-card-meta {
  display: flex;
  gap: 24px;
}

.venue-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.venue-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.venue-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.35);
}

.venue-card-arrow {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.venue-card:hover .venue-card-arrow {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(45deg);
}


/* ============================================================
   EVENT TYPES
   ============================================================ */

.event-types-section {
  background: var(--off-black);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.event-type-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}

/* Hero image + gradient scrim so the label stays legible */
.event-type-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #141414;
}
.event-type-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(0.15);
  transition: transform 0.7s var(--ease), opacity 0.4s, filter 0.4s;
}
.event-type-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.35) 45%, rgba(10,10,10,0.88) 100%);
}
.event-type-body {
  position: relative;
  padding: 28px 24px;
}
.event-type-item:hover .event-type-media img {
  transform: scale(1.06);
  opacity: 0.72;
  filter: grayscale(0);
}
.event-type-item:hover .event-type-name { color: var(--white); }

.event-type-num {
  font-size: 0.65rem;
  color: rgba(247, 247, 245, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 500;
}

.event-type-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: rgba(247, 247, 245, 0.92);
  transition: color 0.3s;
}


/* ============================================================
   INTRO / ABOUT STRIP
   ============================================================ */

.intro-section {
  padding: 140px 40px;
}

.intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.intro-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.intro-right p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(247, 247, 245, 0.65);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 40px;
}

.intro-right p:last-child { margin-bottom: 0; }


/* ============================================================
   NEWS GRID
   ============================================================ */

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

.news-card {
  padding: 40px 32px;
  border: 1px solid var(--border-dark);
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}

.news-card:hover { background: rgba(255, 255, 255, 0.02); }

.news-date {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}

.news-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 12px;
  flex: 1;
}

.news-excerpt {
  font-size: 0.8375rem;
  color: rgba(247, 247, 245, 0.45);
  line-height: 1.6;
  margin-bottom: 24px;
}

.news-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.4);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-card:hover .news-link { color: var(--white); }


/* ============================================================
   MARQUEE / TICKER
   ============================================================ */

.marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 64px;
}

.marquee-item::after {
  content: '×';
  color: rgba(247, 247, 245, 0.12);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  padding: 80px 40px 40px;
  border-top: 1px solid var(--border-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 22px;
  filter: invert(1);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(247, 247, 245, 0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 32px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.4);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--white); }

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.3);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(247, 247, 245, 0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-socials-list a { display: inline-flex; align-items: center; gap: 9px; }
.footer-social-icon { width: 15px; height: 15px; flex: none; opacity: 0.85; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  gap: 24px;
}

.footer-address {
  font-size: 0.8rem;
  color: rgba(247, 247, 245, 0.25);
  line-height: 1.5;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(247, 247, 245, 0.2);
}


/* ============================================================
   VENUE PAGES — HERO
   ============================================================ */

.venue-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.venue-hero-bg {
  position: absolute;
  inset: 0;
}

.venue-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.95) 100%);
}

/* Shoreditch hero — photographic, with grid overlay */
.venue-hero--shoreditch .venue-hero-bg {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.05) 79px, rgba(255,255,255,0.05) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.05) 79px, rgba(255,255,255,0.05) 80px),
    url("images/shoreditch_bg.webp") center / cover no-repeat,
    #0a0a0a;
}

/* Sacred hero — photographic (arches overlay on top) */
.venue-hero--sacred .venue-hero-bg {
  background:
    url("images/sacred_bg.webp") center / cover no-repeat,
    radial-gradient(ellipse at 50% 120%, #1a1510 0%, #0a0a0a 70%);
}

/* Wynwood hero — photographic, with grid overlay */
.venue-hero--wynwood .venue-hero-bg {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.05) 79px, rgba(255,255,255,0.05) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.05) 79px, rgba(255,255,255,0.05) 80px),
    url("images/studio1_main.jpg") center / cover no-repeat,
    #0a0a0a;
}

.venue-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 72px;
  max-width: 1400px;
}

.venue-hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.35);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.venue-hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(247, 247, 245, 0.2);
}

.venue-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.venue-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(247, 247, 245, 0.55);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.venue-quick-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Fixed "Request venue info" tab pinned to the right edge of the page */
.venue-info-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  writing-mode: vertical-rl;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 22px 14px;
  background: var(--white);
  color: var(--black);
  border: none;
  cursor: pointer;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
  transition: padding 0.2s, background 0.2s;
}
.venue-info-tab:hover { padding-right: 20px; background: var(--off-white); }
@media (max-width: 640px) {
  .venue-info-tab { font-size: 0.68rem; padding: 16px 10px; letter-spacing: 0.05em; }
  /* Slim the header "Hire Now" so it fits on one line next to the menu icon. */
  .nav-right .btn-hire { padding: 7px 13px; font-size: 0.68rem; letter-spacing: 0.03em; }
}

/* On phones smaller than a Pro Max (~430px) the header "Hire Now" is too tight
   next to the menu icon — hide it there (it's still in the open menu). */
@media (max-width: 429px) {
  .nav-right .btn-hire { display: none; }
}

.vqs-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vqs-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.vqs-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.3);
}


/* ============================================================
   VENUE PAGES — WHITE SECTIONS
   ============================================================ */

.section-white {
  background: var(--white);
  color: var(--black);
  padding: 100px 40px;
}

.section-white .label { color: rgba(10, 10, 10, 0.4); }

.venue-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.venue-about-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 32px;
}

.venue-about-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(10, 10, 10, 0.65);
  margin-top: 40px;
  margin-bottom: 20px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.feature-item {
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: 0;
  transition: border-color 0.3s, background 0.3s;
}

.feature-item:hover {
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.02);
}

.feature-item-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.feature-item-desc {
  font-size: 0.8125rem;
  color: rgba(10, 10, 10, 0.5);
  line-height: 1.55;
}


/* ============================================================
   FLOOR / SPACE CARDS
   ============================================================ */

.floors-section {
  background: #efefec;
  color: var(--black);
  padding: 100px 40px;
}

.floors-label {
  max-width: 1400px;
  margin: 0 auto 48px;
}

.floor-cards {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floor-card {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: pointer;
}

.floor-card:hover { border-color: rgba(0,0,0,0.18); }

/* Lead photo per space */
.floor-card-photo {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-right: 1px solid var(--border-light);
  background: #ddd;
}
.floor-card-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.floor-card:hover .floor-card-photo img { transform: scale(1.04); }

.floor-card-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.35);
  margin-bottom: 12px;
}

.floor-card-body {
  padding: 40px 48px;
}

.floor-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.floor-card-desc {
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.55);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 24px;
}

.floor-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.floor-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border-light);
  border-radius: 0;
  color: rgba(10, 10, 10, 0.5);
}

.floor-card-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 40px 48px;
  border-left: 1px solid var(--border-light);
  min-width: 240px;
}

.floor-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floor-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.floor-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.35);
}


/* ============================================================
   DIAGRAM / FLOORPLAN PLACEHOLDER
   ============================================================ */

.floorplan-section {
  background: var(--off-white);
  padding: 80px 40px;
}

.floorplan-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.floorplan-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  border: 1px dashed rgba(10, 10, 10, 0.15);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(10, 10, 10, 0.25);
  margin-top: 40px;
}

.floorplan-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

.floorplan-placeholder-text {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}


/* ============================================================
   CONTACT / HIRE CTA
   ============================================================ */

.cta-section {
  padding: 160px 40px;
  text-align: center;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-eyebrow { margin-bottom: 24px; }

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 40px;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(247, 247, 245, 0.5);
  max-width: 440px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--white);
  color: var(--black);
  border-radius: 0;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(247, 247, 245, 0.2);
  color: rgba(247, 247, 245, 0.7);
  border-radius: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(247, 247, 245, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 64px auto 0;
}

.contact-item {
  padding: 32px;
  border: 1px solid var(--border-dark);
  transition: background 0.3s;
}

.contact-item:hover { background: rgba(255, 255, 255, 0.03); }

.contact-item-role {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.3);
  margin-bottom: 10px;
}

.contact-item-email {
  font-size: 0.875rem;
  color: rgba(247, 247, 245, 0.7);
  transition: color 0.2s;
}

.contact-item:hover .contact-item-email { color: var(--white); }


/* ============================================================
   TEAM PAGE
   ============================================================ */

.team-hero {
  padding: 200px 40px 80px;
}

.team-intro {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 700px;
  color: rgba(247, 247, 245, 0.75);
  margin-top: 32px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 120px;
}

.team-card {
  padding: 32px;
  border: 1px solid var(--border-dark);
  transition: background 0.3s;
}

.team-card:hover { background: rgba(255, 255, 255, 0.02); }

.team-card-avatar {
  width: 96px;
  height: 96px;
  border-radius: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: rgba(247, 247, 245, 0.4);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.team-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transition: filter 0.4s var(--ease);
}

.team-card:hover .team-card-avatar img { filter: grayscale(0%); }

.team-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.75rem;
  color: var(--mid);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.team-card-bio {
  font-size: 0.8125rem;
  color: rgba(247, 247, 245, 0.45);
  line-height: 1.6;
}


/* ============================================================
   FAQ PAGE
   ============================================================ */

.faq-hero {
  padding: 200px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 120px;
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.faq-question:hover { color: rgba(247, 247, 245, 0.7); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-dark);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: rgba(247, 247, 245, 0.4);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: rgba(247, 247, 245, 0.2);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 0.9375rem;
  color: rgba(247, 247, 245, 0.55);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }


/* ============================================================
   NEWS PAGE
   ============================================================ */

.news-hero {
  padding: 200px 40px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.news-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 120px;
}

/* Blog card — image led */
.news-card-full {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.4s var(--ease);
}

.news-card-full:hover { transform: translateY(-4px); }

/* Thumbnail */
.blog-thumb {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(135deg, #1a1a1a 0%, #0c0c0c 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  margin-bottom: 20px;
}

.blog-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(25%);
}

.news-card-full:hover .blog-thumb img { transform: scale(1.05); filter: grayscale(0%); }

/* Featured (first) card spans full width */
.news-card-full--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.news-card-full--featured .blog-thumb {
  aspect-ratio: 16 / 9;
  margin-bottom: 0;
  height: 100%;
}

.news-card-full--featured .news-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }

.news-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}

.news-card-full .news-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}

.news-card-full .news-excerpt {
  font-size: 0.9rem;
  color: rgba(247, 247, 245, 0.45);
  line-height: 1.65;
  margin-bottom: 20px;
}

.blog-card-body { display: flex; flex-direction: column; flex: 1; }

/* Tag pills */
.blog-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.blog-tag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.55);
  border: 1px solid var(--border-dark);
  padding: 4px 10px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.75rem;
}

.news-date { color: rgba(247, 247, 245, 0.6); }
.news-meta-dot { width: 3px; height: 3px; background: var(--mid); border-radius: 0; }
.news-author { color: rgba(247, 247, 245, 0.35); }
.news-readtime { margin-left: auto; color: var(--mid); }


/* ============================================================
   BLOG POST (ARTICLE PAGE)
   ============================================================ */

.post-wrap { max-width: var(--reading); margin: 0 auto; padding: 0 24px; }

.post-hero {
  padding: calc(var(--header-h) + 70px) 24px 0;
}

.post-breadcrumb {
  max-width: var(--reading);
  margin: 0 auto 28px;
  padding: 0 24px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--mid);
}
.post-breadcrumb a { color: var(--mid); transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--white); }

.post-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,247,245,0.6);
  margin-bottom: 18px;
}

.post-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--mid);
  padding-bottom: 40px;
}
.post-meta strong { color: rgba(247,247,245,0.75); font-weight: 500; }

.post-feature-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 0 0 56px;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(135deg, #1a1a1a 0%, #0c0c0c 100%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
}

.post-body { font-size: 1.0625rem; line-height: 1.8; color: rgba(247,247,245,0.78); }
.post-body > * + * { margin-top: 26px; }
.post-body img { width: 100%; height: auto; display: block; border-radius: 8px; margin: 34px 0; }
.post-body strong { color: var(--white); font-weight: 600; }
.post-body p { margin: 0; }
.post-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-top: 48px;
}
.post-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  margin-top: 36px;
}
.post-body a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.post-body ul, .post-body ol { padding-left: 22px; }
.post-body li { margin-top: 10px; }
.post-body blockquote {
  border-left: 2px solid var(--white);
  padding-left: 24px;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
}

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 56px; }

.post-author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
}
.post-author-avatar {
  width: 48px; height: 48px;
  background: #1c1c1c;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--white);
}
.post-author-name { font-weight: 500; color: var(--white); font-size: 0.95rem; }
.post-author-role { font-size: 0.8rem; color: var(--mid); }

.post-divider { max-width: var(--reading); margin: 80px auto 0; height: 1px; background: var(--border-dark); }


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}


/* ============================================================
   DIVIDER LINE
   ============================================================ */

.divider {
  height: 1px;
  background: var(--border-dark);
  margin: 0 40px;
}

.divider-light {
  height: 1px;
  background: var(--border-light);
}


/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 60px; }

  .section { padding: 80px 24px; }
  .section-sm { padding: 60px 24px; }

  .site-header { padding: 0 24px; }
  .nav-center { display: none; }
  .nav-login { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 0 24px 48px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-scroll { margin-right: 0; }

  .venues-grid { grid-template-columns: 1fr; }
  .venue-card { height: 55vh; }

  .events-grid { grid-template-columns: repeat(2, 1fr); }

  .intro-inner { grid-template-columns: 1fr; gap: 40px; }

  .news-grid { grid-template-columns: 1fr; }
  .news-full-grid { grid-template-columns: 1fr; padding: 0 24px 80px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .venue-hero-content { padding: 0 24px 56px; }
  .venue-quick-stats { flex-wrap: wrap; gap: 24px; }

  .venue-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-list { grid-template-columns: 1fr; }

  .floor-card { grid-template-columns: 1fr; }
  .floor-card-photo { min-height: 220px; border-right: none; border-bottom: 1px solid var(--border-light); }
  .floor-card-stats { border-left: none; border-top: 1px solid var(--border-light); padding: 24px 24px 32px; min-width: auto; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .floor-card-body { padding: 24px; }

  .cta-contact-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 80px; }
  .team-hero { padding: 160px 24px 60px; }

  .faq-list { padding: 0 24px 80px; }
  .faq-hero { padding: 160px 24px 60px; }

  .news-hero { padding: 160px 24px 60px; }

  .site-footer { padding: 60px 24px 32px; }

  .floors-section { padding: 0 24px 80px; }
  .floorplan-section { padding: 60px 24px; }

  .cta-section { padding: 100px 24px; }

  .section-white { padding: 80px 24px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2rem, 10vw, 4rem); }
  .venue-hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .events-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .venue-card { height: 65vw; min-height: 320px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .venues-grid { gap: 1px; }
  .marquee-section { display: none; }
}


/* ============================================================
   WHAT'S ON
   ============================================================ */

.whatson-hero {
  padding: calc(var(--header-h) + 90px) 40px 50px;
}

.whatson-hero-eyebrow { margin-bottom: 18px; }

.whatson-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--white);
}

.whatson-sub {
  margin-top: 20px;
  max-width: 520px;
  color: rgba(247, 247, 245, 0.55);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Filter bar */
.whatson-filters {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 18px 40px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.filter-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(247, 247, 245, 0.55);
  padding: 9px 18px;
  border: 1px solid var(--border-dark);
  background: transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }

.filter-btn.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.filter-spacer { flex: 1; }

.filter-count {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}

/* Events grid */
.whatson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.whatson-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--black);
  padding: 32px;
  min-height: 340px;
  transition: background 0.3s var(--ease);
}

.whatson-card:hover { background: #131313; }

.whatson-card.is-hidden { display: none; }

.whatson-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.event-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid transparent;
}

.event-type--electronic {
  color: #02FA62;
  border-color: rgba(2, 250, 98, 0.4);
  background: rgba(2, 250, 98, 0.1);
}

.event-type--live {
  color: #F15537;
  border-color: rgba(241, 85, 55, 0.45);
  background: rgba(241, 85, 55, 0.1);
}

.event-venue {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-left: auto;
}

.whatson-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 12px;
}

.whatson-card-lineup {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(247, 247, 245, 0.5);
  font-weight: 300;
}

.whatson-card-meta {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border-dark);
}

.whatson-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}

.whatson-time {
  font-size: 0.8rem;
  color: var(--mid);
  letter-spacing: 0.04em;
}

.whatson-ticket {
  margin-top: 20px;
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  transition: transform 0.2s var(--ease);
}

.whatson-ticket .ticket-label {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  transition: background 0.2s;
}

/* Angled RA-branded tab at the end of the button */
.whatson-ticket .ra-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff4848;
  padding: 0 18px 0 26px;
  margin-left: auto;
  clip-path: polygon(18px 0, 100% 0, 100% 102%, 0% 102%);
  transition: background 0.2s;
}

.whatson-ticket .ra-badge img {
  width: 26px;
  height: auto;
  /* RA mark ships near-black — invert to white over the red */
  filter: brightness(0) invert(1);
}

/* See Tickets events — text badge in place of the RA mark */
.whatson-ticket .ra-badge--see {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.whatson-ticket:hover { transform: translateY(-2px); }
.whatson-ticket:hover .ticket-label { background: rgba(247,247,245,0.85); }
.whatson-ticket:hover .ra-badge { background: #ff5e5e; }

.whatson-empty {
  grid-column: 1 / -1;
  padding: 80px 40px;
  text-align: center;
  color: var(--mid);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .whatson-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .whatson-hero { padding: calc(var(--header-h) + 50px) 24px 36px; }
  .whatson-filters { padding: 14px 24px; }
  .whatson-grid { grid-template-columns: 1fr; }
  .filter-spacer, .filter-count { display: none; }
}

@media (max-width: 900px) {
  .news-full-grid { grid-template-columns: 1fr 1fr; }
  .news-card-full--featured { grid-template-columns: 1fr; gap: 20px; }
  .news-card-full--featured .blog-thumb { aspect-ratio: 16 / 9; margin-bottom: 0; }
}
@media (max-width: 600px) {
  .news-full-grid { grid-template-columns: 1fr; }
}

/* What's On — filter groups + animation */
.filter-group { display: flex; align-items: center; gap: 8px; }

.filter-divider {
  width: 1px;
  height: 22px;
  background: var(--border-dark);
  margin: 0 6px;
}

.whatson-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  will-change: opacity, transform;
}

/* Mid-transition state — cards ease out before the grid reflows */
.whatson-card.is-out {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

@media (max-width: 680px) {
  .filter-divider { display: none; }
  .whatson-filters { gap: 6px; }
}



/* Floorplan display panel (dark line-art on white) */
.floorplan-frame {
  margin-top: 0;
  background: transparent;
  overflow: hidden;
}
.floorplan-frame img { width: 100%; height: auto; display: block; }

/* Floor plan block inside the About (white) section — sits in the left column under the heading */
.wynwood-floorplan-block { margin-top: 28px; }

/* Street view map */
.wynwood-map { line-height: 0; background: #000; }
.wynwood-map iframe { width: 100%; height: 800px; border: 0; display: block; }
@media (max-width: 768px) { .wynwood-map iframe { height: 460px; } }

/* ============================================================
   News browser — grid/list toggle, pagination, tidy cards
   ============================================================ */
.news-browser { max-width: 1400px; margin: 0 auto; padding: 0 40px 120px; }

.news-toolbar { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; margin-bottom: 36px; gap: 16px; }
.news-count { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,247,245,0.4); }
.news-view-toggle { display: inline-flex; border: 1px solid rgba(247,247,245,0.14); }
.news-view-toggle button {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  background: transparent; color: rgba(247,247,245,0.5); border: none; cursor: pointer; transition: color 0.2s, background 0.2s;
}
.news-view-toggle button + button { border-left: 1px solid rgba(247,247,245,0.14); }
.news-view-toggle button:hover { color: var(--white); }
.news-view-toggle button.on { background: var(--white); color: var(--black); }

/* ---- Grid view ---- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
.news-grid .ncard { display: flex; flex-direction: column; }
.news-grid .ncard-thumb { aspect-ratio: 3 / 2; margin-bottom: 18px; }

/* ---- List view ---- */
.news-list { display: flex; flex-direction: column; }
.news-list .ncard { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: center; padding: 28px 0; border-top: 1px solid rgba(247,247,245,0.1); }
.news-list .ncard:last-child { border-bottom: 1px solid rgba(247,247,245,0.1); }
.news-list .ncard-thumb { aspect-ratio: 16 / 10; }
.news-list .ncard-title { font-size: 1.5rem; }
.news-list .ncard-excerpt { -webkit-line-clamp: 2; }

/* ---- Card ---- */
.ncard { text-decoration: none; color: inherit; }
.ncard-thumb { overflow: hidden; background: rgba(247,247,245,0.05); border-radius: 4px; }
.ncard-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(20%); transition: transform 0.5s var(--ease), filter 0.5s; }
.ncard:hover .ncard-thumb img { transform: scale(1.05); filter: grayscale(0%); }
.ncard-body { display: flex; flex-direction: column; min-width: 0; }
.ncard-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; line-height: 1.25; letter-spacing: -0.01em; color: var(--white); margin: 0 0 10px; }
.ncard:hover .ncard-title { color: rgba(247,247,245,0.75); }
.ncard-excerpt {
  font-size: 0.9rem; line-height: 1.6; color: rgba(247,247,245,0.55); margin: 0 0 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ncard-meta { display: flex; align-items: center; gap: 9px; margin-top: auto; font-size: 0.76rem; color: rgba(247,247,245,0.4); }
.ncard-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(247,247,245,0.3); flex-shrink: 0; }

.news-empty { max-width: 1400px; margin: 0 auto; padding: 0 40px 120px; color: rgba(247,247,245,0.5); }

/* ---- Pagination ---- */
.news-pager { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 64px; }
.news-pager-nums { display: flex; gap: 4px; }
.news-pager-num {
  min-width: 34px; height: 34px; padding: 0 6px; border: 1px solid transparent; background: transparent;
  color: rgba(247,247,245,0.5); font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.15s;
}
.news-pager-num:hover { color: var(--white); }
.news-pager-num.on { background: var(--white); color: var(--black); }
.news-pager-btn { background: none; border: none; color: rgba(247,247,245,0.6); font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: color 0.15s; }
.news-pager-btn:hover:not(:disabled) { color: var(--white); }
.news-pager-btn:disabled { opacity: 0.3; cursor: default; }

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .news-browser { padding: 0 24px 80px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-list .ncard { grid-template-columns: 1fr; gap: 14px; }
  .news-pager { gap: 10px; }
  .news-pager-nums { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   Venue location map — clean minimal B&W (Leaflet + CARTO light)
   ============================================================ */
.venue-map { position: relative; width: 100%; height: 520px; background: #f2f2f0; overflow: hidden; }
.venue-map-canvas { position: absolute; inset: 0; filter: grayscale(1) contrast(1.04); }
.leaflet-container { background: #f2f2f0; font-family: 'Inter', sans-serif; }
/* Minimal Leaflet chrome */
.leaflet-control-zoom { border: none !important; box-shadow: none !important; margin: 20px !important; }
.leaflet-control-zoom a { width: 30px; height: 30px; line-height: 30px; color: #0a0a0a; background: #fff; border: 1px solid rgba(10,10,10,0.12); }
.leaflet-control-zoom a:hover { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.leaflet-control-attribution { background: rgba(255,255,255,0.7) !important; font-size: 10px; color: rgba(10,10,10,0.4); }
.leaflet-control-attribution a { color: rgba(10,10,10,0.6); }

/* Address card overlay */
.venue-map-card {
  position: absolute; z-index: 500; left: 40px; bottom: 40px;
  background: #0a0a0a; color: #f7f7f5; padding: 22px 26px; max-width: 320px;
}
.venue-map-label { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.venue-map-address { font-size: 0.85rem; color: rgba(247,247,245,0.6); margin-top: 6px; line-height: 1.5; }

@media (max-width: 680px) {
  .venue-map { height: 400px; }
  .venue-map-card { left: 20px; right: 20px; bottom: 20px; max-width: none; padding: 18px 20px; }
}


/* ══════════════════════════════════════════════════════════════
   EVENT TYPE PAGES
   ══════════════════════════════════════════════════════════════ */
.et-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.et-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
}
.et-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.92) 100%);
}
.et-hero-content {
  position: relative;
  width: 100%;
  padding-top: 200px;
  padding-bottom: 72px;
  padding-left: 40px;
  padding-right: 40px;
}
.et-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.et-hero-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(247,247,245,0.5);
}
.et-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
  margin: 0;
}
.et-hero-lead {
  margin-top: 26px;
  max-width: 620px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: rgba(247,247,245,0.72);
}

.et-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}
.et-stat {
  margin-top: 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(10,10,10,0.85);
  border-left: 2px solid var(--black);
  padding-left: 20px;
}

.et-gallery-section {
  background: var(--black);
  padding: 120px 40px;
}
.et-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 48px 24px 0;
  max-width: 1600px;
  margin: 0 auto;
}
.et-gallery-item {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #141414;
}
.et-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.et-gallery-item:hover img { transform: scale(1.05); }

.et-back {
  display: inline-block;
  margin: 0 24px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  color: rgba(247,247,245,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.et-back:hover { color: var(--white); }

@media (max-width: 900px) {
  .et-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .et-gallery { grid-template-columns: repeat(3, 1fr); }
  .et-gallery-section { padding: 80px 40px; }
}
@media (max-width: 560px) {
  .et-hero-content { padding-top: 160px; padding-bottom: 48px; }
  .et-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ── Careers / jobs ──────────────────────────────────────────── */
.careers-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.careers-job {
  border-bottom: 1px solid var(--border-dark);
  padding: 48px 0;
}
.careers-job:first-child { padding-top: 0; }
.careers-job-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.careers-job-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.careers-job-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.careers-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--white);
  color: var(--black);
}
.careers-job-loc { font-size: 0.85rem; color: rgba(247, 247, 245, 0.4); }
.careers-job-section {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.4);
  margin-bottom: 18px;
}
.careers-points { list-style: none; margin: 0 0 28px; padding: 0; }
.careers-points li {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(247, 247, 245, 0.75);
  font-weight: 300;
}
.careers-arrow { color: rgba(247, 247, 245, 0.4); flex: none; }
.careers-apply-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  border-bottom: 1px solid rgba(247, 247, 245, 0.3);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.careers-apply-link:hover { border-color: var(--white); }

/* Apply section */
.careers-apply {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px 140px;
}
.careers-apply-intro { text-align: center; margin-bottom: 56px; }
.careers-form { display: flex; flex-direction: column; gap: 22px; }
.careers-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.careers-field { display: flex; flex-direction: column; gap: 8px; }
.careers-field > span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 247, 245, 0.5);
}
.careers-field input,
.careers-field select,
.careers-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(247, 247, 245, 0.18);
  border-radius: 0;
  padding: 14px 16px;
  transition: border-color 0.2s;
  width: 100%;
}
.careers-field textarea { resize: vertical; }
.careers-field input:focus,
.careers-field select:focus,
.careers-field textarea:focus {
  outline: none;
  border-color: rgba(247, 247, 245, 0.6);
}
.careers-field select option { background: var(--black); color: var(--white); }
.careers-field input[type="file"] { padding: 12px 16px; font-size: 0.85rem; color: rgba(247, 247, 245, 0.6); }
.careers-field input[type="file"]::file-selector-button {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 14px;
  padding: 8px 16px;
  background: rgba(247, 247, 245, 0.1);
  color: var(--white);
  border: none;
  cursor: pointer;
}
.careers-form .btn-primary { margin-top: 8px; align-self: flex-start; border: none; cursor: pointer; }
.careers-form .btn-primary:disabled { opacity: 0.55; cursor: default; }
.careers-form-error { color: #ff6b6b; font-size: 0.9rem; }
.careers-form-done {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px 160px;
  text-align: center;
}
.careers-form-done h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.careers-form-done p { color: rgba(247, 247, 245, 0.5); font-weight: 300; line-height: 1.7; }

@media (max-width: 640px) {
  .careers-field-row { grid-template-columns: 1fr; }
  .careers-job { padding: 36px 0; }
}
