/* 
  Brand Colors (The Guild):
  White Background: #FFFFFF
  Deep Grey: #2A2E33
  Vibrant Orange: #FF5A1F
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800&family=Caveat:wght@400;700&display=swap');

:root {
  --brand-dark: #2A2E33;
  /* Dark Grey */
  --brand-light: #FAFAFA;
  /* Off-White to prevent harshness on large screens */
  --brand-orange: #FF5A1F;
  /* Punchy Orange */
  --text-dark: #2A2E33;
  --text-light: #525B66;

  --border-radius: 16px;
  --button-radius: 100px;
  --soft-shadow: 0 12px 30px rgba(7, 11, 52, 0.08);
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--brand-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  color: var(--brand-dark);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.marker-font {
  font-family: 'Caveat', cursive;
  font-size: 1.5em;
  transform: rotate(-3deg);
  display: inline-block;
  color: var(--brand-orange);
}

p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

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

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  cursor: pointer;
  border-radius: var(--button-radius);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  border: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(42, 46, 51, 0.15);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--brand-dark);
  color: #FFF;
}

.btn-primary:hover {
  background-color: #1a1c1f;
  color: #FFF;
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand-orange);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--brand-orange);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: #FFF;
}

.btn-secondary:hover::after {
  width: 100%;
}

/* Secondary Button (Signup) */
.btn-vibrant {
  background: var(--brand-orange);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-vibrant:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* WIP Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 21, 30, 0.85);
  /* Deep charcoal overlay */
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  width: 90%;
  max-width: 550px;
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--brand-orange);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.modal-badge {
  display: inline-block;
  background: var(--brand-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.modal-body {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  text-align: center;
}

.modal-form {
  display: grid;
  gap: 1.2rem;
}

.modal-input {
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.modal-input:focus {
  border-color: var(--brand-orange);
}

.modal-btn {
  background: var(--brand-orange);
  color: white;
  padding: 1.2rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-btn:hover {
  background: var(--brand-orange);
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .modal-content {
    padding: 2.5rem 1.5rem;
  }
}

/* Navigation */
.main-nav {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 72px;
  width: auto;
}

.logo-text {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 2rem;
  color: var(--brand-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--brand-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
@media (max-width: 768px) {
  .logo img {
    height: 52px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1050;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.8rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
  }

  .nav-actions {
    display: none;
  }

  .nav-actions.mobile-open {
    display: flex;
    position: fixed;
    bottom: 3rem;
    left: 0;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    z-index: 1060;
    padding: 0 5%;
  }

  .nav-actions.mobile-open .btn {
    flex: 1;
    text-align: center;
  }
}

/* Page Header Utilities */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 5%;
}

.section-header h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

.section-padding {
  padding: clamp(3rem, 6vh, 6rem) 0;
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  background-color: transparent;
  padding: 2rem 0;
  /* margin-top: 5rem; */
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 2.5rem;
  color: var(--brand-dark);
  opacity: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marquee-content span {
  padding-right: 2rem;
}

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

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

/* Hero Section */
.hero {
  padding: 6rem 5% 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-image: linear-gradient(rgba(255, 90, 31, 0.4), rgba(42, 46, 51, 0.6)), url('./media/creative-density/creative-density-branding-photos-by-DgassPhotography.com-4402.jpg');
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: white;
  margin-bottom: 2rem;
  max-width: 900px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle-block {
  max-width: 600px;
  margin-bottom: 3rem;
}

.hero p {
  font-weight: 500;
  font-size: 1.2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Ticket/Pricing Graphic Block */
.pricing-ticket-container {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 5%;
}

.pricing-ticket {
  background-color: var(--brand-dark);
  color: white;
  border-radius: 32px;
  padding: 4rem 4rem;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(42, 46, 51, 0.25);
  overflow: hidden;
}

.pricing-ticket::before,
.pricing-ticket::after {
  display: none;
}

.ticket-title {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 4.5rem;
  color: var(--brand-orange);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.ticket-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

.ticket-divider {
  width: 2px;
  height: 100px;
  background: repeating-linear-gradient(to bottom, transparent, transparent 10px, rgba(255, 255, 255, 0.3) 10px, rgba(255, 255, 255, 0.3) 20px);
}

.price-block h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: white;
}

.price-group {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.dollar {
  font-size: 2rem;
  font-family: 'Caveat', cursive;
  color: var(--peach);
  margin-right: 5px;
}

.amount {
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  line-height: 1;
  color: white;
}

.per-month {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--peach);
  margin-left: 5px;
}

@media (max-width: 900px) {
  .ticket-split {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .ticket-divider {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, transparent, transparent 10px, rgba(255, 255, 255, 0.3) 10px, rgba(255, 255, 255, 0.3) 20px);
  }
}

.discount-badge {
  position: absolute;
  top: -30px;
  left: -20px;
  background-color: var(--brand-orange);
  color: var(--brand-dark);
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  padding: 10px 20px;
  border-radius: 10px;
  transform: rotate(-10deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

/* --- PRICING GRID (Coworking Plans Page) --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-card .specs {
  margin: 1.5rem 0;
}

.pricing-card .specs li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
}

.pricing-card .specs li:last-child {
  border-bottom: none;
}

.pricing-card.featured {
  border-color: var(--brand-orange) !important;
  background: var(--brand-dark) !important;
  color: white;
}

.pricing-card.featured h3 {
  color: white;
}

.pricing-card.featured .specs li {
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-card.featured .interval {
  color: rgba(255,255,255,0.5) !important;
}

.pricing-card.featured .heavy-divider {
  background: var(--brand-orange) !important;
}

.pricing-card.featured .btn {
  background: white !important;
  color: var(--brand-dark) !important;
  border: 2px solid var(--brand-orange) !important;
}

.pricing-card.featured .btn:hover {
  background: var(--brand-orange) !important;
  color: white !important;
}

/* --- AMENITY BENTO (THE GUILD SPIRIT) --- */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--brand-orange);
  cursor: pointer;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Base Orange Bubble */
.bento-item .bento-bubble {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--brand-orange);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  z-index: 10;
  transition: all 0.3s ease;
}

/* Fun Reveal Text */
.bento-fun-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
  opacity: 0;
  z-index: 20;
  transition: all 0.4s ease;
}

/* PORTAL EXPAND INTERACTION */
.bento-rift-portal .bento-item::after {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 45px;
  width: 40px;
  height: 40px;
  background: var(--brand-orange);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.bento-rift-portal .bento-item:hover::after {
  transform: scale(30);
}

.bento-rift-portal .bento-item:hover .bento-fun-text {
  opacity: 1;
  transition-delay: 0.3s;
}

.bento-rift-portal .bento-item:hover .bento-bubble {
  transform: scale(1.1);
  background: white;
  color: var(--brand-orange);
}

/* Grid Layout */
.item-1 {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.item-2 {
  grid-column: 3 / span 2;
  grid-row: 1 / span 1;
}

.item-3 {
  grid-column: 3 / span 1;
  grid-row: 2 / span 1;
}

.item-4 {
  grid-column: 4 / span 1;
  grid-row: 2 / span 1;
}

.item-5 {
  grid-column: 1 / span 2;
  grid-row: 3 / span 1;
}

.item-6 {
  grid-column: 3 / span 2;
  grid-row: 3 / span 1;
}

@media (max-width: 800px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .item-1,
  .item-2,
  .item-5,
  .item-6 {
    grid-column: span 2;
  }
}

.item-4 {
  grid-column: 4 / span 1;
  grid-row: 2 / span 1;
}

.item-5 {
  grid-column: 1 / span 2;
  grid-row: 3 / span 1;
}

.item-6 {
  grid-column: 3 / span 2;
  grid-row: 3 / span 1;
}

/* Pricing Grid for Offices */
.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

.office-location-card {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--soft-shadow);
  border-top: 6px solid var(--brand-orange);
}

.office-location h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-dark);
}

.office-list {
  list-style: none;
  padding: 0;
}

.office-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #F0F0F0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
}

.office-list li:last-child {
  border-bottom: none;
}

.office-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--brand-orange);
  letter-spacing: 0.05em;
}

.office-teams-badge {
  display: inline-block;
  background-color: #F5F5F5;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Feature Icons Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto clamp(10rem, 20vh, 20rem);
  padding: 0 5%;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.feature-icon-wrapper svg,
.feature-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Make icons dark grey to match */
  filter: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(996%) hue-rotate(170deg) brightness(97%) contrast(92%);
}

.feature-text p {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* Image + Text Split Sections */
.hero+section {
  margin-top: clamp(4rem, 10vh, 10rem);
}

.split-section {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1400px;
  margin: clamp(2rem, 5vh, 4rem) auto;
  padding: 0 5%;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-content h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

.split-content .marker-font {
  margin-bottom: 1rem;
}

.split-image-wrapper {
  flex: 1.2;
  position: relative;
}

.split-image-wrapper img {
  border-radius: var(--border-radius);
  box-shadow: var(--soft-shadow);
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.stacked-images {
  position: relative;
  height: 500px;
  width: 100%;
}

.stacked-images img {
  position: absolute;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 10px solid white;
}

.stacked-img-1 {
  width: 70%;
  left: 0;
  top: 0;
  z-index: 1;
  transform: rotate(-3deg);
}

.stacked-img-2 {
  width: 65%;
  right: 0;
  bottom: 0;
  z-index: 2;
  transform: rotate(4deg);
}

.stacked-img-3 {
  width: 60%;
  left: 20%;
  top: 25%;
  z-index: 3;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto clamp(10rem, 20vh, 20rem);
  padding: 0 2%;
}

.photo-grid-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}

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

.photo-grid-item:hover img {
  transform: scale(1.05);
}

/* Call to Action Text */
.center-cta {
  text-align: center;
  padding: 8rem 5%;
}

.center-cta h2 {
  font-size: 4rem;
  letter-spacing: 0.03em;
}

/* Footer */
.club-footer {
  padding: 4rem 5%;
  text-align: center;
}

.club-footer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {

  .split-section,
  .split-section.reverse {
    flex-direction: column;
    gap: 3rem;
  }

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

  .stacked-images {
    height: 400px;
  }

  .bento-grid {
    grid-auto-rows: 200px;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 6rem 5% 5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .pricing-ticket {
    padding: 2rem 1.2rem;
  }

  .ticket-title {
    font-size: 2.8rem;
  }

  .ticket-split {
    flex-direction: column;
    gap: 2rem;
  }

  .ticket-divider {
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(to right, transparent, transparent 10px, rgba(255, 255, 255, 0.3) 10px, rgba(255, 255, 255, 0.3) 20px);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .bento-item {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

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

  .stacked-images {
    display: none;
  }

  .office-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

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

  .center-cta h2 {
    font-size: 2.5rem;
  }

  .center-cta {
    padding: 4rem 5%;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .marquee-content-row {
    font-size: 1.1rem;
  }

  .marquee-content-row span {
    padding-right: 2.5rem;
  }
}

/* Locations Section */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.location-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background-color: #EEE;
  position: relative;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info {
  padding: 2rem;
}

.location-info h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.location-info address {
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info-list h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h4 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #EEE;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
}

/* Honeypot */
.form-hidden {
  display: none !important;
  visibility: hidden;
}

/* Marquee Redux */
.marquee-container-row {
  background-color: var(--brand-dark);
  color: white;
  padding: 1rem 0;
  margin: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content-row {
  display: inline-block;
  animation: marquee-row 40s linear infinite;
  font-size: 1.5rem;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee-content-row span {
  padding-right: 5rem;
}

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

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

@media (max-width: 1024px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ────────────────────────────────────────────────────────
   Promotional Banner System
   ──────────────────────────────────────────────────────── */
:root {
  --banner-height: 0px;
}

.promo-banner {
  width: 100%;
  padding: 0.8rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.4s ease, 
              height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              padding 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.promo-banner-static {
  position: relative;
}

.promo-banner-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.promo-banner.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  height: 0 !important;
  padding: 0 !important;
}

.promo-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  text-align: center;
  padding-right: 2.5rem; /* space for close button */
  width: 100%;
}

.promo-banner-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.promo-banner-text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
}

.promo-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  line-height: 1.2;
}

.promo-banner-btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  filter: brightness(1.05);
}

.promo-banner-close {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 300;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 4px;
  color: inherit;
}

.promo-banner-close:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
}

/* Adjustments for sticky banner offset */
body.has-sticky-banner {
  padding-top: var(--banner-height);
}

body.has-sticky-banner .main-nav {
  top: var(--banner-height);
}

/* Responsiveness */
@media (max-width: 768px) {
  .promo-banner {
    padding: 0.8rem 1rem;
  }
  
  .promo-banner-content {
    flex-direction: column;
    gap: 0.6rem;
    padding-right: 1.5rem;
  }
  
  .promo-banner-text {
    font-size: 0.85rem;
  }
  
  .promo-banner-close {
    right: 0.8rem;
  }
}