* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #171717;
  background: #f3f1ed;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

a {
  color: inherit;
}

/* HERO */

.team-hero {
  position: relative;
  min-height: 88vh;
  color: #fff;
  overflow: hidden;
  background: #050505;
}

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

.team-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.55) 42%, rgba(0,0,0,0.22) 100%),
    linear-gradient(to top, rgba(0,0,0,0.34), transparent 48%);
  z-index: 1;
}

.site-nav {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: auto;
  padding: 14px 40px 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 42px;
  align-items: center;
  font-weight: 700;
  font-size: 13px;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.92;
  padding-bottom: 8px;
}

.nav-links a.active {
  border-bottom: 3px solid #d89a37;
}

.nav-cta {
  border: 1px solid rgba(238, 164, 74, 0.95);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  background: rgba(0,0,0,0.20);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  white-space: nowrap;
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: calc(88vh - 62px);
  width: 100%;
  padding: 34px 64px 48px 64px;
  display: grid;
  grid-template-columns: minmax(460px, 640px) 1fr;
  gap: 32px;
  align-items: center;
}

.team-hero-content {
  max-width: 640px;
}

.team-hero h1 {
  margin: 0 0 20px 0;
  font-size: 62px;
  line-height: 0.98;
  letter-spacing: -1.5px;
}

.team-hero h1 em {
  color: #e0a23f;
  font-style: italic;
}

.team-hero-sub {
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 1.35;
  max-width: 545px;
  font-weight: 700;
}

.team-hero-sub.second {
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 26px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 25px;
  background: linear-gradient(180deg, #efb24f 0%, #c97035 100%);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(181, 95, 67, 0.28);
}

.hero-logo-lower {
  display: block;
  width: 178px;
  margin-top: 48px;
}

/* HERO PLANNING BRIEF PROMPT */

.hero-brief-prompt {
  justify-self: end;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(0,0,0,0.34);
  border: 1px solid rgba(255,255,255,0.26);
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
  margin-right: 42px;
  transform: translateY(20px);
  text-decoration: none;
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hero-brief-prompt:hover {
  background: rgba(0,0,0,0.46);
  border-color: rgba(255,255,255,0.42);
  transform: translateY(18px);
}

.brief-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.hero-brief-prompt strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.hero-brief-prompt span {
  display: block;
  font-size: 12px;
  opacity: 0.92;
}

/* SHARED SECTION STYLES */

.section-kicker,
.dark-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #b66b2a;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-kicker::before,
.section-kicker::after,
.dark-kicker::before,
.dark-kicker::after {
  content: "";
  width: 44px;
  height: 1px;
  background: #c6843c;
}

/* WHAT THIS IS */

.what-this-is {
  background: radial-gradient(circle at center top, #fff 0%, #f3f1ed 62%);
  padding: 46px 0 22px 0;
  text-align: center;
}

.what-this-is h2 {
  margin: 0 0 38px 0;
  font-size: 36px;
  line-height: 1.15;
  font-family: Georgia, serif;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.what-card {
  padding: 0 26px;
  border-right: 1px solid rgba(0,0,0,0.15);
}

.what-card:last-child {
  border-right: none;
}

.icon {
  font-size: 42px;
  color: #b66b2a;
  margin-bottom: 14px;
}

.what-card h3 {
  margin: 0 0 10px 0;
  font-size: 17px;
}

.what-card p {
  margin: 0;
  line-height: 1.48;
  color: #333;
}

.legendary-line {
  margin: 46px auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.legendary-line span {
  width: 80px;
  height: 1px;
  background: rgba(182,107,42,0.55);
}

.legendary-line p {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  font-family: Georgia, serif;
  font-weight: 700;
}

.legendary-line em {
  color: #b66b2a;
}

/* EXPERIENCE BAND */

.experience-band-section {
  background: #f3f1ed;
}

.experience-band-wrap {
  width: 100%;
  height: clamp(420px, 40vw, 615px);
  overflow: hidden;
  background: #f3f1ed;
}

.experience-band-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.location-row {
  max-width: 1200px;
  margin: auto;
  padding: 22px 24px 30px 24px;
}

.location-row-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 22px;
}

.location-item-wide strong {
  font-family: Georgia, serif;
  font-size: 25px;
}

.pin {
  color: #b66b2a;
  font-size: 26px;
}

.location-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #333;
  text-align: center;
  font-size: 16px;
}

.location-copy i {
  height: 24px;
  width: 1px;
  background: rgba(0,0,0,0.18);
  display: block;
}

/* APPROACH */

.approach {
  background:
    radial-gradient(circle at center, rgba(24,70,96,0.22), transparent 56%),
    linear-gradient(180deg, #08131c 0%, #061019 100%);
  color: white;
  padding: 62px 0 66px 0;
}

.approach .dark-kicker {
  color: #e0a23f;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
}

.approach-card {
  padding: 0 36px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.approach-card:last-child {
  border-right: none;
}

.approach-icon {
  font-size: 40px;
  color: #e0a23f;
  margin-bottom: 20px;
}

.approach-card h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
}

.approach-card p {
  margin: 0;
  line-height: 1.55;
  opacity: 0.92;
}

/* USE CASES */

.use-cases {
  background: #f3f1ed;
  padding: 52px 0 58px 0;
  text-align: center;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 28px;
}

.use-card {
  padding: 0 22px;
  border-right: 1px solid rgba(0,0,0,0.13);
}

.use-card:last-child {
  border-right: none;
}

.use-icon {
  color: #b66b2a;
  font-size: 38px;
  margin-bottom: 14px;
}

.use-card h3 {
  margin: 0 0 10px 0;
  font-size: 17px;
}

.use-card p {
  margin: 0;
  line-height: 1.45;
  color: #333;
}

/* IMPACT */

.video-impact {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: #07121a;
  color: white;
}

.video-block {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.video-block img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  opacity: 0.86;
}

.brief-pill {
  position: absolute;
  left: 36px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.34);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  backdrop-filter: blur(5px);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.brief-pill:hover {
  background: rgba(0,0,0,0.66);
  border-color: rgba(255,255,255,0.52);
  transform: translateY(-1px);
}

.brief-icon-small {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.impact-copy {
  padding: 54px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at right, rgba(224,162,63,0.12), transparent 48%),
    #061019;
}

.impact-copy h2 {
  margin: 0 0 18px 0;
  font-size: 42px;
  line-height: 1;
  font-family: Georgia, serif;
}

.impact-copy h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #e0a23f;
  margin-top: 18px;
}

.impact-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  max-width: 420px;
}

/* FINAL */

.team-final {
  background: #061019;
  color: white;
  padding: 42px 0 36px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.final-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 42px;
  align-items: center;
}

.final-grid h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  font-family: Georgia, serif;
}

.final-grid h2 em {
  color: #e0a23f;
}

.final-copy p {
  margin: 0 0 8px 0;
  line-height: 1.45;
}

.final-cta {
  border: 1px solid #d89a37;
  color: white;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-points {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.footer-points div {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.footer-points div:last-child {
  border-right: none;
}

.footer-points strong {
  display: block;
  margin-bottom: 8px;
}

.footer-points p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.4;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .site-nav {
    padding: 18px 22px 0 22px;
    justify-content: flex-end;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding: 12px 14px;
    font-size: 13px;
  }

  .team-hero {
    min-height: 760px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 68px 24px 54px 24px;
  }

  .team-hero h1 {
    font-size: 44px;
  }

  .hero-logo-lower {
    width: 150px;
  }

  .hero-brief-prompt {
    justify-self: start;
    margin-top: 18px;
    margin-right: 0;
    padding: 9px 12px;
    transform: none;
  }

  .hero-brief-prompt:hover {
    transform: none;
  }

  .brief-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .what-grid,
  .approach-grid,
  .use-grid,
  .video-impact,
  .final-grid,
  .footer-points {
    grid-template-columns: 1fr;
  }

  .what-card,
  .approach-card,
  .use-card,
  .footer-points div {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    padding: 24px 0;
  }

  .approach-card {
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .legendary-line {
    gap: 18px;
  }

  .legendary-line span {
    width: 44px;
  }

  .legendary-line p {
    font-size: 28px;
  }

  .experience-band-wrap {
    height: 360px;
  }

  .location-row-single {
    gap: 12px;
  }

  .location-item-wide strong {
    font-size: 22px;
    text-align: center;
  }

  .location-copy {
    flex-direction: column;
    gap: 8px;
  }

  .location-copy i {
    display: none;
  }

  .brief-pill {
    left: 50%;
    transform: translateX(-50%);
  }

  .brief-pill:hover {
    transform: translateX(-50%);
  }

  .impact-copy {
    padding: 42px 28px;
  }
}

/* === FIX: Center Offsite Events Block === */

.location-row-single {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 16px 0;
}

.location-item-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.location-item-wide strong {
  font-size: 26px;
  font-family: Georgia, serif;
  line-height: 1.2;
}

.location-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  opacity: 0.9;
}

/* cleaner divider */
.location-copy i {
  width: 1px;
  height: 14px;
  background: #bbb;
  display: inline-block;
}