/* EB Capital Consulting - Full Site */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --black: #000;
  --dark: #0B0B0B;
  --card-bg: #151515;
  --white: #fff;
}

html { scroll-behavior: smooth; }
html, body { min-height: 100%; background: var(--black); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: var(--font-sans); color: var(--white); }
::selection { background: #fff; color: #000; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
img { display: block; max-width: 100%; }

.app-root { position: relative; width: 100%; min-height: 100vh; background: var(--black); overflow-x: hidden; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  padding: 2rem; display: flex; justify-content: space-between; align-items: center;
  transition: all 500ms ease-in-out;
  background: transparent; border-bottom: 1px solid transparent;
  pointer-events: none;
}
@media (min-width: 768px) { .site-header { padding: 2.5rem 4rem; } }

.site-header.scrolled {
  background: rgba(0,0,0,0.65); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem; padding-bottom: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  pointer-events: auto;
}
@media (min-width: 768px) { .site-header.scrolled { padding-top: 1.25rem; padding-bottom: 1.25rem; } }

.header-logo { pointer-events: auto; cursor: pointer; }
.header-logo img { display: block; height: auto; }
.logo-text { color: #fff; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; user-select: none; opacity: 0.9; }
@media (min-width: 768px) { .logo-text { font-size: 0.875rem; } }

/* Desktop Nav */
.desktop-nav {
  display: none; pointer-events: auto; align-items: center; gap: 3rem; mix-blend-mode: difference;
}
@media (min-width: 1280px) { .desktop-nav { display: flex; } }

.desktop-nav .nav-link {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; opacity: 0.9; transition: all 300ms; position: relative; padding: 0;
}
.desktop-nav .nav-link:hover { opacity: 1; }
.desktop-nav .nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: #fff;
  transition: width 300ms;
}
.desktop-nav .nav-link:hover::after { width: 100%; }
.desktop-nav .nav-link.disabled { opacity: 0.4; cursor: not-allowed; }
.desktop-nav .nav-link.disabled::after { display: none; }

.desktop-lang-switcher {
  display: flex; align-items: center; gap: 0.5rem; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.2);
}
.desktop-lang-switcher .lang-btn {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; opacity: 0.5; transition: opacity 300ms;
}
.desktop-lang-switcher .lang-btn:hover, .desktop-lang-switcher .lang-btn.active { opacity: 1; }

/* Mobile Hamburger */
.mobile-hamburger { display: block; pointer-events: auto; padding: 0.5rem; mix-blend-mode: difference; }
@media (min-width: 1280px) { .mobile-hamburger { display: none; } }
.hamburger-lines { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.hamburger-lines span { display: block; width: 24px; height: 1px; background: #fff; transition: all 300ms; }
.mobile-hamburger:hover .hamburger-lines span { width: 32px; }
.mobile-hamburger:hover .hamburger-lines span:nth-child(2) { transition-delay: 75ms; }
.mobile-hamburger:hover .hamburger-lines span:nth-child(3) { transition-delay: 150ms; }

/* ===================== MAIN CONTENT ===================== */
.main-content { width: 100%; transition: opacity 300ms ease-in-out; }

/* ===================== HERO SECTION ===================== */
.hero-section {
  position: relative; width: 100%; min-height: 55vh; display: flex; flex-direction: column;
  justify-content: center; padding: 6rem 2rem 2.5rem;
}
@media (min-width: 768px) { .hero-section { min-height: 60vh; padding: 6rem 4rem 3.5rem; } }

.hero-section .hero-title {
  font-family: var(--font-serif); color: #fff;
  font-size: 1.875rem; font-weight: 400; letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 2.5rem; max-width: 95%;
}
@media (min-width: 768px) { .hero-section .hero-title { font-size: 3rem; line-height: 0.98; max-width: 75%; margin-bottom: 3.5rem; } }
@media (min-width: 1024px) { .hero-section .hero-title { font-size: 3.75rem; } }

.hero-section .hero-subtitle {
  color: #bfbfbf; font-size: 0.875rem; font-weight: 300; line-height: 1.8; letter-spacing: 0.025em; max-width: 36rem;
}
@media (min-width: 768px) { .hero-section .hero-subtitle { font-size: 1rem; } }

/* ===================== GALLERY SECTION ===================== */
.gallery-wrapper { position: relative; width: 100%; background: var(--black); display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .gallery-wrapper { gap: 2rem; padding-bottom: 0; } }

.gallery-label {
  padding: 1rem 2rem 0; color: #737373; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
}
@media (min-width: 768px) { .gallery-label { padding: 1rem 4rem 0; } }

.gallery-container {
  position: relative; width: 100%; height: 65vh; overflow: hidden; user-select: none;
  cursor: grab; background: var(--black);
  -webkit-touch-callout: none; -webkit-user-select: none; touch-action: pan-y;
}
@media (min-width: 768px) { .gallery-container { height: 80vh; } }
.gallery-container:active { cursor: grabbing; }

.gallery-track {
  display: flex; height: 100%; align-items: center;
}

.gallery-slide {
  position: relative; flex-shrink: 0; height: 65vh; overflow: hidden;
  transition: all 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) { .gallery-slide { height: 60vh; } }

.gallery-slide.active { opacity: 1; transform: scale(1); }
.gallery-slide.inactive { opacity: 0.4; transform: scale(0.95); }
.gallery-slide.inactive:hover { opacity: 0.6; }

.gallery-slide .slide-media {
  position: absolute; inset: 0; width: 100%; height: 100%; background: #171717; overflow: hidden;
}
.gallery-slide .slide-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s ease-out;
}
.gallery-slide:hover .slide-media img { transform: scale(1.05); }

.gallery-slide .slide-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2) 50%, transparent);
  pointer-events: none;
}

.gallery-slide .slide-info {
  position: absolute; bottom: 0; left: 0; padding: 1.5rem; width: 100%;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem;
  transition: all 700ms; transform: translateY(2rem); opacity: 0;
}
@media (min-width: 768px) { .gallery-slide .slide-info { padding: 3rem; gap: 1.25rem; max-width: 56rem; } }
.gallery-slide.active .slide-info { transform: translateY(0); opacity: 1; transition-delay: 100ms; }

.slide-info .slide-cat {
  color: rgba(255,255,255,0.6); font-size: 0.625rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
@media (min-width: 768px) { .slide-info .slide-cat { font-size: 0.875rem; } }

.slide-info .slide-text {
  color: #fff; font-size: 1.25rem; font-weight: 300; letter-spacing: -0.015em; line-height: 1.25;
}
@media (min-width: 768px) { .slide-info .slide-text { font-size: 2.25rem; line-height: 1.1; } }
@media (min-width: 1024px) { .slide-info .slide-text { font-size: 3rem; } }

.slide-info .slide-link-text {
  display: inline-block; color: #fff; font-size: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 0.25rem; padding-top: 0.25rem; transition: border-color 300ms;
}
@media (min-width: 768px) { .slide-info .slide-link-text { font-size: 1rem; padding-top: 0.5rem; } }
@media (min-width: 1024px) { .slide-info .slide-link-text { font-size: 1.125rem; } }
.gallery-slide:hover .slide-link-text { border-color: #fff; }

/* Gallery Navigation Arrows */
.gallery-arrows {
  position: absolute; top: 50%; left: 0; width: 100%; transform: translateY(-50%);
  display: flex; justify-content: space-between; padding: 0 3%; pointer-events: none; z-index: 50;
}
@media (min-width: 768px) { .gallery-arrows { padding: 0 6%; margin-top: 2rem; } }

.gallery-arrow {
  pointer-events: auto; width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.3);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #fff;
  transition: all 300ms; font-size: 1.125rem;
}
@media (min-width: 768px) { .gallery-arrow { width: 4rem; height: 4rem; font-size: 1.5rem; background: rgba(0,0,0,0.1); } }
.gallery-arrow:hover {
  background: #fff; color: #000; border-color: #fff; transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.gallery-arrow:active { transform: scale(0.95); }

/* Gallery Mobile Progress */
.gallery-progress {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .gallery-progress { display: none; } }
.gallery-progress-fill { height: 100%; background: #fff; transition: width 500ms ease-out; }

/* ===================== ABOUT SECTION ===================== */
.about-section {
  position: relative; width: 100%; background: var(--black);
  padding: 6rem 2rem; border-top: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) { .about-section { padding: 8rem 4rem; } }

.about-grid { max-width: 80rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 4fr 8fr; gap: 6rem; } }

.about-card {
  position: relative; width: 100%; max-width: 20rem; margin: 0 auto;
  background: #080808; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem;
  padding: 1.25rem; display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
@media (min-width: 768px) { .about-card { padding: 2rem; max-width: 24rem; } }
@media (min-width: 1024px) { .about-card { position: sticky; top: 6rem; } }

.about-card-photo {
  position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 0.5rem; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .about-card-photo { margin-bottom: 2rem; } }
.about-card-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 1; transition: transform 700ms ease-out;
}
.about-card-photo:hover img { transform: scale(1.03); }
.about-card-photo::after {
  content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.5rem; pointer-events: none;
}

.about-card h3 { font-family: var(--font-serif); color: #fff; font-size: 1.25rem; letter-spacing: -0.01em; margin-bottom: 0.375rem; }
@media (min-width: 768px) { .about-card h3 { font-size: 1.875rem; margin-bottom: 0.5rem; } }

.about-card .about-role { color: #737373; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .about-card .about-role { font-size: 0.75rem; margin-bottom: 2rem; } }

.about-badges { width: 100%; display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 768px) { .about-badges { gap: 0.75rem; } }
.about-badge {
  width: 100%; padding: 0.625rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.375rem;
  background: rgba(255,255,255,0.05); color: #d4d4d4; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.025em; transition: all 300ms; text-align: center;
}
@media (min-width: 768px) { .about-badge { padding: 0.75rem; font-size: 0.875rem; } }
.about-badge:hover { background: rgba(255,255,255,0.1); color: #fff; }

.about-text { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 0.5rem; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 2rem; }
@media (min-width: 768px) { .about-text { gap: 2rem; } }
@media (min-width: 1024px) { .about-text { border-left: none; padding-left: 0; gap: 3rem; padding-top: 1rem; } }

.about-text .section-label { color: #737373; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; }
.about-text .section-title {
  font-family: var(--font-serif); color: #fff;
  font-size: 1.875rem; font-weight: 400; letter-spacing: -0.04em; line-height: 1.05;
}
@media (min-width: 768px) { .about-text .section-title { font-size: 3rem; line-height: 0.98; } }
@media (min-width: 1024px) { .about-text .section-title { font-size: 3.75rem; } }

.about-text .about-paragraphs { display: flex; flex-direction: column; gap: 1.25rem; max-width: 48rem; }
@media (min-width: 768px) { .about-text .about-paragraphs { gap: 2rem; } }
.about-paragraphs p { color: #a3a3a3; font-size: 0.9375rem; line-height: 1.75; font-weight: 300; }
@media (min-width: 768px) { .about-paragraphs p { font-size: 1.125rem; } }

/* ===================== NEWSLETTER SECTION ===================== */
.newsletter-section {
  position: relative; width: 100%; background: var(--black); padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .newsletter-section { padding: 4rem; } }

.newsletter-inner {
  max-width: 80rem; margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start;
  justify-content: space-between; gap: 2rem;
}
@media (min-width: 768px) { .newsletter-inner { flex-direction: row; align-items: center; gap: 6rem; } }

.newsletter-text {
  color: #fff; font-family: var(--font-serif); font-size: 1.125rem; font-weight: 300;
  font-style: italic; line-height: 1.6; letter-spacing: 0.025em; opacity: 0.9; max-width: 40rem;
}
@media (min-width: 768px) { .newsletter-text { font-size: 1.5rem; } }

.newsletter-form {
  width: 100%; max-width: 28rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: stretch;
}
@media (min-width: 640px) { .newsletter-form { flex-direction: row; gap: 1rem; } }
.newsletter-form input {
  flex: 1; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 0; color: #fff; font-size: 0.875rem; font-weight: 300;
  outline: none; transition: border-color 300ms; min-width: 0;
}
.newsletter-form input::placeholder { color: #525252; }
.newsletter-form input:focus { border-color: #fff; }
.newsletter-form button {
  padding: 0.75rem 1.5rem; border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
  white-space: nowrap; transition: all 300ms;
}
@media (min-width: 768px) { .newsletter-form button { padding: 0.5rem 1.5rem; } }
.newsletter-form button:hover { background: #fff; color: #000; border-color: #fff; }

.newsletter-success { display: flex; align-items: center; gap: 0.5rem; }
.newsletter-success .dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; }
.newsletter-success span { color: #a3a3a3; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

/* ===================== SERVICES SECTION ===================== */
.services-section {
  position: relative; width: 100%; background: var(--black); padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) { .services-section { padding: 8rem 4rem; } }

.services-inner {
  max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; align-items: flex-start;
  gap: 2rem;
  opacity: 0; transform: translateY(2.5rem); transition: all 1000ms ease-out;
}
@media (min-width: 768px) { .services-inner { gap: 2.5rem; } }
.services-inner.visible { opacity: 1; transform: translateY(0); }

.services-inner .section-label { color: #737373; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; }
.services-inner .section-title {
  font-family: var(--font-serif); color: #fff;
  font-size: 1.875rem; font-weight: 400; letter-spacing: -0.04em; line-height: 1.05;
}
@media (min-width: 768px) { .services-inner .section-title { font-size: 3rem; } }
@media (min-width: 1024px) { .services-inner .section-title { font-size: 3.75rem; } }

.services-inner .section-desc { color: #a3a3a3; font-size: 1.125rem; font-weight: 300; line-height: 1.6; }
@media (min-width: 768px) { .services-inner .section-desc { font-size: 1.25rem; } }

.services-cta {
  display: inline-block; padding: 1rem 2rem; border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  transition: all 300ms; margin-top: 1rem;
}
.services-cta:hover { background: #fff; color: #000; border-color: #fff; }

/* ===================== INDUSTRY SECTION ===================== */
.industry-section {
  position: relative; width: 100%; background: var(--dark); padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05); overflow: clip;
}
@media (min-width: 768px) { .industry-section { padding: 8rem 4rem; } }

.industry-header {
  max-width: 80rem; margin: 0 auto 4rem;
  opacity: 0; transform: translateY(2.5rem); transition: all 1000ms ease-out;
}
@media (min-width: 768px) { .industry-header { margin-bottom: 6rem; } }
.industry-header.visible { opacity: 1; transform: translateY(0); }

.industry-grid { max-width: 80rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .industry-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.industry-card {
  position: relative; width: 100%; border-radius: 0.75rem; overflow: hidden; min-height: 500px;
  display: block; text-decoration: none; color: inherit;
  transition: all 700ms ease-out; touch-action: manipulation;
}
@media (min-width: 768px) { .industry-card { min-height: 550px; } }

.industry-card .card-bg { position: absolute; inset: 0; width: 100%; height: 100%; background: #171717; }
.industry-card .card-bg img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease-in-out;
}
.industry-card:hover .card-bg img { transform: scale(1.05); filter: brightness(1.1); }

.industry-card .card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); transition: background 500ms; }
.industry-card:hover .card-overlay { background: rgba(0,0,0,0.3); }
.industry-card .card-gradient { position: absolute; inset: 0; background: linear-gradient(to top, #000, rgba(0,0,0,0.8) 40%, transparent); opacity: 0.9; }

.industry-card .card-content { position: absolute; inset: 0; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; }
@media (min-width: 768px) { .industry-card .card-content { padding: 2.5rem; } }

.card-content .card-title {
  font-family: var(--font-serif); color: #fff; font-size: 1.5rem; line-height: 1.2; margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
@media (min-width: 768px) { .card-content .card-title { font-size: 2.25rem; margin-bottom: 1.25rem; } }

.card-content .card-line { width: 3rem; height: 1px; background: rgba(255,255,255,0.5); margin-bottom: 1rem; transition: width 500ms; }
@media (min-width: 768px) { .card-content .card-line { margin-bottom: 1.25rem; } }
.industry-card:hover .card-line { width: 6rem; }

.card-content .card-desc { color: #d4d4d4; font-size: 0.8125rem; font-weight: 300; line-height: 1.6; max-width: 28rem; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
@media (min-width: 768px) { .card-content .card-desc { font-size: 0.875rem; } }

.card-metrics { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
@media (min-width: 768px) { .card-metrics { gap: 1rem 2rem; } }
.card-metric .metric-value { font-family: var(--font-serif); color: #fff; font-size: 1.25rem; font-weight: 500; letter-spacing: -0.01em; }
@media (min-width: 768px) { .card-metric .metric-value { font-size: 1.875rem; } }
.card-metric .metric-label { color: #a3a3a3; font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; margin-top: 0.125rem; }
@media (min-width: 768px) { .card-metric .metric-label { font-size: 10px; margin-top: 0.25rem; } }

.card-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); }

.card-clients { display: flex; flex-wrap: wrap; gap: 0.5rem; }
@media (min-width: 768px) { .card-clients { gap: 0.75rem; } }
.client-tag {
  padding: 0.375rem 0.75rem; background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 0.375rem;
  color: rgba(255,255,255,0.9); font-size: 10px; font-weight: 500; letter-spacing: 0.025em;
  transition: all 300ms;
}
@media (min-width: 768px) { .client-tag { padding: 0.5rem 1rem; font-size: 0.75rem; } }
.client-tag:hover { background: rgba(255,255,255,0.1); }
a.client-tag { text-decoration: none; cursor: pointer; display: inline-block; }

/* ===================== RECOMMENDATIONS SECTION ===================== */
.recommendations-section {
  position: relative; width: 100%; background: var(--dark); padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,0.05); overflow: clip;
}
@media (min-width: 768px) { .recommendations-section { padding: 8rem 0; } }

.recommendations-header {
  max-width: 80rem; margin: 0 auto 4rem; padding: 0 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.1); margin-left: 2rem; padding-left: 2rem;
}
@media (min-width: 768px) {
  .recommendations-header {
    padding: 0 4rem; margin-left: auto; border-left: none; padding-left: 4rem;
    flex-direction: row; justify-content: space-between; align-items: flex-end;
    gap: 2.5rem; margin-bottom: 6rem;
  }
}

.rec-arrows { display: none; gap: 1rem; padding-bottom: 0.5rem; }
@media (min-width: 768px) { .rec-arrows { display: flex; } }

.rec-arrow {
  width: 3.5rem; height: 3.5rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.25rem;
  font-weight: 300; transition: all 300ms;
}
.rec-arrow:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

.rec-track-wrapper { width: 100%; position: relative; touch-action: pan-y; }
.rec-track { display: flex; align-items: stretch; }

.rec-card {
  position: relative; flex-shrink: 0; display: flex; flex-direction: column; justify-content: space-between;
  background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px;
  padding: 2rem; min-height: 300px; transition: all 500ms ease-out;
}
@media (min-width: 768px) { .rec-card { padding: 3rem; min-height: 360px; } }
.rec-card:hover { opacity: 1 !important; border-color: rgba(255,255,255,0.2); }

.rec-card .rec-quote { color: rgba(255,255,255,0.1); font-family: var(--font-serif); font-size: 2.5rem; line-height: 1; margin-bottom: 1rem; flex-shrink: 0; }
@media (min-width: 768px) { .rec-card .rec-quote { font-size: 3rem; margin-bottom: 1.5rem; } }
.rec-card .rec-body { flex: 1; }
.rec-card .rec-body p {
  color: #e0e0e0; font-family: var(--font-serif); font-size: 1rem; line-height: 1.6;
  font-weight: 300; letter-spacing: 0.025em;
}
@media (min-width: 768px) { .rec-card .rec-body p { font-size: 1.25rem; line-height: 1.65; } }

.rec-card .rec-author-area { padding-top: 1.5rem; margin-top: auto; flex-shrink: 0; border-top: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .rec-card .rec-author-area { padding-top: 2rem; } }
.rec-card .rec-author { color: #fff; font-family: var(--font-serif); font-size: 1rem; letter-spacing: 0.025em; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .rec-card .rec-author { font-size: 1.125rem; } }
.rec-card .rec-title { color: #737373; font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }

/* ===================== STATEMENT SECTION ===================== */
.statement-section {
  position: relative; width: 100%; min-height: 60vh; background: var(--black);
  display: flex; align-items: center; justify-content: center; padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) { .statement-section { min-height: 70vh; padding: 8rem 3rem; } }

.statement-inner {
  max-width: 50rem; text-align: center; display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(2rem); transition: all 1500ms ease-out;
}
.statement-inner.visible { opacity: 1; transform: translateY(0); }

.statement-inner .big-quote { color: #ededed; opacity: 0.8; font-family: var(--font-serif); font-size: 3rem; line-height: 1; margin-bottom: 1.5rem; user-select: none; }
@media (min-width: 768px) { .statement-inner .big-quote { font-size: 3.75rem; } }

.statement-inner .statement-text {
  color: #ededed; font-family: var(--font-serif); font-weight: 300; font-style: italic;
  font-size: 1.3125rem; line-height: 1.6; letter-spacing: 0.025em; margin-bottom: 3rem;
}
@media (min-width: 768px) { .statement-inner .statement-text { font-size: 2.5625rem; line-height: 1.5; margin-bottom: 4rem; } }

.statement-inner .statement-line { width: 4rem; height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 2rem; }
.statement-inner .statement-brand { color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 400; }
@media (min-width: 768px) { .statement-inner .statement-brand { font-size: 13px; } }

/* ===================== RESEARCH SECTION ===================== */
.research-section {
  position: relative; width: 100%; background: var(--black); padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) { .research-section { padding: 10rem 4rem; } }

.research-header {
  max-width: 80rem; margin: 0 auto 4rem;
  opacity: 0; transform: translateY(2rem); transition: all 1000ms ease-out;
}
@media (min-width: 768px) { .research-header { margin-bottom: 5rem; } }
.research-header.visible { opacity: 1; transform: translateY(0); }

.research-grid { max-width: 80rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .research-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.research-card {
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem;
  padding: 1.75rem; min-height: 240px; transition: all 500ms ease-out; touch-action: manipulation;
}
@media (min-width: 768px) { .research-card { padding: 2.5rem; min-height: 280px; } }
.research-card:hover { background: #121212; border-color: rgba(255,255,255,0.2); transform: translateY(-0.25rem); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }

.research-card h3 {
  font-family: var(--font-serif); color: #f1f1f1; font-size: 1.125rem; line-height: 1.3; margin-bottom: 0.75rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color 300ms;
}
@media (min-width: 768px) { .research-card h3 { font-size: 1.5rem; margin-bottom: 1rem; } }
.research-card:hover h3 { color: #fff; }

.research-card .research-meta { color: #737373; font-size: 0.8125rem; line-height: 1.6; opacity: 0.7; }
@media (min-width: 768px) { .research-card .research-meta { font-size: 0.875rem; } }

.research-card .research-link {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; color: rgba(255,255,255,0.7);
  font-size: 0.8125rem; font-weight: 500; transition: all 300ms;
}
@media (min-width: 768px) { .research-card .research-link { margin-top: 2rem; font-size: 0.875rem; } }
.research-card:hover .research-link { color: #fff; }
.research-card .research-link svg { transition: transform 300ms; }
.research-card:hover .research-link svg { transform: translate(4px, -4px); }

/* ===================== CONTACT SECTION ===================== */
.contact-section {
  position: relative; width: 100%; background: var(--black); padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 768px) { .contact-section { padding: 10rem 4rem; } }

.contact-header {
  max-width: 80rem; margin: 0 auto 4rem; text-align: center;
  opacity: 0; transform: translateY(2rem); transition: all 1000ms ease-out;
}
@media (min-width: 768px) { .contact-header { margin-bottom: 5rem; } }
.contact-header.visible { opacity: 1; transform: translateY(0); }

.contact-header .section-title { margin-bottom: 1rem; }
@media (min-width: 768px) { .contact-header .section-title { margin-bottom: 1.5rem; } }
.contact-header .section-desc { color: #a3a3a3; font-weight: 300; font-size: 1rem; max-width: 40rem; margin: 0 auto; opacity: 0.75; line-height: 1.6; }
@media (min-width: 768px) { .contact-header .section-desc { font-size: 1.25rem; } }

.contact-grid { max-width: 80rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .contact-grid { gap: 2rem; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; gap: 3rem; } }

.contact-form-card {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 1.125rem;
  padding: 1.75rem;
  opacity: 0; transform: translateY(2rem); transition: all 1000ms 100ms ease-out;
}
.contact-form-card.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) { .contact-form-card { padding: 2.5rem; } }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .contact-form { gap: 1.5rem; } }
.contact-form .form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .contact-form .form-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.contact-form .form-group { display: flex; flex-direction: column; gap: 0.375rem; }
@media (min-width: 768px) { .contact-form .form-group { gap: 0.5rem; } }
.contact-form label { color: #737373; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
@media (min-width: 768px) { .contact-form label { font-size: 0.75rem; } }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; background: #111; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem;
  padding: 0.875rem; color: #fff; font-size: 0.875rem; font-family: var(--font-sans);
  transition: border-color 300ms; outline: none;
}
@media (min-width: 768px) { .contact-form input, .contact-form textarea, .contact-form select { padding: 1rem; } }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #404040; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: rgba(255,255,255,0.4); }
.contact-form textarea { resize: none; }
.contact-form select { appearance: none; }

.select-wrapper { position: relative; }
.select-wrapper::after {
  content: ''; position: absolute; top: 50%; right: 1rem; transform: translateY(-50%);
  width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid #737373; pointer-events: none;
}

.contact-form .submit-btn {
  width: 100%; background: #fff; color: #000; font-weight: 500; font-size: 0.8125rem;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 9999px; padding: 1rem;
  margin-top: 0.75rem; transition: all 300ms;
}
@media (min-width: 768px) { .contact-form .submit-btn { font-size: 0.875rem; padding: 1.25rem; margin-top: 1rem; } }
.contact-form .submit-btn:hover { transform: scale(0.99); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .contact-sidebar { gap: 1.5rem; } }

.sidebar-card {
  background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 1.125rem;
  padding: 1.75rem;
  opacity: 0; transform: translateY(2rem); transition: all 1000ms 200ms ease-out;
}
.sidebar-card.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) { .sidebar-card { padding: 2.5rem; } }
.sidebar-card:hover { transform: translateY(-0.25rem); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }

.sidebar-card h3 { font-family: var(--font-serif); color: #fff; font-size: 1.5rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .sidebar-card h3 { font-size: 1.875rem; margin-bottom: 1rem; } }
.sidebar-card p { color: #a3a3a3; font-weight: 300; font-size: 0.8125rem; line-height: 1.6; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .sidebar-card p { font-size: 0.875rem; margin-bottom: 2rem; } }

.sidebar-card .schedule-btn {
  width: 100%; background: transparent; border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-weight: 500; font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 9999px; padding: 0.875rem; transition: all 300ms;
}
@media (min-width: 768px) { .sidebar-card .schedule-btn { font-size: 0.875rem; padding: 1rem; } }
.sidebar-card .schedule-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.contact-email-row { display: flex; align-items: flex-start; gap: 0.75rem; }
@media (min-width: 768px) { .contact-email-row { gap: 1rem; } }
.contact-email-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 300ms;
}
@media (min-width: 768px) { .contact-email-icon { width: 2.5rem; height: 2.5rem; } }
.contact-email-row:hover .contact-email-icon { background: rgba(255,255,255,0.1); }
.contact-email-label { color: #737373; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; margin-bottom: 0.125rem; }
@media (min-width: 768px) { .contact-email-label { font-size: 0.75rem; margin-bottom: 0.25rem; } }
.contact-email-link { color: #fff; font-size: 1rem; transition: opacity 300ms; word-break: break-all; }
@media (min-width: 768px) { .contact-email-link { font-size: 1.125rem; } }
.contact-email-link:hover { opacity: 0.8; }
.contact-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.05); margin: 0.75rem 0; }
@media (min-width: 768px) { .contact-divider { margin: 1rem 0; } }
.contact-response { color: #525252; font-size: 0.8125rem; font-style: italic; }
@media (min-width: 768px) { .contact-response { font-size: 0.875rem; } }

/* ===================== FOOTER ===================== */
.site-footer {
  width: 100%; background: #fff; color: #8a8a8a; padding: 4rem 2rem 2rem;
  border-top: 1px solid #f0f0f0;
}
@media (min-width: 768px) { .site-footer { padding: 6rem 4rem 3rem; } }

.footer-inner { max-width: 80rem; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 6rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 4fr 3fr 2fr 2fr; gap: 2rem; } }

.footer-col .footer-desc { font-size: 0.8125rem; font-weight: 300; color: #1a1a1a; margin-bottom: 1.5rem; line-height: 1.5; }
@media (min-width: 768px) { .footer-col .footer-desc { font-size: 1rem; margin-bottom: 2rem; } }

.footer-subscribe { width: 100%; position: relative; margin-bottom: 1rem; }
@media (min-width: 768px) { .footer-subscribe { margin-bottom: 1.5rem; } }
.footer-subscribe input {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.5rem; color: #1a1a1a; font-size: 0.875rem; outline: none;
  transition: border-color 300ms; border-radius: 0;
}
.footer-subscribe input::placeholder { color: #a3a3a3; }
.footer-subscribe input:focus { border-color: #000; }
.footer-subscribe button {
  position: absolute; right: 0; top: 0; color: #1a1a1a; font-size: 1.25rem; transition: opacity 300ms;
}
.footer-subscribe button:hover { opacity: 0.6; }

.footer-privacy-check { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; user-select: none; }
.footer-privacy-check input {
  width: 14px; height: 14px; appearance: none; border: 1px solid #d1d1d1; border-radius: 2px;
  transition: all 300ms; cursor: pointer; flex-shrink: 0;
}
.footer-privacy-check input:checked { background: #1a1a1a; border-color: #1a1a1a; }
.footer-privacy-check .check-label {
  font-size: 0.6875rem; font-weight: 300; color: #8a8a8a; transition: color 300ms;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
}
@media (min-width: 768px) { .footer-privacy-check .check-label { font-size: 0.75rem; } }
.footer-privacy-check .check-label:hover { color: #1a1a1a; border-color: rgba(26,26,26,0.3); }

.footer-social a {
  display: flex; align-items: center; gap: 0.75rem; color: #1a1a1a; transition: opacity 300ms;
}
.footer-social a:hover { opacity: 0.7; }
.footer-social span { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }

.footer-col h4 { color: #1a1a1a; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
@media (min-width: 768px) { .footer-col h4 { margin-bottom: 1.5rem; } }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 768px) { .footer-links { gap: 0.75rem; } }
.footer-links button, .footer-links span, .footer-links a, .footer-links .footer-link {
  text-align: left; font-size: 0.8125rem; font-weight: 300; color: #666; transition: color 300ms; cursor: pointer; background: none; border: none;
}
@media (min-width: 768px) { .footer-links button, .footer-links span, .footer-links a, .footer-links .footer-link { font-size: 0.875rem; } }
.footer-links button:hover, .footer-links span:hover, .footer-links a:hover, .footer-links .footer-link:hover { color: #1a1a1a; }
.footer-links a, .footer-links .footer-link { text-decoration: none; }

.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid #f0f0f0;
  display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start;
}
@media (min-width: 768px) { .footer-bottom { padding-top: 2rem; flex-direction: row; justify-content: space-between; align-items: center; gap: 1rem; } }
.footer-bottom .copyright { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: #a3a3a3; }
@media (min-width: 768px) { .footer-bottom .copyright { font-size: 10px; } }

/* ===================== CONSULTING SERVICES PAGE ===================== */
.consulting-page { width: 100%; background: var(--black); min-height: 100vh; }

.consulting-hero { padding: 10rem 2rem 6rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
@media (min-width: 768px) { .consulting-hero { padding: 12rem 4rem 8rem; } }
.consulting-hero .section-label { margin-bottom: 1.5rem; }
@media (min-width: 768px) { .consulting-hero .section-label { margin-bottom: 2rem; } }
.consulting-hero h1 {
  font-family: var(--font-serif); color: #fff;
  font-size: 2.25rem; line-height: 1.1; margin-bottom: 2rem; max-width: 56rem;
}
@media (min-width: 768px) { .consulting-hero h1 { font-size: 3.75rem; margin-bottom: 2.5rem; } }
@media (min-width: 1024px) { .consulting-hero h1 { font-size: 4.5rem; } }
.consulting-hero .hero-sub { color: #a3a3a3; font-weight: 300; font-size: 1rem; line-height: 1.6; max-width: 40rem; }
@media (min-width: 768px) { .consulting-hero .hero-sub { font-size: 1.25rem; } }

.consulting-services-list { padding: 4rem 2rem 6rem; }
@media (min-width: 768px) { .consulting-services-list { padding: 6rem 4rem 8rem; } }

.consulting-service-item {
  max-width: 80rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: start; margin-bottom: 5rem;
}
@media (min-width: 768px) { .consulting-service-item { gap: 3rem; margin-bottom: 7rem; } }
@media (min-width: 1024px) { .consulting-service-item { grid-template-columns: 4fr 8fr; gap: 4rem; margin-bottom: 8rem; } }

.consulting-service-item .service-left { position: relative; padding-bottom: 0.5rem; }
@media (min-width: 768px) { .consulting-service-item .service-left { padding-bottom: 1rem; } }
@media (min-width: 1024px) { .consulting-service-item .service-left { position: sticky; top: 8rem; } }
.service-left .service-id { color: rgba(255,255,255,0.3); font-family: var(--font-serif); font-size: 0.75rem; margin-bottom: 1rem; display: block; }
@media (min-width: 768px) { .service-left .service-id { font-size: 0.875rem; margin-bottom: 1.5rem; } }
.service-left .service-name { font-family: var(--font-serif); color: #fff; font-size: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .service-left .service-name { font-size: 2.25rem; } }

.consulting-service-item .service-right {}
.service-right .service-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 2rem; }
@media (min-width: 768px) { .service-right .service-divider { margin-bottom: 2.5rem; } }
.service-right .service-desc { color: #d4d4d4; font-size: 1rem; font-weight: 300; line-height: 1.6; margin-bottom: 2rem; max-width: 48rem; }
@media (min-width: 768px) { .service-right .service-desc { font-size: 1.25rem; margin-bottom: 2.5rem; } }

.service-points { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .service-points { grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; } }
.service-point { display: flex; align-items: flex-start; gap: 0.75rem; color: #737373; font-size: 0.8125rem; letter-spacing: 0.025em; }
@media (min-width: 768px) { .service-point { font-size: 1rem; } }
.service-point .point-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; margin-top: 0.375rem; }

.consulting-transition { padding: 6rem 2rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 768px) { .consulting-transition { padding: 12rem 2rem; } }
.consulting-transition .trans-line { width: 6rem; height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 2rem; }
.consulting-transition .trans-text { font-family: var(--font-serif); color: #fff; font-size: 1.125rem; font-style: italic; opacity: 0.8; }
@media (min-width: 768px) { .consulting-transition .trans-text { font-size: 1.5rem; } }

/* ===================== LEGAL PAGE ===================== */
.legal-page { width: 100%; background: #fff; color: #1a1a1a; min-height: 100vh; display: flex; flex-direction: column; }
.legal-body { padding: 8rem 2rem 4rem; flex: 1; }
@media (min-width: 768px) { .legal-body { padding: 12rem 4rem 5rem; } }
.legal-body-inner { max-width: 56rem; margin: 0 auto; }
.legal-body .section-label { color: #a3a3a3; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .legal-body .section-label { margin-bottom: 2rem; } }
.legal-body h1 { font-family: var(--font-serif); color: #000; font-size: 2.25rem; margin-bottom: 3rem; line-height: 1.1; }
@media (min-width: 768px) { .legal-body h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 4rem; } }
.legal-sections { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 768px) { .legal-sections { gap: 3rem; } }
.legal-section h3 { font-family: var(--font-serif); color: #000; font-size: 1.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .legal-section h3 { font-size: 1.5rem; margin-bottom: 1rem; } }
.legal-section p { font-size: 0.9375rem; font-weight: 300; line-height: 1.6; color: #333; }
@media (min-width: 768px) { .legal-section p { font-size: 1.125rem; } }
.legal-updated { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #e5e5e5; font-size: 0.8125rem; color: #737373; }
@media (min-width: 768px) { .legal-updated { margin-top: 5rem; padding-top: 2.5rem; font-size: 0.875rem; } }

/* ===================== MENU OVERLAY ===================== */
.menu-overlay {
  position: fixed; inset: 0; z-index: 50;
  opacity: 0; pointer-events: none; transition: opacity 500ms ease-in-out;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

.menu-overlay-bg { position: absolute; inset: 0; z-index: 0; background: rgba(23,23,23,0.95); backdrop-filter: blur(4px); }
.menu-close-btn {
  position: absolute; top: 2rem; right: 2rem; z-index: 50; padding: 0.5rem; color: #fff;
  transition: color 300ms; border-radius: 50%;
}
@media (min-width: 768px) { .menu-close-btn { top: 2.5rem; right: 4rem; } }
.menu-close-btn:hover { color: rgba(255,255,255,0.7); }
.menu-close-btn:focus-visible { box-shadow: 0 0 0 2px rgba(255,255,255,0.5); }

.menu-overlay-content {
  position: relative; z-index: 10; display: flex; flex-direction: column; height: 100%;
  justify-content: center; padding: 3rem;
}
@media (min-width: 768px) { .menu-overlay-content { padding: 6rem; } }

.menu-overlay-brand h2 {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; color: rgba(255,255,255,0.5);
  text-transform: uppercase; margin-bottom: 2rem;
}
@media (min-width: 768px) { .menu-overlay-brand h2 { font-size: 0.875rem; } }

.menu-overlay-nav { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
@media (min-width: 768px) { .menu-overlay-nav { gap: 2rem; } }

.menu-overlay-nav .menu-nav-btn {
  display: flex; align-items: center; gap: 0.75rem; font-size: 1.875rem; font-weight: 300;
  letter-spacing: 0.025em; color: #fff; transition: color 300ms; text-align: left;
}
@media (min-width: 768px) { .menu-overlay-nav .menu-nav-btn { font-size: 3rem; gap: 1rem; } }
.menu-nav-btn.disabled { opacity: 0.3; cursor: not-allowed; }

.menu-nav-btn .nav-arrow {
  opacity: 0; transform: translateX(-1rem); transition: all 300ms; font-size: 0.875rem; color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .menu-nav-btn .nav-arrow { font-size: 1.25rem; } }
.menu-nav-btn:not(.disabled):hover .nav-arrow { opacity: 1; transform: translateX(0); }
.menu-nav-btn:not(.disabled):hover .nav-label { color: rgba(255,255,255,0.8); }

.menu-lang-switcher { margin-top: 3rem; display: flex; align-items: center; gap: 1rem; }
@media (min-width: 768px) { .menu-lang-switcher { margin-top: 4rem; } }
.menu-lang-switcher .lang-btn { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 300ms; color: rgba(255,255,255,0.4); }
.menu-lang-switcher .lang-btn.active { color: #fff; }
.menu-lang-switcher .lang-sep { color: rgba(255,255,255,0.2); }

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed; z-index: 100; bottom: 0; left: 0; width: 100%;
  pointer-events: none; display: flex; justify-content: center;
  padding: 0;
  opacity: 0; transform: translateY(2rem); transition: all 300ms ease-out;
}
@media (min-width: 768px) { .cookie-banner { padding-bottom: 2rem; } }
.cookie-banner.visible { opacity: 1; transform: translateY(0); }
.cookie-banner.hidden { display: none; }

.cookie-inner {
  pointer-events: auto; width: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border-radius: 1rem 1rem 0 0; padding: 1.25rem;
  display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start;
}
@media (min-width: 768px) {
  .cookie-inner {
    max-width: 80rem; margin: 0 4rem; border-radius: 0.75rem; padding: 2rem;
    flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem;
  }
}

.cookie-label { display: block; color: #a3a3a3; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .cookie-label { margin-bottom: 0.75rem; } }
.cookie-desc { color: #fff; font-size: 0.8125rem; font-weight: 300; line-height: 1.6; max-width: 48rem; }
@media (min-width: 768px) { .cookie-desc { font-size: 1rem; } }
.cookie-desc .cookie-link { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); transition: text-decoration-color 300ms; cursor: pointer; }
.cookie-desc .cookie-link:hover { text-decoration-color: #fff; }

.cookie-actions { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; flex-shrink: 0; }
@media (min-width: 768px) { .cookie-actions { flex-direction: row; width: auto; gap: 0.75rem; } }

.cookie-reject {
  padding: 0.625rem 1.25rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 9999px;
  color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500;
  white-space: nowrap; transition: all 300ms; text-align: center;
}
@media (min-width: 768px) { .cookie-reject { padding: 0.75rem 1.5rem; font-size: 11px; } }
.cookie-reject:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.cookie-accept {
  padding: 0.625rem 1.25rem; background: #fff; color: #000; border-radius: 9999px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
  white-space: nowrap; transition: all 300ms; text-align: center;
}
@media (min-width: 768px) { .cookie-accept { padding: 0.75rem 1.5rem; font-size: 11px; } }
.cookie-accept:hover { background: #e5e5e5; }

/* ===================== UTILITY CLASSES ===================== */
.section-label { color: #737373; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; display: block; }
.section-title {
  font-family: var(--font-serif); color: #fff;
  font-size: 1.875rem; font-weight: 400; letter-spacing: -0.04em; line-height: 1.05;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; line-height: 0.98; } }
@media (min-width: 1024px) { .section-title { font-size: 3.75rem; } }

/* Snapping helper for gallery (no transition) */
.no-transition { transition: none !important; }

/* Legal page header fix when on white bg */
.legal-page .site-header {
  mix-blend-mode: normal;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  pointer-events: auto;
}
.legal-page .site-header.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.legal-page .logo-text { color: #1a1a1a; }
.legal-page .header-logo img { filter: invert(1); }
.legal-page .desktop-nav { mix-blend-mode: normal; }
.legal-page .desktop-nav .nav-link { color: #1a1a1a; }
.legal-page .desktop-nav .nav-link::after { background: #1a1a1a; }
.legal-page .mobile-hamburger { mix-blend-mode: normal; }
.legal-page .mobile-hamburger .hamburger-lines span { background: #1a1a1a; }
.legal-page .desktop-lang-switcher { border-color: rgba(0,0,0,0.2); }
.legal-page .desktop-lang-switcher .lang-btn { color: #1a1a1a; }

/* ===================== SIX SIGMA BADGE LINK ===================== */
.about-badge-link {
  display: flex; text-decoration: none; cursor: pointer;
  transition: all 300ms ease;
  position: relative; justify-content: center; align-items: center;
}
.about-badge-link:hover {
  background: rgba(255,255,255,0.15); border-color: #fff;
  transform: translateY(-2px);
}
.about-badge-link::after {
  content: ' \2197'; font-size: 0.65em; opacity: 0.6;
}

/* ===================== FORM FEEDBACK ===================== */
.form-feedback {
  margin-top: 1rem; padding: 0.75rem 1rem; border-radius: 8px;
  font-size: 0.875rem; text-align: center;
}
.form-feedback-success { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.form-feedback-error { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

/* ===================== CALENDAR MODAL ===================== */
.cal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 350ms ease;
  padding: 1.5rem;
}
.cal-overlay.active { opacity: 1; }
.cal-modal {
  background: #111; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; width: 90%; max-width: 420px;
  max-height: 90vh; overflow-y: auto; padding: 0;
  transform: translateY(24px) scale(0.98); transition: transform 350ms cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.cal-overlay.active .cal-modal { transform: translateY(0) scale(1); }

/* External calendar iframe modal — stile raffinato */
.cal-external-modal {
  max-width: min(920px, 95vw); width: min(920px, 95vw);
  height: min(700px, 88vh); max-height: 88vh;
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 32px 96px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}
.cal-iframe-wrap {
  flex: 1; min-height: 0; background: #0d0d0d;
  border-radius: 0 0 20px 20px; overflow: hidden;
  position: relative;
}
.cal-iframe-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  pointer-events: none; z-index: 1;
}
.cal-iframe {
  width: 100%; height: 100%; border: none; display: block;
  border-radius: 0 0 20px 20px;
}

.cal-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; flex-shrink: 0;
  background: rgba(17,17,17,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cal-external-modal .cal-modal-header {
  border-radius: 20px 20px 0 0;
  letter-spacing: 0.02em;
}
.cal-modal-header h3 {
  font-family: var(--font-serif); font-size: 1.125rem; font-weight: 400; color: #fff;
  letter-spacing: 0.03em;
}
.cal-close {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  color: #999; font-size: 1.25rem; cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; transition: all 220ms ease;
}
.cal-close:hover {
  color: #fff; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.12);
}
.cal-body { padding: 1.5rem; }
.cal-instruction { color: #a3a3a3; font-size: 0.875rem; margin-bottom: 1rem; }
.cal-month-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; color: #fff;
}
.cal-month-nav button {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
  font-size: 0.875rem; transition: all 200ms;
}
.cal-month-nav button:hover { background: rgba(255,255,255,0.1); }
.cal-month-nav span { font-weight: 500; font-size: 0.9375rem; }
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  margin-bottom: 4px; text-align: center;
}
.cal-weekdays span { color: #555; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 0; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.cal-day {
  width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 0.8125rem; cursor: default;
  color: #555; transition: all 200ms;
}
.cal-day.empty { visibility: hidden; }
.cal-day.past { color: #333; }
.cal-day.unavailable { color: #555; }
.cal-day.available {
  color: #fff; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); cursor: pointer;
}
.cal-day.available:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.cal-selected-date {
  color: #fff; font-weight: 500; font-size: 1rem; margin-bottom: 1rem;
  padding: 0.5rem 1rem; background: rgba(255,255,255,0.05);
  border-radius: 8px; display: inline-block;
}
.cal-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1rem; }
.cal-slot {
  padding: 0.5rem 1rem; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  color: #fff; font-size: 0.8125rem; cursor: pointer; transition: all 200ms;
}
.cal-slot:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.cal-back {
  background: none; border: none; color: #737373; font-size: 0.8125rem;
  cursor: pointer; padding: 0.5rem 0; transition: color 200ms;
}
.cal-back:hover { color: #fff; }
.cal-selected-summary {
  color: #fff; font-weight: 500; margin-bottom: 1rem;
  padding: 0.5rem 1rem; background: rgba(255,255,255,0.05);
  border-radius: 8px; display: inline-block; font-size: 0.9375rem;
}
.cal-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1rem; }
.cal-form input {
  width: 100%; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  color: #fff; font-size: 0.875rem; font-family: var(--font-sans);
  transition: border-color 200ms;
}
.cal-form input:focus { outline: none; border-color: rgba(255,255,255,0.3); }
.cal-form input::placeholder { color: #555; }
.cal-confirm-btn {
  padding: 0.75rem 1.5rem; background: #fff; color: #000; border: none;
  border-radius: 8px; font-weight: 600; font-size: 0.875rem;
  cursor: pointer; transition: all 200ms; text-align: center;
}
.cal-confirm-btn:hover { background: #e5e5e5; }
.cal-confirm-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.cal-success { text-align: center; padding: 2rem 0; }
.cal-success-icon {
  width: 48px; height: 48px; background: rgba(34,197,94,0.15);
  color: #4ade80; border-radius: 50%; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.cal-success h4 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; margin-bottom: 0.5rem; }
.cal-success p { color: #a3a3a3; font-size: 0.875rem; }

/* Prevent horizontal overflow on mobile */
@media (max-width: 767px) {
  .about-grid,
  .industry-grid,
  .research-grid,
  .contact-grid,
  .footer-grid {
    overflow-x: hidden;
  }
}
