/* ============================================================
   8 Legal Consulting — White Luxury Legal Website
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #4b6468;
  --primary-dark: #3a5054;
  --primary-light: #5d7a7e;
  --bg: #ffffff;
  --bg-warm: #fffff4;
  --bg-dark: #111111;
  --bg-card: #fafaf6;
  --ink: #1a1a1a;
  --ink-soft: #444;
  --muted: #777;
  --rule: #e5e3dc;
  --gold: #c4a97d;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --nav-h: 72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; /* Lenis handles smooth scroll */ }
body {
  margin: 0; padding: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0; }

.container-l {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
.display-xl {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.eyebrow-l {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ---- Buttons ---- */
.btn-l {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(75,100,104,.25);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--ink);
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.l-nav-right {
  display: flex; align-items: center; gap: 16px;
  z-index: 102;
}
.lang-switcher {
  display: flex;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color .4s;
}
.l-nav.scrolled .lang-switcher { border-color: var(--rule); }
.lang-btn {
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: all .3s;
  position: relative;
}
.lang-btn + .lang-btn { border-left: 1px solid rgba(255,255,255,.15); }
.l-nav.scrolled .lang-btn + .lang-btn { border-left-color: var(--rule); }
.l-nav.scrolled .lang-btn { color: var(--muted); }
.lang-btn.active {
  color: #fff;
  background: rgba(255,255,255,.15);
}
.l-nav.scrolled .lang-btn.active {
  color: var(--primary);
  background: rgba(75,100,104,.1);
}
.lang-btn:hover { color: #fff; }
.l-nav.scrolled .lang-btn:hover { color: var(--primary); }

/* Hamburger — ensure it still works with wrapper */
.hamburger.open .bar { background: #fff !important; }

/* ============================================================
   NAV
   ============================================================ */
.l-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.l-nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.l-nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
}
.l-nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  z-index: 102;
  transition: color .4s;
  display: flex; align-items: center; gap: 10px;
}
.l-nav.scrolled .l-nav-logo { color: var(--ink); }
.l-nav-logo span { font-weight: 300; font-size: 14px; letter-spacing: .08em; opacity: .7; }

.hamburger {
  z-index: 102;
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 0;
}
.hamburger .bar {
  width: 28px; height: 1.5px;
  background: #fff;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.l-nav.scrolled .hamburger .bar { background: var(--ink); }
.hamburger.open .bar:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.hamburger.open .bar { background: #fff !important; }

/* Omai-style sidebar menu overlay */
.nav-overlay {
  position: fixed; inset: 0;
  z-index: 101;
  pointer-events: none;
  visibility: hidden;
}
.nav-overlay.open {
  pointer-events: auto;
  visibility: visible;
}

/* Dim backdrop */
.nav-overlay-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .5s ease;
}
.nav-overlay.open .nav-overlay-backdrop { opacity: 1; }

/* Left sidebar panel */
.nav-sidebar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 320px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  z-index: 3;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.15) transparent;
}
.nav-sidebar::-webkit-scrollbar { width: 4px; }
.nav-sidebar::-webkit-scrollbar-track { background: transparent; }
.nav-sidebar::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.15);
  border-radius: 4px;
}
.nav-sidebar::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,.25); }
.nav-overlay.open .nav-sidebar { transform: translateX(0); }

.nav-sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
}
.nav-sidebar-header svg { flex-shrink: 0; }
.nav-sidebar-header span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-sidebar-links {
  flex: 1;
  padding: 32px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-sidebar-links a {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0;
  transition: color .3s;
  border: 0;
  text-decoration: none;
}
.nav-sidebar-links a:hover,
.nav-sidebar-links a.active-link { color: var(--primary); }
.nav-sidebar-links .nav-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.nav-sidebar-links .nav-sub-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 8px 0 8px 0;
  color: var(--ink);
}
.nav-sidebar-links .nav-sub-link:hover { color: var(--primary); }
.nav-sidebar-links .nav-divider {
  height: 1px;
  background: var(--rule);
  margin: 12px 0;
}

.nav-sidebar-foot {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--rule);
}
.nav-sidebar-foot .nav-foot-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.nav-sidebar-foot .nav-foot-slogan {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
}

/* Right detail panel — appears on hover */
.nav-detail {
  position: absolute;
  top: 0; left: 320px; bottom: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  z-index: 2;
}
.nav-detail.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.nav-detail-text {
  background: #fff;
  padding: 80px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.nav-detail-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.nav-detail-title span {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .04em;
  opacity: .5;
  margin-left: 8px;
}
.nav-detail-sublinks {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-detail-sublinks a {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  transition: color .3s, padding-left .3s;
  text-decoration: none;
}
.nav-detail-sublinks a:first-child { border-top: 1px solid var(--rule); }
.nav-detail-sublinks a:hover {
  color: var(--primary);
  padding-left: 8px;
}
.nav-detail-desc {
  margin-top: auto;
  padding-top: 32px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 40ch;
}
.nav-detail-image {
  overflow: hidden;
  background: var(--rule);
}
.nav-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.nav-detail.visible .nav-detail-image img { transform: scale(1.04); }

/* Close button on sidebar */
.nav-overlay-close {
  position: absolute;
  top: 24px; right: 32px;
  width: 48px; height: 48px;
  display: none; /* hidden, we use sidebar header X instead */
}

/* Hamburger in open state — keep ink color since sidebar is white */
.hamburger.open .bar { background: var(--ink) !important; }

@media (max-width: 960px) {
  .nav-sidebar { width: 100%; }
  .nav-detail { display: none; }
}

/* ============================================================
   HERO — fullscreen slider with crossfade
   ============================================================ */
.hero-l {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  background: #1a1a1a;
}
.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide-img-wrap {
  position: absolute; inset: -15% 0 0 0;
  overflow: hidden;
}
.hero-slide-img {
  width: 100%; height: 130%;
  object-fit: cover;
  filter: brightness(.5);
  will-change: transform;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero-slide.active .hero-slide-img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 32px 80px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}
.hero-content .eyebrow-l { color: var(--gold); margin-bottom: 20px; }
.hero-content h1 { margin-bottom: 28px; max-width: 14ch; }
.hero-content h1 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,.8); }
.hero-sub {
  font-size: 17px; font-weight: 300;
  max-width: 520px;
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 36px; right: 40px;
  z-index: 3;
  display: flex; align-items: center; gap: 16px;
}
.hero-indicator {
  width: 48px; height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  border: 0;
  position: relative;
}
.hero-indicator::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  background: #fff;
  border-radius: 2px;
  transition: none;
}
.hero-indicator.active::after {
  width: 100%;
  transition: width var(--hero-delay, 6s) linear;
}
.hero-indicator.done::after {
  width: 100%;
  transition: none;
}
.hero-indicator.upcoming::after {
  width: 0;
  transition: none;
}

/* Slide counter */
.hero-slide-counter {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.hero-scroll-hint .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); transform-origin: top; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 120px 0; }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark .eyebrow-l { color: var(--gold); }
.section-dark .muted { color: rgba(255,255,255,.5); }

.section-header {
  margin-bottom: 64px;
}
.section-header .eyebrow-l { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 20px; }
.section-header h2 em { font-style: italic; color: var(--primary); }
.section-header p { color: var(--muted); max-width: 56ch; font-size: 16px; line-height: 1.7; }
.section-dark .section-header p { color: rgba(255,255,255,.6); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 18px; font-size: 15px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--rule);
}
.about-stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--primary);
}
.about-stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}
.about-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 5s ease; }
.about-media:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--bg); color: var(--ink);
  padding: 12px 16px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}

/* About — stacked image composition */
.about-media-stack {
  position: relative;
  min-height: 560px;
}
.about-media-main {
  position: relative;
  width: 85%;
  aspect-ratio: 3/4;
  overflow: hidden;
  z-index: 1;
}
.about-media-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.about-media-stack:hover .about-media-main img { transform: scale(1.04); }
.about-media-accent {
  position: absolute;
  right: 0; bottom: 40px;
  width: 55%;
  aspect-ratio: 4/3;
  overflow: hidden;
  z-index: 2;
  border: 6px solid var(--bg-warm);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.about-media-accent img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}
.about-media-stack:hover .about-media-accent img { transform: scale(1.06); }
.about-media-badge-card {
  position: absolute;
  top: 32px; right: 0;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  padding: 24px 28px;
  min-width: 160px;
}
.about-badge-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-badge-number span { font-size: 32px; }
.about-badge-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-top: 8px;
  opacity: .85;
}

@media (max-width: 1024px) {
  .about-media-stack { min-height: 420px; }
  .about-media-main { width: 80%; }
  .about-media-accent { width: 50%; bottom: 20px; }
  .about-media-badge-card { top: 16px; padding: 18px 20px; }
  .about-badge-number { font-size: 40px; }
}

/* ============================================================
   SERVICES — card slider
   ============================================================ */
.services-slider-wrap { position: relative; overflow: hidden; }
.services-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 16px;
  cursor: grab;
  user-select: none;
}
.services-slider::-webkit-scrollbar { display: none; }
.services-slider.dragging { cursor: grabbing; scroll-snap-type: none; }
.services-slider.dragging .service-card { pointer-events: none; }

.service-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  min-height: 380px;
  transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(75,100,104,.12);
}
.service-card-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 56px;
  color: #222;
  margin-bottom: 6px;
  margin-top: -12px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}
.service-card-link {
  margin-top: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary);
  display: flex; align-items: center; gap: 8px;
  transition: gap .3s;
}
.service-card:hover .service-card-link { gap: 14px; }

.slider-nav {
  display: flex; gap: 8px; margin-top: 32px;
  justify-content: flex-end;
}
.slider-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
  color: var(--ink);
}
.slider-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Floating nav arrows on services slider */
.svc-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.svc-slider-nav-left { left: -8px; }
.svc-slider-nav-right { right: -8px; }
.svc-slider-btn {
  width: 48px; height: 48px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transition: all .3s;
  cursor: pointer;
}
.svc-slider-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
@media (max-width: 768px) {
  .svc-slider-nav { display: none; }
}

/* ============================================================
   APPROACH — numbered steps
   ============================================================ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0;
}
.approach-step {
  padding: 48px;
  border: 1px solid var(--rule);
  margin-top: -1px;
  margin-left: -1px;
  transition: background .3s;
}
.approach-step:hover { background: var(--bg-warm); }
.approach-step-num {
  font-family: var(--font-display); font-weight: 300; font-size: 56px;
  color: #222; line-height: 1;
}
.approach-step h4 {
  font-family: var(--font-display); font-weight: 500; font-size: 24px;
  margin: 16px 0 12px;
}
.approach-step p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 40ch; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.partner-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 40px 32px;
  transition: transform .4s, box-shadow .4s;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}
.partner-card-icon {
  width: 56px; height: 56px;
  background: var(--bg-warm);
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: background .3s, border-color .3s, transform .3s;
}
.partner-card:hover .partner-card-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
.partner-card h3 {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  margin-bottom: 6px;
}
.partner-card .partner-subtitle {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.partner-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ============================================================
   PHILOSOPHY — full-width image + text
   ============================================================ */
.philosophy-row {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.philosophy-media { overflow: hidden; position: relative; }
.philosophy-media img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-text {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-dark); color: #fff;
}
.philosophy-text .eyebrow-l { color: var(--gold); margin-bottom: 20px; }
.philosophy-text h2 { margin-bottom: 28px; }
.philosophy-text h2 em { color: var(--gold); }
.philosophy-list { margin-top: 24px; }
.philosophy-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 16px; font-weight: 300;
}
.philosophy-list li .check { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.founders-text p { color: var(--ink-soft); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.founders-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.founders-tag {
  padding: 8px 16px;
  border: 1px solid var(--rule);
  font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary);
  transition: all .3s;
}
.founders-tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================================
   FORM — dark section (Lyvin-inspired)
   ============================================================ */
.form-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 120px 0;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.form-left h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(36px, 4vw, 56px); line-height: 1.1;
  margin-bottom: 24px;
}
.form-left h2 em { font-style: italic; color: var(--gold); }
.form-left p { color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 28px; max-width: 44ch; }
.form-bonus {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 28px;
  margin-top: 32px;
}
.form-bonus .eyebrow-l { color: var(--gold); margin-bottom: 12px; }
.form-bonus p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.6; margin: 0; }
.form-bonus a { color: var(--gold); border-bottom: 1px solid var(--gold); }

.form-right .form-group { margin-bottom: 20px; }
.form-right label {
  display: block;
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.form-right input[type="text"],
.form-right input[type="email"],
.form-right input[type="tel"],
.form-right textarea,
.form-right select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .3s;
}
.form-right input:focus,
.form-right textarea:focus,
.form-right select:focus {
  border-color: var(--gold);
}
.form-right input::placeholder,
.form-right textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.form-right textarea { resize: vertical; min-height: 100px; }
.form-right select option { background: var(--bg-dark); color: #fff; }

.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.radio-group label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none;
  color: rgba(255,255,255,.8);
  cursor: pointer; padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.15);
  transition: border-color .3s, background .3s;
}
.radio-group label:hover { border-color: rgba(255,255,255,.4); }
.radio-group input[type="radio"] {
  width: 18px; height: 18px; accent-color: var(--primary);
}
.radio-group input[type="radio"]:checked + span { color: #fff; }

.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 24px 0 28px;
  font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary);
}
.form-consent a { color: var(--gold); border-bottom: 1px solid transparent; }
.form-consent a:hover { border-bottom-color: var(--gold); }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 0;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(75,100,104,.3);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.tm-card-l {
  border: 1px solid var(--rule);
  padding: 40px 32px;
  transition: transform .4s, box-shadow .4s;
}
.tm-card-l:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}
.tm-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 20px; }
.tm-card-l blockquote {
  font-family: var(--font-display);
  font-weight: 400; font-style: italic;
  font-size: 18px; line-height: 1.5;
  margin: 0 0 24px;
}
.tm-card-l .tm-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--rule);
}
.tm-card-l .tm-avatar-l {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--bg-warm);
}
.tm-card-l .tm-avatar-l img { width: 100%; height: 100%; object-fit: cover; }
.tm-card-l .tm-name-l { font-weight: 600; font-size: 14px; }
.tm-card-l .tm-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-l {
  background: var(--bg-dark); color: #fff;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  font-family: var(--font-display); font-weight: 600; font-size: 28px;
  margin-bottom: 16px;
}
.footer-logo span { font-weight: 300; opacity: .5; }
.footer-addr { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.8; font-style: normal; }
.footer-addr a:hover { color: #fff; }
.footer-col h5 {
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 12px; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   SHOWCASE — Omai-style horizontal drag/scroll
   ============================================================ */
.showcase {
  padding: 120px 0 100px;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}
.showcase-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  align-items: start;
}
.showcase-text {
  padding: 0 48px 0 32px;
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  align-self: start;
}
.showcase-text .eyebrow-l { margin-bottom: 20px; }
.showcase-text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.showcase-text h2 em { font-style: italic; color: var(--primary); }
.showcase-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 36ch;
}
.showcase-text .showcase-counter {
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Drag track */
.showcase-track-wrap {
  position: relative;
  overflow: hidden;
}
.showcase-track {
  display: flex;
  gap: 28px;
  padding: 0 40px 24px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  user-select: none;
}
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.showcase-track.dragging .showcase-card img { pointer-events: none; }

.showcase-card {
  flex: 0 0 520px;
  scroll-snap-align: start;
  user-select: none;
}
.showcase-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--rule);
}
.showcase-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.showcase-card:hover .showcase-card-media img { transform: scale(1.04); }
.showcase-card-info {
  padding: 20px 0 0;
}
.showcase-card-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
  transition: color .3s;
}
.showcase-card-name svg { transition: transform .3s; }
.showcase-card:hover .showcase-card-name { color: var(--primary); }
.showcase-card:hover .showcase-card-name svg { transform: translateX(4px); }
.showcase-card-meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Showcase nav arrows */
.showcase-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex; gap: 0;
}
.showcase-nav-left { left: -20px; }
.showcase-nav-right { right: 12px; }
.showcase-nav-btn {
  width: 48px; height: 48px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: all .3s;
}
.showcase-nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Drag hint indicator */
.showcase-drag-hint {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  opacity: .7;
}
.showcase-drag-hint .drag-line {
  width: 32px; height: 2px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.showcase-drag-hint .drag-line::after {
  content: "";
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: var(--primary);
  animation: dragSlide 2s ease infinite;
}
@keyframes dragSlide {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

@media (max-width: 1024px) {
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase-text { position: static; padding: 0 24px; }
  .showcase-track { padding-left: 24px; }
  .showcase-card { flex: 0 0 400px; }
  .showcase-nav { display: none; }
}
@media (max-width: 640px) {
  .showcase-card { flex: 0 0 85vw; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list-l { border-top: 1px solid var(--rule); }
.faq-item-l { border-bottom: 1px solid var(--rule); }
.faq-q-l {
  width: 100%;
  display: grid; grid-template-columns: 40px 1fr 36px; gap: 20px;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -.01em;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  transition: color .3s;
}
.faq-q-l:hover { color: var(--primary); }
.faq-num-l {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: .12em;
  color: var(--muted);
}
.faq-icon-l {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s cubic-bezier(.4,0,.2,1), background .3s, color .3s, border-color .3s;
  color: var(--ink);
}
.faq-item-l.open .faq-icon-l {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.faq-a-l {
  max-height: 0; overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}
.faq-item-l.open .faq-a-l { max-height: 400px; }
.faq-a-inner-l {
  padding: 0 0 28px 60px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 70ch;
  font-size: 15px;
}

/* ============================================================
   FOOTER — newsletter + social
   ============================================================ */
.footer-newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-nl-text h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 8px;
}
.footer-nl-text p {
  color: rgba(255,255,255,.5);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.footer-nl-form {
  display: flex;
  border: 1px solid rgba(255,255,255,.2);
  overflow: hidden;
  transition: border-color .3s;
}
.footer-nl-form:focus-within { border-color: var(--gold); }
.footer-nl-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
}
.footer-nl-form input::placeholder { color: rgba(255,255,255,.3); }
.footer-nl-form button {
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  white-space: nowrap;
}
.footer-nl-form button:hover { background: var(--primary-dark); }
.footer-nl-success {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
}

.footer-social {
  display: flex; gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .3s;
}
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-newsletter { grid-template-columns: 1fr; gap: 24px; }
  .faq-q-l { grid-template-columns: 32px 1fr 32px; gap: 12px; font-size: 18px; }
  .faq-a-inner-l { padding-left: 44px; }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* Staggered delays */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }
.delay-7 { transition-delay: .7s !important; }
.delay-8 { transition-delay: .8s !important; }
.delay-9 { transition-delay: .9s !important; }
.delay-10 { transition-delay: 1s !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid, .founders-content, .form-grid, .philosophy-row { grid-template-columns: 1fr; gap: 48px; }
  .approach-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-text { padding: 48px 32px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 80px 0; }
  .partners-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .about-stat-num { font-size: 36px; }
  .radio-group { grid-template-columns: 1fr; }
  .service-card { flex: 0 0 300px; min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px 60px; }
}
