@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500&display=swap');
/* ═══════════════════════════════════════════════════════════
   MASTERMIND PAGE — OOAK Layout (Light Theme, Brutalist 0px)
   Matches the luxury spacious feel of ooakbrands.com
   while strictly maintaining ESBG brutalist 0px corners.
   ═══════════════════════════════════════════════════════════ */

.mastermind-page {
  /* Warm Tuscan palette, mirroring ooakbrands.com/mastermind3 */
  --bg-color: #e9e8e4;
  --card-bg: #f6f4f0;  /* warm off-white — lifts above the bg, not gray */
  --text-main: #34322e;
  --text-muted: #6f6b63;
  --border-color: rgba(52, 50, 46, 0.08);
  --gold: #9a7a4b;
  /* Soft, gold-tinted elevation used on OOAK's cards */
  --mm-shadow:
    0 22px 48px -16px rgba(52, 50, 46, 0.22),
    0 6px 18px -8px rgba(154, 122, 75, 0.14),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.7),
    inset 0 0 0 1px rgba(52, 50, 46, 0.04);
  background: var(--bg-color);
  color: var(--text-main);
}

/* LIGHT THEME NAVBAR OVERRIDES */
.mastermind-page .navbar {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.mastermind-page .navbar__logo,
.mastermind-page .nav-link--active {
  color: #111;
}

.mastermind-page .nav-link {
  color: #333;
}

.mastermind-page .nav-dot {
  background: #111;
}

.mastermind-page .hamburger {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.05);
  color: #111;
}

.mastermind-page .hamburger:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mastermind-page .mobile-menu {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.12);
}

.mastermind-page .mobile-menu .nav-link {
  color: #333;
}

/* ── Hero ────────────────────────────────────────────────── */
.mm-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 60%, var(--bg-color) 100%), url('../assets/mm-location-1.webp') no-repeat center center / cover;
}

.mm-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.mm-hero__meta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.mm-hero__title {
  font-family: 'SUSE', sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.mm-hero__subtitle {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 40px;
  max-width: 640px;
}

/* ── Sections / kicker / headings ────────────────────────── */
.mm-section {
  padding: 120px 24px;
}

.mm-section--bordered {
  border-bottom: 1px solid var(--border-color);
}

.mm-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.mm-kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.mm-h2 {
  font-family: 'SUSE', sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--text-main);
}

.mm-lead {
  /* Inter, light weight — matches OOAK's body copy */
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(52, 50, 46, 0.82);
  max-width: 680px;
  margin: 0 auto 24px;
}

/* ── Bento Grid (Location) ───────────────────────────────── */
.mm-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .mm-bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mm-bento-card--large {
    grid-column: 1 / -1;
  }
}

.mm-bento-card {
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  border-radius: 0;
  /* Strict brutalist rule */
  display: flex;
  flex-direction: column;
  box-shadow: var(--mm-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mm-bento-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.mm-bento-card:not(.mm-bento-card--large) .mm-bento-img {
  aspect-ratio: 4 / 3;
}

.mm-bento-content {
  padding: 32px 24px;
  text-align: center;
}

.mm-bento-content h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.mm-bento-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── Grids & cards (Event) ───────────────────────────────── */
.mm-grid {
  display: grid;
  gap: 24px;
  margin-top: 64px;
  text-align: left;
}

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

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

.mm-card {
  border: 1px solid var(--border-color);
  border-radius: 0;
  /* Strict brutalist rule */
  background: var(--card-bg);
  box-shadow: var(--mm-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.mm-card--image {
  padding: 0;
}

.mm-card-img {
  width: 100%;
  aspect-ratio: 2.8;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.mm-card-body {
  padding: 40px 32px;
}

.mm-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.mm-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.mm-card--plain {
  text-align: center;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 16px;
}

.mm-card-img-wrap {
  position: relative;
  width: 100%;
}

.mm-card-chip {
  position: absolute;
  top: 16px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0;
  /* Strict brutalist rule */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mm-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  /* Strict brutalist rule */
  padding: 4px 10px;
  margin-bottom: 24px;
}

/* ── Marquee ─────────────────────────────────────────────── */
.mm-marquee-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.mm-marquee-kicker {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 40px;
}

.mm-marquee {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.mm-marquee::before,
.mm-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
}

.mm-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color), transparent);
}

.mm-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color), transparent);
}

.mm-marquee__inner {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: marquee 30s linear infinite;
  padding-left: 80px;
}

.mm-marquee__inner img {
  height: 32px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%) contrast(200%);
  transition: opacity 0.3s;
}

.mm-marquee__inner img:hover {
  opacity: 0.8;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Pricing card ────────────────────────────────────────── */
.mm-pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* symmetric halves */
  border: 1px solid var(--border-color);
  border-radius: 0;
  /* Strict brutalist rule */
  background: var(--card-bg);
  padding: 56px 64px;
  margin-top: 64px;
  box-shadow: var(--mm-shadow);
}
/* Left half: title + chip + price, centered in the half */
.mm-pricing-card__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Right half: inclusions, with the vertical divider between the halves */
.mm-pricing-card__right {
  border-left: 1px solid var(--border-color);
  padding-left: 56px;
}

.mm-pricing-card__price {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  margin: 24px 0;
  color: #111;
}

.shiny-text {
  color: transparent;
  background: linear-gradient(100deg, #9a7a4b 0%, #e7cd9a 25%, #9a7a4b 50%, #e7cd9a 75%, #9a7a4b 100%) 0 0/200%;
  -webkit-background-clip: text;
  background-clip: text;
  padding: .06em .1em .2em;
  line-height: 1.15;
  animation: 6s linear infinite ms-shimmer;
  display: inline-block;
}

@keyframes ms-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.mm-pricing-card__note {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.mm-pricing-card__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}

.mm-pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mm-pricing-list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.mm-pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #34322e;
  transform: rotate(45deg);
}

/* ── Urgency Bar ─────────────────────────────────────────── */
.mm-urgency {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(156, 124, 56, 0.4);
  background: rgba(156, 124, 56, 0.1);
  padding: 12px 24px;
  margin: 32px auto 0;
  border-radius: 0;
  /* Strict brutalist rule */
}

.mm-urgency__dot {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
}

.mm-urgency__dot-ping {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #9c7c38;
  opacity: 0.6;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.mm-urgency__dot-solid {
  position: relative;
  width: 100%;
  height: 100%;
  background: #9c7c38;
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.mm-urgency__text {
  font-size: 13px;
  font-weight: 600;
  color: #7d6238;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {

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

  .mm-pricing-card {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  /* Stacked: divider goes horizontal, drop the side paddings */
  .mm-pricing-card__left {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .mm-pricing-card__right {
    border-left: none;
    border-top: 1px solid var(--border-color);
    padding-left: 0;
    padding-top: 40px;
  }

  .mm-section {
    padding: 80px 20px;
  }
}

/* ── Footer ──────────────────────────────────────────────── */
.mm-footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  background: var(--bg-color);
}

.mm-footer p {
  color: var(--text-muted);
  font-size: 14px;
}
/* ── THE ESTATE — single main image as a slider ──────────── */
.mm-estate {
  max-width: 900px;
  margin: 48px auto 24px;
}

.mm-slider {
  position: relative;
}

.mm-slider__viewport {
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  border-radius: 0; /* Strict brutalist rule */
  box-shadow: var(--mm-shadow);
}

.mm-slider__track {
  display: flex;
  transition: transform 0.4s ease-out;
}

/* Each slide is the zoom button itself */
.mm-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.mm-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Arrows + counter overlaid on the image */
.mm-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  border-radius: 0; /* Strict brutalist rule */
  transition: background 0.1s linear, color 0.1s linear, border-color 0.1s linear;
}

.mm-slider__arrow:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.mm-slider__arrow[hidden] { display: none; }
.mm-slider__arrow--prev { left: 16px; }
.mm-slider__arrow--next { right: 16px; }

.mm-slider__count {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Caption sits under the estate slider */
.mm-estate__caption {
  padding: 28px 24px 0;
  text-align: center;
}

.mm-estate__caption h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.mm-estate__caption p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Three static cards below the estate */
.mm-bento-grid--three {
  margin-top: 40px;
}

/* ── LIGHTBOX (click-to-enlarge) ─────────────────────────── */
.mm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 80px;
}

.mm-lightbox[hidden] {
  display: none;
}

.mm-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.mm-lightbox__img {
  position: relative;
  z-index: 1;
  max-width: min(1400px, 100%);
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0; /* Strict brutalist rule */
}

.mm-lightbox__close,
.mm-lightbox__arrow {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  border-radius: 0; /* Strict brutalist rule */
  transition: background 0.1s linear, color 0.1s linear, border-color 0.1s linear;
}

.mm-lightbox__close:hover,
.mm-lightbox__arrow:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.mm-lightbox__close {
  top: 24px;
  right: 24px;
}

.mm-lightbox__arrow {
  top: 50%;
  transform: translateY(-50%);
}

.mm-lightbox__arrow--prev {
  left: 20px;
}

.mm-lightbox__arrow--next {
  right: 20px;
}

@media (max-width: 700px) {
  .mm-lightbox {
    padding: 64px 12px;
  }

  .mm-lightbox__arrow--prev {
    left: 8px;
  }

  .mm-lightbox__arrow--next {
    right: 8px;
  }

  .mm-estate__caption {
    padding: 20px 16px 0;
  }
}
