/* =====================================================
   OptionLaunch Zone — Global Styles
   One global stylesheet. Library-first: Bootstrap grid +
   utilities, custom CSS only for premium Awwwards touches.
   ===================================================== */

/* ---------- 1. Variables / Bootstrap overrides ---------- */
:root {
  --bs-body-bg: #F8F5F0;
  --bs-body-color: #1E252A;
  --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bs-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --olz-primary: #0F4C5C;
  --olz-primary-rgb: 15, 76, 92;
  --olz-primary-light: #1B6B7F;
  --olz-secondary: #C8A96E;
  --olz-secondary-rgb: 200, 169, 110;
  --olz-accent: #B77B50;
  --olz-dark: #11181C;
  --olz-dark-2: #1B2429;
  --olz-light: #F8F5F0;
  --olz-cream: #F0EBE3;
  --olz-gold: #D4B982;
  --olz-surface: rgba(255, 255, 255, 0.72);

  --bs-primary: var(--olz-primary);
  --bs-primary-rgb: var(--olz-primary-rgb);
  --bs-secondary: var(--olz-secondary);
  --bs-secondary-rgb: var(--olz-secondary-rgb);
  --bs-link-color: var(--olz-primary);
  --bs-link-color-rgb: var(--olz-primary-rgb);
  --bs-link-hover-color: var(--olz-primary-light);

  --section-pad: 6rem;
  --section-pad-sm: 4rem;
  --header-height: 132px;
  --radius: 1.25rem;
  --radius-sm: 0.625rem;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--bs-body-color);
}

p, li, small, .lead { color: var(--olz-primary-light); }

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

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



/* ---------- 2. Header & Footer ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(248, 245, 240, 0.98);
  box-shadow: 0 8px 30px rgba(15, 76, 92, 0.08);
}

.header-contact-scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.25rem 0;
}

.header-contact-scroll::-webkit-scrollbar { display: none; }

.contact-chip {
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 768px) {
  .header-contact-scroll {
    justify-content: space-between;
    overflow-x: visible;
  }
  .contact-chip { scroll-snap-align: none; }
}

.brand-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--olz-dark);
}

.navbar-toggler { color: var(--olz-primary); background: transparent; }

.nav-link {
  font-weight: 500;
  color: var(--olz-dark-2) !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0.25rem;
  width: 0; height: 2px;
  background: var(--olz-secondary);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-primary {
  background: var(--olz-primary);
  border-color: var(--olz-primary);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  background: var(--olz-primary-light);
  border-color: var(--olz-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 76, 92, 0.18);
}

.btn-outline-primary {
  color: var(--olz-primary);
  border-color: var(--olz-primary);
  font-weight: 600;
}

.btn-outline-primary:hover { background: var(--olz-primary); color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--olz-dark);
  color: rgba(248, 245, 240, 0.8);
}

.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer h5, .site-footer h6,
.site-footer .brand-wordmark,
.site-footer .footer-heading { color: var(--olz-light); }

.site-footer a { color: rgba(248, 245, 240, 0.85); }
.site-footer a:hover { color: var(--olz-gold); }

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-contact p { color: rgba(248, 245, 240, 0.9); }

.footer-disclaimer { border-left: 4px solid var(--olz-gold) !important; }

/* ---------- 3. Shared section base ---------- */
.section { padding: var(--section-pad) 0; position: relative; overflow: hidden; }

.section.section-dark {
  background: var(--olz-dark);
  color: var(--olz-light);
}

.section.section-dark h1, .section.section-dark h2, .section.section-dark h3,
.section.section-dark p, .section.section-dark li { color: var(--olz-light); }

.section-pretitle {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--olz-secondary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--bs-body-color);
  opacity: 0.85;
}

.section-bg,
.section-dark {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- 4. Decorative utilities ---------- */
.glass-card {
  background: var(--olz-surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(15, 76, 92, 0.12);
}

.glass-card-dark {
  background: rgba(17, 24, 28, 0.55);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--olz-light);
}

.deco-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--olz-primary), var(--olz-gold));
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.deco-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--olz-secondary); display: inline-block; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

/* ---------- 5. Kinetic Hero ---------- */
.hero-section {
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 28, 0.78), rgba(17, 24, 28, 0.55));
}

.hero-content { position: relative; z-index: 2; }

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(200, 169, 110, 0.5);
  border-radius: 50rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olz-gold);
  background: rgba(0, 0, 0, 0.25);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  color: var(--olz-light);
  margin-bottom: 1rem;
}

.hero-title .outline {
  -webkit-text-stroke: 2px var(--olz-gold);
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(248, 245, 240, 0.85);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-card {
  position: absolute;
  right: 5%;
  bottom: 15%;
  z-index: 3;
  max-width: 340px;
  padding: 1.75rem;
}

/* ---------- 6. About sticky scroll ---------- */
.sticky-scroll-section { background: var(--olz-cream); }

.sticky-block {
  position: sticky;
  top: 140px;
}

.sticky-image-stack { display: grid; gap: 1.5rem; }

.sticky-image-stack .img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 76, 92, 0.12);
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

/* ---------- 7. Services accordion canvas ---------- */
.accordion-canvas {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.service-accordion-button {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--olz-light);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  cursor: pointer;
}

.service-accordion-button:hover { color: var(--olz-gold); }

.service-accordion-button .chevron { opacity: 0; transform: translateX(-10px); transition: all 0.25s ease; }
.service-accordion-item:hover .chevron,
.service-accordion-item.active .chevron { opacity: 1; transform: translateX(0); }

.service-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: rgba(248, 245, 240, 0.8);
}

.service-accordion-item.active .service-accordion-body { max-height: 400px; padding-bottom: 1.5rem; }

/* ---------- 8. Horizontal WebGL-style scroll (Portfolio / Works) ---------- */
.horizontal-scroll {
  overflow: hidden;
  cursor: grab;
  padding: 1rem 0;
}

.horizontal-scroll:active { cursor: grabbing; }

.horizontal-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.horizontal-track::-webkit-scrollbar { display: none; }

.horizontal-card {
  flex: 0 0 70vw;
  max-width: 600px;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.horizontal-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 28, 0.92), rgba(17, 24, 28, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--olz-light);
}

/* ---------- 9. Premium Bento Grid ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.bento-item {
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--olz-cream);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-item:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15, 76, 92, 0.12); }

.bento-item.wide { grid-column: span 2; }

.bento-item.tall { grid-row: span 2; }

.bento-item.bg-cell {
  background-size: cover;
  background-position: center;
  color: var(--olz-light);
  position: relative;
  overflow: hidden;
}

.bento-item.bg-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 28, 0.75), rgba(17, 24, 28, 0.45));
  z-index: 0;
}

.bento-item.bg-cell > * { position: relative; z-index: 1; }

.bento-icon { font-size: 2rem; color: var(--olz-primary); margin-bottom: 1rem; }

.bento-item.bg-cell .bento-icon { color: var(--olz-gold); }

/* ---------- 10. Brutalist number grid ---------- */
.brutalist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(15, 76, 92, 0.15);
  border-left: 1px solid rgba(15, 76, 92, 0.15);
}

.brutalist-cell {
  border-right: 1px solid rgba(15, 76, 92, 0.15);
  border-bottom: 1px solid rgba(15, 76, 92, 0.15);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.brutalist-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--olz-primary);
  line-height: 1;
}

.brutalist-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.75rem;
  color: var(--olz-secondary);
}

/* ---------- 11. Infinite Marquee ---------- */
.marquee-section { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-section:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  flex: 0 0 420px;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--olz-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--olz-light);
  position: relative;
}

.marquee-stars { color: var(--olz-gold); margin-bottom: 0.75rem; }

.marquee-photo {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  top: -20px; right: -20px;
  border: 3px solid var(--olz-gold);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.marquee-item:hover .marquee-photo { opacity: 1; transform: scale(1); }

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

/* ---------- 12. Vertical Timeline ---------- */
.timeline-section { background: var(--olz-cream); }

.timeline { position: relative; padding: 2rem 0; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--olz-primary), var(--olz-gold), var(--olz-primary));
  transform: translateX(-50%);
}

.timeline-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4rem; position: relative; }

.timeline-row:nth-child(even) { flex-direction: row-reverse; }

.timeline-content,
.timeline-media { width: 45%; }

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--olz-gold);
  border: 4px solid var(--olz-cream);
  box-shadow: 0 0 0 2px var(--olz-primary);
}

.timeline-card {
  background: var(--olz-surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 14px 40px rgba(15, 76, 92, 0.08);
}

.timeline-img {
  border-radius: var(--radius);
  min-height: 280px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(15, 76, 92, 0.12);
}

/* ---------- 13. Full-screen CTA ---------- */
.cta-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 28, 0.72);
}

.cta-section > .container { position: relative; z-index: 2; }

.cta-mask {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  color: var(--olz-light);
  margin-bottom: 1.5rem;
}

.cta-magnetic {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-size: 1.15rem;
  border-radius: 50rem;
  transition: transform 0.2s ease;
}

/* ---------- 14. Team roster grid ---------- */
.team-section { background: var(--olz-dark); color: var(--olz-light); }

.roster-list { list-style: none; padding: 0; margin: 0; }

.roster-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: color 0.2s ease, padding 0.2s ease;
}

.roster-item:hover { color: var(--olz-gold); padding-left: 1rem; }

.team-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.team-section:hover .team-bg-layer { opacity: 0.25; }

/* ---------- 15. Text mask (intro/vision) ---------- */
.text-mask-section { min-height: 80vh; display: flex; align-items: center; position: relative; }

.text-mask-title {
  font-size: clamp(3.5rem, 10vw, 10rem);
  line-height: 0.95;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ---------- 16. Services 2.0 hover cards ---------- */
.hover-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.hover-card {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 76, 92, 0.12);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: var(--olz-cream);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: color 0.3s ease;
}

.hover-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.35s ease, transform 0.6s ease;
  z-index: 0;
}

.hover-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 28, 0.85), rgba(17, 24, 28, 0.65));
}

.hover-card:hover .hover-card-bg { opacity: 1; transform: scale(1); }
.hover-card:hover { color: var(--olz-light); }
.hover-card:hover .card-title,
.hover-card:hover .card-text { color: var(--olz-light); }

.hover-card > * { position: relative; z-index: 1; }

.hover-card .reveal-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.hover-card:hover .reveal-content { max-height: 200px; opacity: 1; margin-top: 1rem; }

/* ---------- 17. Awards circular badge grid ---------- */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.award-badge {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(15, 76, 92, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.4s ease, border-color 0.3s ease;
  background: var(--olz-cream);
}

.award-badge:hover { transform: rotate(5deg) scale(1.05); border-color: var(--olz-gold); }

.award-icon { font-size: 2rem; color: var(--olz-gold); margin-bottom: 0.5rem; }

/* ---------- 18. Features 3.0 pinned center ---------- */
.pinned-center-section { background: var(--olz-cream); }

.pinned-image {
  position: sticky;
  top: 140px;
  border-radius: var(--radius);
  min-height: 500px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 70px rgba(15, 76, 92, 0.12);
}

.feature-side .feature-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--olz-surface);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
}

/* ---------- 19. Draggable image canvas ---------- */
.gallery-canvas {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--olz-dark);
  border-radius: var(--radius);
  cursor: grab;
}

.gallery-canvas:active { cursor: grabbing; }

.canvas-title {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  color: var(--olz-light);
  pointer-events: none;
}

.canvas-img {
  position: absolute;
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  cursor: grab;
  user-select: none;
}

/* ---------- 20. FAQ line accordion ---------- */
.faq-item {
  border-bottom: 1px solid rgba(15, 76, 92, 0.15);
  padding: 1.5rem 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--olz-dark);
  cursor: pointer;
  padding: 0;
}

.faq-icon { transition: transform 0.25s ease; color: var(--olz-primary); }

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--bs-body-color);
  opacity: 0.85;
}

.faq-item.active .faq-answer { max-height: 300px; padding-top: 1rem; }

/* ---------- 21. Contact split ---------- */
.contact-split-section { background: var(--olz-cream); }

.contact-form-card {
  background: var(--olz-surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px rgba(15, 76, 92, 0.08);
}

.floating-label { position: relative; margin-bottom: 1.25rem; }

.floating-label input,
.floating-label textarea {
  width: 100%;
  padding: 1rem 0.85rem;
  border: none;
  border-bottom: 1px solid rgba(15, 76, 92, 0.25);
  background: transparent;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.floating-label label {
  position: absolute;
  left: 0.85rem; top: 1rem;
  color: rgba(30, 37, 42, 0.6);
  pointer-events: none;
  transition: all 0.2s ease;
}

.floating-label input:focus,
.floating-label textarea:focus { border-color: var(--olz-primary); }

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label,
.floating-label textarea:focus + label,
.floating-label textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  font-size: 0.75rem;
  color: var(--olz-primary);
  background: var(--olz-surface);
  padding: 0 0.25rem;
}

.form-notification {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
}

.form-notification.show { display: block; }

.map-visual {
  border-radius: var(--radius);
  min-height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* ---------- 22. Interactive map ---------- */
.map-section { background: var(--olz-dark); color: var(--olz-light); }

.map-stage {
  border-radius: var(--radius);
  min-height: 450px;
  position: relative;
  background: var(--olz-dark-2);
  overflow: hidden;
}

.map-pin {
  position: absolute;
  color: var(--olz-gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.map-pin:hover { transform: scale(1.3); }

.map-office-list .office-item {
  padding: 1rem 1.25rem;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.map-office-list .office-item.active,
.map-office-list .office-item:hover { border-left-color: var(--olz-gold); background: rgba(255, 255, 255, 0.05); }

/* ---------- 23. Newsletter floating card ---------- */
.newsletter-card {
  border-radius: var(--radius);
  padding: 3rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: var(--olz-light);
}

.newsletter-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 28, 0.85), rgba(17, 24, 28, 0.7));
  z-index: 0;
}

.newsletter-card > * { position: relative; z-index: 1; }

/* ---------- 24. History horizontal scroller ---------- */
.history-scroller {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 0;
  scrollbar-width: none;
}

.history-scroller::-webkit-scrollbar { display: none; }

.history-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--olz-cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}

.history-year {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--olz-primary);
  margin-bottom: 0.5rem;
}

.history-dot {
  position: absolute;
  top: 1.75rem; right: 1.75rem;
  color: var(--olz-gold);
  font-size: 0.75rem;
}

/* ---------- 25. Values typographic carousel ---------- */
.values-carousel {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: background 0.6s ease;
}

.value-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  color: var(--olz-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-desc { color: rgba(248, 245, 240, 0.85); font-size: 1.25rem; }

.value-controls { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.75rem; }

.value-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--olz-gold);
  background: transparent;
  cursor: pointer;
}

.value-dot.active { background: var(--olz-gold); }

/* ---------- 26. Pricing interactive rows ---------- */
.pricing-section { background: var(--olz-cream); }

.pricing-row {
  border-bottom: 1px solid rgba(15, 76, 92, 0.15);
  padding: 1.5rem 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pricing-row:hover { background: rgba(15, 76, 92, 0.03); }

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

.pricing-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; }

.pricing-price { font-weight: 700; font-size: 1.5rem; color: var(--olz-primary); }

.pricing-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.pricing-row.active .pricing-body { max-height: 400px; padding-top: 1.25rem; }

.pricing-toggle { color: var(--olz-primary); transition: transform 0.25s ease; }
.pricing-row.active .pricing-toggle { transform: rotate(180deg); }

/* ---------- 27. Philosophy overlapping parallax panels ---------- */
.philosophy-panels { display: grid; gap: 2rem; }

.philosophy-panel {
  border-radius: var(--radius);
  padding: 4rem 3rem;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--olz-light);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.philosophy-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 28, 0.9), rgba(17, 24, 28, 0.3));
  z-index: 0;
}

.philosophy-panel > * { position: relative; z-index: 1; }

/* ---------- 28. Support floating bubbles ---------- */
.support-hub {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-center { text-align: center; max-width: 400px; z-index: 2; }

.support-bubble {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: var(--olz-surface);
  box-shadow: 8px 8px 24px rgba(15, 76, 92, 0.1), -8px -8px 24px rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.support-bubble:hover { transform: scale(1.08); }

.support-bubble i { display: block; font-size: 1.5rem; color: var(--olz-primary); margin-bottom: 0.35rem; }

/* ---------- 29. Game explorer ---------- */
.game-tabs { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }

.game-tab {
  border: 1px solid rgba(15, 76, 92, 0.15);
  background: var(--olz-surface);
  border-radius: 50rem;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  color: var(--olz-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.game-tab:hover, .game-tab.active {
  background: var(--olz-primary);
  border-color: var(--olz-primary);
  color: #fff;
}

.game-panel { display: none; }
.game-panel.active { display: block; }

.game-card {
  background: var(--olz-cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.game-card-media {
  border-radius: var(--radius);
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

/* ---------- 30. CTA 2.0 spotlight ---------- */
.spotlight-section {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: var(--olz-light);
  overflow: hidden;
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 28, 0.92);
  z-index: 1;
}

.spotlight-shine {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.25) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.spotlight-content { position: relative; z-index: 3; text-align: center; }

/* ---------- 31. Benefits sticky stack ---------- */
.benefit-stack {
  position: relative;
  height: 220vh;
}

.benefit-card {
  position: sticky;
  top: 120px;
  border-radius: var(--radius);
  padding: 3rem;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 30px 80px rgba(15, 76, 92, 0.15);
}

.benefit-card:nth-child(1) { background: #E9F1F4; color: var(--olz-dark); }
.benefit-card:nth-child(2) { background: #F3EEE6; color: var(--olz-dark); top: 140px; }
.benefit-card:nth-child(3) { background: var(--olz-dark); color: var(--olz-light); top: 160px; }
.benefit-card:nth-child(4) { background: var(--olz-cream); color: var(--olz-dark); top: 180px; }

/* ---------- 32. Pre-footer marquee CTA ---------- */
.prefooter-marquee {
  background: var(--olz-primary);
  color: var(--olz-gold);
  padding: 2.5rem 0;
  overflow: hidden;
}

.prefooter-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.prefooter-track a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  white-space: nowrap;
  color: var(--olz-gold);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 4rem;
}

/* ---------- 33. Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1040;
  background: var(--olz-dark);
  color: var(--olz-light);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

/* ---------- 34. Text mask fallback ---------- */
.value-slide { display: none; }
.value-slide.active { display: block; }

.text-gold { color: var(--olz-gold) !important; }

.newsletter-card .section-title { color: #fff !important; }

/* ---------- 35. Responsive ---------- */
@media (max-width: 991.98px) {
  :root { --header-height: 115px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-item.wide { grid-column: span 2; }
  .hover-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .brutalist-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 1rem; }
  .timeline-row,
  .timeline-row:nth-child(even) { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .timeline-content, .timeline-media { width: 100%; padding-left: 2.5rem; }
  .timeline-dot { left: 1rem; transform: none; }
  .hero-card { position: relative; right: auto; bottom: auto; margin-top: 2rem; }
  .game-tabs { justify-content: center; }
  .support-bubble { position: relative; width: auto; height: auto; border-radius: var(--radius); margin: 0.5rem; transform: none !important; }
  .support-hub { min-height: auto; display: block; }
  .support-center { margin-bottom: 2rem; }
}

@media (max-width: 767.98px) {
  .section { padding: var(--section-pad-sm) 0; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.wide, .bento-item.tall { grid-column: auto; grid-row: auto; }
  .hover-cards-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .brutalist-grid { grid-template-columns: 1fr; }
  .horizontal-card { flex: 0 0 85vw; min-height: 340px; }
  .canvas-img { width: 140px; height: 100px; }
  .gallery-canvas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; padding: 2rem; min-height: auto; overflow: visible; cursor: default; }
  .gallery-canvas .canvas-title { position: relative; top: auto; left: auto; transform: none; width: 100%; }
  .canvas-img { position: relative; top: auto !important; left: auto !important; transform: none !important; width: 45%; height: 120px; }
  .text-mask-title { font-size: clamp(2.5rem, 12vw, 5rem); color: var(--olz-dark) !important; -webkit-text-fill-color: var(--olz-dark) !important; background: none !important; background-clip: border-box !important; }
  .hero-title { font-size: clamp(2.25rem, 9vw, 4rem); }
  .cta-mask { font-size: clamp(1.75rem, 8vw, 4rem); }
  .benefit-card { min-height: auto; padding: 2rem; }
  main{
    margin-top: 50px;
  }
}
